/* ═══════════════════════════════════════════════
   CONSTANT EMPLOYEE — World-Class CSS
   Single clean stylesheet. No legacy conflicts.
═══════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #060D1A;
  --bg2:      #0A1628;
  --bg3:      #0F1F38;
  --surface:  #111D33;
  --surface2: #162240;
  --border:   rgba(59,130,246,.18);
  --border2:  rgba(59,130,246,.32);
  --blue:     #3B82F6;
  --blue-lt:  #60A5FA;
  --blue-dk:  #1D4ED8;
  --green:    #34D399;
  --amber:    #FBBF24;
  --red:      #F87171;
  --purple:   #A78BFA;
  --text:     #F1F5F9;
  --text2:    #94A3B8;
  --text3:    #64748B;
  --topbar-h: 64px;
  --ticker-h: 80px;
  --header-h: calc(var(--topbar-h) + var(--ticker-h));
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 32px rgba(0,0,0,.45);
  --shadow-lg:0 8px 64px rgba(0,0,0,.6);
  --glow:     0 0 40px rgba(59,130,246,.25);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ─── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 { font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); font-weight: 700; }

.eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: .5rem;
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 4rem;
}
.section-head h2 { margin-bottom: 1rem; }
.section-sub { color: var(--text2); font-size: 1.05rem; line-height: 1.7; }

/* ─── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: inherit;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}

.btn--cta {
  background: linear-gradient(135deg, #2563EB, #3B82F6 50%, #1D4ED8);
  color: #fff;
  box-shadow: 0 4px 24px rgba(59,130,246,.45), 0 0 0 0 rgba(59,130,246,.3);
}
.btn--cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(59,130,246,.6), 0 0 0 4px rgba(59,130,246,.15);
}

.btn--ghost {
  background: transparent;
  color: var(--text2);
  border: 1.5px solid var(--border2);
}
.btn--ghost:hover { background: var(--surface); color: var(--text); border-color: var(--blue); }

.btn--outline {
  background: transparent;
  color: var(--blue-lt);
  border: 1.5px solid var(--border2);
}
.btn--outline:hover { background: var(--surface); border-color: var(--blue); }

.btn--sm  { padding: .45rem 1rem;  font-size: .8rem; }
.btn--lg  { padding: .85rem 1.8rem; font-size: 1rem; }
.btn--xl  { padding: 1rem 2.2rem;  font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── TOPBAR ───────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(6,13,26,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.topbar__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: var(--topbar-h);
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
  text-decoration: none;
}
.brand__icon { display: flex; align-items: center; }
.brand__name {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -.01em;
}
.brand__name strong { color: var(--blue-lt); font-weight: 800; }

.nav {
  display: flex;
  gap: .25rem;
  margin-left: auto;
}
.nav a {
  padding: .4rem .8rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 6px;
  transition: all .15s;
}
.nav a:hover { color: var(--text); background: var(--surface); }

.topbar__cta {
  padding: .5rem 1.2rem;
  font-size: .82rem;
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── TICKER ───────────────────────────────── */
.ticker {
  height: var(--ticker-h);
  margin-top: 10px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  animation: ticker 45s linear infinite;
  will-change: transform;
  padding: 0 .6rem;
}
.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__badge {
  height: 68px;
  width: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(59,130,246,.2));
  transition: transform .2s;
}
.ticker__badge:hover { transform: scale(1.04); }

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── MOBILE NAV ───────────────────────────── */
.mobile-nav {
  position: fixed;
  top: var(--topbar-h);
  left: 0; right: 0;
  z-index: 999;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem 1.5rem;
  gap: .25rem;
  transform: translateY(-110%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.mobile-nav.is-open { transform: translateY(0); }
.mobile-nav__link {
  padding: .75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text2);
  border-radius: 8px;
  transition: all .15s;
}
.mobile-nav__link:hover { background: var(--surface); color: var(--text); }
.mobile-nav__cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  padding: .85rem 1.2rem;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: #fff;
  font-weight: 700;
  border-radius: 50px;
  justify-content: center;
}

/* ─── HERO ─────────────────────────────────── */
.hero {
  position: relative;
  padding-top: var(--header-h);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.06) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .35;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #1D4ED8, transparent 70%);
  top: -100px; right: -100px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #7C3AED, transparent 70%);
  bottom: 0; left: -80px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ─── HERO SLIDER ──────────────────────────── */
