/* =========================================================
   Scripto Agency — Landing Page
   ========================================================= */

:root {
  --bg: #06080c;
  --bg-elev: #0b0f17;
  --bg-card: #0e131c;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f6fb;
  --text-dim: #a4adbf;
  --text-mute: #6b7388;
  --violet: #7c3aed;
  --violet-2: #a855f7;
  --cyan: #22d3ee;
  --cyan-2: #67e8f9;
  --good: #22c55e;
  --warn: #f59e0b;
  --bad: #ef4444;
  --nav-bg: rgba(8, 10, 14, 0.65);
  --nav-bg-scrolled: rgba(6, 8, 12, 0.85);
  --card-tint: rgba(255,255,255,0.02);
  --final-grad-from: #0c0f17;
  --final-grad-to: #06080c;
  --grain-opacity: 0.06;
  --radius: 14px;
  --radius-lg: 20px;
  --shadow-soft: 0 1px 0 rgba(255,255,255,0.04) inset, 0 30px 80px -30px rgba(0,0,0,0.6);
  --maxw: 1320px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

:root[data-theme="light"] {
  --bg: #f6f7fb;
  --bg-elev: #ffffff;
  --bg-card: #ffffff;
  --border: rgba(15, 23, 42, 0.10);
  --border-strong: rgba(15, 23, 42, 0.16);
  --text: #0f172a;
  --text-dim: #4b5567;
  --text-mute: #7a8497;
  --nav-bg: rgba(255, 255, 255, 0.78);
  --nav-bg-scrolled: rgba(255, 255, 255, 0.92);
  --card-tint: rgba(0,0,0,0.02);
  --final-grad-from: #f0eef9;
  --final-grad-to: #f6f7fb;
  --grain-opacity: 0.04;
  --shadow-soft: 0 1px 0 rgba(0,0,0,0.04) inset, 0 30px 80px -30px rgba(15,23,42,0.18);
}

* { box-sizing: border-box; }
html, body { padding: 0; margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* offset for sticky nav so anchor links don't hide */
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Instrument Sans', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-y: none; /* prevent rubber-band on iOS */
}
@media (max-width: 768px) {
  html { scroll-padding-top: 80px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
::selection { background: rgba(124, 58, 237, 0.4); color: #fff; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', 'Instrument Sans', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.3rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.01em; }
p { margin: 0; text-wrap: pretty; }
.lede { font-size: clamp(1.1rem, 1.5vw, 1.25rem); color: var(--text-dim); max-width: 60ch; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: clamp(60px, 7vw, 100px) 0; position: relative; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 14px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--violet-2); box-shadow: 0 0 10px var(--violet-2);
}
.section-head { text-align: center; margin: 0 auto 48px; max-width: 760px; }
.section-head .lede { margin: 18px auto 0; }
@media (min-width: 768px) {
  .h2-oneline { white-space: nowrap; max-width: none; }
}

/* Gradient text */
.grad {
  background: linear-gradient(120deg, #fff 0%, #fff 25%, #d6c2ff 60%, #b4a0ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: inherit;
  border: 0;
  cursor: pointer;
  transition: transform .25s var(--ease), color .2s var(--ease);
  white-space: nowrap;
  isolation: isolate;
  -webkit-tap-highlight-color: transparent;
}
.btn svg {
  width: 16px; height: 16px;
}
.btn:active { transform: translateY(1px); }

/* ----- Primary ----- */
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 1px 0 0 rgba(255,255,255,0.18) inset;
  position: relative;
}
/* Subtle 1px gradient border on top */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #9d6dff 0%, #8b3dff 100%);
}
.btn-primary > * { position: relative; z-index: 2; }

/* ----- Ghost ----- */
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.18);
}

.btn-lg { padding: 17px 28px; font-size: 1.05rem; border-radius: 14px; }
.btn-lg svg { width: 18px; height: 18px; }

