/* ============================================================
   Scholrithm — Fresh Enterprise SaaS Design
   Inspired by: Classter, Teachmint, Linear, Vercel
   Display: Plus Jakarta Sans · Body: DM Sans
   Dark hero → Clean white content
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&display=swap');

/* ── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Fonts */
  --font-d: 'Plus Jakarta Sans', -apple-system, sans-serif;
  --font:   'DM Sans', -apple-system, sans-serif;

  /* Brand */
  --blue:        #2563eb;
  --blue-hover:  #1d4ed8;
  --blue-light:  #3b82f6;
  --blue-50:     #eff6ff;
  --blue-100:    #dbeafe;

  --cta:         #f97316;
  --cta-hover:   #ea580c;
  --cta-soft:    #fff7ed;

  --green:       #10b981;
  --green-bg:    #ecfdf5;

  --purple:      #8b5cf6;
  --purple-bg:   #f5f3ff;

  --gold:        #f59e0b;
  --gold-bg:     #fffbeb;

  /* Surfaces */
  --ink:         #080d1a;   /* hero bg */
  --navy:        #0f172a;   /* footer */
  --navy-2:      #1e293b;   /* sidebar mockup */
  --navy-3:      #334155;

  --page-bg:     #f8fafc;
  --card:        #ffffff;
  --surface:     #f1f5f9;

  /* Text */
  --text:        #0f172a;
  --text-2:      #475569;
  --text-3:      #94a3b8;
  --text-4:      #cbd5e1;

  /* Borders */
  --border:      #e2e8f0;
  --border-2:    #cbd5e1;

  /* Shadows */
  --sh-sm:  0 1px 2px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04);
  --sh-md:  0 4px 16px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.04);
  --sh-lg:  0 12px 40px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.05);
  --sh-xl:  0 24px 64px rgba(0,0,0,0.14), 0 8px 16px rgba(0,0,0,0.06);
  --sh-blue:0 8px 32px rgba(37,99,235,0.22);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-2xl:28px;
  --r-full: 9999px;

  --nav-h: 68px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.section { padding: 100px 0; }
.section-sm { padding: 72px 0; }

/* ── Eyebrow / Label ────────────────────────────────────────── */
.eyebrow, .section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-d);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-50); border: 1px solid var(--blue-100);
  padding: 5px 13px; border-radius: var(--r-full);
}
.eyebrow.light {
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}

/* ── Typography ─────────────────────────────────────────────── */
.section-headline {
  font-family: var(--font-d);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--text);
  margin-top: 14px;
}
.section-headline em { font-style: normal; color: var(--blue); }
.section-headline .orange { color: var(--cta); }
.section-sub {
  font-size: 1.05rem; color: var(--text-2);
  line-height: 1.75; margin-top: 14px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-d); font-weight: 600; font-size: 0.9rem;
  padding: 11px 22px; border-radius: var(--r-md);
  transition: all 0.18s ease; white-space: nowrap; cursor: pointer; border: none;
}
.btn-cta, .btn-orange {
  background: var(--cta); color: #fff;
  box-shadow: 0 2px 10px rgba(249,115,22,0.32);
}
.btn-cta:hover, .btn-orange:hover {
  background: var(--cta-hover); transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(249,115,22,0.38);
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: var(--sh-blue);
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue-100);
}
.btn-outline:hover { background: var(--blue-50); border-color: var(--blue); }
.btn-ghost-dark {
  background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,0.14); color: #fff; }
.btn-white {
  background: #fff; color: var(--text);
  border: 1.5px solid var(--border); box-shadow: var(--sh-sm);
}
.btn-white:hover { background: var(--surface); border-color: var(--border-2); }
.btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost:hover { background: rgba(255,255,255,0.16); }
.btn-lg { padding: 14px 30px; font-size: 0.97rem; }
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
}
.nav-logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
/* Real logo image in nav */
.nav-logo-img {
  height: 40px; width: auto; display: block;
  /* Pill background so logo is legible on both dark hero and white scrolled nav */
  background: rgba(255,255,255,0.92);
  border-radius: var(--r-md);
  padding: 3px 10px;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
.nav.scrolled .nav-logo-img {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  font-size: 0.875rem; font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 7px 14px; border-radius: var(--r-md);
  transition: all 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-links a { color: var(--text-2); }
.nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active {
  color: var(--text); background: var(--surface);
}
.nav-actions { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 7px; cursor: pointer; border-radius: var(--r-md);
}
.hamburger span { display: block; width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.nav.scrolled .hamburger span { background: var(--text); }
.mobile-nav {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--navy); z-index: 299;
  flex-direction: column; padding: 16px; gap: 3px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.65); padding: 13px 16px;
  border-radius: var(--r-md); transition: all 0.15s;
}
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,0.08); }

/* ============================================================
   HERO — Dark, centered, product screenshot
   ============================================================ */
.hero {
  background: var(--ink);
  padding: calc(var(--nav-h) + 80px) 0 0;
  position: relative; overflow: hidden;
  text-align: center;
}

/* Dot grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse at top, rgba(37,99,235,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-d); font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px; border-radius: var(--r-full);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-h1 {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -0.04em; color: #fff;
  margin-bottom: 22px;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.hero-h1 .grad {
  background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #fb923c 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.52);
  line-height: 1.75; max-width: 560px;
  margin: 0 auto 36px;
}

.hero-ctas {
  display: flex; justify-content: center; gap: 12px;
  flex-wrap: wrap; margin-bottom: 56px;
}

.hero-proof-row {
  display: flex; justify-content: center; align-items: center;
  gap: 32px; flex-wrap: wrap; margin-bottom: 64px;
}
.hero-proof-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: rgba(255,255,255,0.42);
}
.hero-proof-item .icon { font-size: 0.9rem; }
.hero-proof-item strong { color: rgba(255,255,255,0.75); font-weight: 600; }

/* ── Hero Screenshot ──────────────────────────────────────── */
.hero-screenshot-wrap {
  position: relative; margin: 0 auto;
  max-width: 1060px; padding: 0 20px;
}