.hslider {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.hslide {
  display: none;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 4rem 0 2rem;
}
.hslide.is-active { display: grid; }

.hslide__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.3);
  border-radius: 50px;
  padding: .35rem .9rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--blue-lt);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.pulse {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.hslide__h1 { color: var(--text); margin-bottom: 1.2rem; }
.hslide__em {
  font-style: normal;
  background: linear-gradient(135deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hslide__sub {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}
.hslide__sub strong { color: var(--text); }

.hslide__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hslide__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hslide__visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(59,130,246,.2);
  object-fit: contain;
}

.hslider__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.5rem 0 2.5rem;
}

.hslider__arrow {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text2);
  width: 40px; height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}
.hslider__arrow:hover { background: var(--surface2); border-color: var(--blue); color: var(--text); }

.hslider__dots { display: flex; gap: .5rem; }
.hslider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all .2s;
  padding: 0;
}
.hslider__dot.is-active {
  background: var(--blue);
  border-color: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* ─── STATS ────────────────────────────────── */
.stats {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 2rem;
  flex: 1;
  min-width: 0;
}
.stat__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #60A5FA, #34D399);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .4rem;
}
.stat__label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text2);
  text-transform: uppercase;
  letter-spacing: .04em;
  line-height: 1.4;
  white-space: nowrap;
}
.stat__div {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── TRADES ───────────────────────────────── */
.trades {
  padding: 6rem 0;
  background: var(--bg);
}
.trades__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.trades__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.tcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
}
.tcard:hover {
  transform: translateY(-4px);
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(59,130,246,.2);
}

.tcard__img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tcard__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.tcard:hover .tcard__img-wrap img { transform: scale(1.06); }

.tcard__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,13,26,.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: .75rem;
}
.tcard__overlay span {
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}

.tcard__foot {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem .75rem;
  background: var(--surface);
}

/* ─── TRADE PLAYER ─────────────────────────── */
.tplayer {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex: 1;
  min-width: 0;
}

.tplayer__btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--blue);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: all .2s;
}
.tplayer__btn:hover { background: var(--blue-dk); transform: scale(1.08); }

.tplayer .icon-pause { display: none; }
.tplayer.is-playing .icon-play { display: none; }
.tplayer.is-playing .icon-pause { display: block; }
.tplayer.is-playing .tplayer__btn { background: var(--green); }

.tplayer__track {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .4rem;
  min-width: 0;
}
.tplayer__progress {
  flex: 1;
  height: 4px;
  background: var(--surface2);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.tplayer__bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--green));
  width: 0%;
  border-radius: 2px;
  transition: width .1s linear;
}
.tplayer__time {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text3);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
}

.tcard__call {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .35rem .65rem;
  background: rgba(59,130,246,.15);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: .7rem;
  font-weight: 700;
  color: var(--blue-lt);
  flex-shrink: 0;
  transition: all .2s;
}
.tcard__call:hover { background: var(--blue); color: #fff; }

.trades__cta {
  text-align: center;
  padding: 2rem 0 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.trades__cta p { color: var(--text2); }
.trades__cta a:not(.btn) { color: var(--blue-lt); }

/* ─── CTA STRIP ────────────────────────────── */
.ctastrip {
  background: linear-gradient(135deg, #0F1F38 0%, #0A1628 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
}
.ctastrip__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.ctastrip__copy { flex: 1; min-width: 280px; }
.ctastrip__copy h2 { margin-bottom: .75rem; }
.ctastrip__copy p { color: var(--text2); margin-top: .5rem; }
.ctastrip__btn { flex-shrink: 0; }

/* ─── TESTIMONIALS ─────────────────────────── */
.testimonials {
  padding: 6rem 0;
  background: var(--bg2);
}
.testimonials__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.testi__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.testi__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all .3s;
  box-shadow: var(--shadow);
}
.testi__card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 12px 48px rgba(59,130,246,.25);
}
.testi__card img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials__cta {
  text-align: center;
  padding-top: 2rem;
}

/* ─── FLOW ─────────────────────────────────── */
.flow {
  padding: 6rem 0;
  background: var(--bg);
}
.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.flow__steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.flow__steps::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue), var(--purple), var(--green));
  opacity: .35;
}