/* ---------- Background textures ---------- */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: var(--grain-opacity); mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNjAnIGhlaWdodD0nMTYwJz48ZmlsdGVyIGlkPSduJz48ZmVUdXJidWxlbmNlIHR5cGU9J2ZyYWN0YWxOb2lzZScgYmFzZUZyZXF1ZW5jeT0nMC45JyBudW1PY3RhdmVzPScyJyBzdGl0Y2hUaWxlcz0nc3RpdGNoJy8+PGZlQ29sb3JNYXRyaXggdmFsdWVzPScwIDAgMCAwIDEgIDAgMCAwIDAgMSAgMCAwIDAgMCAxICAwIDAgMCAwLjYgMCcvPjwvZmlsdGVyPjxyZWN0IHdpZHRoPScxMDAlJyBoZWlnaHQ9JzEwMCUnIGZpbHRlcj0ndXJsKCNuKScvPjwvc3ZnPg==");
}

/* ---------- Navbar ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0;
  transition: padding .3s var(--ease), background .3s var(--ease);
}
.nav .nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 10px 30px -20px rgba(0,0,0,0.8);
}
.nav.scrolled { padding: 10px 0; }
.nav.scrolled .nav-inner { background: var(--nav-bg-scrolled); }
.logo {
  display: inline-flex; align-items: center;
  text-decoration: none;
}
.logo img { display: block; }
.logo-wordmark {
  height: 30px;
  width: auto;
}
.footer .logo .logo-wordmark { height: 38px; }

/* Wordmark theme swap */
:root[data-theme="light"] .logo .logo-dark { display: none; }
:root[data-theme="dark"]  .logo .logo-light { display: none; }
:root:not([data-theme="light"]) .logo .logo-light { display: none; }

