:root {
  --color-navy: #0B1628;
  --color-navy-mid: #112040;
  --color-blue: #1A56DB;
  --color-blue-light: #3B82F6;
  --color-teal: #0D9488;
  --color-teal-light: #14B8A6;
  --color-amber: #F59E0B;
  --color-amber-light: #FCD34D;
  --color-coral: #F43F5E;
  --color-coral-light: #FB7185;
  --color-violet: #7C3AED;
  --color-violet-light: #A78BFA;

  --text-on-dark: #E8F0FE;
  --text-on-dark-muted: #94A3B8;
  --text-on-light: #0F172A;
  --text-on-light-muted: #475569;
  --text-on-amber: #1A1A00;
  --text-on-coral: #fff;
  --text-on-teal: #fff;

  --bg-light: #F8FAFF;
  --bg-white: #FAFBFF;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(11,22,40,0.12), 0 1px 2px rgba(11,22,40,0.08);
  --shadow-md: 0 4px 16px rgba(11,22,40,0.15), 0 2px 6px rgba(11,22,40,0.10);
  --shadow-lg: 0 12px 40px rgba(11,22,40,0.20), 0 4px 12px rgba(11,22,40,0.12);
  --shadow-xl: 0 24px 64px rgba(11,22,40,0.28), 0 8px 20px rgba(11,22,40,0.15);
  --shadow-glow-blue: 0 0 32px rgba(26,86,219,0.35), 0 4px 16px rgba(26,86,219,0.20);
  --shadow-glow-teal: 0 0 32px rgba(13,148,136,0.35), 0 4px 16px rgba(13,148,136,0.20);
  --shadow-glow-amber: 0 0 32px rgba(245,158,11,0.35), 0 4px 16px rgba(245,158,11,0.20);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --header-h: 72px;
  --transition-fast: 180ms ease;
  --transition-mid: 300ms ease;
  --transition-slow: 500ms ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--bg-white);
  color: var(--text-on-light);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  & main { flex: 1; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
}


h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { line-height: 1.7; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition-mid);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  text-decoration: none;

  &.btn--primary {
    background: var(--color-blue);
    color: #fff;
    box-shadow: 0 4px 16px rgba(26,86,219,0.30);

    &:hover {
      background: var(--color-blue-light);
      box-shadow: var(--shadow-glow-blue);
      transform: translateY(-2px);
    }
    &:active { transform: translateY(0); }
  }

  &.btn--outline {
    background: transparent;
    color: var(--color-blue);
    border-color: var(--color-blue);

    &:hover {
      background: var(--color-blue);
      color: #fff;
      transform: translateY(-2px);
    }
  }

  &.btn--outline--light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);

    &:hover {
      background: rgba(255,255,255,0.15);
      border-color: #fff;
      transform: translateY(-2px);
    }
  }

  &.btn--lg { padding: 1rem 2rem; font-size: 1.05rem; }
  &.btn--full { width: 100%; justify-content: center; }
}


.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition-mid), box-shadow var(--transition-mid);

  &.header--glass {
    background: rgba(11,22,40,0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.08);
  }

  &.header--solid {
    background: var(--color-navy);
    box-shadow: var(--shadow-md);
  }

  &.header--scrolled {
    background: rgba(11,22,40,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  }

  & .header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    padding-inline: clamp(1rem, 4vw, 2rem);
    max-width: 1280px;
    margin-inline: auto;
  }

  & .header__logo {
    display: flex;
    align-items: center;
    transition: opacity var(--transition-fast);
    &:hover { opacity: 0.85; }
  }

  & .nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;

    & .nav__link {
      color: rgba(232,240,254,0.85);
      font-weight: 500;
      font-size: 0.92rem;
      padding: 0.5rem 0.85rem;
      border-radius: var(--radius-sm);
      transition: all var(--transition-fast);

      &:hover { color: #fff; background: rgba(255,255,255,0.08); }
      &.nav__link--active { color: #fff; }
    }

    & .nav__cta { margin-left: 0.5rem; }
  }

  & .header__flip-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);

    & span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all var(--transition-mid);
    }

    &:hover { background: rgba(255,255,255,0.1); }
  }

  & .header__flip-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-navy);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: rotateX(-90deg);
    transform-origin: top center;
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
    backface-visibility: hidden;

    &.is-open {
      transform: rotateX(0deg);
    }

    & .header__flip-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      color: #fff;
      font-size: 1.5rem;
      padding: 0.5rem;
      border-radius: var(--radius-sm);
      transition: background var(--transition-fast);
      &:hover { background: rgba(255,255,255,0.1); }
    }

    & .header__flip-link {
      color: rgba(232,240,254,0.85);
      font-size: 1.4rem;
      font-weight: 600;
      padding: 0.75rem 2rem;
      border-radius: var(--radius-md);
      transition: all var(--transition-fast);
      &:hover { color: #fff; background: rgba(255,255,255,0.08); }
    }

    & .header__flip-cta { margin-top: 1rem; font-size: 1.1rem; }
  }
}