/* Glow under screenshot */
.hero-screenshot-wrap::before {
  content: '';
  position: absolute; bottom: -20px; left: 5%; right: 5%; height: 60px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.4), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.hero-browser {
  border-radius: 14px 14px 0 0; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04), var(--sh-xl);
  background: #1a1f2e;
}
.browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 16px;
  background: #131720;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.browser-dots { display: flex; gap: 6px; }
.browser-dots span {
  width: 11px; height: 11px; border-radius: 50%;
}
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1; background: rgba(255,255,255,0.07);
  border-radius: 6px; padding: 5px 12px;
  font-size: 0.7rem; color: rgba(255,255,255,0.35);
  font-family: 'SF Mono', 'Fira Code', monospace;
  text-align: center;
}
.browser-body { display: flex; height: auto; min-height: 0; }

/* Sidebar */
.app-sidebar {
  width: 210px; background: #151b2c; flex-shrink: 0;
  display: flex; flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.sb-top {
  padding: 16px 14px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 6px;
}
.sb-brand {
  display: flex; align-items: center; gap: 9px;
}
.sb-logo {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--blue), #a78bfa);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-weight: 800; font-size: 0.82rem; color: #fff;
}
.sb-brand-text .sb-name { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.9); font-family: var(--font-d); }
.sb-brand-text .sb-school { font-size: 0.6rem; color: rgba(255,255,255,0.35); margin-top: 1px; }
.sb-section { font-size: 0.54rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.22); padding: 8px 14px 4px; }
.sb-item {
  display: flex; align-items: center; gap: 9px;
  padding: 8px 10px; margin: 1px 8px;
  border-radius: 8px; font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.48); cursor: pointer;
  transition: all 0.15s;
}
.sb-item.active { background: rgba(37,99,235,0.2); color: #93c5fd; }
.sb-item-icon {
  width: 18px; height: 18px; border-radius: 5px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0;
}

/* Main dashboard */
.app-main {
  flex: 1; background: #0f1420; display: flex; flex-direction: column;
  overflow: hidden;
}
.app-topbar {
  padding: 10px 18px;
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.app-topbar-title { font-size: 0.8rem; font-weight: 600; color: rgba(255,255,255,0.8); font-family: var(--font-d); }
.app-topbar-right { display: flex; align-items: center; gap: 8px; }
.app-badge {
  font-size: 0.6rem; padding: 3px 8px; border-radius: 100px; font-weight: 600;
  background: rgba(16,185,129,0.15); color: #6ee7b7;
}
.app-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), #a78bfa);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.55rem; font-weight: 700; color: #fff;
}

.app-content { padding: 14px 16px; flex: 1; overflow: hidden; }