/* Mobile CTA inside menu — hidden by default (shows only on mobile) */
.nav-cta-mobile { display: none; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 0.93rem;
  color: var(--text-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
.nav-cta { padding: 10px 16px; font-size: 0.9rem; border-radius: 999px; }
.menu-toggle { display: none; background: transparent; border: 0; color: var(--text); padding: 8px; }

/* ---------- Hero ---------- */
.hero {
  padding-top: 150px;
  padding-bottom: clamp(60px, 8vw, 100px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background-color: var(--bg);
}
.grid-bg {
  position: absolute; inset: -10% -5%;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 55% at 50% 35%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 75% 55% at 50% 35%, #000 30%, transparent 75%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 18s ease-in-out infinite alternate;
}
.blob.b1 { width: 460px; height: 460px; top: -120px; left: -100px; background: radial-gradient(circle, var(--violet) 0%, transparent 65%); opacity: 0.4; }
.blob.b2 { width: 420px; height: 420px; top: -40px; right: -100px; background: radial-gradient(circle, var(--cyan) 0%, transparent 65%); animation-delay: -6s; opacity: 0.28; }
.blob.b3 { width: 540px; height: 320px; bottom: -160px; left: 30%; background: radial-gradient(ellipse, #4c1d95 0%, transparent 65%); animation-delay: -12s; opacity: 0.4; }
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px, -30px) scale(1.05); }
  100% { transform: translate(-30px, 20px) scale(0.95); }
}

.hero-inner { text-align: center; position: relative; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 { margin: 0 auto; max-width: 32ch; }
.hero .lede { margin: 28px auto 0; font-size: clamp(1.05rem, 1.35vw, 1.2rem); }
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-top: 40px;
}
.hero-trust {
  margin-top: 48px;
  display: flex; gap: 32px; justify-content: center; align-items: center; flex-wrap: wrap;
  color: var(--text-dim); font-size: 0.92rem;
}
.hero-trust .t-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust .stars { color: #fbbf24; letter-spacing: 2px; }
.hero-trust .dot { width: 4px; height: 4px; background: var(--text-mute); border-radius: 50%; }
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

/* ---------- Stats Bar ---------- */
.stats {
  padding-top: clamp(40px, 5vw, 60px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(124,58,237,0.04) 0%, transparent 100%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 14px 18px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: 0; }
.stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #c8b6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat-label {
  margin-top: 4px;
  color: var(--text-dim);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Problem vs Solution ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
.compare .vs {
  align-self: center;
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  color: var(--text-dim);
}
.compare-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  position: relative;
}
.compare-card.old {
  background: linear-gradient(180deg, rgba(239,68,68,0.04) 0%, transparent 60%), var(--bg-card);
  border-color: rgba(239,68,68,0.15);
}
.compare-card.new {
  background: linear-gradient(180deg, rgba(124,58,237,0.06) 0%, transparent 60%), var(--bg-card);
  border-color: rgba(124,58,237,0.25);
  box-shadow: 0 30px 80px -40px rgba(124,58,237,0.5);
}
.compare-card h3 {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.5rem;
  margin-bottom: 22px;
}
.compare-card.old h3 .tag { color: var(--bad); }
.compare-card.new h3 .tag { color: var(--violet-2); }
.compare-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 14px; }
.compare-list li {
  display: flex; gap: 12px; align-items: flex-start;
  color: var(--text-dim);
  font-size: 0.98rem;
}
.compare-list .ic {
  width: 22px; height: 22px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  margin-top: 2px;
  font-size: 12px; font-weight: 700;
}
.compare-card.old .ic { background: rgba(239,68,68,0.12); color: var(--bad); }
.compare-card.new .ic { background: rgba(34,211,238,0.12); color: var(--cyan); }
.compare-card.new .compare-list li { color: var(--text); }

/* ---------- How It Works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-strong) 20%, var(--border-strong) 80%, transparent 100%);
  z-index: 0;
}
.step {
  text-align: center;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.step:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  margin: 0 auto 22px;
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(135deg, var(--violet) 0%, #4c1d95 100%);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(124,58,237,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
  position: relative;
}
.step h3 { margin-bottom: 10px; }
.step p { color: var(--text-dim); font-size: 0.97rem; }
.step-time {
  margin-top: 18px;
  font-size: 0.82rem;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- AI Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  padding: 30px;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 0%), rgba(124,58,237,0.15), transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.feature:hover { transform: translateY(-3px); border-color: rgba(124,58,237,0.35); }
.feature:hover::before { opacity: 1; }
.feature .f-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: grid; place-items: center;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(124,58,237,0.25) 0%, rgba(34,211,238,0.15) 100%);
  border: 1px solid rgba(124,58,237,0.35);
  color: var(--cyan-2);
}
.feature .f-icon svg { width: 22px; height: 22px; }
.feature h3 { margin-bottom: 8px; font-size: 1.2rem; }
.feature p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Industries ---------- */
.industries {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.industry {
  padding: 22px 18px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.industry:hover {
  transform: translateY(-3px);
  border-color: rgba(34,211,238,0.3);
  background: linear-gradient(180deg, rgba(34,211,238,0.05) 0%, var(--bg-card) 100%);
}
.industry .industry-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(34,211,238,0.08) 100%);
  border: 1px solid rgba(124,58,237,0.2);
  color: var(--cyan-2);
  transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.industry .industry-icon svg { width: 22px; height: 22px; }
.industry:hover .industry-icon {
  background: linear-gradient(135deg, rgba(124,58,237,0.25) 0%, rgba(34,211,238,0.15) 100%);
  border-color: rgba(34,211,238,0.4);
  color: #fff;
  transform: scale(1.05);
}
.industry .name { font-size: 0.92rem; color: var(--text); font-weight: 500; }

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial {
  position: relative;
  padding: 30px 28px 26px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(124,58,237,0.06) 0%, transparent 35%),
    var(--bg-card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  margin: 0;
  isolation: isolate;
  overflow: hidden;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
/* Decorative giant quote */
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -28px; right: 14px;
  font-family: 'Bricolage Grotesque', serif;
  font-size: 180px;
  line-height: 1;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(180deg, rgba(124,58,237,0.4) 0%, rgba(124,58,237,0.04) 100%);
  -webkit-background-clip: text; background-clip: text;
  pointer-events: none;
  z-index: 0;
  transition: color .3s var(--ease), transform .3s var(--ease);
}
/* Gradient border on hover */
.testimonial::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(124,58,237,0.6) 0%, rgba(34,211,238,0.4) 50%, transparent 80%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.testimonial:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -30px rgba(124,58,237,0.4);
}
.testimonial:hover::after { opacity: 1; }
.testimonial:hover::before { transform: scale(1.05) rotate(-2deg); }

.testimonial > * { position: relative; z-index: 2; }

.t-source {
  display: inline-flex; align-items: center; gap: 6px;
  align-self: flex-start;
  padding: 5px 10px 5px 8px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 16px;
}
.t-source svg { flex-shrink: 0; }
.t-source.clutch { color: #ff6b5e; }

.t-stars {
  color: #fbbf24;
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 1rem;
  filter: drop-shadow(0 2px 8px rgba(251,191,36,0.25));
}
.t-quote {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 24px;
  flex: 1;
  quotes: "\201C" "\201D";
}
.t-quote::before { content: open-quote; margin-right: 2px; color: var(--violet-2); }
.t-quote::after { content: close-quote; margin-left: 2px; color: var(--violet-2); }

.t-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}
.t-meta { display: flex; flex-direction: column; line-height: 1.3; }
.t-author .name { font-weight: 600; color: var(--text); font-size: 0.96rem; }
.t-author .role { color: var(--text-dim); font-size: 0.83rem; margin-top: 1px; }

/* ---------- Pricing ---------- */
.pricing {
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(124,58,237,0.12) 0%, transparent 60%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
}
.price-card {
  position: relative;
  padding: 36px 30px 32px;
  border-radius: 22px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }
.price-card.featured {
  background:
    linear-gradient(180deg, rgba(124,58,237,0.10) 0%, transparent 50%),
    var(--bg-card);
  border-color: rgba(124,58,237,0.35);
  box-shadow:
    0 50px 100px -40px rgba(124,58,237,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transform: translateY(-8px);
}
.price-card.featured:hover { transform: translateY(-12px); }
.featured-badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--violet) 0%, var(--cyan) 100%);
  color: #fff;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 12px 24px -8px rgba(124,58,237,0.6);
}
.price-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.tier-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
}
.tier-sub {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  padding: 4px 10px;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 999px;
}
.price-card.featured .tier-sub {
  color: var(--violet-2);
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.35);
}
.price-row {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
}
.price-row .currency { font-size: 1.4rem; color: var(--text-dim); font-weight: 500; }
.price-row .amount {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff 0%, #c8b6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1;
}
.price-row .unit { color: var(--text-dim); font-size: 0.92rem; margin-left: 2px; }
.price-sub { color: var(--text-dim); font-size: 0.94rem; margin-bottom: 22px; line-height: 1.5; }
.price-list { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 11px; flex: 1; }
.price-list li {
  display: flex; align-items: flex-start; gap: 11px;
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.45;
}
.price-list .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(34,211,238,0.15);
  border: 1px solid rgba(34,211,238,0.3);
  color: var(--cyan);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-list .check svg { width: 11px; height: 11px; }
