:root {
  --white: #FFFFFF;
  --bg: #FAFAFA;
  --bg-soft: #F4F4F4;
  --dark: #0A0A0A;
  --dark-2: #17171A;
  --ink: #111113;
  --ink-2: #52525B;
  --muted: #9B9BA4;
  --line: rgba(0, 0, 0, 0.06);
  --line-2: rgba(0, 0, 0, 0.1);
  --accent: #10B981;
  --accent-d: #059669;
  --accent-l: rgba(16, 185, 129, 0.07);
  --accent-glow: rgba(16, 185, 129, 0.2);
  --warn: #F59E0B;
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'Hanken Grotesk', sans-serif;
  --max: 1200px;
  --nav-h: 68px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 24px 48px -16px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input { font-family: inherit; }
img, svg { display: block; max-width: 100%; }
::selection { background: var(--accent); color: var(--white); }

.bg-fx {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.blob-a {
  width: 600px;
  height: 600px;
  top: -240px;
  right: -180px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12), transparent 65%);
  animation: blobFloat1 30s ease-in-out infinite;
}

.blob-b {
  width: 480px;
  height: 480px;
  bottom: -100px;
  left: -160px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07), transparent 65%);
  animation: blobFloat2 36s ease-in-out infinite;
}

.blob-c {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05), transparent 65%);
  animation: blobFloat3 40s ease-in-out infinite;
}

@keyframes blobFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 60px); }
}

@keyframes blobFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -40px); }
}

@keyframes blobFloat3 {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-45%, -55%); }
}

main { position: relative; z-index: 1; }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-2);
  letter-spacing: 0.01em;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--warn);
  position: relative;
  flex-shrink: 0;
}

.badge-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--warn);
  opacity: 0.3;
  animation: dotPulse 2.4s ease-out infinite;
}

.badge-dot--green { background: var(--accent); }
.badge-dot--green::after { background: var(--accent); }

@keyframes dotPulse {
  0% { transform: scale(0.7); opacity: 0.5; }
  100% { transform: scale(2.6); opacity: 0; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 100px;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn svg { width: 16px; height: 16px; }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}

.btn-dark:hover {
  background: var(--accent-d);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -8px var(--accent-glow);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-2);
}

.btn-light:hover {
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 13px;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-d);
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--accent-l);
}

.tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
}

.section {
  padding: clamp(72px, 10vh, 128px) 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: clamp(40px, 6vw, 64px);
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin: 16px 0;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-2);
  line-height: 1.55;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.nav__glass {
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  background: rgba(250, 250, 250, 0.7);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}

.nav.scrolled .nav__glass {
  background: rgba(250, 250, 250, 0.88);
  border-bottom-color: var(--line);
  box-shadow: 0 1px 24px -8px rgba(0, 0, 0, 0.05);
}

.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  transition: opacity 0.3s;
}

.brand:hover { opacity: 0.7; }

.brand__mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  color: var(--accent);
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 8px 16px;
  border-radius: 100px;
  transition: all 0.3s;
}

.nav__links a:hover {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  background: var(--white);
  align-items: center;
  justify-content: center;
}

.nav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
  transition: all 0.3s var(--ease);
}

.nav__burger span::before,
.nav__burger span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

.nav__burger.open span { background: transparent; }
.nav__burger.open span::before { top: 0; transform: rotate(45deg); }
.nav__burger.open span::after { top: 0; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  z-index: 99;
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  background: rgba(250, 250, 250, 0.94);
  border-bottom: 1px solid var(--line);
  padding: 16px clamp(20px, 5vw, 40px) 28px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: translateY(-12px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s var(--ease);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-menu a {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.03em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--accent-d); }
.mobile-menu a:last-child { border-bottom: none; }

.hero {
  padding-top: calc(var(--nav-h) + clamp(32px, 6vh, 72px));
  padding-bottom: clamp(48px, 8vh, 96px);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 20px 0 0;
  letter-spacing: -0.04em;
}

.hero__title em {
  font-style: normal;
  position: relative;
  display: inline-block;
}

.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: -0.02em;
  right: -0.02em;
  height: 0.16em;
  background: var(--accent);
  opacity: 0.25;
  border-radius: 100px;
  z-index: -1;
}

