/* =====================================================================
   XS × Expert Advisor — landing page (v1, visual-first revision)
   Mobile-first. XS identity: Mint Green / Teal / XS Blue / Deep Navy.
   ===================================================================== */

/* ---------------------------------------------------------------
   Tokens
   --------------------------------------------------------------- */
:root {
  /* XS brand */
  --mint:        #34be86;
  --mint-bright: #4fd6a0;
  --mint-soft:   #8fe9c4;
  --teal:        #12a3a0;
  --xs-blue:     #1e63c8;
  --navy:        #123a6e;
  --navy-deep:   #0b2340;
  --midnight:    #061527;
  --ink:         #0d1b2a;

  /* Neutrals */
  --white:       #ffffff;
  --offwhite:    #f6f9f8;
  --lightmint:   #eef8f3;
  --line:        #e2ebe7;
  --muted:       #5c6c78;
  --muted-dark:  rgba(226, 244, 236, .72);

  /* Accents */
  --gold:        #e9b64c;
  --line-green:  #06c755;

  /* Layout */
  --shell:       1200px;
  --pad:         20px;
  --r-sm:        10px;
  --r:           16px;
  --r-lg:        22px;
  --r-xl:        28px;

  --shadow-sm:   0 2px 10px rgba(11, 35, 64, .06);
  --shadow:      0 14px 38px rgba(11, 35, 64, .10);
  --shadow-lg:   0 28px 70px rgba(6, 21, 39, .38);

  --ease:        cubic-bezier(.22, .68, .32, 1);

  --font-th:     'IBM Plex Sans Thai', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-en:     'Manrope', var(--font-th);
}

/* ---------------------------------------------------------------
   Reset / base
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-th);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -.01em;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 2px solid var(--mint-bright);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: 12px 18px;
  background: var(--mint);
  color: #04231a;
  font-weight: 600;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; }

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.center { text-align: center; margin-top: 30px; }
.center--row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.center--row .btn { flex: 1 1 240px; max-width: 320px; }

.lead {
  margin-top: 12px;
  color: var(--muted);
  font-size: clamp(.94rem, 2.6vw, 1.02rem);
}
.lead.on-dark { color: var(--muted-dark); }

.note {
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--muted);
  opacity: .85;
}

/* ---------------------------------------------------------------
   Reveal (only active when JS runs)
   --------------------------------------------------------------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.js .reveal.is-in { opacity: 1; transform: none; }

.js .accts .reveal:nth-child(2),
.js .steps .reveal:nth-child(2) { transition-delay: .07s; }
.js .accts .reveal:nth-child(3),
.js .steps .reveal:nth-child(3) { transition-delay: .14s; }
.js .accts .reveal:nth-child(4),
.js .steps .reveal:nth-child(4) { transition-delay: .21s; }
.js .accts .reveal:nth-child(5) { transition-delay: .28s; }

/* ---------------------------------------------------------------
   Buttons
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-th);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background-color .22s var(--ease), border-color .22s var(--ease), color .22s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 15px 30px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--mint {
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-bright) 55%, var(--teal) 100%);
  color: #04241a;
  box-shadow: 0 10px 26px rgba(52, 190, 134, .30);
}
.btn--mint:hover { box-shadow: 0 16px 36px rgba(52, 190, 134, .42); }

.btn--outline {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(143, 233, 196, .40);
  color: #e8f7f0;
}
.btn--outline:hover { border-color: var(--mint-bright); background: rgba(52, 190, 134, .14); }

.btn--outline-dark {
  background: transparent;
  border-color: rgba(18, 58, 110, .28);
  color: var(--navy);
}
.btn--outline-dark:hover {
  border-color: var(--mint);
  color: var(--teal);
  background: rgba(52, 190, 134, .08);
}

.btn--ghost {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(255, 255, 255, .18);
  color: #eaf5f1;
}

.btn--navy {
  background: var(--midnight);
  color: #eafaf3;
  box-shadow: 0 14px 32px rgba(6, 21, 39, .32);
}

.btn--clear {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn--clear:hover { background: rgba(255, 255, 255, .26); }

.btn--line { background: var(--line-green); color: #fff; box-shadow: 0 10px 24px rgba(6, 199, 85, .28); }
.btn--line-solid { background: var(--line-green); color: #fff; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--mint-bright);
  transition: gap .22s var(--ease);
}
.link-arrow:hover { gap: 12px; }

/* ---------------------------------------------------------------
   Eyebrow / headings
   --------------------------------------------------------------- */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--mint), var(--teal));
  flex: none;
}
.eyebrow--light { color: var(--mint-soft); }
.eyebrow--light::before { background: linear-gradient(90deg, var(--mint-bright), rgba(79, 214, 160, .1)); }