.price-card.featured .price-list .check {
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.4);
  color: var(--violet-2);
}
.price-list .delivery {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text);
  width: 100%;
}
.price-list .delivery svg { width: 16px; height: 16px; color: var(--cyan); flex-shrink: 0; }
.price-card.featured .delivery svg { color: var(--violet-2); }
.price-card .btn { width: 100%; justify-content: center; }
.pricing-foot {
  margin-top: 32px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mute);
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background:
    radial-gradient(circle at 20% 0%, rgba(124,58,237,0.28) 0%, transparent 45%),
    radial-gradient(circle at 80% 100%, rgba(34,211,238,0.18) 0%, transparent 45%),
    linear-gradient(180deg, var(--final-grad-from) 0%, var(--final-grad-to) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: -1;
}
.final-cta::after {
  content: "";
  position: absolute;
  width: 520px; height: 520px;
  left: 50%; bottom: -260px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(124,58,237,0.35) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
.final-cta h2 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
.final-cta .lede { margin: 22px auto 36px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 40px;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand { max-width: 320px; }
.footer-brand p {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: 0.92rem;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, auto));
  gap: 40px;
}
.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-family: 'Instrument Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--text-dim); font-size: 0.93rem; transition: color .2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  color: var(--text-mute);
  font-size: 0.86rem;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .blob { animation: none; }
}