/* Stat cards in hero mockup */
.app-stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; margin-bottom: 12px; }
.app-stat-card {
  background: #1a2235; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 11px 13px;
}
.app-stat-card .lbl { font-size: 0.58rem; color: rgba(255,255,255,0.38); font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px; }
.app-stat-card .val { font-size: 1.15rem; font-weight: 800; font-family: var(--font-d); line-height: 1; margin-bottom: 4px; }
.app-stat-card .val.blue { color: #60a5fa; }
.app-stat-card .val.green { color: #6ee7b7; }
.app-stat-card .val.orange { color: #fb923c; }
.app-stat-card .val.purple { color: #c4b5fd; }
.app-stat-card .chg { font-size: 0.57rem; font-weight: 600; }
.chg.up { color: #6ee7b7; }
.chg.dn { color: #fca5a5; }
.chg.neutral { color: rgba(255,255,255,0.3); }

.app-row-section { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8px; }
.app-mini-card {
  background: #1a2235; border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px; padding: 10px 12px;
}
.app-mini-title { font-size: 0.64rem; font-weight: 600; color: rgba(255,255,255,0.65); margin-bottom: 8px; font-family: var(--font-d); }

/* Mini bar chart */
.mini-bars { display: flex; align-items: flex-end; gap: 3px; height: 52px; }
.mini-bar-g { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 2px; }
.bar-fill { width: 100%; border-radius: 2px 2px 0 0; background: rgba(37,99,235,0.4); }
.bar-fill.hi { background: var(--blue); }
.bar-lbl { font-size: 0.46rem; color: rgba(255,255,255,0.28); }

/* Mini student rows */
.mini-student-rows { display: flex; flex-direction: column; gap: 4px; }
.mini-student-row {
  display: flex; align-items: center; gap: 7px;
  padding: 4px 5px; border-radius: 6px;
  background: rgba(255,255,255,0.03);
}
.mini-ava { width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0; font-size: 0.48rem; font-weight: 700; color: #fff; display: flex; align-items: center; justify-content: center; }
.mini-info { flex: 1; }
.mini-name { font-size: 0.63rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.mini-sub { font-size: 0.54rem; color: rgba(255,255,255,0.32); }
.mini-pill {
  font-size: 0.53rem; padding: 2px 7px; border-radius: 100px; font-weight: 600;
}
.mini-pill.active { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.mini-pill.pending { background: rgba(37,99,235,0.15); color: #93c5fd; }
.mini-pill.transfer { background: rgba(249,115,22,0.15); color: #fb923c; }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-bar {
  background: #0d1323;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 14px 0; overflow: hidden;
}
.marquee-track { display: flex; width: max-content; animation: marquee 35s linear infinite; }
.marquee-item {
  display: flex; align-items: center; gap: 10px; padding: 0 32px;
  font-size: 0.75rem; font-weight: 600; font-family: var(--font-d);
  color: rgba(255,255,255,0.38); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.marquee-item .dot { color: var(--cta); font-size: 0.6rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FEATURES
   ============================================================ */
.features { padding: 100px 0; background: #fff; }
.features-hdr { text-align: center; margin-bottom: 64px; }
.features-hdr .section-sub { max-width: 520px; margin: 14px auto 0; }

/* 3-column feature grid */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.feat-cell {
  background: #fff; padding: 32px 28px;
  transition: background 0.2s;
  position: relative;
}
.feat-cell:hover { background: var(--surface); }
.feat-cell-icon {
  width: 46px; height: 46px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.feat-cell-icon.blue   { background: var(--blue-50); }
.feat-cell-icon.orange { background: var(--cta-soft); }
.feat-cell-icon.green  { background: var(--green-bg); }
.feat-cell-icon.purple { background: var(--purple-bg); }
.feat-cell-icon.gold   { background: var(--gold-bg); }
.feat-cell-icon.slate  { background: var(--surface); }
.feat-cell h3 {
  font-family: var(--font-d); font-size: 0.97rem; font-weight: 700;
  color: var(--text); margin-bottom: 7px;
}
.feat-cell p {
  font-size: 0.86rem; color: var(--text-2); line-height: 1.65;
}
.feat-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; }
.feat-tag {
  font-size: 0.68rem; font-weight: 500; padding: 3px 9px;
  border-radius: var(--r-full);
  background: var(--surface); color: var(--text-2);
  border: 1px solid var(--border);
}

/* Large feature spotlight */
.feat-spotlight {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  margin-bottom: 24px;
}
.feat-spotlight-card {
  background: var(--navy); border-radius: var(--r-xl); padding: 40px;
  position: relative; overflow: hidden;
}
.feat-spotlight-card::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(37,99,235,0.18), transparent 65%);
  pointer-events: none;
}
.feat-spotlight-card .eyebrow { margin-bottom: 16px; }
.feat-spotlight-card h3 {
  font-family: var(--font-d); font-size: 1.4rem; font-weight: 800;
  color: #fff; line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.02em;
}
.feat-spotlight-card p {
  font-size: 0.875rem; color: rgba(255,255,255,0.52); line-height: 1.7;
  margin-bottom: 20px;
}

/* Mini audit log inside spotlight */
.mini-audit { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.mini-audit-row {
  display: flex; align-items: flex-start; gap: 9px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 8px 11px;
}
.audit-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; margin-top: 3px; }
.audit-dot.g { background: var(--green); }
.audit-dot.b { background: var(--blue-light); }
.audit-dot.r { background: #f87171; }
.mini-audit-msg { font-size: 0.64rem; color: rgba(255,255,255,0.62); line-height: 1.4; }
.mini-audit-msg strong { color: rgba(255,255,255,0.88); }
.mini-audit-meta { font-size: 0.56rem; color: rgba(255,255,255,0.3); margin-top: 2px; }

/* Transfer pipeline inside spotlight */
.mini-pipeline {
  display: flex; align-items: center; gap: 4px; margin-top: 16px;
}
.pipe-node {
  flex: 1; text-align: center; padding: 8px 4px;
  border-radius: var(--r-md); font-size: 0.6rem; font-weight: 600;
  font-family: var(--font-d);
  position: relative;
}
.pipe-node + .pipe-node::before {
  content: '→'; position: absolute; left: -10px; top: 50%;
  transform: translateY(-50%); font-size: 0.55rem;
  color: rgba(255,255,255,0.25);
}
.pipe-node.done   { background: rgba(16,185,129,0.15); color: #6ee7b7; }
.pipe-node.active { background: rgba(37,99,235,0.2); color: #93c5fd; border: 1px solid rgba(37,99,235,0.3); }
.pipe-node.pend   { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.3); }

/* ============================================================
   FEAT SPOTLIGHT — screenshot frames
   ============================================================ */
.feat-screenshot-frame {
  margin-top: 4px;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  overflow: hidden;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.06);
}
.feat-screenshot-frame img {
  width: 100%; display: block;
  transition: transform 0.5s ease;
}
.feat-spotlight-card:hover .feat-screenshot-frame img { transform: scale(1.02); }

/* ============================================================
   SHOWCASE SECTION — Feature walkthrough with screenshots
   ============================================================ */
.showcase-section { padding: 100px 0; background: #fff; }
.showcase-hdr { text-align: center; margin-bottom: 80px; }
.showcase-hdr .section-sub { max-width: 520px; margin: 14px auto 0; }

.showcase-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px;
  align-items: center; margin-bottom: 100px;
}
.showcase-row-rev .showcase-text { order: 2; }
.showcase-row-rev .showcase-img-wrap { order: 1; }

.showcase-label {
  font-family: var(--font-d); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  display: block; margin-bottom: 10px;
}
.showcase-text h3 {
  font-family: var(--font-d); font-size: 1.6rem; font-weight: 800;
  letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 14px; line-height: 1.2;
}
.showcase-text p { font-size: 0.95rem; color: var(--text-2); line-height: 1.75; margin-bottom: 20px; }
.showcase-list { display: flex; flex-direction: column; gap: 8px; }
.showcase-list li {
  font-size: 0.875rem; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 8px;
}
.showcase-list li::before {
  content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0;
}

.showcase-browser {
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xl), 0 0 0 1px var(--border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.showcase-browser:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 32px 80px rgba(0,0,0,0.14), 0 8px 20px rgba(0,0,0,0.06), 0 0 0 1px var(--border);
}
.showcase-browser-bar {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: 10px 14px; display: flex; align-items: center; gap: 6px;
}
.sbb-dot {
  width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0;
}
.sbb-dot:nth-child(1) { background: #fc5f57; }
.sbb-dot:nth-child(2) { background: #febc2e; }
.sbb-dot:nth-child(3) { background: #26c940; }
.sbb-url {
  font-size: 0.72rem; color: var(--text-3); font-family: 'SF Mono', 'Fira Code', monospace;
  margin-left: 8px;
}
.showcase-browser img { width: 100%; display: block; }

/* 2-column small showcase cards */
.showcase-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 0; }
.showcase-sm-card { background: var(--page-bg); border: 1px solid var(--border); border-radius: var(--r-2xl); padding: 28px 28px 0; overflow: hidden; }
.showcase-sm-card h3 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 800; margin: 8px 0 10px; color: var(--text); }
.showcase-sm-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; margin-bottom: 20px; }
.showcase-sm-browser { box-shadow: none; border: none; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.showcase-sm-browser .showcase-browser-bar { border-radius: 0; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how { padding: 100px 0; background: var(--page-bg); }
.how-hdr { text-align: center; margin-bottom: 64px; }
.how-hdr .section-sub { max-width: 460px; margin: 14px auto 0; }
.how-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.how-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 32px;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
}
.how-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.how-num {
  width: 38px; height: 38px; border-radius: var(--r-md);
  background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 0.95rem; font-weight: 800;
  margin-bottom: 18px;
}
.how-card h3 {
  font-family: var(--font-d); font-size: 1.05rem; font-weight: 700;
  margin-bottom: 9px; color: var(--text);
}
.how-card > p { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; margin-bottom: 18px; }
.how-steps { display: flex; flex-direction: column; gap: 6px; }
.how-step {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.82rem; color: var(--text-2);
}
.how-step::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
  background: var(--navy); padding: 80px 0;
  position: relative; overflow: hidden;
}
.stats-section::before {
  content: ''; position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15), transparent 65%);
  pointer-events: none;
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 48px; text-align: center; position: relative; }
.stat-num {
  font-family: var(--font-d); font-size: clamp(2.4rem,4.5vw,3.8rem);
  font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 8px; letter-spacing: -0.04em;
}
.stat-num .orange { color: var(--cta); }
.stat-num .blue   { color: var(--blue-light); }
.stat-desc { font-size: 0.86rem; color: rgba(255,255,255,0.45); font-weight: 500; }

/* ============================================================
   DIFFERENTIATORS
   ============================================================ */
.diff-section { padding: 100px 0; background: #fff; }
.diff-hdr { margin-bottom: 56px; }
.diff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.diff-card {
  background: var(--page-bg); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 30px;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
}
.diff-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); background: #fff; }
.diff-icon {
  width: 46px; height: 46px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.diff-card h3 {
  font-family: var(--font-d); font-size: 1rem; font-weight: 700;
  margin-bottom: 8px; color: var(--text);
}
.diff-card p { font-size: 0.86rem; color: var(--text-2); line-height: 1.65; }
.diff-tech {
  display: inline-block; margin-top: 14px;
  font-size: 0.7rem; font-weight: 600;
  color: var(--text-2); background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 3px 10px; font-family: 'SF Mono', 'Fira Code', monospace;
}

/* ============================================================
   EARLY ACCESS
   ============================================================ */
.early-access { padding: 100px 0; background: var(--page-bg); }
.ea-hdr { text-align: center; margin-bottom: 52px; }
.ea-hdr .section-sub { max-width: 500px; margin: 14px auto 0; }
.ea-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.ea-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 30px;
  display: flex; flex-direction: column;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.ea-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); }
.ea-card-icon {
  width: 46px; height: 46px; border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 16px;
}
.ea-card h3 {
  font-family: var(--font-d); font-size: 1rem; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
}
.ea-card p { font-size: 0.875rem; color: var(--text-2); line-height: 1.7; flex: 1; }
.ea-card-footer {
  margin-top: 20px; padding-top: 18px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem; color: var(--text-3);
}

/* ============================================================
   ROI TEASER
   ============================================================ */
.roi-teaser { padding: 100px 0; background: #fff; }
.roi-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.roi-teaser h2 {
  font-family: var(--font-d);
  font-size: clamp(1.9rem,3vw,2.6rem);
  font-weight: 800; letter-spacing: -0.03em;
  margin-top: 14px; margin-bottom: 14px; color: var(--text);
}
.roi-teaser h2 em { font-style: normal; color: var(--cta); }
.roi-teaser p { font-size: 1rem; color: var(--text-2); line-height: 1.75; margin-bottom: 24px; }
.roi-metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.roi-m {
  background: var(--page-bg); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
}
.roi-m .n {
  font-family: var(--font-d); font-size: 2rem; font-weight: 900;
  color: var(--cta); line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
}
.roi-m .l { font-size: 0.78rem; color: var(--text-2); line-height: 1.5; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section, .cta-final {
  background: var(--ink); padding: 100px 0;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before, .cta-final::before {
  content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15), transparent 60%);
  pointer-events: none;
}
.cta-section::after, .cta-final::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-section h2, .cta-final h2 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem,4vw,3.2rem);
  font-weight: 900; color: #fff;
  letter-spacing: -0.04em; margin-bottom: 16px;
}
.cta-section h2 em, .cta-final h2 em { font-style: normal; color: var(--cta); }
.cta-section > .container > p,
.cta-final p, .cta-final .sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.5);
  max-width: 460px; margin: 0 auto 32px;
}
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-note { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-top: 18px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #06091a; padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 52px; margin-bottom: 48px; }
.footer-logo {
  display: flex; align-items: center;
  margin-bottom: 12px;
}
/* Real logo in footer — white background pill for visibility on dark bg */
.footer-logo-img {
  height: 36px; width: auto; display: block;
  background: rgba(255,255,255,0.9);
  border-radius: var(--r-md);
  padding: 3px 10px;
}
.footer-brand p { font-size: 0.875rem; color: rgba(255,255,255,0.35); max-width: 250px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.25); margin-bottom: 16px;
  font-family: var(--font-d);
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem; color: rgba(255,255,255,0.22);
}

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-hero {
  background: var(--ink); padding: calc(var(--nav-h) + 72px) 0 64px;
  text-align: center; position: relative; overflow: hidden;
}
.pricing-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.pricing-hero::after {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse at top, rgba(37,99,235,0.2), transparent 60%);
  pointer-events: none;
}
.pricing-hero-inner { position: relative; z-index: 1; }
.pricing-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.4rem,4.5vw,3.4rem);
  font-weight: 900; letter-spacing: -0.04em; color: #fff;
  margin: 14px 0 12px;
}
.pricing-hero h1 em { font-style: normal; color: var(--cta); }
.pricing-hero p { color: rgba(255,255,255,0.5); font-size: 1.05rem; max-width: 480px; margin: 0 auto 28px; }

.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full); padding: 4px; margin-bottom: 0;
}
.billing-opt {
  padding: 8px 22px; border-radius: var(--r-full);
  font-size: 0.86rem; font-weight: 600;
  color: rgba(255,255,255,0.45);
  cursor: pointer; transition: all 0.2s; user-select: none;
  font-family: var(--font-d);
}
.billing-opt.active { background: #fff; color: var(--text); box-shadow: var(--sh-sm); }
.billing-save {
  font-size: 0.68rem; font-weight: 700;
  background: var(--green-bg); color: var(--green);
  padding: 2px 7px; border-radius: var(--r-full); margin-left: 4px;
}

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-bottom: 80px; }
.plan {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; box-shadow: var(--sh-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.plan:hover { box-shadow: var(--sh-lg); transform: translateY(-4px); }
.plan.popular {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1), var(--sh-md);
}
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-family: var(--font-d); font-size: 0.72rem; font-weight: 700;
  padding: 4px 16px; border-radius: var(--r-full);
  letter-spacing: 0.04em; white-space: nowrap;
}
.plan-name {
  font-family: var(--font-d); font-size: 0.78rem; font-weight: 700;
  color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em;
}
.plan-price { display: flex; align-items: flex-end; gap: 2px; }
.plan-cur { font-size: 1.3rem; font-weight: 700; color: var(--text); line-height: 1.5; font-family: var(--font-d); }
.plan-amt { font-family: var(--font-d); font-size: 3.2rem; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -0.04em; }
.plan-per { font-size: 0.85rem; color: var(--text-3); margin-bottom: 4px; }
.plan-sub { font-size: 0.78rem; color: var(--text-3); }
.plan-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.65; }
.plan-feats { display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plan-feat { display: flex; align-items: flex-start; gap: 9px; font-size: 0.875rem; color: var(--text-2); }
.pf-y { color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pf-n { color: var(--text-3); flex-shrink: 0; margin-top: 1px; }
.plan-cta { margin-top: auto; }

/* Compare table */
.compare { max-width: 860px; margin: 0 auto 80px; }
.compare h2 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 32px; letter-spacing: -0.02em; }
.compare-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--r-xl); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-sm); }
.compare-table th, .compare-table td { padding: 13px 18px; text-align: left; font-size: 0.875rem; border-bottom: 1px solid var(--border); }
.compare-table th { font-family: var(--font-d); font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-2); background: var(--surface); }
.compare-table td:first-child { font-weight: 500; color: var(--text); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--surface); }
.ct-yes { color: var(--green); font-weight: 700; }
.ct-no  { color: var(--text-3); }