.head { max-width: 700px; margin-bottom: 34px; }
.head--center { margin-inline: auto; text-align: center; }
.head--center .eyebrow { justify-content: center; }
h2 { font-size: clamp(1.7rem, 5.4vw, 2.7rem); }
h2 em { font-style: normal; color: var(--teal); }
.on-dark { color: #eef9f4; }
.on-dark em { color: var(--mint-bright) !important; }

/* ---------------------------------------------------------------
   Sections
   --------------------------------------------------------------- */
.section { padding: clamp(48px, 8vw, 96px) 0; position: relative; }
.section--light      { background: linear-gradient(180deg, var(--offwhite) 0%, var(--lightmint) 100%); }
.section--white      { background: var(--white); }
.section--light-mint { background: linear-gradient(180deg, var(--white) 0%, #f2faf6 100%); }
.section--mint-soft  { background: linear-gradient(180deg, #eaf7f1 0%, var(--white) 100%); }

/* Split layout: reserved visual + concise copy */
.split { display: grid; gap: clamp(26px, 5vw, 48px); }
.split__copy { min-width: 0; }

/* ---------------------------------------------------------------
   IMAGE PLACEHOLDER SYSTEM
   Swap <div class="ph …"> for <img class="ph-img …"> — same box.
   --------------------------------------------------------------- */
.ph, .ph-img {
  position: relative;
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
}

/* Real image: same box as the placeholder it replaces. */
.ph-img {
  display: block;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(160deg, var(--lightmint) 0%, #dff0e8 100%);
  border: 1px solid rgba(52, 190, 134, .26);
  box-shadow: var(--shadow);
}
.ph-img--tall { aspect-ratio: 4 / 3.4; }
.ph-img--xl   { aspect-ratio: 1 / 1; }

/* Dark sections: mint-edged, glow-backed. */
.section--benefits .ph-img,
.ph-img--hero {
  background: linear-gradient(160deg, rgba(19, 47, 78, .9) 0%, rgba(7, 24, 43, .96) 100%);
  border-color: rgba(143, 233, 196, .30);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(52, 190, 134, .16);
}

.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  aspect-ratio: 4 / 3;
  padding: 22px;
  text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(52, 190, 134, .13) 0%, transparent 62%),
    linear-gradient(160deg, #ffffff 0%, var(--lightmint) 100%);
  border: 1.5px dashed rgba(52, 190, 134, .42);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .6), var(--shadow-sm);
}
.ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 58, 110, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 58, 110, .05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 0%, transparent 76%);
  pointer-events: none;
}
.ph__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: var(--teal);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(52, 190, 134, .34);
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(52, 190, 134, .16);
}
.ph__label {
  position: relative;
  max-width: 92%;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.6;
  color: var(--navy);
  opacity: .78;
}

/* Dark variant for dark sections */
.ph--dark {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(52, 190, 134, .18) 0%, transparent 62%),
    linear-gradient(160deg, rgba(19, 47, 78, .78) 0%, rgba(7, 24, 43, .92) 100%);
  border-color: rgba(143, 233, 196, .34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), var(--shadow-lg);
}
.ph--dark::before {
  background-image:
    linear-gradient(rgba(143, 233, 196, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 233, 196, .07) 1px, transparent 1px);
}
.ph--dark .ph__mark {
  color: var(--mint-bright);
  background: rgba(10, 30, 52, .8);
  border-color: rgba(143, 233, 196, .3);
  box-shadow: none;
}
.ph--dark .ph__label { color: var(--mint-soft); opacity: .9; }