/* ---------- Responsive ---------- */
/* Constrain ultra-wide screens for readability */
@media (min-width: 1400px) {
  .stats-grid { padding: 0 40px; }
}

@media (max-width: 960px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat:nth-child(3) { border-right: 0; }
  .stat:nth-child(4), .stat:nth-child(5) {
    border-top: 1px solid var(--border);
    padding-top: 20px;
  }
  .stat:nth-child(4) { border-right: 1px solid var(--border); }
  .features { grid-template-columns: repeat(2, 1fr); }
  .industries { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
}

/* ========== TABLET & MOBILE NAV (≤1024px) ==========
   Below 1024px the 7 nav links cramp the bar. Switch to hamburger. */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-toggle { display: inline-flex; }
  /* Hide desktop CTA — moved into mobile menu */
  .nav-cta-wrap .nav-cta { display: none; }
  /* Show mobile CTA inside opened menu */
  .nav-cta-mobile { display: inline-flex !important; }
  /* Shrink wordmark for tighter nav */
  .nav .logo .logo-wordmark { height: 26px; }
}

/* ========== TABLET (max 900px) ========== */
@media (max-width: 900px) {
  .founder-grid { grid-template-columns: 1fr; gap: 32px; }
  .founder-left { flex-direction: row; align-items: center; }
}

/* ========== SMALL TABLET / LARGE PHONE (max 768px) ========== */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .hero { padding-top: 120px; }
  .hero-trust { gap: 14px; font-size: 0.82rem; flex-wrap: wrap; justify-content: center; }
  .hero-trust .dot { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .stat:nth-child(even) { border-right: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 20px; }
  .stat:nth-child(5) {
    grid-column: span 2;
    border-right: 0;
  }
  .compare { grid-template-columns: 1fr; }
  .compare .vs { justify-self: center; }
  .steps { grid-template-columns: 1fr; gap: 18px; }
  .steps::before { display: none; }
  .features { grid-template-columns: 1fr; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; gap: 32px; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-3px); }
  .price-row .amount { font-size: 3.2rem; }
  .footer-inner { flex-direction: column; }
  .footer-cols { width: 100%; }
  .founder-left { flex-direction: column; align-items: flex-start; }
}

/* ========== PHONE (max 600px) ========== */
@media (max-width: 600px) {
  .wrap { padding: 0 16px; }
  .hero { padding-top: 110px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); line-height: 1.08; }
  .hero .lede { font-size: 1rem; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; }
  .stat:nth-child(n+2) { border-top: 1px solid var(--border); padding-top: 20px; }
  .industries { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-head h2 { font-size: clamp(1.7rem, 6vw, 2.4rem); }
  .price-card { padding: 28px 22px; }
  .price-row .amount { font-size: 2.8rem; }
  .testimonial { padding: 24px 20px; }
  .faq-item summary { padding: 16px; }
  .faq-a p { padding: 0 16px 16px; }
  .geo-card { padding: 20px; flex-direction: column; gap: 14px; }
}

/* ========== TINY PHONE (max 380px) ========== */
@media (max-width: 380px) {
  .nav .nav-inner { padding: 8px 12px; gap: 8px; }
  .nav .logo .logo-wordmark { height: 22px; }
  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.2rem); }
  .industries { grid-template-columns: 1fr; }
  .hero-ctas .btn { font-size: 0.9rem; padding: 12px 18px; }
}

/* =========================================================
   LIGHT THEME OVERRIDES
   ========================================================= */