@media (max-width: 900px) {
  .header {
    & .nav { display: none; }
    & .header__flip-btn { display: flex; }
    & .header__flip-menu { display: flex; height: fit-content; }
  }
}


.hero {
  min-height: 100vh;
  background: var(--color-navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(26,86,219,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.20) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(13,148,136,0.15) 0%, transparent 50%);
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;

  & .hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26,86,219,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,86,219,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
  }

  & .hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
    padding-block: var(--space-2xl);
    position: relative;
    z-index: 1;
  }

  & .hero__left {
    & .hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(13,148,136,0.15);
      border: 1px solid rgba(13,148,136,0.4);
      color: var(--color-teal-light);
      padding: 0.4rem 1rem;
      border-radius: var(--radius-pill);
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.02em;
      margin-bottom: var(--space-md);
    }

    & .hero__headline {
      color: #fff;
      margin-bottom: var(--space-md);
      background: linear-gradient(135deg, #fff 0%, var(--color-blue-light) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    & .hero__sub {
      color: var(--text-on-dark-muted);
      font-size: 1.05rem;
      margin-bottom: var(--space-lg);
      max-width: 520px;
    }

    & .hero__actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-bottom: var(--space-lg);
    }

    & .hero__trust {
      display: flex;
      gap: 1.5rem;
      flex-wrap: wrap;

      & span {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        color: var(--text-on-dark-muted);
        font-size: 0.85rem;
        font-weight: 500;

        & i { color: var(--color-teal-light); }
      }
    }
  }
}