.flow__step {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 1.5rem 2rem;
  align-items: start;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.flow__step.is-visible { opacity: 1; transform: translateY(0); }
.flow__step:last-child { border-bottom: none; }

.flow__step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: var(--blue-lt);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.flow__step-body { min-width: 0; }
.flow__tag {
  display: inline-block;
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  color: var(--blue-lt);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .2rem .6rem;
  border-radius: 4px;
  margin-bottom: .6rem;
  text-transform: uppercase;
}
.flow__step-body h3 { margin-bottom: .6rem; }
.flow__step-body p { color: var(--text2); line-height: 1.7; }

.flow__step-visual {
  width: 220px;
  flex-shrink: 0;
}
.flow__step-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.flow__step-visual--hide-mobile { display: block; }

/* Voice card */
.vcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
}
.vcard__head {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--text2);
  margin-bottom: .75rem;
}
.vcard__live {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}
.vcard__time { margin-left: auto; color: var(--text3); }
.vcard__wave {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 32px;
  margin-bottom: .75rem;
}
.vcard__wave span {
  flex: 1;
  background: var(--blue);
  border-radius: 2px;
  height: var(--h, 50%);
  animation: wave 1.2s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * .1s);
}
.vcard__wave span:nth-child(1) { --i:0; } .vcard__wave span:nth-child(2) { --i:1; }
.vcard__wave span:nth-child(3) { --i:2; } .vcard__wave span:nth-child(4) { --i:3; }
.vcard__wave span:nth-child(5) { --i:4; } .vcard__wave span:nth-child(6) { --i:5; }
.vcard__wave span:nth-child(7) { --i:6; } .vcard__wave span:nth-child(8) { --i:7; }
.vcard__wave span:nth-child(9) { --i:8; } .vcard__wave span:nth-child(10) { --i:9; }
.vcard__wave span:nth-child(11) { --i:10; } .vcard__wave span:nth-child(12) { --i:11; }
@keyframes wave {
  from { transform: scaleY(.4); }
  to   { transform: scaleY(1); }
}
.vcard__quote {
  font-size: .85rem;
  font-style: italic;
  color: var(--text2);
  border-left: 3px solid var(--blue);
  padding-left: .75rem;
}

/* Triage pills */
.triage-row {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.triage-pill {
  flex: 1;
  min-width: 140px;
  padding: .75rem 1rem;
  border-radius: var(--radius);
  font-size: .82rem;
}
.triage-pill strong { display: block; font-size: .8rem; margin-bottom: .3rem; }
.triage-pill span { color: var(--text2); }
.triage-pill--hot { background: rgba(248,113,113,.1); border: 1px solid rgba(248,113,113,.3); }
.triage-pill--hot strong { color: var(--red); }
.triage-pill--cool { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.25); }
.triage-pill--cool strong { color: var(--blue-lt); }

/* Calendar card */
.cal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
  font-size: .82rem;
}
.cal-card__head {
  font-weight: 700;
  color: var(--text2);
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .6rem;
  display: flex;
  justify-content: space-between;
}
.cal-card__head span { color: var(--blue-lt); }
.cal-card__slot {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem 0;
  border-bottom: 1px solid var(--border);
}
.cal-card__slot:last-child { border-bottom: none; }
.cal-slot__time { font-weight: 700; color: var(--text); min-width: 36px; }
.cal-slot__name { flex: 1; color: var(--text2); }
.cal-slot__new {
  background: var(--green);
  color: #000;
  font-size: .65rem;
  font-weight: 800;
  padding: .15rem .4rem;
  border-radius: 4px;
}

.flow__cta {
  text-align: center;
  padding-top: 3rem;
}

/* ─── PRICING ──────────────────────────────── */
.pricing {
  padding: 6rem 0;
  background: var(--bg2);
}
.pricing__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: all .25s;
}
.pcard:hover { border-color: var(--border2); box-shadow: var(--glow); }

.pcard--featured {
  background: linear-gradient(145deg, #0F2040, #0A1628);
  border-color: var(--blue);
  box-shadow: 0 0 40px rgba(59,130,246,.2);
}
.pcard--featured:hover { box-shadow: 0 0 60px rgba(59,130,246,.35); }

.pcard__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}

.pcard__head { margin-bottom: 1.5rem; }
.pcard__name {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: .5rem;
}
.pcard__price {
  display: flex;
  align-items: baseline;
  gap: .3rem;
  margin-bottom: .3rem;
}
.pcard__amount { font-size: 3rem; font-weight: 900; color: var(--text); line-height: 1; }
.pcard__per { font-size: .9rem; color: var(--text2); }
.pcard__setup { font-size: .8rem; color: var(--green); font-weight: 600; }

.pcard__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.pcard__features li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text2);
}
.pcard__features svg { flex-shrink: 0; }