:root[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}
:root[data-theme="light"] .grad {
  background: linear-gradient(120deg, var(--text) 0%, #4338ca 60%, #7c3aed 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
:root[data-theme="light"] .stat-num,
:root[data-theme="light"] .price-row .amount,
:root[data-theme="light"] .fs-num {
  background: linear-gradient(180deg, #0f172a 0%, #4c1d95 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
:root[data-theme="light"] .grid-bg {
  background-image:
    linear-gradient(rgba(15,23,42,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.06) 1px, transparent 1px);
}
:root[data-theme="light"] .final-cta::before {
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
}
:root[data-theme="light"] .blob { opacity: 0.55 !important; filter: blur(100px); }
:root[data-theme="light"] .grain { mix-blend-mode: multiply; }

/* Card cosmetics on light bg */
:root[data-theme="light"] .stats {
  background: linear-gradient(180deg, rgba(124,58,237,0.06) 0%, transparent 100%);
}
:root[data-theme="light"] .btn-ghost {
  background: rgba(15, 23, 42, 0.03);
  color: var(--text);
  border-color: var(--border-strong);
}
:root[data-theme="light"] .btn-ghost:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.22);
}
:root[data-theme="light"] .feature:hover { border-color: rgba(124,58,237,0.4); }
:root[data-theme="light"] .feature::before {
  background: radial-gradient(circle 200px at var(--mx, 50%) var(--my, 0%), rgba(124,58,237,0.10), transparent 60%);
}
:root[data-theme="light"] .industry:hover {
  background: linear-gradient(180deg, rgba(34,211,238,0.08) 0%, var(--bg-card) 100%);
}
:root[data-theme="light"] .testimonial::before {
  background: linear-gradient(180deg, rgba(124,58,237,0.25) 0%, rgba(124,58,237,0.03) 100%);
  -webkit-background-clip: text; background-clip: text;
}
:root[data-theme="light"] .price-list .delivery {
  background: rgba(15,23,42,0.03);
}
:root[data-theme="light"] .founder-stats {
  background: rgba(15,23,42,0.03);
}
:root[data-theme="light"] .nav-cta-wrap .menu-toggle { color: var(--text); }

/* =========================================================
   THEME TOGGLE BUTTON
   ========================================================= */
.theme-toggle {
  display: inline-grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: background .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  padding: 0;
  flex-shrink: 0;
}
.theme-toggle:hover { background: rgba(255,255,255,0.08); border-color: var(--border-strong); }
:root[data-theme="light"] .theme-toggle { background: rgba(15,23,42,0.04); }
:root[data-theme="light"] .theme-toggle:hover { background: rgba(15,23,42,0.08); }
.theme-toggle svg { width: 18px; height: 18px; transition: transform .4s var(--ease), opacity .25s var(--ease); }
.theme-toggle .icon-moon, .theme-toggle .icon-sun { grid-area: 1 / 1; }
.theme-toggle .icon-sun { opacity: 0; transform: rotate(-90deg) scale(0.4); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); color: #d6c2ff; }
:root[data-theme="light"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); color: #f59e0b; }
:root[data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(90deg) scale(0.4); }

/* =========================================================
   GEO DEFINITION BLOCK
   ========================================================= */
.geo-block { padding: 24px 0 0; }
.geo-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  max-width: 920px;
  margin: 0 auto;
  padding: 22px 28px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(124,58,237,0.04) 0%, transparent 60%),
    rgba(255,255,255,0.02);
  position: relative;
}
.geo-card::before {
  content: "";
  position: absolute;
  left: 0; top: 22px; bottom: 22px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--violet) 0%, var(--cyan) 100%);
}
.geo-marker {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.3);
  color: var(--violet-2);
  flex-shrink: 0;
}
.geo-marker svg { width: 18px; height: 18px; }
.geo-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-dim);
  margin: 0;
}
.geo-card p strong { color: var(--text); font-weight: 600; }

/* =========================================================
   ABOUT FOUNDER (E-E-A-T)
   ========================================================= */
.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: stretch;
  margin: 0 auto;
  padding: 40px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(124,58,237,0.05) 0%, transparent 50%),
    var(--bg-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.founder-card::before {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  right: -120px; top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.founder-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
  padding-right: 36px;
  border-right: 1px solid var(--border);
}
.founder-avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--violet) 0%, #4c1d95 100%);
  box-shadow:
    inset 0 2px 0 rgba(255,255,255,0.18),
    0 20px 40px -12px rgba(124,58,237,0.55);
}
.founder-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.founder-avatar::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.45);
  pointer-events: none;
}
.founder-avatar::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(124,58,237,0.18);
  pointer-events: none;
}
.founder-name-block h3 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.founder-role {
  color: var(--violet-2);
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 0 14px;
}
.founder-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.founder-meta li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.founder-meta svg { width: 14px; height: 14px; color: var(--cyan); flex-shrink: 0; }