.card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-mid), box-shadow var(--transition-mid);

  &:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

  &.card--featured {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-md);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl), var(--shadow-glow-blue);

    & .card__header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: var(--space-sm);

      & .card__label {
        color: var(--text-on-dark-muted);
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
      }

      & .card__badge {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.78rem;
        font-weight: 600;
        padding: 0.3rem 0.75rem;
        border-radius: var(--radius-pill);

        &.card__badge--live {
          background: rgba(13,148,136,0.2);
          color: var(--color-teal-light);
          border: 1px solid rgba(13,148,136,0.35);
        }

        & .card__pulse {
          width: 7px;
          height: 7px;
          border-radius: 50%;
          background: var(--color-teal-light);
          animation: pulse 1.8s ease infinite;
        }
      }
    }

    & .card__img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: var(--radius-md);
      margin-bottom: var(--space-md);
    }

    & .card__features {
      list-style: none;
      margin-bottom: var(--space-md);

      & li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: var(--text-on-dark);
        font-size: 0.92rem;
        padding: 0.6rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.07);
        font-weight: 500;

        &:last-child { border-bottom: none; }
        & i { color: var(--color-amber); width: 18px; }
      }
    }

    & .card__note {
      text-align: center;
      color: var(--text-on-dark-muted);
      font-size: 0.75rem;
      margin-top: 0.75rem;
    }
  }

  &.card--benefit {
    padding: var(--space-lg) var(--space-md);
    background: #fff;
    border: 1px solid rgba(11,22,40,0.07);
    box-shadow: var(--shadow-sm), 0 0 0 1px rgba(26,86,219,0.04);

    & h3 { margin-bottom: 0.75rem; color: var(--text-on-light); }
    & p { color: var(--text-on-light-muted); font-size: 0.92rem; }

    & .card__icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: var(--space-md);

      &.card__icon--1 { background: rgba(26,86,219,0.1); color: var(--color-blue); }
      &.card__icon--2 { background: rgba(13,148,136,0.1); color: var(--color-teal); }
      &.card__icon--3 { background: rgba(124,58,237,0.1); color: var(--color-violet); }
      &.card__icon--4 { background: rgba(245,158,11,0.1); color: var(--color-amber); }
    }
  }

  &.card--asset {
    padding: var(--space-lg) var(--space-md);
    text-align: center;
    background: var(--color-navy-mid);
    border: 1px solid rgba(255,255,255,0.08);

    & h4 { color: #fff; margin-bottom: 0.25rem; }

    & .asset__ticker {
      display: inline-block;
      background: rgba(255,255,255,0.08);
      color: var(--text-on-dark-muted);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      padding: 0.2rem 0.6rem;
      border-radius: var(--radius-pill);
      margin-bottom: var(--space-sm);
    }

    & p { color: var(--text-on-dark-muted); font-size: 0.88rem; }

    & .asset__icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto var(--space-sm);

      &.asset__icon--btc { background: rgba(245,158,11,0.15); color: var(--color-amber); }
      &.asset__icon--eth { background: rgba(124,58,237,0.15); color: var(--color-violet-light); }
      &.asset__icon--usdc { background: rgba(26,86,219,0.15); color: var(--color-blue-light); }
      &.asset__icon--ltc { background: rgba(148,163,184,0.15); color: #94A3B8; }
      &.asset__icon--xrp { background: rgba(13,148,136,0.15); color: var(--color-teal-light); }
    }
  }

  &.card--account {
    padding: var(--space-xl) var(--space-lg);
    background: #fff;
    border: 1px solid rgba(11,22,40,0.08);

    & .account__icon {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-md);
      background: rgba(26,86,219,0.1);
      color: var(--color-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: var(--space-md);
    }

    & h3 { margin-bottom: var(--space-sm); }
    & p { color: var(--text-on-light-muted); font-size: 0.92rem; margin-bottom: var(--space-md); }

    & .account__list {
      margin-bottom: var(--space-lg);

      & li {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        padding: 0.4rem 0;
        font-size: 0.9rem;
        color: var(--text-on-light-muted);
        & i { color: var(--color-teal); font-size: 0.85rem; }
      }
    }

    &.card--account--business {
      background: var(--color-navy);
      border-color: rgba(26,86,219,0.3);

      & h3 { color: #fff; }
      & p { color: var(--text-on-dark-muted); }
      & .account__icon { background: rgba(26,86,219,0.2); color: var(--color-blue-light); }
      & .account__list li { color: var(--text-on-dark-muted); & i { color: var(--color-teal-light); } }
    }
  }

  &.card--resource {
    padding: var(--space-lg) var(--space-md);
    background: #fff;
    border: 1px solid rgba(11,22,40,0.07);
    display: flex;
    flex-direction: column;

    & .resource__icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: rgba(26,86,219,0.08);
      color: var(--color-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      margin-bottom: var(--space-md);
    }

    & h4 { margin-bottom: 0.6rem; }
    & p { color: var(--text-on-light-muted); font-size: 0.9rem; flex: 1; margin-bottom: var(--space-md); }
  }

  &.card--value {
    padding: var(--space-xl) var(--space-lg);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);

    & i { font-size: 1.8rem; color: var(--color-amber); margin-bottom: var(--space-md); display: block; }
    & h3 { color: #fff; margin-bottom: 0.75rem; }
    & p { color: var(--text-on-dark-muted); font-size: 0.92rem; }
  }

  &.card--compliance {
    padding: var(--space-lg) var(--space-md);
    background: #fff;
    border: 1px solid rgba(11,22,40,0.07);

    & .compliance__icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      background: rgba(26,86,219,0.08);
      color: var(--color-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      margin-bottom: var(--space-md);
    }

    & h3 { margin-bottom: 0.75rem; }
    & p { color: var(--text-on-light-muted); font-size: 0.9rem; }
  }

  &.card--protection {
    padding: var(--space-lg) var(--space-md);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    text-align: center;

    & i { font-size: 2rem; color: var(--color-teal-light); margin-bottom: var(--space-sm); display: block; }
    & h4 { color: #fff; margin-bottom: 0.6rem; }
    & p { color: var(--text-on-dark-muted); font-size: 0.9rem; }
  }

  &.card--fee-note {
    padding: var(--space-lg);
    background: #fff;
    border: 1px solid rgba(11,22,40,0.07);

    & i { font-size: 1.5rem; color: var(--color-amber); margin-bottom: var(--space-sm); display: block; }
    & h3 { margin-bottom: 0.6rem; }
    & p { color: var(--text-on-light-muted); font-size: 0.9rem; }
  }

  &.card--contact-info {
    padding: var(--space-lg);
    background: #fff;
    border: 1px solid rgba(11,22,40,0.07);
    margin-bottom: var(--space-md);

    & h3 { margin-bottom: var(--space-md); }

    &.card--contact-info--compliance {
      background: var(--color-navy);
      border-color: rgba(26,86,219,0.25);
      & h3 { color: #fff; }
      & p { color: var(--text-on-dark-muted); font-size: 0.9rem; margin-bottom: var(--space-md); }
    }
  }

  &.card--thanks-link {
    padding: var(--space-md);
    background: #fff;
    border: 1px solid rgba(11,22,40,0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-on-light);
    text-decoration: none;

    & i { font-size: 1.5rem; color: var(--color-blue); }
    & span { font-weight: 600; font-size: 0.9rem; }

    &:hover { background: var(--color-navy); color: #fff; & i { color: var(--color-blue-light); } }
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}


.section {
  padding-block: var(--space-2xl);

  & .section__header {
    text-align: center;
    max-width: 680px;
    margin-inline: auto;
    margin-bottom: var(--space-xl);

    & .section__title { margin-bottom: 1rem; }
    & .section__sub { color: var(--text-on-light-muted); font-size: 1.05rem; }

    &.section__header--light {
      & .section__title { color: #fff; }
      & .section__sub { color: var(--text-on-dark-muted); }
    }
  }

  &.section--benefits {
    background: var(--bg-light);
    padding-block: var(--space-2xl);
  }

  &.section--assets {
    background: var(--color-navy);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(26,86,219,0.2) 0%, transparent 70%);
    padding-block: var(--space-2xl);

    & .assets__disclaimer {
      text-align: center;
      color: var(--text-on-dark-muted);
      font-size: 0.82rem;
      margin-top: var(--space-lg);
    }
  }

  &.section--how {
    background: #fff;
    padding-block: var(--space-2xl);
  }

  &.section--accounts {
    background: var(--color-navy-mid);
    background-image: radial-gradient(ellipse at 80% 50%, rgba(124,58,237,0.15) 0%, transparent 60%);
    padding-block: var(--space-2xl);
  }

  &.section--resources {
    background: var(--bg-light);
    padding-block: var(--space-2xl);
  }

  &.section--faq {
    background: #fff;
    padding-block: var(--space-2xl);
  }

  &.section--cta {
    background: var(--color-navy);
    background-image:
      radial-gradient(ellipse at 30% 50%, rgba(26,86,219,0.3) 0%, transparent 60%),
      radial-gradient(ellipse at 70% 50%, rgba(13,148,136,0.2) 0%, transparent 60%);
    padding-block: var(--space-2xl);
  }

  &.section--story-intro { background: #fff; padding-block: var(--space-2xl); }
  &.section--values {
    background: var(--color-navy);
    background-image: radial-gradient(ellipse at 20% 80%, rgba(245,158,11,0.1) 0%, transparent 50%);
    padding-block: var(--space-2xl);
  }
  &.section--timeline { background: var(--bg-light); padding-block: var(--space-2xl); }
  &.section--team-img { background: var(--color-navy-mid); padding-block: var(--space-xl); }
  &.section--fees-intro { background: #fff; padding-block: var(--space-2xl); }
  &.section--fee-tables { background: var(--bg-light); padding-block: var(--space-2xl); }
  &.section--fee-notes { background: #fff; padding-block: var(--space-2xl); }
  &.section--compliance-overview { background: var(--bg-light); padding-block: var(--space-2xl); }
  &.section--kyc-process {
    background: var(--color-navy);
    padding-block: var(--space-2xl);
  }
  &.section--risk-disclosure { background: var(--bg-light); padding-block: var(--space-xl); }
  &.section--consumer-protections {
    background: var(--color-navy-mid);
    padding-block: var(--space-2xl);
  }
  &.section--contact-main { background: var(--bg-light); padding-block: var(--space-2xl); }
  &.section--map { background: #fff; padding-block: var(--space-xl); & h2 { margin-bottom: var(--space-md); } }
  &.section--accessibility { background: var(--bg-light); padding-block: var(--space-xl); }
}


.grid {
  display: grid;
  gap: var(--space-md);

  &.grid--4 { grid-template-columns: repeat(4, 1fr); }
  &.grid--3 { grid-template-columns: repeat(3, 1fr); }
  &.grid--2 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .grid.grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid.grid--3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .grid.grid--4,
  .grid.grid--3,
  .grid.grid--2 { grid-template-columns: 1fr; }
}


.how__steps {
  display: grid;
  gap: var(--space-xl);
}

.how__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-lg);
  align-items: start;

  & .how__num {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(26,86,219,0.15);
    line-height: 1;
    padding-top: 0.25rem;
  }

  & .how__content {
    & .how__img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      margin-bottom: var(--space-md);
      box-shadow: var(--shadow-md);
    }

    & h3 { margin-bottom: 0.75rem; }
    & p { color: var(--text-on-light-muted); font-size: 0.95rem; }
  }
}

@media (max-width: 600px) {
  .how__step { grid-template-columns: 1fr; & .how__num { font-size: 2rem; } }
}


.story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;

  & .story__text {
    & h2 { margin-bottom: var(--space-md); }
    & p { color: var(--text-on-light-muted); margin-bottom: var(--space-md); font-size: 0.97rem; }
  }

  & .story__visual {
    position: relative;

    & .story__img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-xl);
    }

    & .story__stat-card {
      position: absolute;
      bottom: -1.5rem;
      left: -1.5rem;
      background: var(--color-blue);
      color: #fff;
      padding: var(--space-md) var(--space-lg);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-glow-blue);
      display: flex;
      flex-direction: column;
      gap: 0.25rem;

      & i { font-size: 1.3rem; }
      & strong { font-size: 1rem; font-weight: 700; }
      & span { font-size: 0.8rem; opacity: 0.8; }
    }
  }
}

@media (max-width: 768px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__grid .story__visual .story__stat-card { left: 1rem; bottom: 1rem; }
}


.timeline {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  position: relative;

  &::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-blue), var(--color-teal));
  }
}