.ph--tall { aspect-ratio: 4 / 3.4; }
.ph--xl   { aspect-ratio: 1 / 1; }

/* ---------------------------------------------------------------
   01 · TradingView ticker
   --------------------------------------------------------------- */
.ticker {
  position: relative;
  z-index: 3;
  background: var(--midnight);
  border-bottom: 1px solid rgba(52, 190, 134, .16);
  overflow: hidden;
}
.ticker .tradingview-widget-container { max-width: 100%; }
.ticker iframe { display: block !important; }

/* ---------------------------------------------------------------
   02 · Header — deep navy, blends into the hero
   --------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(180deg, rgba(7, 26, 46, .90) 0%, rgba(6, 21, 39, .78) 100%);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(143, 233, 196, .12);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.header.is-scrolled {
  background: linear-gradient(180deg, rgba(5, 18, 34, .97) 0%, rgba(4, 14, 26, .95) 100%);
  border-bottom-color: rgba(52, 190, 134, .26);
  box-shadow: 0 12px 34px rgba(2, 8, 16, .48);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: #eef9f4;
}
.brand img { width: 36px; height: 36px; border-radius: 9px; object-fit: cover; }
.brand__text {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

.nav { display: none; }
.header__cta { display: none; }

.burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 40px;
  padding: 0 9px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(143, 233, 196, .20);
  border-radius: 11px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: #e6f6ef;
  transition: transform .28s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 90; visibility: hidden; pointer-events: none; }
.drawer.is-open { visibility: visible; pointer-events: auto; }
.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 24, .62);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.drawer.is-open .drawer__scrim { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  padding: 20px 20px calc(24px + env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  background: linear-gradient(170deg, #0a1e35 0%, var(--midnight) 100%);
  border-left: 1px solid rgba(143, 233, 196, .14);
  transform: translateX(100%);
  transition: transform .34s var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: none; }
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}
.drawer__title {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--mint-soft);
}
.drawer__close {
  width: 36px;
  height: 36px;
  font-size: 26px;
  line-height: 1;
  color: #e6f6ef;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  cursor: pointer;
}
.drawer__nav { display: flex; flex-direction: column; padding: 8px 0; }
.drawer__nav a {
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  color: #e6f4ee;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
}
.drawer__nav a:hover { color: var(--mint-bright); padding-left: 8px; }
.drawer__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

body.is-locked { overflow: hidden; }

/* ---------------------------------------------------------------
   03 · Hero
   --------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 8vw, 88px) 0 clamp(46px, 8vw, 92px);
  background:
    radial-gradient(120% 80% at 80% 0%, #0e2c4c 0%, transparent 62%),
    linear-gradient(165deg, #0a2038 0%, var(--midnight) 55%, #040f1e 100%);
  isolation: isolate;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 233, 196, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 233, 196, .055) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 62% 34%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 62% 34%, #000 0%, transparent 78%);
  z-index: -1;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: -1;
  pointer-events: none;
}
.hero__glow--mint {
  width: 500px; height: 500px;
  top: -150px; right: -130px;
  background: radial-gradient(circle, rgba(52, 190, 134, .46) 0%, transparent 68%);
}
.hero__glow--blue {
  width: 430px; height: 430px;
  bottom: -180px; left: -150px;
  background: radial-gradient(circle, rgba(30, 99, 200, .36) 0%, transparent 70%);
}

.hero__inner { display: grid; gap: clamp(30px, 5vw, 48px); }

.hero__title {
  font-size: clamp(2.15rem, 9vw, 4.4rem);
  font-weight: 700;
  line-height: 1.12;
  color: #f2fbf7;
  letter-spacing: -.025em;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--mint-bright) 0%, var(--mint-soft) 45%, #7fc4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 480px;
  margin-top: 16px;
  color: var(--muted-dark);
  font-size: clamp(.95rem, 3.1vw, 1.06rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero__actions .btn { flex: 1 1 100%; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.chip {
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 500;
  color: #d6ece3;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(143, 233, 196, .22);
  border-radius: 999px;
}
.chip--gold {
  color: #f8e3b2;
  border-color: rgba(233, 182, 76, .40);
  background: rgba(233, 182, 76, .10);
}

/* Hero visual stage */
.hero__visual { position: relative; }
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(143, 233, 196, .16);
  pointer-events: none;
}
.hero__ring--a { width: 300px; height: 300px; top: -30px; right: -60px; }
.hero__ring--b {
  width: 210px; height: 210px; bottom: -40px; left: -54px;
  border-color: rgba(30, 99, 200, .26);
}