.founder-right { display: flex; flex-direction: column; gap: 24px; }
.founder-bio {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}
.founder-bio strong { color: var(--violet-2); font-weight: 600; }

.founder-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 18px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.founder-stat { text-align: center; }
.fs-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #c8b6ff 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.fs-label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.founder-quote {
  position: relative;
  margin: 0;
  padding: 18px 0 0 22px;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  border-left: 3px solid var(--violet);
}
.founder-quote cite {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-size: 0.88rem;
  color: var(--text-dim);
  font-weight: 500;
}

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.faq-item:hover { border-color: var(--border-strong); }
.faq-item[open] {
  border-color: rgba(124,58,237,0.4);
  background:
    linear-gradient(180deg, rgba(124,58,237,0.05) 0%, transparent 60%),
    var(--bg-card);
  box-shadow: 0 20px 50px -30px rgba(124,58,237,0.4);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1.35;
}
.faq-icon {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: transform .35s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.faq-icon svg { width: 16px; height: 16px; }
.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: rgba(124,58,237,0.18);
  border-color: rgba(124,58,237,0.4);
  color: var(--violet-2);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s var(--ease);
}
.faq-item[open] .faq-a { max-height: 600px; }
.faq-a p {
  padding: 0 22px 22px;
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.7;
  margin: 0;
}
.faq-a p strong { color: var(--text); font-weight: 600; }

/* =========================================================
   Responsive — new sections
   ========================================================= */
@media (max-width: 900px) {
  .founder-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 24px;
  }
  .founder-left {
    border-right: 0;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 28px;
  }
}
@media (max-width: 600px) {
  .geo-card { flex-direction: column; padding: 20px; gap: 14px; }
  .geo-card::before { left: 0; top: 0; bottom: auto; width: 100%; height: 3px; }
  .founder-avatar { width: 120px; height: 120px; }
  .founder-stats { grid-template-columns: 1fr; gap: 10px; padding: 14px; }
  .founder-stat { display: flex; justify-content: space-between; align-items: baseline; text-align: left; }
  .fs-label { margin-top: 0; }
  .faq-item summary { padding: 18px; }
  .faq-q { font-size: 1rem; }
  .faq-a p { padding: 0 18px 18px; }
}

/* =========================================================
   UTILITIES (replaces inline styles)
   ========================================================= */
.no-top-pad { padding-top: 0; }
.mb-24 { margin-bottom: 24px; }
.text-strong { color: var(--text); }
.lede-hero { line-height: 1.55; }

/* Section heading default offset (was inline style="margin-top:18px;") */
.section-head h2 { margin-top: 18px; }
.final-cta-inner h2 { margin-top: 18px; }

/* =========================================================
   TESTIMONIAL AVATAR GRADIENTS (was inline styles)
   ========================================================= */