.hero__sub {
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 460px;
  margin: 22px 0 32px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--white);
  border: 1px solid var(--line);
}

.pill svg { width: 14px; height: 14px; color: var(--accent-d); }

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.exchange {
  position: relative;
  width: 100%;
  max-width: 400px;
  z-index: 2;
}

.exchange__card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(1.6);
  -webkit-backdrop-filter: blur(24px) saturate(1.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s var(--ease);
}

.exchange__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.exchange__row + .exchange__row { margin-top: 4px; }

.exchange__group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.exchange__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

.exchange__icon--card {
  background: linear-gradient(135deg, #232F3E, #131A22);
  color: #FF9900;
}

.exchange__icon--cash {
  background: var(--accent-l);
  color: var(--accent-d);
}

.exchange__info { min-width: 0; }

.exchange__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.exchange__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}

.exchange__value {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.exchange__value--accent { color: var(--accent-d); }

.exchange__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 16px 0;
}

.exchange__divider::before,
.exchange__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-2);
}

.exchange__arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.exchange__arrow svg { width: 16px; height: 16px; }

.exchange__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
}

.exchange__footer span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.exchange__footer svg { width: 13px; height: 13px; color: var(--accent-d); }

.exchange__rate-badge {
  position: absolute;
  top: -18px;
  right: -16px;
  background: var(--dark);
  color: var(--white);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: floatBadge 6s ease-in-out infinite;
}

.exchange__rate-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}

.exchange__rate-badge span {
  display: block;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.exchange__time-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatBadge 6s ease-in-out infinite reverse;
}

.exchange__time-badge svg {
  width: 24px;
  height: 24px;
  color: var(--accent-d);
}

.exchange__time-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.exchange__time-badge span {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.trust {
  padding: clamp(28px, 4vw, 40px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
}

.trust__text {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  max-width: 120px;
  line-height: 1.4;
}

.trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 2.5vw, 32px);
}

.trust__logos span {
  font-family: var(--display);
  font-size: clamp(15px, 1.7vw, 20px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  opacity: 0.35;
  transition: opacity 0.3s;
}

.trust__logos span:hover { opacity: 1; }

.steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 36px);
  transition: all 0.4s var(--ease);
  position: relative;
}

.step:hover {
  border-color: var(--line-2);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--dark);
  color: var(--accent);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

.step__title {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  margin-bottom: 8px;
}

.step__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-2);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 2.5vw, 30px);
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.feature:hover {
  border-color: var(--line-2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature--lg {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.feature--lg::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.feature--wide { grid-column: span 3; }
.feature--sm { grid-column: span 2; }

.feature__icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-l);
  color: var(--accent-d);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: all 0.4s var(--ease);
}

.feature--lg .feature__icon {
  background: rgba(16, 185, 129, 0.15);
  color: var(--accent);
}

.feature:hover .feature__icon {
  transform: scale(1.08) rotate(-3deg);
}

.feature h3 {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  margin-bottom: 6px;
}

.feature--lg h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.feature p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
}

.feature--lg p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 400px;
}

.feature__meter {
  margin-top: auto;
  padding-top: 24px;
}

.feature__meter-num {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.feature__meter-bar {
  margin-top: 14px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}

.feature__meter-fill {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #34D399);
  border-radius: 100px;
  transition: width 1.5s var(--ease-out);
}

.feature--lg.is-visible .feature__meter-fill { width: 92%; }

.feature__meter-label {
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.payouts__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.payout {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.35s var(--ease);
}

.payout:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -10px var(--accent-glow);
}

.payout__left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.payout__mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  flex-shrink: 0;
}

.payout__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.payout__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.payout__time {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-d);
  background: var(--accent-l);
  padding: 5px 11px;
  border-radius: 100px;
  white-space: nowrap;
}

.stats {
  padding: clamp(48px, 6vh, 72px) 0;
}

.stats__box {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.stats__panel {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px) clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.stats__panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  pointer-events: none;
}

.stat { position: relative; z-index: 1; }

.stat__num {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat__num span { color: var(--accent); }

.stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 10px;
  line-height: 1.4;
}