/* FAQ */
.pricing-faq { max-width: 700px; margin: 0 auto; padding-bottom: 80px; }
.pricing-faq h2 { font-family: var(--font-d); font-size: 1.8rem; font-weight: 800; text-align: center; margin-bottom: 32px; letter-spacing: -0.02em; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-weight: 600; font-family: var(--font-d); cursor: pointer; user-select: none; transition: color 0.15s; }
.faq-q:hover { color: var(--blue); }
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--text-3); font-weight: 300; }
.faq-item.open .faq-q::after { content: '−'; }
.faq-a { font-size: 0.9rem; color: var(--text-2); line-height: 1.72; padding-bottom: 18px; display: none; }
.faq-item.open .faq-a { display: block; }

/* ============================================================
   ROI PAGE
   ============================================================ */
.roi-hero, .roi-page-hero {
  background: var(--ink); padding: calc(var(--nav-h) + 72px) 0 64px;
  text-align: center; position: relative; overflow: hidden;
}
.roi-hero::before, .roi-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.roi-hero-inner { position: relative; z-index: 1; }
.roi-hero h1, .roi-page-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.2rem,4vw,3.2rem);
  font-weight: 900; letter-spacing: -0.04em; color: #fff;
  margin: 14px 0 12px;
}
.roi-hero h1 em, .roi-page-hero h1 em { font-style: normal; color: var(--cta); }
.roi-hero p, .roi-page-hero p { color: rgba(255,255,255,0.5); font-size: 1rem; max-width: 520px; margin: 0 auto; }