.t-avatar.avatar-violet  { background: linear-gradient(135deg, #7c3aed, #4c1d95); }
.t-avatar.avatar-cyan    { background: linear-gradient(135deg, #22d3ee, #0e7490); }
.t-avatar.avatar-magenta { background: linear-gradient(135deg, #a855f7, #6d28d9); }

/* =========================================================
   SVG SPRITE SIZING — inherit sizing from parent context
   ========================================================= */
.btn svg, .nav-cta svg { width: 16px; height: 16px; }
.btn-lg svg { width: 18px; height: 18px; }
.step-time svg, .price-list .delivery svg { width: 14px; height: 14px; vertical-align: -2px; }
.faq-icon svg { width: 16px; height: 16px; }
.price-list .check svg { width: 12px; height: 12px; }

/* =========================================================
   MOBILE MENU DROPDOWN — appears when hamburger clicked (≤1024px)
   ========================================================= */
@media (max-width: 1024px) {
  .nav-links {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 4px;
    padding: 18px;
    background: rgba(8, 10, 14, 0.95);
    border: 1px solid var(--border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px -20px rgba(0,0,0,0.6);
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    pointer-events: none;
  }
  .nav-links.open {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
    transition: background .2s var(--ease);
    font-size: 1rem;
  }
  .nav-links a:hover { background: rgba(255,255,255,0.04); }
  /* CTA inside mobile menu — distinct from text links */
  .nav-links .nav-cta-mobile {
    margin-top: 8px;
    padding: 14px 18px;
    justify-content: center;
    font-size: 0.95rem;
    border-top: 1px solid var(--border);
    border-radius: 12px;
    padding-top: 14px;
  }
  .nav-links .nav-cta-mobile:hover { background: var(--violet); }
  :root[data-theme="light"] .nav-links {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 20px 50px -20px rgba(15,23,42,0.25);
  }
  :root[data-theme="light"] .nav-links a:hover { background: rgba(15,23,42,0.04); }
  :root[data-theme="light"] .nav-links .nav-cta-mobile { color: #fff; }
}

/* =========================================================
   FOOTER SOCIALS
   ========================================================= */
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.footer-socials a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease);
}
.footer-socials a svg { width: 18px; height: 18px; }
.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(124,58,237,0.12);
  border-color: rgba(124,58,237,0.4);
  color: var(--violet-2);
}
:root[data-theme="light"] .footer-socials a {
  background: rgba(15,23,42,0.03);
  color: var(--text);
}
:root[data-theme="light"] .footer-socials a:hover {
  background: rgba(124,58,237,0.08);
  color: var(--violet);
  border-color: rgba(124,58,237,0.3);
}

/* =========================================================
   FOUNDER LINKEDIN LINK
   ========================================================= */
.founder-linkedin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(10, 102, 194, 0.12);
  border: 1px solid rgba(10, 102, 194, 0.3);
  color: #0a66c2;
  font-weight: 500;
  font-size: 0.85rem;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.founder-linkedin:hover {
  background: rgba(10, 102, 194, 0.18);
  transform: translateY(-1px);
}
.founder-linkedin svg { width: 14px; height: 14px; }
:root[data-theme="dark"] .founder-linkedin {
  background: rgba(10, 102, 194, 0.18);
  border-color: rgba(10, 102, 194, 0.4);
  color: #4d9aed;
}

/* =========================================================
   LIGHT MODE — ICON READABILITY FIX
   Default icon color (var(--cyan-2)) has poor contrast on white.
   Make icons properly readable (dark/violet) on light bg.
   ========================================================= */
:root[data-theme="light"] {
  --icon-light-fg: #4c1d95;
}
:root[data-theme="light"] .feature .f-icon {
  background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(34,211,238,0.08) 100%);
  border-color: rgba(124,58,237,0.25);
  color: var(--icon-light-fg);
}
:root[data-theme="light"] .industry .industry-icon {
  background: linear-gradient(135deg, rgba(124,58,237,0.10) 0%, rgba(34,211,238,0.06) 100%);
  border-color: rgba(124,58,237,0.2);
  color: var(--icon-light-fg);
}
:root[data-theme="light"] .industry:hover .industry-icon {
  background: linear-gradient(135deg, rgba(124,58,237,0.18) 0%, rgba(34,211,238,0.10) 100%);
  border-color: rgba(124,58,237,0.4);
  color: #2e1065;
}
:root[data-theme="light"] .geo-marker {
  background: rgba(124,58,237,0.10);
  border-color: rgba(124,58,237,0.25);
  color: var(--icon-light-fg);
}
:root[data-theme="light"] .step-time { color: #4c1d95; }
:root[data-theme="light"] .founder-meta svg { color: #4c1d95; }
:root[data-theme="light"] .price-list .delivery { color: #4c1d95; }
:root[data-theme="light"] .price-list .check { color: #16a34a; }
:root[data-theme="light"] .footer-socials a { color: #475569; }
:root[data-theme="light"] .footer-socials a:hover { color: var(--violet); }

/* Make stars more visible in light mode (orange/gold instead of low-contrast yellow) */
:root[data-theme="light"] .stars,
:root[data-theme="light"] .t-stars { color: #f59e0b; }