.hero__visual .ph-img--hero { aspect-ratio: 4 / 3.1; }

.hero__visual .ph--hero {
  aspect-ratio: 4 / 3.1;
  background:
    radial-gradient(120% 90% at 62% 8%, rgba(52, 190, 134, .24) 0%, transparent 60%),
    linear-gradient(155deg, rgba(20, 52, 86, .82) 0%, rgba(6, 22, 40, .94) 100%);
  border-color: rgba(143, 233, 196, .38);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .05), var(--shadow-lg);
}
.hero__visual .ph--hero::before {
  background-image:
    linear-gradient(rgba(143, 233, 196, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 233, 196, .08) 1px, transparent 1px);
}
.hero__visual .ph--hero .ph__mark {
  color: var(--mint-bright);
  background: rgba(9, 28, 50, .82);
  border-color: rgba(143, 233, 196, .32);
  box-shadow: none;
}
.hero__visual .ph--hero .ph__label { color: var(--mint-soft); opacity: .92; }

/* Rebate mini-panel overlapping the reserved image area */
.rcard {
  position: relative;
  z-index: 2;
  margin: -46px auto 0;
  width: min(320px, 88%);
  padding: 14px 15px 12px;
  border-radius: var(--r-lg);
  background: linear-gradient(160deg, rgba(19, 47, 78, .96) 0%, rgba(7, 24, 43, .98) 100%);
  border: 1px solid rgba(143, 233, 196, .26);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}
.rcard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.rcard__logo { width: 74px; height: auto; filter: brightness(1.12); }
.rcard__tag {
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--mint-soft);
  padding: 4px 9px;
  border: 1px solid rgba(143, 233, 196, .30);
  border-radius: 999px;
}
.rcard__rows { display: flex; flex-direction: column; margin-top: 10px; }
.rcard__rows li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, .04);
}
.rcard__rows li + li { margin-top: 5px; }
.rcard__rows li.is-gold {
  background: linear-gradient(90deg, rgba(233, 182, 76, .18), rgba(233, 182, 76, .04));
  border: 1px solid rgba(233, 182, 76, .30);
}
.rcard__rows b {
  flex: 1;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  color: #e7f5ef;
}
.rcard__rows strong {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 14px;
  color: var(--mint-bright);
}
.rcard__rows li.is-gold strong { color: #f5cd77; }
.dot { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.dot--mint { background: var(--mint-bright); }
.dot--gold { background: var(--gold); }
.dot--teal { background: #35d6d2; }

.float {
  position: absolute;
  z-index: 3;
  padding: 7px 13px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(4, 14, 26, .45);
}
.float--vip {
  top: 12px; right: 10px;
  color: #04241a;
  background: linear-gradient(120deg, var(--mint-bright), var(--mint));
}
.float--mt {
  top: 12px; left: 10px;
  color: #cfe4ff;
  background: rgba(30, 99, 200, .40);
  border: 1px solid rgba(110, 168, 255, .34);
}

/* ---------------------------------------------------------------
   04 · Overview — concise benefit list
   --------------------------------------------------------------- */
.benefits-list { display: flex; flex-direction: column; gap: 2px; margin-top: 22px; }
.benefits-list li {
  position: relative;
  padding: 14px 0 14px 34px;
  border-top: 1px solid var(--line);
}
.benefits-list li:last-child { border-bottom: 1px solid var(--line); }
.benefits-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 21px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 4px rgba(52, 190, 134, .16);
}
.benefits-list b {
  display: block;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy-deep);
}
.benefits-list span {
  display: block;
  margin-top: 2px;
  font-size: .92rem;
  color: var(--muted);
}

.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tags li {
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--teal);
  background: var(--white);
  border: 1px solid rgba(52, 190, 134, .26);
  border-radius: 9px;
}