.calc-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 56px; margin-bottom: 80px; }
.calc-panel {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 36px;
  box-shadow: var(--sh-sm);
}
.calc-panel h3 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid var(--border); color: var(--text); }
.calc-field { margin-bottom: 28px; }
.calc-lbl { display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; font-weight: 600; margin-bottom: 12px; color: var(--text); font-family: var(--font-d); }
.calc-val { font-size: 0.97rem; font-weight: 700; color: var(--blue); }
input[type="range"] {
  -webkit-appearance: none; appearance: none; width: 100%; height: 5px;
  border-radius: 3px; outline: none; cursor: pointer;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--pct,30%), var(--border) var(--pct,30%), var(--border) 100%);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; border: 2.5px solid var(--blue);
  box-shadow: 0 1px 4px rgba(37,99,235,0.3); cursor: grab; transition: box-shadow 0.15s;
}
input[type="range"]:active::-webkit-slider-thumb { cursor: grabbing; box-shadow: 0 0 0 6px rgba(37,99,235,0.12); }
.calc-range-tips { display: flex; justify-content: space-between; font-size: 0.68rem; color: var(--text-3); margin-top: 5px; }

.results-panel {
  background: var(--navy); border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-2xl); padding: 36px; box-shadow: var(--sh-lg);
}
.results-panel h3 { font-family: var(--font-d); font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 28px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.result-item { margin-bottom: 24px; }
.result-lbl { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 6px; font-family: var(--font-d); }
.result-val { font-family: var(--font-d); font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; letter-spacing: -0.03em; transition: all 0.35s ease; }
.result-val.highlight { color: var(--cta); }
.result-sub { font-size: 0.76rem; color: rgba(255,255,255,0.35); margin-top: 4px; }
.result-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 20px 0; }
.calc-disclaimer { font-size: 0.75rem; color: var(--text-3); text-align: center; margin-top: 14px; }
.roi-assumptions { max-width: 860px; margin: 0 auto 80px; }
.roi-assumptions h3 { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; margin-bottom: 18px; }
.assumptions-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.assumption-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 14px 16px; font-size: 0.84rem; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 9px; line-height: 1.55;
  box-shadow: var(--sh-sm);
}
.assumption-item::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ============================================================
   AI FUTURE SCOPE SECTION
   ============================================================ */