.timeline__item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--space-md);
  align-items: start;

  & .timeline__marker {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-glow-blue);
    position: relative;
    z-index: 1;
  }

  & .timeline__body {
    padding-top: 0.75rem;
    & h3 { margin-bottom: 0.6rem; }
    & p { color: var(--text-on-light-muted); font-size: 0.92rem; }
  }
}


.team-img__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);

  & .team-img__photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);

    &:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
  }
}

@media (max-width: 768px) {
  .team-img__grid { grid-template-columns: 1fr; }
  .team-img__grid .team-img__photo { height: 200px; }
}


.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);

  & .cta__content {
    & h2 { color: #fff; margin-bottom: var(--space-md); }
    & p { color: var(--text-on-dark-muted); margin-bottom: var(--space-lg); font-size: 0.97rem; }
    & .cta__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  }

  & .cta__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
  }
}

.cta__simple {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;

  & h2 { color: #fff; margin-bottom: var(--space-md); }
  & p { color: var(--text-on-dark-muted); margin-bottom: var(--space-lg); font-size: 0.97rem; }
  & .cta__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .cta__inner { grid-template-columns: 1fr; }
}


.faq {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  background: #fff;
  border: 1px solid rgba(11,22,40,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-mid);

  &:hover { box-shadow: var(--shadow-md); }

  & .faq__question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem var(--space-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-on-light);
    text-align: left;
    transition: color var(--transition-fast);

    &:hover { color: var(--color-blue); }

    & .faq__icon {
      flex-shrink: 0;
      transition: transform var(--transition-mid);
      color: var(--color-blue);
    }

    &[aria-expanded="true"] {
      color: var(--color-blue);
      & .faq__icon { transform: rotate(180deg); }
    }
  }

  & .faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding var(--transition-mid);
    padding: 0 var(--space-md);

    & p { color: var(--text-on-light-muted); font-size: 0.93rem; padding-bottom: var(--space-md); }

    &.is-open {
      max-height: 600px;
      padding-top: 0;
    }
  }
}