/* ---------------------------------------------------------------
   05 · Rebate
   --------------------------------------------------------------- */
.section--rebate {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(100% 70% at 20% 0%, #0f3155 0%, transparent 60%),
    linear-gradient(160deg, #0a2139 0%, var(--midnight) 100%);
}
.rebate__glow {
  position: absolute;
  width: 480px; height: 480px;
  right: -160px; top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 190, 134, .28) 0%, transparent 68%);
  filter: blur(80px);
  pointer-events: none;
}
.rebate__inner { position: relative; display: grid; gap: 30px; }
.rebate__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.rebate__actions .btn { flex: 1 1 200px; }

.rebate__table {
  padding: 18px 16px 16px;
  border-radius: var(--r-xl);
  background: linear-gradient(160deg, rgba(20, 50, 82, .82) 0%, rgba(6, 22, 40, .92) 100%);
  border: 1px solid rgba(143, 233, 196, .20);
  box-shadow: var(--shadow-lg);
}
.rrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 15px;
  border-radius: var(--r);
  background: rgba(255, 255, 255, .04);
  transition: transform .25s var(--ease), background-color .25s var(--ease);
}
.rrow + .rrow { margin-top: 9px; }
.rrow:hover { transform: translateX(4px); background: rgba(255, 255, 255, .07); }
.rrow__sym {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .98rem;
  font-weight: 600;
  color: #e6f4ee;
}
.rrow strong {
  font-family: var(--font-en);
  font-size: clamp(1.15rem, 4.2vw, 1.45rem);
  font-weight: 800;
  color: var(--mint-bright);
  white-space: nowrap;
}
.rrow strong i {
  font-style: normal;
  font-size: .6em;
  font-weight: 600;
  color: rgba(214, 236, 227, .55);
}
.rrow--gold {
  padding: 19px 15px;
  background: linear-gradient(100deg, rgba(233, 182, 76, .20), rgba(233, 182, 76, .04));
  border: 1px solid rgba(233, 182, 76, .36);
  box-shadow: 0 12px 34px rgba(233, 182, 76, .12);
}
.rrow--gold strong { color: #f7d488; font-size: clamp(1.35rem, 5.4vw, 1.8rem); }

/* Symbol markers — decorative, not market data */
.ico {
  width: 26px;
  height: 26px;
  flex: none;
  border-radius: 8px;
  border: 1px solid rgba(143, 233, 196, .26);
  background: rgba(255, 255, 255, .06);
  position: relative;
}
.ico::after {
  content: '';
  position: absolute;
  inset: 7px;
  border-radius: 50%;
}
.ico--gold { border-color: rgba(233, 182, 76, .5); }
.ico--gold::after { background: linear-gradient(140deg, #f7d488, var(--gold)); }
.ico--fx::after   { background: linear-gradient(140deg, var(--mint-bright), var(--mint)); }
.ico--oil::after  { background: linear-gradient(140deg, #4fe0dc, var(--teal)); }
.ico--btc::after  { background: linear-gradient(140deg, #8fbcff, var(--xs-blue)); }

.pill {
  padding: 3px 9px;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .12em;
  color: #2c1e02;
  background: var(--gold);
  border-radius: 999px;
}
.rebate__terms {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12px;
  color: rgba(214, 236, 227, .55);
}

/* ---------------------------------------------------------------
   06 · Accounts
   --------------------------------------------------------------- */
.accts { display: grid; gap: 12px; }
.acct {
  position: relative;
  padding: 20px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.acct:hover {
  transform: translateY(-5px);
  border-color: rgba(52, 190, 134, .40);
  box-shadow: var(--shadow);
}
.acct--featured {
  border-color: rgba(52, 190, 134, .48);
  background: linear-gradient(170deg, #ffffff 0%, #eefaf4 100%);
  box-shadow: 0 16px 40px rgba(52, 190, 134, .16);
}
.acct__flag {
  position: absolute;
  top: 12px; right: 12px;
  padding: 4px 10px;
  font-size: 10.5px;
  font-weight: 600;
  color: #04241a;
  background: linear-gradient(120deg, var(--mint-bright), var(--mint));
  border-radius: 999px;
}
.acct__name {
  display: block;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
}
.acct h3 { margin: 6px 0 10px; font-size: 1.1rem; color: var(--navy-deep); }
.acct ul { display: flex; flex-direction: column; gap: 7px; }
.acct li {
  position: relative;
  padding-left: 20px;
  font-size: .89rem;
  line-height: 1.6;
  color: var(--muted);
}
.acct li::before {
  content: '';
  position: absolute;
  left: 2px;
  top: .6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(52, 190, 134, .16);
}

/* ---------------------------------------------------------------
   07 · Benefits
   --------------------------------------------------------------- */
.section--benefits {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 70% at 85% 10%, rgba(18, 163, 160, .26) 0%, transparent 62%),
    linear-gradient(155deg, #0b2440 0%, var(--midnight) 100%);
}
.benefits__glow {
  position: absolute;
  width: 420px; height: 420px;
  left: -150px; bottom: -140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 190, 134, .30) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.section--benefits .split { position: relative; }

.bstack { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.bstack__item {
  padding: 18px 18px;
  border-radius: var(--r-lg);
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(143, 233, 196, .18);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.bstack__item:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 214, 160, .42);
  background: rgba(255, 255, 255, .08);
}
.bstack__item--vip {
  background: linear-gradient(140deg, rgba(52, 190, 134, .18) 0%, rgba(18, 163, 160, .08) 100%);
  border-color: rgba(79, 214, 160, .40);
}
.bstack__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: .16em;
  color: var(--mint-soft);
  border: 1px solid rgba(143, 233, 196, .30);
  border-radius: 999px;
}
.bstack__item b {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0fbf6;
}
.bstack__item b strong {
  font-family: var(--font-en);
  font-size: 1.3em;
  font-weight: 800;
  color: var(--mint-bright);
}
.bstack__sub {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(214, 236, 227, .55);
}
.bstack__item .link-arrow,
.bstack__item .btn { margin-top: 10px; }

/* ---------------------------------------------------------------
   08 · Premium tiers
   --------------------------------------------------------------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.tier {
  padding: 16px 12px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.tier:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 190, 134, .40);
  box-shadow: var(--shadow);
}
.tier__label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--teal);
}
.tier b {
  display: block;
  margin-top: 6px;
  font-family: var(--font-en);
  font-size: clamp(1.25rem, 5.6vw, 1.75rem);
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -.02em;
}
.tier--mid { background: linear-gradient(170deg, #ffffff 0%, #eefaf4 100%); border-color: rgba(52, 190, 134, .34); }
.tier--top { background: linear-gradient(170deg, var(--navy-deep) 0%, var(--midnight) 100%); border-color: rgba(143, 233, 196, .26); }
.tier--top .tier__label { color: var(--mint-soft); }
.tier--top b { color: #f2fbf7; }

.split__copy .btn--outline-dark { margin-top: 20px; }

/* ---------------------------------------------------------------
   09 · Steps with connector line
   --------------------------------------------------------------- */
.steps {
  position: relative;
  display: grid;
  gap: 12px;
}
.step {
  position: relative;
  padding: 20px 18px;
  background: linear-gradient(170deg, var(--white) 0%, var(--lightmint) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(52, 190, 134, .40);
  box-shadow: var(--shadow);
}
.step b {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, var(--mint) 0%, var(--teal) 60%, var(--xs-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step h3 { margin: 8px 0 5px; font-size: 1rem; color: var(--navy-deep); }
.step p { color: var(--muted); font-size: .89rem; }

/* Connector: vertical on mobile, horizontal on desktop */
.step::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 1px;
  height: 12px;
  background: linear-gradient(180deg, rgba(52, 190, 134, .5), transparent);
}
.step:last-child::after { display: none; }

/* ---------------------------------------------------------------
   10 · Final CTA
   --------------------------------------------------------------- */
.final {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 9vw, 96px) 0;
  background: linear-gradient(115deg, var(--mint) 0%, var(--teal) 42%, #1550a8 78%, var(--navy-deep) 100%);
  color: #fff;
}
.final::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 30% 40%, #000 0%, transparent 72%);
  pointer-events: none;
}
.final__inner { position: relative; z-index: 1; display: grid; gap: 26px; }
.final .eyebrow--light { color: rgba(255, 255, 255, .9); }
.final .eyebrow--light::before { background: rgba(255, 255, 255, .7); }
.final h2 { font-size: clamp(1.85rem, 6.4vw, 3rem); letter-spacing: -.02em; }
.final p { margin-top: 12px; color: rgba(255, 255, 255, .9); font-size: .98rem; }
.final__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.final__actions .btn { flex: 1 1 100%; }

/* ---------------------------------------------------------------
   11 · Footer
   --------------------------------------------------------------- */
.footer {
  padding: clamp(38px, 6vw, 60px) 0 calc(26px + env(safe-area-inset-bottom));
  background: #04101d;
  color: #cfe0d9;
}
body.has-mobilebar .footer { padding-bottom: calc(94px + env(safe-area-inset-bottom)); }

.footer__top {
  display: grid;
  gap: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}
.brand--footer img { width: 42px; height: 42px; }
.brand--footer .brand__text { color: #eef9f4; font-size: 16px; }
.footer__site { margin-top: 10px; }
.footer__site a { font-size: .92rem; color: var(--mint-bright); transition: color .2s var(--ease); }
.footer__site a:hover { color: var(--mint-soft); text-decoration: underline; }

.footer__nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 16px; }
.footer__nav a { font-size: .92rem; color: #b9cdc5; transition: color .2s var(--ease); }
.footer__nav a:hover { color: var(--mint-bright); }

.footer__social-title { margin-bottom: 12px; font-size: .92rem; font-weight: 600; color: #eef9f4; }
.social { display: flex; gap: 10px; }
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #d4e8e0;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  transition: transform .22s var(--ease), color .22s var(--ease),
              background-color .22s var(--ease), border-color .22s var(--ease);
}
.social a:hover {
  transform: translateY(-3px);
  color: #04241a;
  background: var(--mint-bright);
  border-color: var(--mint-bright);
}

.footer__disclaimer { padding-top: 20px; }
.footer__disclaimer p { font-size: 13px; line-height: 1.85; color: #b6cbc3; }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: 12.5px;
  color: #8ea69e;
}
.footer__tv a { color: #b9cdc5; text-decoration: underline; }
.footer__tv a:hover { color: var(--mint-bright); }

/* ---------------------------------------------------------------
   12 · Floating LINE (desktop) + mobile bar
   --------------------------------------------------------------- */
.floatline {
  display: none;
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 55;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--line-green);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(6, 199, 85, .34);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.floatline:hover { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(6, 199, 85, .46); }

.mobilebar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 58;
  display: flex;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5, 18, 33, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(143, 233, 196, .18);
  transform: translateY(110%);
  transition: transform .3s var(--ease);
}
.mobilebar.is-visible { transform: none; }
.mobilebar .btn { flex: 1 1 auto; padding: 12px 16px; }
.mobilebar .btn--line-solid { flex: 0 0 84px; }

/* ---------------------------------------------------------------
   Breakpoints
   --------------------------------------------------------------- */
@media (min-width: 600px) {
  .hero__actions .btn,
  .final__actions .btn { flex: 0 1 auto; }
  .accts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .step::after { display: none; }
  .footer__nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 861px) {
  :root { --pad: 32px; }

  .burger { display: none; }
  .nav { display: flex; align-items: center; gap: 4px; }
  .nav a {
    position: relative;
    padding: 9px 14px;
    font-size: 14.5px;
    font-weight: 500;
    color: #cfe4db;
    border-radius: 999px;
    transition: color .22s var(--ease), background-color .22s var(--ease);
  }
  .nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 3px;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--mint-bright), var(--teal));
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(79, 214, 160, .7);
    transition: width .28s var(--ease);
  }
  .nav a:hover { color: #fff; background: rgba(255, 255, 255, .05); }
  .nav a.is-active { color: #fff; }
  .nav a.is-active::after { width: 26px; }
  .header__cta { display: inline-flex; margin-left: 10px; }

  /* Hero: visual carries more weight (52 / 48) */
  .hero {
    padding: clamp(56px, 6vw, 96px) 0 clamp(60px, 6vw, 100px);
    display: flex;
    align-items: center;
    min-height: min(760px, 84vh);
  }
  .hero__inner {
    width: 100%;
    grid-template-columns: 52fr 48fr;
    align-items: center;
    gap: 48px;
  }
  .hero__visual .ph--hero,
  .hero__visual .ph-img--hero { aspect-ratio: 4 / 3.2; }
  .rcard { margin: -58px 0 0 auto; width: min(300px, 78%); }
  .float--vip { top: -14px; right: -12px; }
  .float--mt { top: auto; bottom: 8px; left: -18px; }
  .hero__ring--a { width: 400px; height: 400px; top: -70px; right: -90px; }
  .hero__ring--b { width: 250px; height: 250px; bottom: -70px; left: -80px; }

  /* Split sections: visual + copy */
  .split { grid-template-columns: 45fr 55fr; align-items: center; }
  .split--even { grid-template-columns: 50fr 50fr; }

  .accts { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .acct { padding: 22px 15px; }
  .acct--featured { transform: translateY(-8px); }
  .acct--featured:hover { transform: translateY(-13px); }

  .rebate__inner { grid-template-columns: 1fr 1fr; align-items: center; gap: 50px; }
  .rebate__table { padding: 24px 22px 20px; }

  /* Steps: horizontal connector line */
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
  .steps::before {
    content: '';
    position: absolute;
    top: 42px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 190, 134, .45) 18%, rgba(52, 190, 134, .45) 82%, transparent);
    pointer-events: none;
  }

  .final__inner { grid-template-columns: 1.3fr 1fr; align-items: center; gap: 40px; }
  .final__actions { justify-content: flex-end; }

  .footer__top { grid-template-columns: 1.2fr 1.4fr 1fr; align-items: start; }
  .footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .floatline { display: inline-flex; }
  .mobilebar { display: none; }
  body.has-mobilebar .footer { padding-bottom: calc(26px + env(safe-area-inset-bottom)); }
}

@media (min-width: 1120px) {
  .bstack__item { padding: 22px 24px; }
  .tier { padding: 20px 14px; }
}

/* ---------------------------------------------------------------
   Reduced motion
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .acct:hover, .tier:hover, .step:hover,
  .bstack__item:hover, .rrow:hover, .social a:hover,
  .floatline:hover { transform: none; }
}