.ai-section { padding: 88px 0; background: var(--page-bg); }
.ai-hdr { text-align: center; margin-bottom: 52px; }
.ai-coming-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-d); font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--purple); background: var(--purple-bg);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 6px 14px; border-radius: var(--r-full);
  margin-bottom: 16px;
}
.ai-hdr h2 {
  font-family: var(--font-d); font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 800; letter-spacing: -0.03em; color: var(--text);
  margin-bottom: 12px;
}
.ai-hdr p { font-size: 0.97rem; color: var(--text-2); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.ai-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  margin-bottom: 40px;
}
.ai-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 26px;
  position: relative; overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ai-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--purple), var(--blue-light));
  opacity: 0; transition: opacity 0.2s;
}
.ai-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.ai-card:hover::before { opacity: 1; }
.ai-card-icon { font-size: 1.6rem; margin-bottom: 12px; }
.ai-card h3 { font-family: var(--font-d); font-size: 0.97rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.ai-card p { font-size: 0.84rem; color: var(--text-2); line-height: 1.65; }
.ai-footer { text-align: center; }
.ai-tune-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--purple-bg), #eff6ff);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: var(--r-xl); padding: 16px 28px;
  font-size: 0.9rem; color: var(--text-2); font-weight: 500;
}
.ai-tune-badge span:first-child { font-size: 1.2rem; }

/* ============================================================
   ROI — RESULTS MASK + LEAD FORM
   ============================================================ */

/* Mask overlay on results panel */
.results-mask {
  position: absolute; inset: 0; z-index: 10;
  background: rgba(15,23,42,0.82);
  backdrop-filter: blur(6px);
  border-radius: var(--r-2xl);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.35s ease;
}
.results-mask-inner { text-align: center; padding: 24px; }

/* Lead capture banner — hidden until Calculate clicked */
.lead-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-2xl);
  padding: 40px;
  margin-top: 48px;
  margin-bottom: 20px;
  display: block;
}
.lead-banner-visible { display: block !important; }
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lead-banner-text {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
}
.lead-banner-icon { font-size: 2.2rem; flex-shrink: 0; margin-top: 2px; }
.lead-banner-text h3 {
  font-family: var(--font-d); font-size: 1.3rem; font-weight: 800;
  color: #fff; margin-bottom: 6px; line-height: 1.2;
}
.lead-banner-text p { font-size: 0.9rem; color: rgba(255,255,255,0.45); line-height: 1.6; }

.lead-form { display: flex; flex-direction: column; gap: 14px; }
.lead-form-row { display: flex; gap: 14px; }
.lead-field { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.lead-field label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: rgba(255,255,255,0.4);
  font-family: var(--font-d);
}
.lead-field input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 11px 14px;
  font-size: 0.875rem; color: #fff;
  font-family: var(--font);
  transition: border-color 0.15s, background 0.15s;
  outline: none;
}
.lead-field input::placeholder { color: rgba(255,255,255,0.25); }
.lead-field input:focus {
  border-color: var(--blue-light);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}

.lead-form-footer {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 6px;
}
.lead-privacy { font-size: 0.75rem; color: rgba(255,255,255,0.28); flex: 1; }
.lead-msg {
  width: 100%; padding: 10px 14px;
  border-radius: var(--r-md); font-size: 0.875rem; font-weight: 600;
  margin-top: 4px;
}
.lead-msg-ok  { background: rgba(16,185,129,0.15); color: #6ee7b7; border: 1px solid rgba(16,185,129,0.25); }
.lead-msg-err { background: rgba(239,68,68,0.15);  color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); }

/* ============================================================
   ROI FEAT CARDS (screenshot cards in ROI page)
   ============================================================ */
.roi-feat-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.roi-feat-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.roi-feat-header { display: flex; align-items: flex-start; gap: 14px; padding: 20px 20px 0; margin-bottom: 10px; }
.roi-feat-icon { width: 40px; height: 40px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0; }
.roi-feat-title { font-family: var(--font-d); font-size: 0.9rem; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.roi-feat-save { font-size: 0.75rem; font-weight: 600; }
.roi-feat-desc { font-size: 0.82rem; color: var(--text-2); line-height: 1.6; padding: 0 20px 14px; }
.roi-feat-img { overflow: hidden; }
.roi-feat-img img { width: 100%; display: block; border-top: 1px solid var(--border); transition: transform 0.4s ease; }
.roi-feat-card:hover .roi-feat-img img { transform: scale(1.03); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: var(--ink); padding: calc(var(--nav-h) + 72px) 0 80px;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.about-hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 60%;
  background: radial-gradient(ellipse at 30% top, rgba(37,99,235,0.15), transparent 60%);
  pointer-events: none;
}
.about-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; position: relative; z-index: 1; }
.about-hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.4rem,4vw,3.4rem);
  font-weight: 900; letter-spacing: -0.04em; color: #fff;
  margin: 14px 0 18px;
}
.about-hero h1 em { font-style: normal; color: var(--blue-light); }
.about-hero p { font-size: 1rem; color: rgba(255,255,255,0.52); line-height: 1.8; margin-bottom: 14px; }