.assets-swiper {
  padding-bottom: 3rem !important;

  & .swiper-pagination-bullet { background: rgba(255,255,255,0.4); }
  & .swiper-pagination-bullet-active { background: var(--color-blue-light); }
}


.resource__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-blue);
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap var(--transition-fast), color var(--transition-fast);

  &:hover { color: var(--color-blue-light); gap: 0.7rem; }
}


.page-hero {
  padding-top: calc(var(--header-h) + var(--space-2xl));
  padding-bottom: var(--space-2xl);
  background: var(--color-navy);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(26,86,219,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(26,86,219,0.06) 1px, transparent 1px);
    background-size: 60px 60px;
  }

  &.page-hero--story {
    background-image: radial-gradient(ellipse at 70% 50%, rgba(124,58,237,0.2) 0%, transparent 60%);
  }

  &.page-hero--fees {
    background-image: radial-gradient(ellipse at 30% 50%, rgba(245,158,11,0.15) 0%, transparent 60%);
  }

  &.page-hero--compliance {
    background-image: radial-gradient(ellipse at 60% 30%, rgba(13,148,136,0.2) 0%, transparent 60%);
  }

  &.page-hero--contact {
    background-image: radial-gradient(ellipse at 40% 60%, rgba(244,63,94,0.15) 0%, transparent 60%);
  }

  & .page-hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;

    & .page-hero__eyebrow {
      display: inline-block;
      color: var(--color-teal-light);
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    & h1 { color: #fff; margin-bottom: var(--space-md); }
    & p { color: var(--text-on-dark-muted); font-size: 1.05rem; max-width: 580px; }
  }
}