.access {
  padding: clamp(72px, 10vh, 120px) 0;
  text-align: center;
}

.access__inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
  position: relative;
}

.access__inner::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--accent-glow), transparent 60%);
  filter: blur(60px);
  z-index: -1;
}

.access__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin: 18px 0;
}

.access__title span {
  color: var(--accent-d);
}

.access__text {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 500px;
  margin: 0 auto 32px;
}

.access__form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 5px;
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow-sm);
}

.access__form:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-l);
}

.access__input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.access__input::placeholder { color: var(--muted); }

.access__note {
  font-size: 13px;
  color: var(--muted);
  margin-top: 14px;
}

.access__note--ok {
  color: var(--accent-d);
  font-weight: 500;
}

.footer {
  background: var(--dark);
  color: var(--white);
  padding: clamp(56px, 7vw, 88px) 0 28px;
  position: relative;
  z-index: 1;
}

.footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: clamp(36px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .brand { color: var(--white); margin-bottom: 14px; }

.footer__tagline {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.4);
  max-width: 260px;
  line-height: 1.5;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer__col h4 {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 14px;
}

.footer__col a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  padding: 5px 0;
  transition: color 0.3s;
}

.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
}

.footer__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal-stagger.is-visible > * { opacity: 1; transform: translateY(0); }

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

.hero-anim .hero__left > * {
  opacity: 0;
  transform: translateY(24px);
  animation: heroFadeIn 0.8s var(--ease-out) forwards;
}

.hero-anim .hero__left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-anim .hero__left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-anim .hero__left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-anim .hero__left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-anim .hero__left > *:nth-child(5) { animation-delay: 0.5s; }

.hero-anim .hero__visual {
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  animation: heroFadeIn 1s var(--ease-out) 0.4s forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__right .btn { display: none; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__visual { order: -1; min-height: 360px; }
  .exchange { max-width: 360px; }

  .features__grid { grid-template-columns: repeat(4, 1fr); }
  .feature--lg { grid-column: span 4; grid-row: auto; }
  .feature--wide { grid-column: span 2; }
  .feature--sm { grid-column: span 2; }

  .stats__panel { grid-template-columns: repeat(2, 1fr); gap: 36px; }

  .footer__top { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .nav__right .badge { display: none; }

  .hero { min-height: auto; }

  .steps__grid { grid-template-columns: 1fr; }

  .features__grid { grid-template-columns: 1fr; }
  .feature--lg, .feature--wide, .feature--sm { grid-column: span 1; }

  .payouts__grid { grid-template-columns: 1fr; }

  .stats__panel { grid-template-columns: 1fr; gap: 28px; padding: 36px 24px; }

  .access__form {
    flex-direction: column;
    border-radius: 18px;
    padding: 6px;
  }

  .access__form .btn { width: 100%; }

  .footer__cols { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .exchange__rate-badge { right: 0; top: -14px; transform: scale(0.85); transform-origin: top right; }
  .exchange__time-badge { left: 0; bottom: -14px; transform: scale(0.85); transform-origin: bottom left; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .blob { animation: none; }
}

.dev-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  background: rgba(250, 250, 250, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: overlayIn 0.7s var(--ease-out) 0.2s both;
}

.dev-card {
  text-align: center;
  max-width: 460px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 52px) clamp(28px, 4vw, 44px);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.14);
  animation: cardIn 0.7s var(--ease-out) 0.35s both;
}

.dev-card__logo {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--accent);
}

.dev-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--warn);
  color: var(--white);
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dev-card__badge .badge-dot {
  background: var(--white);
  width: 6px;
  height: 6px;
}

.dev-card__badge .badge-dot::after {
  background: var(--white);
}

.dev-card__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.dev-card__title span {
  color: var(--accent-d);
}

.dev-card__text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  margin-bottom: 28px;
}

.dev-card__progress {
  height: 6px;
  background: var(--bg-soft);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 12px;
}

.dev-card__progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--accent), #34D399);
  border-radius: 100px;
  animation: progressFill 2s var(--ease-out) 0.9s forwards;
}

.dev-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
}

@keyframes overlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cardIn {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes progressFill {
  to { width: 78%; }
}