.pricing__addons {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.pricing__addons h3 { margin-bottom: 1.5rem; font-size: 1.1rem; }
.addons__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.addon {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem;
}
.addon strong { display: block; font-size: .88rem; color: var(--text); margin-bottom: .3rem; }
.addon span { font-size: .8rem; color: var(--text2); }

/* ─── FAQ ──────────────────────────────────── */
.faq {
  padding: 6rem 0;
  background: var(--bg);
}
.faq__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq__grid {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item:hover { border-color: var(--border2); }
.faq__item[open] { border-color: var(--blue); }

.faq__item summary {
  padding: 1.2rem 1.5rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue-lt);
  transition: transform .2s;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }

.faq__item p {
  padding: 0 1.5rem 1.2rem;
  color: var(--text2);
  line-height: 1.7;
  font-size: .9rem;
}
.faq__item a { color: var(--blue-lt); }
.faq__item a:hover { text-decoration: underline; }

/* ─── FINAL CTA ────────────────────────────── */
.finalcta {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.finalcta__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.finalcta__glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,.35) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(60px);
}
.finalcta__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.finalcta__inner h2 { margin-bottom: 1.2rem; }
.finalcta__sub {
  color: var(--text2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.finalcta__sub strong { color: var(--text); }
.finalcta__btn { font-size: 1.15rem; padding: 1.1rem 2.5rem; }
.finalcta__note {
  margin-top: 1.2rem;
  font-size: .8rem;
  color: var(--text3);
}

/* ─── FOOTER ───────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem 0 0;
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 3rem;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 3rem;
  align-items: start;
}

.footer__brand .brand { margin-bottom: 1rem; }
.footer__tagline {
  font-size: .85rem;
  color: var(--text2);
  line-height: 1.6;
  margin-bottom: .75rem;
}
.footer__phone {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-lt);
  margin-bottom: .5rem;
}
.footer__phone:hover { color: var(--text); }
.footer__address {
  font-size: .82rem;
  color: var(--text3);
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: .75rem;
}
.footer__col a {
  display: block;
  font-size: .85rem;
  color: var(--text2);
  padding: .25rem 0;
  transition: color .15s;
}
.footer__col a:hover { color: var(--blue-lt); }

.footer__assoc h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 1rem;
}
.assoc__badges {
  display: grid;
  grid-template-columns: repeat(2, 80px);
  gap: .6rem;
}
.assoc__badge {
  transition: transform .2s;
}
.assoc__badge:hover { transform: scale(1.05); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.2rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  text-align: center;
}
.footer__bottom p { font-size: .78rem; color: var(--text3); }
.footer__bottom a { color: var(--text2); }
.footer__bottom a:hover { color: var(--blue-lt); }

/* ─── STICKY CTA ───────────────────────────── */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  display: none;
  padding: .75rem 1rem;
  background: rgba(6,13,26,.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
}
.sticky-cta.is-visible { display: flex; }
.sticky-cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  padding: .9rem;
  background: linear-gradient(135deg, #2563EB, #3B82F6);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  border-radius: 50px;
  text-decoration: none;
}

/* ─── RESPONSIVE ───────────────────────────── */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__assoc { grid-column: 1 / -1; }
  .assoc__badges { grid-template-columns: repeat(3, 80px); }
}

@media (max-width: 900px) {
  .hslide { grid-template-columns: 1fr; padding: 3rem 0 1rem; }
  .hslide__visual { display: none; }
  .stats__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
  }
  .stat__div { display: none; }
  .flow__step { grid-template-columns: 56px 1fr; }
  .flow__step-visual { display: none; }
  .flow__step-visual--hide-mobile { display: none; }
  .pricing__cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 3rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --topbar-h: 60px; --ticker-h: 72px; }
  .nav { display: none; }
  .topbar__cta { display: none; }
  .hamburger { display: flex; }
  .ticker__badge { height: 60px; }
  .trades__grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .75rem; }
  .testi__grid { grid-template-columns: 1fr; }
  .ctastrip__inner { flex-direction: column; text-align: center; }
  .footer__links { grid-template-columns: 1fr; }
  .sticky-cta { display: flex; }
  .sticky-cta.is-visible { display: flex; }
}

@media (max-width: 480px) {
  .hslide__actions { flex-direction: column; }
  .hslide__actions .btn { width: 100%; justify-content: center; }
  .trades__grid { grid-template-columns: repeat(2, 1fr); }
  .assoc__badges { grid-template-columns: repeat(3, 1fr); }
  .assoc__badge svg { width: 100%; height: auto; }
}
