/* ===================================================================
   FenixGrowthLabs — styles.css  (modern rebuild)
   Palette: red + blue + black + white.  Font: Sora / Inter.
=================================================================== */

:root {
  --ink: #0a0e1a;          /* near-black base */
  --ink-2: #0f1424;        /* dark section */
  --ink-3: #161c30;        /* card on dark */
  --white: #ffffff;        /* cards on light */
  --page: #ccd6e6;         /* light section base (clear blue-gray) */
  --off: #bcc8dd;          /* alt light section (deeper blue-gray) */
  --text: #10131c;         /* text on light */
  --muted-l: #5b6478;      /* muted on light */
  --muted-d: #9aa6c4;      /* muted on dark */
  --red: #ef2b3d;
  --red-2: #c81628;
  --blue: #2b6bff;
  --blue-2: #1746c9;
  --border-l: #e5e9f2;
  --border-d: rgba(255,255,255,0.10);
  --grad: linear-gradient(100deg, #ef2b3d 0%, #ff5a45 100%);
  --grad-blue: linear-gradient(100deg, #2b6bff 0%, #6b8cff 100%);
  --grad-mix: linear-gradient(100deg, #ef2b3d 0%, #2b6bff 100%);
  --radius: 16px;
  --maxw: 1180px;
  --header-h: 72px;
  --serif: "Sora", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: ui-monospace, "SFMono-Regular", "Roboto Mono", Menlo, Consolas, monospace;
  --green: #16c784;
  --green-d: #0d9668;
  --shadow: 0 20px 50px -20px rgba(10,14,26,0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--page);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

h1,h2,h3,h4 { font-family: var(--serif); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }

.grad {
  background: var(--grad-mix);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
}
.dark .eyebrow { color: #ff6d6d; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 28px; font-size: 1rem; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px -8px rgba(239,43,61,.6); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -8px rgba(239,43,61,.7); }
.btn--outline { background: transparent; color: var(--text); border-color: var(--border-l); }
.btn--outline:hover { transform: translateY(-2px); border-color: var(--blue); color: var(--blue); }
.dark .btn--outline, .hero .btn--outline { color: #fff; border-color: rgba(255,255,255,.25); }
.dark .btn--outline:hover, .hero .btn--outline:hover { border-color: #6b8cff; color: #9db4ff; }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--blue); font-weight: 600; text-decoration: none; font-size: .95rem;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover { gap: 12px; color: var(--red); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  background: rgba(10,14,26,.55);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--border-d);
  transition: background .3s ease;
}
.header.scrolled { background: rgba(10,14,26,.9); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark { height: 42px; width: auto; flex: none; transition: transform .3s ease; filter: drop-shadow(0 3px 8px rgba(239,43,61,.35)); }
.header__logo:hover .logo-mark { transform: translateY(-2px) rotate(-3deg); }
.footer__logo { display: flex; align-items: center; gap: 10px; }
.footer__logo .logo-mark { height: 40px; }

/* Wordmark */
.wordmark { display: flex; flex-direction: column; line-height: 1; }
.wordmark__top { font-family: var(--serif); font-weight: 800; font-size: 1.5rem; color: #fff; letter-spacing: -.02em; }
.wordmark__bottom {
  font-family: var(--sans); font-weight: 700; font-size: .68rem; letter-spacing: .28em;
  text-transform: uppercase; margin-top: 3px;
  background: var(--grad-mix); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.wordmark--footer .wordmark__top { color: #fff; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav__list { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav__link { color: var(--muted-d); text-decoration: none; font-size: .92rem; font-weight: 500; transition: color .2s ease; }
.nav__link:hover { color: #fff; }
.nav__cta { padding: 10px 20px; font-size: .9rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; background: var(--ink); color: #fff;
  padding: calc(var(--header-h) + 60px) 0 90px; overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55; }
.orb--red { width: 480px; height: 480px; background: #ef2b3d; top: -140px; left: -100px; }
.orb--blue { width: 520px; height: 520px; background: #2b6bff; bottom: -180px; right: -120px; opacity: .5; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px; border-radius: 999px; font-size: .8rem; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid var(--border-d); color: #dfe6f7; margin-bottom: 22px;
}
.pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 4px rgba(239,43,61,.25); }
.hero__title { font-size: clamp(2.4rem, 5.4vw, 4.1rem); margin-bottom: 20px; }
.hero__text { color: var(--muted-d); font-size: 1.1rem; max-width: 520px; margin-bottom: 30px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 32px; }
.hero__trust { display: flex; align-items: center; gap: 14px; }
.hero__trust p { color: var(--muted-d); font-size: .9rem; max-width: 320px; }
.avatars { display: flex; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; margin-left: -10px;
  display: grid; place-items: center; font-weight: 700; font-size: .85rem; color: #fff;
  border: 2px solid var(--ink); background: var(--grad-mix);
}
.avatar:first-child { margin-left: 0; }

/* Hero visual */
.hero__visual { position: relative; }
.glass-card {
  background: rgba(255,255,255,.06); border: 1px solid var(--border-d);
  border-radius: 20px; padding: 14px; backdrop-filter: blur(8px);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,.7);
}
.glass-card__bar { display: flex; gap: 7px; padding: 6px 6px 12px; }
.glass-card__bar span { width: 11px; height: 11px; border-radius: 50%; background: rgba(255,255,255,.2); }
.glass-card__bar span:first-child { background: #ef2b3d; }
.glass-card__bar span:nth-child(2) { background: #ffb020; }
.glass-card__bar span:nth-child(3) { background: #2ece6a; }
.float-chip {
  position: absolute; background: #fff; color: var(--text);
  border-radius: 14px; padding: 10px 16px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; line-height: 1.15;
}
.float-chip strong { font-family: var(--serif); font-size: 1.25rem; }
.float-chip span { font-size: .72rem; color: var(--muted-l); }
.float-chip--1 { top: 8%; left: -26px; }
.float-chip--2 { bottom: 10%; right: -20px; }
.float-chip--1 strong { color: var(--red); }
.float-chip--2 strong { color: var(--blue); }

/* ---------- Strip ---------- */
.strip { background: var(--ink-2); padding: 30px 0; border-bottom: 1px solid var(--border-d); }
.strip__label { text-align: center; color: var(--muted-d); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.strip__logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; }
.logo-ph { color: #c7d0e6; font-weight: 700; font-family: var(--serif); font-size: 1.05rem; opacity: .6; transition: opacity .2s ease; }
.logo-ph:hover { opacity: 1; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section.dark { background: var(--ink-2); color: #fff; }
.section__head { max-width: 640px; margin-bottom: 46px; }
.section__head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section__title { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
.section__sub { color: var(--muted-l); font-size: 1.05rem; margin-top: 14px; }
.dark .section__sub { color: var(--muted-d); }

/* ---------- Feature rows ---------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center;
  padding: 34px 0;
}
.feature--reverse .feature__media { order: 2; }
.feature__tag {
  display: inline-block; padding: 5px 13px; border-radius: 999px; font-size: .74rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; color: #fff;
}
.tag--red { background: var(--grad); }
.tag--blue { background: var(--grad-blue); }
.feature__text h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin-bottom: 12px; }
.feature__text > p { color: var(--muted-l); margin-bottom: 18px; }
.checks { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.checks li { position: relative; padding-left: 30px; color: var(--text); font-weight: 500; }
.checks li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%; background: var(--grad-mix);
  color: #fff; font-size: .72rem; display: grid; place-items: center; font-weight: 700;
}

/* ---------- Placeholders ---------- */
.placeholder {
  display: grid; place-items: center; text-align: center;
  border: 2px dashed rgba(43,107,255,.4); border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(239,43,61,.06), rgba(43,107,255,.08));
  color: var(--muted-l); font-weight: 600; letter-spacing: .02em; padding: 20px;
}
.placeholder small { color: var(--muted-l); font-weight: 400; }
.placeholder--hero { aspect-ratio: 4/3; border-radius: 12px; }
.placeholder--feat { aspect-ratio: 4/3; box-shadow: var(--shadow); }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--ink-3); border: 1px solid var(--border-d);
  border-radius: var(--radius); padding: 32px 26px; position: relative;
  transition: transform .25s ease, border-color .25s ease;
}
.step:hover { transform: translateY(-6px); border-color: rgba(43,107,255,.5); }
.step__num {
  font-family: var(--serif); font-size: 2.2rem; font-weight: 800; margin-bottom: 14px;
  background: var(--grad-mix); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: var(--muted-d); font-size: .96rem; }

/* ---------- Industries ---------- */
.industries { background: var(--off); }
.ind-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ind {
  background: #fff; border: 1px solid var(--border-l); border-radius: 14px;
  padding: 20px 12px; text-align: center; font-weight: 600; font-size: .92rem;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.ind span { font-size: 1.7rem; }
.ind:hover { transform: translateY(-5px); border-color: var(--red); box-shadow: var(--shadow); }

/* ---------- Why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card {
  background: var(--ink-3); border: 1px solid var(--border-d); border-radius: var(--radius);
  padding: 28px 24px; transition: transform .25s ease, border-color .25s ease;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(239,43,61,.5); }
.why-card__ic {
  width: 52px; height: 52px; border-radius: 13px; display: grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 16px; background: rgba(255,255,255,.06); border: 1px solid var(--border-d);
}
.why-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.why-card p { color: var(--muted-d); font-size: .95rem; }

/* ---------- Stats (trading dashboard) ---------- */
.stats { background: var(--page); }

/* Dashboard: chart + tickers */
.dash { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; margin-bottom: 18px; }

.chart-card {
  background: var(--ink); color: #fff; border-radius: var(--radius);
  padding: 22px 22px 10px; position: relative; overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--border-d);
}
.chart-card__top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 4px; }
.chart-card__top h3 { font-size: 1.05rem; }
.chart-card__top p { color: var(--muted-d); font-size: .8rem; }
.chart-badge {
  font-family: var(--mono); font-weight: 700; font-size: .82rem; color: var(--green);
  background: rgba(22,199,132,.12); border: 1px solid rgba(22,199,132,.4);
  padding: 5px 11px; border-radius: 8px; white-space: nowrap;
}
.chart-value { font-family: var(--mono); font-size: 1.9rem; font-weight: 700; color: #fff; margin: 6px 0 2px; }
.chart-value .green { color: var(--green); font-size: 1rem; }
.chart-svg { width: 100%; height: auto; display: block; }
.chart-line { stroke: var(--green); stroke-width: 3; fill: none; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 900; stroke-dashoffset: 900; }
.reveal.visible .chart-line, .chart-card .chart-line { animation: draw 1.8s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }
.chart-dot { fill: var(--green); }
.chart-pulse { fill: var(--green); opacity: .5; animation: pulse 1.6s ease-out infinite; transform-origin: center; }
@keyframes pulse { 0%{ r:4; opacity:.6 } 100%{ r:14; opacity:0 } }

.tickers { display: grid; gap: 12px; grid-template-rows: repeat(4, 1fr); }
.ticker {
  background: #fff; border: 1px solid var(--border-l); border-radius: 12px;
  padding: 12px 16px; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  transition: transform .2s ease, border-color .2s ease;
}
.ticker:hover { transform: translateY(-3px); border-color: var(--green); }
.ticker__name { font-weight: 600; font-size: .86rem; }
.ticker__sub { color: var(--muted-l); font-size: .72rem; }
.ticker__val { text-align: right; }
.ticker__num { font-family: var(--mono); font-weight: 700; font-size: 1.1rem; color: var(--text); }
.ticker__chg { font-family: var(--mono); font-size: .78rem; color: var(--green-d); font-weight: 700; }

/* Trading-style table */
.table-wrap {
  background: #fff; border: 1px solid var(--border-l); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
}
.stat-table { width: 100%; border-collapse: collapse; }
.stat-table thead th {
  background: var(--ink); color: #fff; font-family: var(--mono); font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em; font-size: .74rem;
  text-align: left; padding: 14px 20px;
}
.stat-table thead th:not(:first-child) { text-align: right; }
.stat-table tbody td { padding: 14px 20px; border-top: 1px solid var(--border-l); font-size: .92rem; color: var(--text); }
.stat-table tbody td:first-child { font-weight: 600; }
.stat-table tbody td:not(:first-child) { text-align: right; font-family: var(--mono); }
.stat-table tbody tr:hover { background: rgba(22,199,132,.06); }
.stat-table .before { color: var(--muted-l); }
.stat-table .after { font-weight: 700; color: var(--green-d); }
.stat-table .up { color: var(--green-d); font-weight: 700; }
.stat-table .trend { text-align: right; }
.spark { width: 66px; height: 22px; vertical-align: middle; }
.spark polyline { fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--off); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review {
  background: #fff; border: 1px solid var(--border-l); border-radius: var(--radius);
  padding: 26px; transition: transform .25s ease, box-shadow .25s ease;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review__stars { color: #ffb020; letter-spacing: 2px; margin-bottom: 12px; }
.review__text { color: var(--text); font-style: italic; margin-bottom: 14px; }
.review__name { font-weight: 700; font-size: .9rem; color: var(--muted-l); }
.note {
  margin-top: 22px; font-size: .82rem; color: var(--muted-l); text-align: center;
  background: rgba(43,107,255,.07); border: 1px solid rgba(43,107,255,.22);
  border-radius: 12px; padding: 12px 16px;
}

/* ---------- FAQ ---------- */
.faq__wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: start; }
.accordion { display: grid; gap: 12px; }
.acc { background: #fff; border: 1px solid var(--border-l); border-radius: 14px; overflow: hidden; }
.acc__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--serif); font-weight: 600; font-size: 1.02rem; color: var(--text);
  padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.acc__ic { font-size: 1.4rem; color: var(--blue); transition: transform .3s ease; flex: none; }
.acc.open .acc__ic { transform: rotate(45deg); color: var(--red); }
.acc__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.acc__a p { padding: 0 20px 18px; color: var(--muted-l); }

/* ---------- CTA ---------- */
.cta { background: var(--ink); color: #fff; position: relative; overflow: hidden; }
.cta::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 15% 0%, rgba(239,43,61,.25), transparent 60%),
              radial-gradient(600px 300px at 90% 100%, rgba(43,107,255,.3), transparent 60%);
}
.cta__inner { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.cta__text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.cta__text p { color: var(--muted-d); margin-bottom: 26px; font-size: 1.05rem; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Form */
.form {
  background: rgba(255,255,255,.05); border: 1px solid var(--border-d);
  border-radius: 20px; padding: 28px; display: grid; gap: 15px; backdrop-filter: blur(8px);
}
.field { display: grid; gap: 6px; }
.field label { font-size: .82rem; font-weight: 600; color: var(--muted-d); }
.field input {
  padding: 13px 15px; border-radius: 11px; border: 1px solid var(--border-d);
  background: rgba(10,14,26,.6); color: #fff; font-family: inherit; font-size: .95rem; transition: border-color .2s ease;
}
.field input::placeholder { color: #6b7590; }
.field input:focus { outline: none; border-color: var(--blue); }
.field input.invalid { border-color: var(--red); }
.form__hint { font-size: .8rem; color: var(--muted-d); text-align: center; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); color: #fff; padding: 56px 0 26px; border-top: 1px solid var(--border-d); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 30px; margin-bottom: 34px; }
.footer__brand-col p { color: var(--muted-d); font-size: .92rem; margin-top: 14px; max-width: 260px; }
.footer h4 { font-size: .95rem; margin-bottom: 14px; }
.footer p { color: var(--muted-d); font-size: .92rem; margin-bottom: 7px; }
.footer__link { color: var(--muted-d); text-decoration: none; transition: color .2s ease; }
.footer__link:hover { color: #fff; }
.footer__bottom { border-top: 1px solid var(--border-d); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer__bottom p { font-size: .82rem; }
.footer__mini { opacity: .6; }

/* ---------- Floating buttons ---------- */
.fab {
  position: fixed; right: 20px; z-index: 90; width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; text-decoration: none;
  box-shadow: 0 10px 26px rgba(0,0,0,.35); transition: transform .2s ease;
}
.fab:hover { transform: scale(1.09); }
.fab--whatsapp { bottom: 20px; background: #25d366; }
.fab--instagram { bottom: 86px; background: linear-gradient(45deg,#feda75,#d62976 45%,#962fbf 75%,#4f5bd5); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 460px; }
  .feature, .faq__wrap, .cta__inner { grid-template-columns: 1fr; gap: 30px; }
  .feature--reverse .feature__media { order: 0; }
  .steps, .why-grid, .reviews, .stat-cards { grid-template-columns: 1fr 1fr; }
  .ind-grid { grid-template-columns: repeat(4, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .table-wrap { overflow-x: auto; }
  .stat-table { min-width: 520px; }
  .dash { grid-template-columns: 1fr; }
  .tickers { grid-template-rows: none; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed; top: var(--header-h); right: 0;
    width: min(80vw, 330px); height: calc(100vh - var(--header-h));
    flex-direction: column; align-items: flex-start; justify-content: flex-start; gap: 22px;
    padding: 32px 26px; background: rgba(10,14,26,.98); border-left: 1px solid var(--border-d);
    transform: translateX(105%); transition: transform .32s ease;
  }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; align-items: flex-start; gap: 18px; }
  .nav__link { font-size: 1.05rem; }
  .nav__cta { width: 100%; }
  .wordmark__top { font-size: 1.3rem; }
  .wordmark__bottom { font-size: .6rem; letter-spacing: .22em; }
  .logo-mark { height: 36px; }
}

@media (max-width: 560px) {
  .section { padding: 60px 0; }
  .steps, .why-grid, .reviews, .stat-cards, .tickers { grid-template-columns: 1fr; }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn, .cta__actions .btn { flex: 1; }
  .float-chip--1 { left: 6px; }
  .float-chip--2 { right: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===================================================================
   MULTI-PAGE COMPONENTS
=================================================================== */
/* feature/hero images */
.feature__media img, .hero-shot img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature__media img { border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3; }
.hero__visual .shot { border-radius: 12px; overflow: hidden; }
.hero__visual .shot img { width: 100%; display: block; }

/* Inner page hero */
.page-hero { position: relative; background: var(--ink); color: #fff; padding: calc(var(--header-h) + 54px) 0 54px; overflow: hidden; }
.page-hero .orb { position: absolute; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); margin: 10px 0 14px; }
.page-hero p { color: var(--muted-d); font-size: 1.08rem; max-width: 620px; }
.page-hero .hero__actions { margin-top: 26px; }

/* Breadcrumbs */
.crumbs { display: flex; flex-wrap: wrap; gap: 6px; font-size: .82rem; color: var(--muted-d); }
.crumbs a { color: #9db4ff; text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { opacity: .6; }

/* Generic 2-col */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.split img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.lead { font-size: 1.12rem; color: var(--muted-l); }

/* Prose (blog article) */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.6rem; margin: 34px 0 12px; }
.prose h3 { font-size: 1.25rem; margin: 26px 0 10px; }
.prose p { margin-bottom: 16px; color: #2b3040; font-size: 1.05rem; line-height: 1.8; }
.prose ul { margin: 0 0 18px 22px; display: grid; gap: 8px; }
.prose li { color: #2b3040; font-size: 1.05rem; }
.prose img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin: 22px 0; }
.prose blockquote { border-left: 4px solid var(--red); padding: 6px 18px; margin: 22px 0; color: var(--text); font-style: italic; background: #fff; border-radius: 0 10px 10px 0; }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; color: var(--muted-d); font-size: .85rem; margin-top: 14px; }
.chip { background: rgba(255,255,255,.08); border: 1px solid var(--border-d); padding: 4px 12px; border-radius: 999px; font-size: .78rem; font-weight: 600; color: #cdd6ea; }
.article-cover { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); margin: 8px 0 26px; }

/* Blog grid */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { background: #fff; border: 1px solid var(--border-l); border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--text); transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card__body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__tag { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--red); }
.post-card h3 { font-size: 1.15rem; line-height: 1.25; }
.post-card p { color: var(--muted-l); font-size: .92rem; flex: 1; }
.post-card__more { color: var(--blue); font-weight: 600; font-size: .9rem; }

/* Team (about) */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.member { background: #fff; border: 1px solid var(--border-l); border-radius: var(--radius); padding: 24px; text-align: center; }
.member__avatar { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 14px; display: grid; place-items: center; font-family: var(--serif); font-weight: 800; font-size: 1.8rem; color: #fff; background: var(--grad-mix); }
.member h3 { font-size: 1.1rem; }
.member p { color: var(--muted-l); font-size: .88rem; }

/* Value / list cards reuse why-card but light variant */
.lightcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lightcard { background: #fff; border: 1px solid var(--border-l); border-radius: var(--radius); padding: 26px 24px; transition: transform .25s ease, border-color .25s ease; }
.lightcard:hover { transform: translateY(-5px); border-color: var(--red); }
.lightcard__ic { width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 14px; background: linear-gradient(135deg, rgba(239,43,61,.1), rgba(43,107,255,.12)); }
.lightcard h3 { font-size: 1.15rem; margin-bottom: 8px; }
.lightcard p { color: var(--muted-l); font-size: .95rem; }

/* CTA band (reusable) */
.cta-band { background: var(--ink); color: #fff; border-radius: 22px; padding: 44px; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content:""; position:absolute; inset:0; background: radial-gradient(500px 260px at 20% 0%, rgba(239,43,61,.25), transparent 60%), radial-gradient(500px 260px at 85% 100%, rgba(43,107,255,.3), transparent 60%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(1.7rem,3.4vw,2.5rem); margin-bottom: 12px; }
.cta-band p { color: var(--muted-d); max-width: 560px; margin: 0 auto 24px; }
.cta-band .hero__actions { justify-content: center; }

/* Contact layout reuse .cta__inner + .form */
.contact-info { display: grid; gap: 14px; margin-top: 22px; }
.contact-info a, .contact-info span { color: var(--muted-d); text-decoration: none; display: flex; gap: 10px; align-items: center; }
.contact-info a:hover { color: #fff; }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 28px; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .lightcards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .blog-grid, .team-grid, .lightcards { grid-template-columns: 1fr; }
  .cta-band { padding: 30px 22px; }
}

/* Persistent header email */
.header__email { display: inline-flex; align-items: center; gap: 7px; color: #dbe3f4; text-decoration: none;
  font-size: .84rem; font-weight: 600; padding: 8px 13px; margin-left: 14px; border-radius: 999px;
  border: 1px solid var(--border-d); background: rgba(255,255,255,.05); white-space: nowrap; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.header__email:hover { color: #fff; border-color: var(--red); background: rgba(239,43,61,.12); }
.header__email svg { flex: none; color: #ff6d6d; }
@media (max-width: 720px) {
  .header__email { margin-left: auto; margin-right: 8px; padding: 7px 11px; font-size: .78rem; }
}
@media (max-width: 420px) {
  .header__logo .wordmark { display: none; }  /* keep email visible: drop logo text, keep phoenix */
  .header__email { margin-left: auto; padding: 7px 10px; font-size: .72rem; }
}

/* Hero real photo (smaller, clean frame) */
.hero__visual { max-width: 400px; margin-left: auto; }
.hero-photo { border-radius: 18px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 30px 70px -30px rgba(0,0,0,.7); aspect-ratio: 4/3; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 980px) { .hero__visual { max-width: 340px; margin: 0 auto; } }