.about-numbers { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-num-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl); padding: 24px; text-align: center;
}
.about-num-card:nth-child(1) { border-top: 2.5px solid var(--blue-light); }
.about-num-card:nth-child(2) { border-top: 2.5px solid var(--cta); }
.about-num-card:nth-child(3) { border-top: 2.5px solid var(--green); }
.about-num-card:nth-child(4) { border-top: 2.5px solid #c4b5fd; }
.about-num { font-family: var(--font-d); font-size: 2rem; font-weight: 900; line-height: 1; margin-bottom: 6px; letter-spacing: -0.03em; color: #fff; }
.about-num-lbl { font-size: 0.78rem; color: rgba(255,255,255,0.4); }

.about-values { padding: 88px 0; background: var(--page-bg); }
.about-values h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 48px; letter-spacing: -0.02em; }
.about-values h2 em { font-style: normal; color: var(--cta); }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-card { background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 30px; box-shadow: var(--sh-sm); transition: box-shadow 0.2s; }
.value-card:hover { box-shadow: var(--sh-md); }
.value-em { font-size: 2rem; margin-bottom: 14px; }
.value-card h3 { font-family: var(--font-d); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.value-card p  { font-size: 0.86rem; color: var(--text-2); line-height: 1.65; }

.about-tech { padding: 88px 0; background: #fff; }
.about-tech h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -0.02em; }
.tech-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 36px; }
.tech-item { background: var(--page-bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 20px 14px; text-align: center; transition: all 0.15s; }
.tech-item:hover { background: #fff; box-shadow: var(--sh-sm); border-color: var(--border-2); }
.tech-em { font-size: 1.5rem; display: block; margin-bottom: 7px; }
.tech-name { font-size: 0.8rem; font-weight: 600; color: var(--text-2); }

.about-contact { padding: 88px 0; background: var(--ink); text-align: center; position: relative; overflow: hidden; }
.about-contact::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}
.about-contact h2 { font-family: var(--font-d); font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; z-index: 1; }
.about-contact p  { color: rgba(255,255,255,0.45); max-width: 440px; margin: 0 auto 28px; position: relative; z-index: 1; }
.contact-links { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.in { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.16s; }
.fade-up.d3 { transition-delay: 0.24s; }
.fade-up.d4 { transition-delay: 0.32s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feat-grid { grid-template-columns: repeat(2,1fr); }
  .diff-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section, .diff-section, .features, .how, .early-access, .roi-teaser, .stats-section { padding: 64px 0; }
  .hero { padding-top: calc(var(--nav-h) + 52px); }
  .hero-h1 { font-size: 2.5rem; }
  .hero-proof-row { gap: 20px; }
  .browser-body { height: auto; }
  .app-stats-row { grid-template-columns: repeat(2,1fr); }
  .app-row-section { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-spotlight { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .diff-grid { grid-template-columns: 1fr; }
  .ea-grid { grid-template-columns: 1fr; }
  .roi-teaser-grid { grid-template-columns: 1fr; gap: 40px; }
  .plans-grid { grid-template-columns: 1fr; }
  .calc-layout { grid-template-columns: 1fr; }
  .about-hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .assumptions-grid { grid-template-columns: 1fr; }
  .compare-table { display: block; overflow-x: auto; }
  .showcase-row, .showcase-row-rev { grid-template-columns: 1fr; gap: 36px; margin-bottom: 64px; }
  .showcase-row-rev .showcase-text { order: 1; }
  .showcase-row-rev .showcase-img-wrap { order: 2; }
  .showcase-two-col { grid-template-columns: 1fr; }
  .showcase-text h3 { font-size: 1.3rem; }
  .ai-grid { grid-template-columns: 1fr; }
  .lead-form-row { flex-direction: column; }
  .lead-banner { padding: 24px; }
  .lead-banner-text { flex-direction: column; gap: 10px; }
  .lead-form-footer { flex-direction: column; align-items: flex-start; }
  .nav-logo-img { height: 32px; }
  .cookie-banner-inner { flex-direction: column; gap: 14px; align-items: flex-start; }
  .cookie-banner-btns { width: 100%; justify-content: flex-end; }
  .page-lead-popup { bottom: 0; left: 0; right: 0; border-radius: var(--r-xl) var(--r-xl) 0 0; max-width: 100%; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 9999; width: calc(100% - 48px); max-width: 860px;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 4px 12px rgba(0,0,0,0.2);
  animation: cookieSlideUp 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(24px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-banner.cookie-hiding {
  animation: cookieSlideDown 0.3s ease forwards;
}
@keyframes cookieSlideDown {
  to { opacity: 0; transform: translateX(-50%) translateY(32px); }
}
.cookie-banner-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 18px 24px;
}
.cookie-banner-text {
  display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.cookie-banner-text strong {
  font-family: var(--font-d); font-size: 0.9rem; font-weight: 700; color: #fff;
}
.cookie-banner-text span {
  font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.5;
}
.cookie-link { color: var(--blue-light); text-decoration: underline; }
.cookie-banner-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ============================================================
   PAGE LEAD POPUP (timed — non-ROI pages)
   ============================================================ */
.page-lead-popup {
  position: fixed; bottom: 24px; right: 24px; z-index: 8000;
  width: 360px; background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-xl);
  display: none;
  animation: popupSlide 0.45s cubic-bezier(0.34,1.56,0.64,1);
}
.page-lead-popup.popup-visible { display: block; }
@keyframes popupSlide {
  from { opacity: 0; transform: translateY(24px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.popup-header {
  background: var(--navy); border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding: 18px 20px 16px; position: relative;
}
.popup-close {
  position: absolute; top: 12px; right: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.6);
  font-size: 1rem; line-height: 26px; text-align: center;
  cursor: pointer; transition: background 0.15s; flex-shrink: 0;
  border: none;
}
.popup-close:hover { background: rgba(255,255,255,0.22); color: #fff; }
.popup-header h4 {
  font-family: var(--font-d); font-size: 0.97rem; font-weight: 800;
  color: #fff; margin-bottom: 4px; padding-right: 30px;
}
.popup-header p { font-size: 0.78rem; color: rgba(255,255,255,0.45); }
.popup-body { padding: 18px 20px 20px; }
.popup-field { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.popup-field label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-2); font-family: var(--font-d); }
.popup-field input {
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 9px 12px; font-size: 0.875rem; font-family: var(--font);
  color: var(--text); outline: none; transition: border-color 0.15s;
}
.popup-field input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.popup-field input::placeholder { color: var(--text-3); }
.popup-submit { width: 100%; }
.popup-note { font-size: 0.72rem; color: var(--text-3); text-align: center; margin-top: 8px; }
.popup-msg { font-size: 0.82rem; font-weight: 600; padding: 8px 12px; border-radius: var(--r-md); margin-top: 8px; }
.popup-msg-ok  { background: var(--green-bg); color: #065f46; }
.popup-msg-err { background: #fef2f2; color: #991b1b; }

/* ============================================================
   LIGHTBOX — full-screen image overlay
   ============================================================ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5, 8, 20, 0.92);
  backdrop-filter: blur(10px) saturate(0.8);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  cursor: zoom-out;
  padding: 20px;
}
.lightbox-overlay.lb-open {
  opacity: 1; visibility: visible;
}
.lightbox-inner {
  position: relative;
  max-width: min(1400px, 96vw);
  max-height: 92vh;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transform: scale(0.94) translateY(10px);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.lightbox-overlay.lb-open .lightbox-inner {
  transform: scale(1) translateY(0);
}
.lightbox-img {
  max-width: 100%; max-height: 82vh;
  width: auto; height: auto;
  border-radius: 12px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.07);
  display: block;
  object-fit: contain;
  cursor: default;
}
.lightbox-caption {
  font-family: var(--font-d);
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  text-align: center;
}
.lightbox-close {
  position: fixed; top: 20px; right: 24px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff; font-size: 1.1rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 10000;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); transform: scale(1.1); }

.lightbox-nav {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: #fff; font-size: 1.2rem;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s, transform 0.15s;
  z-index: 10000;
  user-select: none;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-nav.lb-hidden { opacity: 0; pointer-events: none; }

/* Make all app screenshots show pointer + subtle hover cue */
.app-screenshot,
.feat-screenshot-frame img,
.showcase-browser img,
.roi-feat-card img,
[data-lightbox] {
  cursor: zoom-in;
}
.feat-screenshot-frame img:hover,
.showcase-browser img:hover,
.roi-feat-card img:hover {
  filter: brightness(1.03);
}

/* ============================================================
   FLOATING CONTACT WIDGET — bottom-right chat-style button
   ============================================================ */
.fcw-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 8000;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--cta); color: #fff;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(249,115,22,0.45), 0 2px 8px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-size: 1.4rem;
}
.fcw-btn:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(249,115,22,0.55); }
.fcw-btn .fcw-icon-open  { display: flex; }
.fcw-btn .fcw-icon-close { display: none; }
.fcw-btn.fcw-open .fcw-icon-open  { display: none; }
.fcw-btn.fcw-open .fcw-icon-close { display: flex; }

.fcw-panel {
  position: fixed; bottom: 100px; right: 28px; z-index: 7999;
  width: 380px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.16), 0 4px 16px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
  overflow: hidden;
  transform: translateY(16px) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(0.16,1,0.3,1), opacity 0.24s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.fcw-panel.fcw-panel-open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: all;
}
.fcw-panel-head {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  padding: 20px 20px 18px;
  position: sticky; top: 0; z-index: 1;
}
.fcw-panel-head h4 {
  color: #fff; font-family: var(--font-d);
  font-size: 1rem; font-weight: 700; margin: 0 0 4px;
}
.fcw-panel-head p {
  color: rgba(255,255,255,0.45); font-size: 0.78rem; margin: 0;
}
.fcw-panel-body { padding: 18px 20px 22px; }
.fcw-field { display: flex; flex-direction: column; gap: 4px; margin-bottom: 11px; }
.fcw-field label {
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--text-2); font-family: var(--font-d);
}
.fcw-field input,
.fcw-field select,
.fcw-field textarea {
  border: 1.5px solid var(--border); border-radius: var(--r-md);
  padding: 9px 12px; font-size: 0.855rem; font-family: var(--font);
  color: var(--text); outline: none; transition: border-color 0.15s;
  background: #fff;
}
.fcw-field input:focus,
.fcw-field select:focus,
.fcw-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,0.1); }
.fcw-field input::placeholder,
.fcw-field textarea::placeholder { color: var(--text-3); }
.fcw-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px; }
.fcw-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.fcw-submit { width: 100%; margin-top: 4px; }
.fcw-note { font-size: 0.7rem; color: var(--text-3); text-align: center; margin-top: 8px; }
.fcw-msg { font-size: 0.82rem; font-weight: 600; padding: 8px 12px; border-radius: var(--r-md); margin-top: 8px; display: none; }
.fcw-msg-ok  { background: var(--green-bg); color: #065f46; }
.fcw-msg-err { background: #fef2f2; color: #991b1b; }

@media (max-width: 480px) {
  .fcw-panel { width: calc(100vw - 24px); right: 12px; bottom: 90px; }
  .fcw-btn { bottom: 18px; right: 18px; }
  .fcw-row-2 { grid-template-columns: 1fr; }
}