.fees-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;

  & .fees-intro__text {
    & h2 { margin-bottom: var(--space-md); }
    & p { color: var(--text-on-light-muted); margin-bottom: var(--space-md); font-size: 0.95rem; }
  }

  & .fees-intro__note {
    display: flex;
    gap: var(--space-md);
    background: rgba(245,158,11,0.08);
    border: 1px solid rgba(245,158,11,0.25);
    border-radius: var(--radius-lg);
    padding: var(--space-md);

    & i { color: var(--color-amber); font-size: 1.3rem; flex-shrink: 0; margin-top: 0.2rem; }
    & strong { display: block; margin-bottom: 0.4rem; }
    & p { color: var(--text-on-light-muted); font-size: 0.88rem; }
  }
}

@media (max-width: 768px) {
  .fees-intro { grid-template-columns: 1fr; }
}

.fees__section-title {
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);

  &:first-child { margin-top: 0; }
}

.fee-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-md);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.92rem;

  & thead {
    background: var(--color-navy);
    color: #fff;

    & th {
      padding: 1rem var(--space-md);
      text-align: left;
      font-weight: 600;
      font-size: 0.85rem;
      letter-spacing: 0.03em;
      white-space: nowrap;
    }
  }

  & tbody {
    & tr {
      border-bottom: 1px solid rgba(11,22,40,0.07);
      transition: background var(--transition-fast);

      &:hover { background: rgba(26,86,219,0.04); }
      &:last-child { border-bottom: none; }
    }

    & td {
      padding: 0.9rem var(--space-md);
      color: var(--text-on-light-muted);
      vertical-align: top;

      &:first-child { color: var(--text-on-light); font-weight: 500; }
    }
  }
}

.fee-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

@media (max-width: 900px) {
  .fee-notes { grid-template-columns: 1fr; }
}


.kyc-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.kyc-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;

  & .kyc-step__num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-blue);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    box-shadow: var(--shadow-glow-blue);
  }

  & h4 { color: #fff; margin-bottom: 0.5rem; font-size: 0.95rem; }
  & p { color: var(--text-on-dark-muted); font-size: 0.82rem; }
}

@media (max-width: 900px) {
  .kyc-steps { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 500px) {
  .kyc-steps { grid-template-columns: 1fr; }
}

.kyc-note {
  display: flex;
  gap: var(--space-sm);
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);

  & i { color: var(--color-amber); flex-shrink: 0; margin-top: 0.2rem; }
  & p { color: var(--text-on-dark-muted); font-size: 0.9rem; }
}


.risk-box {
  background: #fff;
  border: 2px solid rgba(244,63,94,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);

  & .risk-box__header {
    background: rgba(244,63,94,0.08);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    border-bottom: 1px solid rgba(244,63,94,0.15);

    & i { color: var(--color-coral); font-size: 1.3rem; }
    & h2 { font-size: 1.2rem; color: var(--color-coral); }
  }

  & .risk-box__content {
    padding: var(--space-lg);
    & p { color: var(--text-on-light-muted); font-size: 0.92rem; margin-bottom: var(--space-sm); }
  }
}


.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .compliance-grid { grid-template-columns: 1fr; }
}


.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;

  & h2 { margin-bottom: 0.75rem; }
  & > div > p { color: var(--text-on-light-muted); font-size: 0.95rem; margin-bottom: var(--space-lg); }
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
}

.contact-detail {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(11,22,40,0.07);

  &:last-child { border-bottom: none; }

  & i { color: var(--color-blue); font-size: 1.1rem; margin-top: 0.2rem; flex-shrink: 0; }

  & strong { display: block; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-on-light-muted); margin-bottom: 0.2rem; }

  & p, & a {
    color: var(--text-on-light);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
  }

  & a:hover { color: var(--color-blue); }
}


