/*
Theme Name: EvalonX
Theme URI: https://evalon.in
Author: SBNA Technologies
Author URI: https://evalon.in
Description: Custom theme for EvalonX — The Assessment Operating System. A modern, single-page investor & product site generated from the EvalonX investor deck.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 7.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: evalonx
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ink: #0f1729;        /* logo navy */
  --ink-2: #17223b;
  --navy: #0a0f1a;
  --slate: #64748b;
  --slate-2: #94a3b8;
  --line: #e6e9f0;
  --line-dark: rgba(255,255,255,.10);
  --bg: #ffffff;
  --bg-soft: #f5f9f8;
  --bg-soft-2: #e9f4f2;

  --brand: #0f766e;       /* teal-700 — text, icons, borders (AA on light) */
  --brand-2: #0b7a6b;     /* deep teal — gradient stop */
  --brand-bright: #1caf9a;/* logo teal — vibrant accents */
  --cyan: #0d9488;        /* teal-600 accent */
  --cyan-bright: #2dd4bf; /* bright aqua — dark sections */
  --mint: #10b981;
  --amber: #f4a62b;       /* amber (logo X) */
  --rose: #f43f5e;

  --grad: linear-gradient(120deg, #0f766e 0%, #0d9488 55%, #109a8a 100%);
  --grad-soft: linear-gradient(120deg, rgba(13,148,136,.12), rgba(45,212,191,.12));

  --radius: 18px;
  --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(15,23,42,.06), 0 2px 8px rgba(15,23,42,.05);
  --shadow: 0 10px 30px -12px rgba(15,23,42,.20);
  --shadow-lg: 0 30px 60px -20px rgba(8,40,36,.35);

  --maxw: 1160px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.28rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ============================================================
   HELPERS
   ============================================================ */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--brand);
  background: var(--grad-soft);
  padding: .5em 1em; border-radius: 999px; margin-bottom: 1.1rem;
}
.section-dark .eyebrow { color: var(--cyan-bright); background: rgba(45,212,191,.12); }
.grad-text {
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lead { font-size: 1.18rem; color: var(--slate); max-width: 60ch; }
.section-dark .lead { color: var(--slate-2); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

section { padding: clamp(64px, 8vw, 110px) 0; position: relative; }
.section-soft { background: var(--bg-soft); }
.section-dark { background: var(--navy); color: #eef2ff; }
.section-dark h2, .section-dark h3 { color: #fff; }

.section-head { max-width: 760px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; font-size: .98rem;
  padding: .85em 1.5em; border-radius: 999px; cursor: pointer;
  border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 12px 28px -10px rgba(28,175,154,.5); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -12px rgba(28,175,154,.6); }
.btn-ghost { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.22); }
.btn-ghost:hover { background: rgba(255,255,255,.14); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { transform: translateY(-2px); border-color: var(--brand); color: var(--brand); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px -18px rgba(15,23,42,.4);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 40px; width: auto; display: block; }
.site-footer .brand-logo { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a.navlink, .nav-links button.navlink {
  font-size: .93rem; font-weight: 600; color: var(--slate); padding: .5em .8em; border-radius: 10px;
  transition: color .15s, background .15s;
}
.nav-links a.navlink:hover, .nav-links button.navlink:hover { color: var(--ink); background: var(--bg-soft-2); }
.nav-links .navlink.active { color: var(--brand); }
.nav-cta { margin-left: 8px; }

/* nav dropdown */
.has-drop { position: relative; }
.drop-toggle { font-family: inherit; background: none; border: 0; cursor: pointer; display: inline-flex; align-items: center; gap: .35em; }
.drop-toggle .caret { font-size: .7em; transition: transform .2s; }
.has-drop.open .drop-toggle .caret { transform: rotate(180deg); }
.drop-menu {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.has-drop:hover .drop-menu, .has-drop.open .drop-menu { opacity: 1; visibility: visible; transform: none; }
.drop-menu a { display: block; padding: .6em .8em; border-radius: 9px; font-size: .93rem; font-weight: 600; color: var(--slate); }
.drop-menu a:hover { background: var(--bg-soft-2); color: var(--brand); }

/* WP-menu fallback (if a menu is assigned) */
.wp-nav { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.wp-nav a { font-size: .93rem; font-weight: 600; color: var(--slate); padding: .5em .8em; border-radius: 10px; }
.wp-nav a:hover { color: var(--ink); background: var(--bg-soft-2); }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; padding: 150px 0 90px; overflow: hidden;
  background: radial-gradient(1200px 600px at 78% -10%, rgba(28,175,154,.16), transparent 60%),
              radial-gradient(900px 500px at 5% 10%, rgba(244,166,43,.13), transparent 55%),
              linear-gradient(180deg, #fbfcff, #f4f7fe);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; }
.hero h1 { margin-bottom: .3em; }
.hero .sub { font-size: 1.24rem; color: var(--slate); max-width: 46ch; margin-bottom: 1.6rem; }
.hero .sub strong { color: var(--ink); font-weight: 700; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 1.8rem; }
.hero-meta { display: flex; gap: 26px; flex-wrap: wrap; color: var(--slate); font-size: .9rem; font-weight: 600; }
.hero-meta span { display: inline-flex; align-items: center; gap: .5em; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px rgba(16,185,129,.15); }

/* hero visual: answer script card */
.hero-visual { position: relative; }
.script-card {
  background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
  border: 1px solid var(--line); padding: 22px; transform: rotate(-1.5deg);
  position: relative; z-index: 2;
}
.script-card .sc-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.script-card .sc-tag { font-size: .72rem; font-weight: 800; letter-spacing: .12em; color: var(--slate); text-transform: uppercase; }
.script-card .sc-q { font-weight: 700; margin-bottom: 10px; color: var(--ink-2); }
.script-lines { display: grid; gap: 9px; margin: 14px 0 6px; }
.script-lines i { display: block; height: 9px; border-radius: 6px; background: linear-gradient(90deg, #e8ecf6, #f2f5fc); }
.script-lines i:nth-child(1){ width: 96%; } .script-lines i:nth-child(2){ width: 88%; }
.script-lines i:nth-child(3){ width: 92%; } .script-lines i:nth-child(4){ width: 70%; }
.score-badge {
  position: absolute; right: -18px; bottom: -22px; z-index: 3;
  background: var(--grad); color: #fff; border-radius: 18px; padding: 14px 20px;
  box-shadow: var(--shadow-lg); transform: rotate(3deg); text-align: center;
}
.score-badge .lbl { font-size: .64rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.score-badge .val { font-size: 2rem; font-weight: 900; line-height: 1; }
.score-badge .val small { font-size: .9rem; opacity: .8; }
.ai-chip {
  position: absolute; left: -26px; top: 26px; z-index: 3;
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700;
  transform: rotate(-4deg);
}
.ai-chip .pulse { width: 9px; height: 9px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(28,175,154,.2); }

.hero-flow {
  margin-top: 44px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-weight: 800; letter-spacing: -.01em; color: var(--slate);
}
.hero-flow b { color: var(--ink); }
.hero-flow .arrow { color: var(--brand); font-weight: 900; }

/* ============================================================
   INTERIOR PAGE HERO + BREADCRUMBS
   ============================================================ */
.page-hero {
  position: relative; padding: 140px 0 44px; overflow: hidden;
  background: radial-gradient(1000px 500px at 82% -20%, rgba(28,175,154,.14), transparent 60%),
              radial-gradient(700px 420px at 0% 0%, rgba(244,166,43,.11), transparent 55%),
              linear-gradient(180deg, #fbfcff, #f4f7fe);
}
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.2rem); max-width: 20ch; }
.page-hero .lead { margin-top: .4rem; }
.crumbs {
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  font-size: .85rem; font-weight: 600;
}
.crumbs .container { padding-top: 12px; padding-bottom: 12px; }
.crumbs a { color: var(--slate); }
.crumbs a:hover { color: var(--brand); }
.crumbs .sep { color: var(--slate-2); margin: 0 .5em; }
.crumbs span[aria-current] { color: var(--ink); }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { }
.stat .num { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; letter-spacing: -.03em; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { color: var(--slate); font-size: .95rem; margin-top: 2px; }
.section-dark .stat .num { background: linear-gradient(120deg,#5eead4,#2dd4bf); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-dark .stat .lbl { color: var(--slate-2); }

/* ============================================================
   CARD GRIDS
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
  position: relative; overflow: hidden;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d7dcea; }
.card .ic {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--grad-soft); color: var(--brand); margin-bottom: 16px;
}
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.16rem; }
.card p { color: var(--slate); font-size: .98rem; margin: 0; }
.card .num-tag { font-size: .8rem; font-weight: 800; color: var(--brand); letter-spacing: .1em; }

.section-dark .card { background: rgba(255,255,255,.04); border-color: var(--line-dark); box-shadow: none; }
.section-dark .card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); }
.section-dark .card p { color: var(--slate-2); }
.section-dark .card .ic { background: rgba(45,212,191,.12); color: var(--cyan-bright); }

/* problem stat callouts */
.callouts { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 26px; }
.callout { text-align: center; padding: 26px 18px; border-radius: var(--radius); background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); }
.callout .big { font-size: 2.4rem; font-weight: 900; background: linear-gradient(120deg,#fca5a5,#fca5a5); -webkit-background-clip:text; background-clip:text; color: transparent; }
.callout.c2 .big { background: linear-gradient(120deg,#fcd34d,#fbbf24); -webkit-background-clip:text; background-clip:text; color:transparent; }
.callout.c3 .big { background: linear-gradient(120deg,#5eead4,#2dd4bf); -webkit-background-clip:text; background-clip:text; color:transparent; }
.callout .cl { color: var(--slate-2); font-size: .92rem; margin-top: 6px; }

/* ============================================================
   PROCESS / STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.step { position: relative; }
.step .n {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad); color: #fff; font-weight: 900; margin-bottom: 14px; box-shadow: 0 10px 20px -8px rgba(28,175,154,.5);
}
.step h4 { font-size: 1.05rem; font-weight: 800; margin-bottom: .3em; }
.step p { color: var(--slate); font-size: .9rem; margin: 0; }
.step::after {
  content: ""; position: absolute; top: 22px; left: 54px; right: -9px; height: 2px;
  background: linear-gradient(90deg, rgba(28,175,154,.4), rgba(45,212,191,.25));
}
.steps .step:last-child::after { display: none; }

/* ============================================================
   FEATURE SPLIT (products)
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split.rev .split-media { order: 2; }
.feature-list { display: grid; gap: 18px; margin-top: 10px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .fi {
  flex: none; width: 34px; height: 34px; border-radius: 10px; background: var(--grad-soft);
  color: var(--brand); display: grid; place-items: center;
}
.feature-list .fi svg { width: 18px; height: 18px; }
.feature-list b { display: block; font-weight: 700; }
.feature-list span { color: var(--slate); font-size: .96rem; }

/* mock panels */
.mock {
  background: linear-gradient(180deg,#0e1428,#0a1020); border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.1); padding: 22px; color: #e6ebff; box-shadow: var(--shadow-lg);
}
.mock .m-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; font-size: .8rem; color: var(--slate-2); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.mock .m-timer { color: var(--cyan-bright); }
.mock .m-q { font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
.mock .m-lines i { display:block; height: 8px; border-radius:5px; background: rgba(255,255,255,.12); margin-bottom: 9px; }
.mock .m-lines i:nth-child(2){ width: 82%; } .mock .m-lines i:nth-child(3){ width: 90%; } .mock .m-lines i:nth-child(4){ width: 60%; }
.mock .m-submit { margin-top: 16px; display: inline-block; background: var(--grad); color:#fff; padding: .6em 1.4em; border-radius: 999px; font-weight: 700; font-size: .9rem; }

.ai-panel { background: #fff; border:1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.ai-panel .ap-head { background: var(--grad); color:#fff; padding: 16px 22px; display:flex; align-items:center; justify-content: space-between; }
.ai-panel .ap-head .t { font-weight: 800; letter-spacing: .04em; }
.ai-panel .ap-head .s { font-weight: 900; font-size: 1.3rem; }
.ai-panel .ap-body { padding: 20px 22px; }
.ap-row { display:flex; align-items:flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.ap-row:last-child { border-bottom: 0; }
.ap-row .mk { flex:none; width: 22px; height: 22px; border-radius: 50%; display:grid; place-items:center; font-size: .8rem; font-weight: 900; color:#fff; }
.ap-row.ok .mk { background: var(--mint); }
.ap-row.warn .mk { background: var(--amber); }
.ap-row span { font-size: .95rem; color: var(--ink-2); }
.ai-panel .ap-foot { padding: 12px 22px; background: var(--bg-soft); font-size: .82rem; color: var(--slate); font-weight: 600; }

/* CO attainment bars */
.bars { display: grid; gap: 14px; }
.bar-row { }
.bar-row .bl { display:flex; justify-content: space-between; font-size: .85rem; font-weight: 700; color: var(--slate); margin-bottom: 6px; }
.bar-track { height: 12px; border-radius: 999px; background: var(--bg-soft-2); overflow: hidden; position: relative; }
.section-dark .bar-track { background: rgba(255,255,255,.1); }
.bar-fill { height: 100%; border-radius: 999px; background: var(--grad); width: 0; transition: width 1.2s cubic-bezier(.2,.7,.2,1); }
.bar-target { position: absolute; top:-4px; bottom:-4px; width: 2px; background: var(--rose); left: 60%; }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.cmp th, table.cmp td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); font-size: .96rem; }
table.cmp thead th { background: var(--bg-soft); font-weight: 800; color: var(--ink); }
table.cmp tbody tr:last-child td { border-bottom: 0; }
table.cmp .row-h { font-weight: 700; color: var(--ink); }
table.cmp .yes { color: var(--mint); font-weight: 800; }
table.cmp .no { color: var(--slate-2); }
table.cmp .evalcol { background: linear-gradient(180deg, rgba(28,175,154,.07), rgba(45,212,191,.05)); }
table.cmp thead th.evalcol { background: var(--grad); color: #fff; }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.rm { border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 24px; background: rgba(255,255,255,.04); }
.rm .ph { font-size: .8rem; font-weight: 800; letter-spacing: .1em; color: var(--cyan-bright); text-transform: uppercase; }
.rm h4 { font-size: 1.15rem; margin: 8px 0 .4em; color: #fff; }
.rm p { color: var(--slate-2); font-size: .93rem; margin: 0; }

/* ============================================================
   GTM ladder
   ============================================================ */
.ladder { display:grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.rung { border:1px solid var(--line); border-radius: var(--radius); background:#fff; padding: 22px; box-shadow: var(--shadow-sm); position: relative; }
.rung .step-n { font-size: .8rem; font-weight: 800; color: var(--brand); letter-spacing: .1em; }
.rung h4 { margin: 6px 0 .2em; font-size: 1.1rem; }
.rung .scope { color: var(--slate); font-size: .9rem; }
.rung .tag { display:inline-block; margin-top: 12px; font-size: .78rem; font-weight: 700; color: var(--brand); background: var(--grad-soft); padding: .3em .8em; border-radius: 999px; }

/* ============================================================
   ASK / funds
   ============================================================ */
.funds { display:grid; gap: 16px; }
.fund-row .fl { display:flex; justify-content: space-between; font-weight: 700; margin-bottom: 6px; }
.fund-row .fl b { color:#fff; } .fund-row .fl span { color: var(--cyan-bright); }
.fund-track { height: 10px; border-radius: 999px; background: rgba(255,255,255,.1); overflow: hidden; }
.fund-fill { height: 100%; background: linear-gradient(90deg,#0e9488,#2dd4bf); border-radius: 999px; width: 0; transition: width 1.2s ease; }
.unlocks li { display:flex; gap: 12px; align-items: flex-start; padding: 10px 0; color: var(--slate-2); }
.unlocks li svg { flex:none; width: 22px; height: 22px; color: var(--cyan-bright); }
.unlocks li b { color: #fff; font-weight: 700; }

/* ============================================================
   CTA + CONTACT
   ============================================================ */
.cta {
  background: var(--grad); color: #fff; border-radius: var(--radius-lg); padding: clamp(38px,5vw,64px);
  text-align: center; position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 1.8rem; font-size: 1.12rem; }
.cta .btn-outline { background: #fff; }
.contact-grid { display:grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: .98rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--slate-2); }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--amber); border-color: transparent; }
.contact-status { margin: 0; padding: 0; font-weight: 700; border-radius: 12px; display: none; }
.contact-status:empty { display: none; }
.contact-status.is-success { display: block; padding: .8em 1.2em; color: #fff; background: rgba(16,185,129,.25); }
.contact-status.is-error { display: block; padding: .8em 1.2em; color: #fff; background: rgba(244,63,94,.25); }
.contact-info .ci { display:flex; align-items:center; gap: 14px; margin-bottom: 18px; }
.contact-info .ci .ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.08); display:grid; place-items:center; color: var(--cyan-bright); }
.contact-info .ci b { display:block; color:#fff; } .contact-info .ci span { color: rgba(255,255,255,.75); font-size: .92rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: #060911; color: var(--slate-2); padding: 56px 0 30px; }
.footer-top { display:flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding-bottom: 30px; border-bottom: 1px solid var(--line-dark); }
.footer-brand { max-width: 320px; }
.footer-brand .brand { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: .92rem; }
.footer-cols { display:flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { color:#fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 14px; }
.footer-col a { display:block; padding: 5px 0; font-size: .93rem; transition: color .15s; }
.footer-col a:hover { color: var(--cyan-bright); }
.footer-bottom { display:flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: .85rem; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin: 20px auto 0; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .split.rev .split-media { order: 0; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .step::after { display: none; }
  .stat-strip { grid-template-columns: repeat(2,1fr); }
  .roadmap { grid-template-columns: 1fr; }
  .ladder { grid-template-columns: repeat(2,1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .callouts { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .brand-logo { height: 34px; }
  .hero { padding: 116px 0 64px; }
  .page-hero { padding: 112px 0 36px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; position: absolute; top: 74px; left: 0; right: 0; flex-direction: column; align-items: stretch;
    background: #fff; padding: 14px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .nav-links.open .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  /* dropdown collapses inline within the mobile menu */
  .has-drop { width: 100%; }
  .drop-toggle { width: 100%; justify-content: space-between; }
  .drop-menu {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: 0; padding: 0 0 0 12px; min-width: 0; display: none;
  }
  .has-drop.open .drop-menu { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .callouts, .funds { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ladder { grid-template-columns: 1fr; }
  .score-badge { right: 10px; }
  .ai-chip { left: 6px; }
}