.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;

  & label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-on-light);
  }

  & input, & textarea, & select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid rgba(11,22,40,0.15);
    border-radius: var(--radius-md);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-on-light);
    background: #fff;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    min-height: 44px;

    &:focus {
      outline: none;
      border-color: var(--color-blue);
      box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
    }

    &::placeholder { color: #94A3B8; }
  }

  & textarea { resize: vertical; min-height: 120px; }

  &.form-group--checkbox {
    & .checkbox-label {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      cursor: pointer;
      font-size: 0.88rem;
      color: var(--text-on-light-muted);
      line-height: 1.5;

      & input[type="checkbox"] { display: none; }

      & .checkbox-custom {
        width: 20px;
        height: 20px;
        min-width: 20px;
        border: 2px solid rgba(11,22,40,0.2);
        border-radius: 4px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition-fast);
        margin-top: 0.1rem;

        &::after {
          content: '\2713';
          font-size: 0.75rem;
          color: #fff;
          opacity: 0;
          transition: opacity var(--transition-fast);
        }
      }

      & input[type="checkbox"]:checked ~ .checkbox-custom {
        background: var(--color-blue);
        border-color: var(--color-blue);
        &::after { opacity: 1; }
      }

      & a { color: var(--color-blue); text-decoration: underline; }
    }
  }
}


.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(11,22,40,0.08);
}


.accessibility-box {
  display: flex;
  gap: var(--space-lg);
  background: #fff;
  border: 1px solid rgba(11,22,40,0.08);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);

  & .accessibility-box__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 50%;
    background: rgba(26,86,219,0.1);
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
  }

  & .accessibility-box__content {
    & h2 { margin-bottom: var(--space-sm); font-size: 1.3rem; }
    & p { color: var(--text-on-light-muted); font-size: 0.93rem; margin-bottom: 0.75rem; & a { color: var(--color-blue); } }
  }

  & .accessibility-box__items {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: var(--space-md);

    & span {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-on-light-muted);
      background: var(--bg-light);
      padding: 0.4rem 0.85rem;
      border-radius: var(--radius-pill);

      & i { color: var(--color-blue); }
    }
  }
}

@media (max-width: 600px) {
  .accessibility-box { flex-direction: column; }
}


.thanks-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-blue) 50%, var(--color-teal) 100%);
  padding: var(--space-3xl) var(--space-sm);
  text-align: center;
  padding-top: calc(var(--header-h) + var(--space-3xl));

  & .thanks-hero__content {
    max-width: 600px;
    margin-inline: auto;

    & .thanks-hero__icon {
      font-size: 4rem;
      color: rgba(255,255,255,0.9);
      margin-bottom: var(--space-md);
    }

    & h1 { color: #fff; margin-bottom: var(--space-md); }
    & p { color: rgba(255,255,255,0.8); font-size: 1.1rem; }
  }
}

.thanks-next {
  padding-block: var(--space-2xl);
  background: var(--bg-white);

  & .thanks-next__content {
    max-width: 700px;
    margin-inline: auto;
    text-align: center;

    & h2 { margin-bottom: var(--space-md); }
    & p { color: var(--text-on-light-muted); margin-bottom: var(--space-sm); }
  }

  & .thanks-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-block: var(--space-lg);
  }

  & .thanks-home-btn { margin-top: var(--space-md); }
}

@media (max-width: 600px) {
  .thanks-next .thanks-links { grid-template-columns: 1fr; }
}


.footer {
  background: var(--color-navy);
  position: relative;
  overflow: hidden;
  margin-top: auto;

  & .footer__pattern {
    position: absolute;
    inset: 0;
    background-image:
      radial-gradient(ellipse at 10% 50%, rgba(26,86,219,0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 90% 50%, rgba(13,148,136,0.10) 0%, transparent 50%);
    pointer-events: none;
  }

  & .footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
  }

  & .footer__brand {
    & img { margin-bottom: var(--space-md); }

    & p {
      color: var(--text-on-dark-muted);
      font-size: 0.88rem;
      line-height: 1.6;
      margin-bottom: var(--space-md);
    }

    & address {
      color: var(--text-on-dark-muted);
      font-size: 0.85rem;
      line-height: 1.8;

      & a {
        color: var(--text-on-dark-muted);
        transition: color var(--transition-fast);
        &:hover { color: var(--color-blue-light); }
      }
    }
  }

  & .footer__col {
    & h4 {
      color: #fff;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: var(--space-md);
    }

    & a, & p.footer__reg {
      display: block;
      color: var(--text-on-dark-muted);
      font-size: 0.88rem;
      padding: 0.3rem 0;
      transition: color var(--transition-fast);
    }

    & a:hover { color: var(--color-blue-light); }

    & .footer__badges {
      display: flex;
      gap: 0.5rem;
      flex-wrap: wrap;
      margin-top: var(--space-sm);
    }
  }

  & .footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.07);
    padding-block: var(--space-lg);
    position: relative;
    z-index: 1;

    & .footer__disclaimer {
      color: var(--text-on-dark-muted);
      font-size: 0.78rem;
      line-height: 1.6;
      margin-bottom: 0.75rem;
    }

    & .footer__copy {
      color: rgba(148,163,184,0.6);
      font-size: 0.78rem;
    }
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-on-dark-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .footer .footer__grid {
    grid-template-columns: 1fr 1fr;
    & .footer__brand { grid-column: 1 / -1; }
  }
}

@media (max-width: 500px) {
  .footer .footer__grid { grid-template-columns: 1fr; }
}


.legal-main {
  padding-top: var(--header-h);
  min-height: 100vh;
  background: var(--bg-light);
}

.legal-container {
  max-width: 860px;
  padding-block: var(--space-2xl);
}

.legal-header {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 2px solid rgba(11,22,40,0.08);

  & h1 { margin-bottom: 0.5rem; }

  & .legal-meta {
    color: var(--text-on-light-muted);
    font-size: 0.88rem;
  }
}

.legal-body {
  & > p {
    color: var(--text-on-light-muted);
    margin-bottom: var(--space-md);
    font-size: 0.95rem;
  }

  & h2 {
    font-size: 1.2rem;
    margin-top: var(--space-xl);
    margin-bottom: var(--space-sm);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(11,22,40,0.08);
  }

  & h3 {
    font-size: 1rem;
    margin-top: var(--space-md);
    margin-bottom: 0.5rem;
    color: var(--text-on-light);
  }

  & p {
    color: var(--text-on-light-muted);
    font-size: 0.93rem;
    margin-bottom: var(--space-sm);
    line-height: 1.75;
  }

  & ul {
    margin-bottom: var(--space-md);
    padding-left: 1rem;

    & li {
      color: var(--text-on-light-muted);
      font-size: 0.93rem;
      padding: 0.35rem 0;
      border-bottom: 1px solid rgba(11,22,40,0.05);
      line-height: 1.65;

      &:last-child { border-bottom: none; }
    }
  }

  & address {
    background: var(--bg-light);
    border: 1px solid rgba(11,22,40,0.08);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    font-size: 0.93rem;
    color: var(--text-on-light-muted);
    line-height: 1.8;
    margin-top: var(--space-sm);
    & a { color: var(--color-blue); }
  }

  & a { color: var(--color-blue); text-decoration: underline; }
}

.legal-body--numbered {
  counter-reset: none;
}

.legal-section {
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(11,22,40,0.07);

  &:last-child { border-bottom: none; }
}

.legal-info-block {
  background: #fff;
  border: 1px solid rgba(11,22,40,0.08);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);

  & p {
    padding: 0.4rem 0;
    border-bottom: 1px solid rgba(11,22,40,0.06);
    font-size: 0.93rem;
    color: var(--text-on-light-muted);
    &:last-child { border-bottom: none; }
    & strong { color: var(--text-on-light); }
  }
}

.legal-notice {
  background: rgba(245,158,11,0.08);
  border-left: 3px solid var(--color-amber);
  padding: var(--space-sm) var(--space-md);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-on-light-muted);
  font-size: 0.88rem;
}

.risk-disclosure-box {
  background: rgba(244,63,94,0.04);
  border: 1px solid rgba(244,63,94,0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);

  & p { color: var(--text-on-light-muted); font-size: 0.93rem; margin-bottom: 0.75rem; &:last-child { margin-bottom: 0; } }
}


.cookie-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-block: var(--space-md);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.88rem;

  & thead {
    background: var(--color-navy);
    & th { padding: 0.85rem var(--space-md); text-align: left; color: #fff; font-weight: 600; white-space: nowrap; }
  }

  & tbody {
    & tr {
      border-bottom: 1px solid rgba(11,22,40,0.07);
      &:last-child { border-bottom: none; }
    }
    & td { padding: 0.85rem var(--space-md); color: var(--text-on-light-muted); vertical-align: top; }
  }
}


@media (max-width: 900px) {
  .hero .hero__grid {
    grid-template-columns: 1fr;
    padding-block: var(--space-xl);
    gap: var(--space-lg);
  }
}


@media (max-width: 768px) {
  .kyc-steps { grid-template-columns: repeat(2, 1fr); }
  .team-img__grid { grid-template-columns: 1fr; }
  .how__step { grid-template-columns: 1fr; }
}


[data-aos] { will-change: transform, opacity; }