/* ============================================================
   Eventira — Website V2  (style.css)
   Design source: marketing-source/index.html
   Adds: dark/light theming via CSS variables + [data-theme]
   ============================================================ */

/* ---------- LIGHT THEME (default) ---------- */
:root {
  --bg: #f7f8fc;
  --bg-soft: #f0f2f8;
  --panel: #eef0f5;
  --card: #ffffff;
  --ink: #0e1530;
  --ink-soft: #4a5172;
  --muted: #6b7390;
  --line: #e6e8f1;
  --line-soft: #f0f2f8;
  --brand: #4A1FB8;          /* logo purple — main highlight */
  --brand-deep: #3E1C96;
  --brand-soft: #F0EBFB;
  --accent: #FAC515;         /* logo gold accent */
  --grad-logo: linear-gradient(135deg, #4DEF8E 0%, #FFEB3A 100%);  /* exact logo tile gradient */
  --grad-brand: linear-gradient(135deg, #4A1FB8 0%, #6D28D9 100%); /* purple gradient for CTAs */
  --grad-text: linear-gradient(100deg, #0EA95C 0%, #34D399 100%);   /* green gradient highlight (light) */
  --gold: #f59e0b;
  --gold-soft: #fef3c7;
  --green: #10b981;
  --green-soft: #ecfdf5;
  --red: #ef4444;
  --dark: #0b1020;
  --dark-soft: #1a1f4d;
  --nav-bg: rgba(247, 248, 252, 0.85);
  --shadow: 0 10px 40px rgba(20, 25, 60, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 25, 60, 0.12);
  --shadow-brand: 0 24px 60px rgba(74, 31, 184, 0.25);
}

/* ---------- DARK THEME ---------- */
[data-theme="dark"] {
  --bg: #0b1020;
  --bg-soft: #11172e;
  --panel: #141b34;
  --card: #141b34;
  --ink: #f2f4fb;
  --ink-soft: #c2c8e0;
  --muted: #8b93b5;
  --line: #232a47;
  --line-soft: #1a2138;
  --brand: #C4B5FD;          /* light logo-purple, readable on dark */
  --brand-deep: #A78BFA;
  --brand-soft: #241a40;
  --accent: #FFE24D;
  --grad-brand: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
  --grad-text: linear-gradient(100deg, #34D399 0%, #6EE7B7 100%);   /* green gradient highlight (dark) */
  --gold: #fbbf24;
  --gold-soft: #2a230f;
  --green: #34d399;
  --green-soft: #0e2620;
  --red: #f87171;
  --dark: #060912;
  --dark-soft: #11162b;
  --nav-bg: rgba(11, 16, 32, 0.85);
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.55);
  --shadow-brand: 0 24px 60px rgba(167, 139, 250, 0.25);
}

/* In dark mode, surfaces that were pure #fff in the original become themed cards */
[data-theme="dark"] .pain,
[data-theme="dark"] .stack-visual,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .floating-card,
[data-theme="dark"] .tool,
[data-theme="dark"] .counter,
[data-theme="dark"] .counter button,
[data-theme="dark"] .counter input,
[data-theme="dark"] .btn-secondary,
[data-theme="dark"] .hero-screenshot { background: var(--card); }
[data-theme="dark"] .chart { background: var(--bg-soft); }

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55; -webkit-font-smoothing: antialiased;
  transition: background-color .3s ease, color .3s ease;
}
a { color: inherit; text-decoration: none; }

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; gap: 16px;
}
.logo {
  font-size: 20px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--ink); display: flex; align-items: center; gap: 8px;
}
.logo-mark {
  width: 28px; height: 28px; border-radius: 7px;
  background: var(--grad-logo);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; font-weight: 800;
}
.logo-img { height: 30px; width: auto; display: block; }
.footer-brand .logo-img { height: 34px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  transition: color .15s;
}
.nav-links a:hover { color: var(--brand); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-cta {
  background: var(--brand); color: #fff;
  padding: 9px 18px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  transition: all .15s;
}
.nav-cta:hover { background: var(--brand-deep); transform: translateY(-1px); }

/* Nav dropdowns + login */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-item > a, .nav-toggle {
  font-size: 14.5px; font-weight: 500; color: var(--ink-soft);
  background: none; border: 0; font-family: inherit; cursor: pointer;
  display: inline-flex; align-items: center; gap: 5px; padding: 6px 0;
  transition: color .15s;
}
.nav-item > a:hover, .nav-toggle:hover,
.nav-item:focus-within > .nav-toggle,
.nav-item.active > a, .nav-item.active > .nav-toggle { color: var(--brand); }
.nav-caret { width: 13px; height: 13px; transition: transform .15s; }
.nav-item:hover .nav-caret, .nav-item:focus-within .nav-caret { transform: rotate(180deg); }
.nav-item.has-dd::after { content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 14px; }
.nav-dd {
  position: absolute; top: 100%; left: -10px; margin-top: 12px;
  min-width: 232px; background: var(--card);
  border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .15s, transform .15s, visibility .15s; z-index: 120;
}
.nav-item:hover .nav-dd, .nav-item:focus-within .nav-dd { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dd a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 14px; font-weight: 600; color: var(--ink); transition: background .12s, color .12s; }
.nav-dd a:hover { background: var(--brand-soft); color: var(--brand); }
.nav-dd a .dd-sub { display: block; font-size: 11.5px; font-weight: 500; color: var(--muted); margin-top: 1px; }
.nav-dd a:hover .dd-sub { color: var(--brand); }
.nav-login { font-size: 14.5px; font-weight: 500; color: var(--ink-soft); transition: color .15s; }
.nav-login:hover { color: var(--brand); }

/* Theme toggle */
.theme-toggle {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--line); background: var(--card);
  color: var(--ink-soft); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .15s; flex-shrink: 0; position: relative;
}
.theme-toggle:hover { color: var(--brand); border-color: var(--brand); }
.theme-toggle .icon-sun, .theme-toggle .icon-moon {
  position: absolute; inset: 0; margin: auto; width: 18px; height: 18px;
  transition: opacity .35s ease, transform .35s ease;
}
.theme-toggle .icon-sun { opacity: 1; transform: rotate(0deg) scale(1); }
.theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(0.5); }
[data-theme="dark"] .theme-toggle .icon-sun { opacity: 0; transform: rotate(90deg) scale(0.5); }
[data-theme="dark"] .theme-toggle .icon-moon { opacity: 1; transform: rotate(0deg) scale(1); }

/* ===== SECTION SCAFFOLD ===== */
.section { padding: 100px 24px; }
.container { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  display: inline-block; background: var(--brand-soft); color: var(--brand);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 20px;
}
.section-title {
  font-size: 44px; font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 16px;
}
.section-title .grad {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-sub { font-size: 18px; color: var(--muted); max-width: 680px; margin: 0 auto; }
.section-header-center { text-align: center; margin-bottom: 60px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  transition: all .15s; cursor: pointer; border: 0; font-family: inherit;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff; box-shadow: 0 8px 24px rgba(74, 31, 184, 0.32);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 28px rgba(74, 31, 184, 0.42); }
.btn-secondary { background: var(--card); color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.btn-ghost-dark { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.18); }

/* ===== HERO ===== */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, rgba(74,31,184,0.10), transparent 55%), radial-gradient(ellipse at bottom left, rgba(77,239,142,0.12), transparent 55%), var(--bg);
  padding: 110px 24px 90px; overflow: hidden;
}
/* Hero sits on a dark photo — lift text to light + add shadows for contrast */
.hero h1 { color: var(--ink); }
.hero p.subtitle { color: var(--ink-soft); }
.hero-meta { color: var(--muted); }
.hero-meta .dot { background: var(--muted); }
.hero .eyebrow { background: var(--brand-soft); color: var(--brand); border: 0; }
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.45fr; gap: 44px; align-items: center;
}
/* let the product shot grow slightly past its column toward the edge */
.hero-visual { margin-right: -7%; }
.hero h1 { font-size: 60px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: 20px; }
.hero h1 .grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p.subtitle { font-size: 19px; color: var(--ink-soft); max-width: 560px; margin-bottom: 36px; line-height: 1.6; }
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-meta {
  margin-top: 28px; font-size: 13.5px; color: var(--muted);
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.hero-meta .dot { width: 4px; height: 4px; background: var(--muted); border-radius: 50%; }
.hero-visual { position: relative; }
.hero-screenshot {
  width: 108%; max-width: 108%; height: auto; display: block; border-radius: 14px;
  box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  transform: rotate(0.5deg); background: #fff;
}
.floating-card {
  position: absolute; bottom: -28px; left: -28px;
  background: var(--card); border-radius: 12px;
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  transform: rotate(-2deg); border: 1px solid var(--line);
}
.floating-card .check-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.floating-card .text .head { font-size: 13px; font-weight: 700; color: var(--ink); }
.floating-card .text .sub { font-size: 11.5px; color: var(--muted); }

/* ===== ADOPTERS STRIP ===== */
.adopters {
  background: var(--bg-soft); padding: 48px 24px;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.adopters-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.adopters-label {
  font-size: 12.5px; color: var(--muted); font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px;
}
.logos { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.adopter {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid var(--line); border-radius: 16px;
  padding: 0 40px; height: 120px; min-width: 220px;
  box-shadow: 0 4px 18px rgba(20, 25, 60, 0.07);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  animation: adopterGlow 4.5s ease-in-out infinite;
}
.adopter:nth-child(1) { animation-delay: 0s; }
.adopter:nth-child(2) { animation-delay: .7s; }
.adopter:nth-child(3) { animation-delay: 1.4s; }
.adopter:nth-child(4) { animation-delay: 2.1s; }
.adopter:hover {
  transform: translateY(-6px) scale(1.045);
  box-shadow: 0 22px 48px rgba(74, 31, 184, 0.22);
  border-color: var(--brand);
  animation-play-state: paused;
}
.adopter img {
  width: 260px; height: 68px; object-fit: contain; display: block;
}
@keyframes adopterGlow {
  0%, 100% { box-shadow: 0 4px 18px rgba(20, 25, 60, 0.07); }
  50% { box-shadow: 0 6px 26px rgba(74, 31, 184, 0.16); }
}
[data-theme="dark"] .adopter { border-color: rgba(255, 255, 255, 0.14); }
.logo-placeholder {
  font-size: 17px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em; font-style: italic;
}

/* ===== RECOGNITION ===== */
.recognition { background: var(--bg); }
.recognition .container { text-align: center; }
.recognition .section-title { max-width: 800px; margin: 0 auto 16px; }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pain {
  background: var(--card); border-radius: 16px; padding: 32px 28px; text-align: left;
  border: 1px solid var(--line); transition: all .2s;
}
.pain:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pain-num {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand-soft); color: var(--brand);
  font-size: 14px; font-weight: 800;
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.pain h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; line-height: 1.35; }
.pain p { font-size: 14.5px; color: var(--muted); line-height: 1.55; }

/* ===== THREE PILLARS ===== */
.pillars { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.pillars::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 30%, rgba(74, 31, 184, 0.25), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(250, 197, 21, 0.15), transparent 50%);
  pointer-events: none;
}
.pillars .container { position: relative; z-index: 1; }
.pillars .eyebrow { background: rgba(255,255,255,0.1); color: #86EFAC; }
.pillars .section-title { color: #fff; }
.pillars .section-sub { color: #c8cce4; }
.pillar-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pillar {
  background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px; padding: 36px 30px; transition: all .2s;
}
.pillar:hover { background: rgba(255, 255, 255, 0.06); transform: translateY(-4px); }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 24px;
}
.pillar:nth-child(1) .pillar-icon { background: rgba(165, 180, 252, 0.15); color: #4DEF8E; }
.pillar:nth-child(2) .pillar-icon { background: rgba(252, 211, 77, 0.15); color: var(--gold); }
.pillar:nth-child(3) .pillar-icon { background: rgba(74, 222, 128, 0.15); color: #4ade80; }
.pillar-label {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: #86EFAC; margin-bottom: 10px;
}
.pillar h3 { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 14px; letter-spacing: -0.01em; line-height: 1.2; }
.pillar p { color: #c8cce4; font-size: 14.5px; line-height: 1.6; }
.pillar .one-liner { color: #86EFAC; font-size: 15px; font-style: italic; margin-bottom: 14px; }

/* ===== REPLACE YOUR STACK ===== */
.stack { background: linear-gradient(135deg, var(--brand-soft) 0%, var(--bg-soft) 100%); }
.stack-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; }
.stack h2 { font-size: 40px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 18px; }
.stack h2 .strike { color: var(--red); text-decoration: line-through; text-decoration-thickness: 3px; }
.stack p { color: var(--ink-soft); font-size: 17px; margin-bottom: 16px; }
.stack-visual { background: var(--card); border-radius: 18px; padding: 36px 28px; box-shadow: var(--shadow); }
.stack-row { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.stack-logo { background: var(--bg-soft); border: 1px solid var(--line); padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.stack-arrow { display: flex; align-items: center; justify-content: center; color: var(--muted); margin: 12px 0; }
.stack-after { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 18px; background: linear-gradient(90deg, #4DEF8E 0%, #FFEB3A 100%); border-radius: 12px; color: #0e1530; }
.stack-after .logo-mark { width: 36px; height: 36px; font-size: 18px; background: rgba(14,21,48,0.9); color: #fff; }
.stack-after .name { font-size: 20px; font-weight: 800; }
.stack-brand { background: #fff; border-radius: 12px; padding: 14px 22px; display: inline-flex; align-items: center; box-shadow: 0 8px 24px rgba(0,0,0,.15); }
.stack-brand img { height: 26px; width: auto; display: block; }

/* ===== CALCULATOR ===== */
.calc-section { background: var(--bg-soft); }
.calc { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.35fr 1fr; gap: 60px; align-items: start; }
.calc-left { background: var(--panel); border-radius: 20px; padding: 36px; }
.calc-left h3 { font-size: 22px; font-weight: 700; margin-bottom: 24px; }
.tool-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 36px; }
.tool { background: var(--card); border-radius: 14px; padding: 18px 10px 12px; text-align: center; cursor: pointer; user-select: none; border: 2px solid transparent; position: relative; transition: all .15s ease; }
.tool:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.tool.selected { border-color: var(--brand); box-shadow: 0 4px 16px rgba(74, 31, 184, 0.15); }
.tool .t-icon { width: 40px; height: 40px; margin: 0 auto 8px; display: flex; align-items: center; justify-content: center; border-radius: 10px; font-size: 20px; }
.tool .t-name { font-size: 13px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.tool .t-role { font-size: 10.5px; color: var(--muted); margin-top: 3px; line-height: 1.3; }
.tool .t-check { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: var(--brand-deep); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; opacity: 0; transform: scale(0.6); transition: all .15s ease; box-shadow: 0 2px 8px rgba(62, 28, 150, 0.4); }
.tool.selected .t-check { opacity: 1; transform: scale(1); }
.counter-block h3 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.counter { display: inline-flex; align-items: stretch; background: var(--card); border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(20, 25, 60, 0.04); }
.counter button { background: var(--card); border: 1px solid var(--line); width: 52px; height: 52px; font-size: 22px; font-weight: 600; color: var(--ink); cursor: pointer; transition: background .15s; font-family: inherit; }
.counter button:hover { background: var(--brand-soft); color: var(--brand); }
.counter button:disabled { color: var(--muted); cursor: not-allowed; background: var(--bg-soft); }
.counter input { width: 70px; height: 52px; border: 1px solid var(--line); border-left: 0; border-right: 0; text-align: center; font-size: 20px; font-weight: 700; color: var(--ink); font-family: inherit; background: var(--card); outline: none; -moz-appearance: textfield; }
.counter input::-webkit-outer-spin-button, .counter input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.calc-right { padding: 8px 0; }
.summary-block { margin-bottom: 32px; }
.block-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.block-title { font-size: 24px; font-weight: 800; color: var(--ink); letter-spacing: -0.01em; }
.block-period { font-size: 14px; color: var(--muted); font-weight: 500; }
.block-sub { font-size: 13.5px; color: var(--muted); margin-bottom: 14px; }
.separator-d { border-top: 1px dashed var(--line); margin: 14px 0; }
.line-items { display: flex; flex-direction: column; }
.line-item { display: flex; justify-content: space-between; align-items: baseline; padding: 5px 0; font-size: 14.5px; }
.line-item .l-name { color: var(--ink); }
.line-item .l-name .role-text { color: var(--muted); font-size: 12.5px; margin-left: 4px; }
.line-item .l-price { color: var(--ink); font-weight: 500; }
.empty-st { color: var(--muted); font-size: 13.5px; font-style: italic; padding: 10px 0; }
.total-row { display: flex; justify-content: space-between; align-items: baseline; padding-top: 4px; }
.total-row .total-label { font-size: 16px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.total-row .total-amount { font-size: 24px; font-weight: 800; color: var(--ink); }
.total-row .total-amount .period { color: var(--muted); font-weight: 500; font-size: 14px; margin-left: 2px; }
.savings-block { margin-top: 8px; }
.savings-label { font-size: 16px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.savings-amount { font-size: 48px; font-weight: 800; color: var(--brand-deep); letter-spacing: -0.02em; line-height: 1.05; display: inline-block; background: linear-gradient(180deg, transparent 60%, var(--gold) 60%, var(--gold) 92%, transparent 92%); padding: 0 12px; }
.savings-amount .period { color: var(--ink); font-weight: 600; font-size: 20px; margin-left: 4px; }
.savings-sub { color: var(--muted); margin-top: 14px; font-size: 14.5px; }
.pricing-cta-row { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
@keyframes pulseSavings { 0% { transform: scale(1); } 50% { transform: scale(1.04); } 100% { transform: scale(1); } }
.savings-amount.pulse { animation: pulseSavings 0.4s ease; }

/* ===== TESTIMONIAL ===== */
.testimonial { background: var(--bg); padding: 80px 24px; }
.testimonial-inner { max-width: 820px; margin: 0 auto; text-align: center; }
.quote-mark { font-size: 80px; line-height: 0.6; color: var(--brand); opacity: 0.18; font-family: Georgia, serif; margin-bottom: 12px; }
.testimonial blockquote { font-size: 26px; font-weight: 600; line-height: 1.4; color: var(--ink); letter-spacing: -0.01em; margin-bottom: 28px; }
.attribution { display: inline-flex; align-items: center; gap: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-logo); color: #fff; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.attr-text { text-align: left; }
.attr-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.attr-role { font-size: 13px; color: var(--muted); }

/* ===== FAQ ===== */
.faq-section { background: var(--bg-soft); }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--card); border-radius: 12px; margin-bottom: 12px; overflow: hidden; border: 1px solid var(--line); }
.faq-item summary { padding: 20px 24px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 600; color: var(--ink); transition: background .15s; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--brand-soft); }
.faq-item summary::after { content: '+'; font-size: 24px; color: var(--brand); font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; line-height: 1.65; }
.faq-item .faq-answer strong { color: var(--ink); }
.faq-item .faq-answer a { color: var(--brand); font-weight: 600; }

/* ===== FINAL CTA ===== */
.final-cta { background: var(--dark); color: #fff; padding: 100px 24px; text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(74, 31, 184, 0.35), transparent 60%), radial-gradient(circle at 70% 50%, rgba(250, 197, 21, 0.2), transparent 60%); pointer-events: none; }
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { font-size: 52px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 18px; color: #fff; }
.final-cta h2 .grad { background: linear-gradient(90deg, #4DEF8E, #FFEB3A); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-cta p { font-size: 19px; color: #c8cce4; margin-bottom: 36px; max-width: 600px; margin-left: auto; margin-right: auto; }
.final-cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #c8cce4; border-top: 1px solid rgba(255,255,255,0.06); padding: 56px 24px 32px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: #8389a8; font-size: 14px; line-height: 1.6; max-width: 300px; }
.footer-col h4 { font-size: 12.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #8389a8; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; color: #8389a8; font-size: 13px; flex-wrap: wrap; gap: 12px; }

/* ===== A11Y ===== */
.skip-link { position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0; z-index: 200; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero-inner, .stack-inner, .calc { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { margin-right: 0; }
  .hero-screenshot { width: 100%; max-width: 100%; }
  .hero h1 { font-size: 40px; }
  .pillar-grid, .pain-grid { grid-template-columns: 1fr; }
  .tool-grid { grid-template-columns: repeat(3, 1fr); }
  .section-title { font-size: 32px; }
  .final-cta h2 { font-size: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .section { padding: 60px 24px; }
  .floating-card { display: none; }
}
@media (max-width: 540px) {
  .tool-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Cookie consent banner */
.cc-banner{position:fixed;left:16px;right:16px;bottom:16px;z-index:9999;max-width:560px;margin:0 auto;background:var(--card);border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow-lg);padding:18px 20px;display:none;flex-direction:column;gap:12px}
.cc-banner.show{display:flex}
.cc-banner p{font-size:13.5px;color:var(--ink-soft);line-height:1.6;margin:0}
.cc-banner a{color:var(--brand);font-weight:600}
.cc-actions{display:flex;gap:10px;flex-wrap:wrap}
.cc-btn{font-family:inherit;font-size:13.5px;font-weight:700;padding:9px 18px;border-radius:9px;cursor:pointer;border:1px solid var(--line);transition:all .15s}
.cc-accept{background:var(--brand);color:#fff;border-color:var(--brand)}
.cc-accept:hover{background:var(--brand-deep)}
.cc-decline{background:var(--card);color:var(--ink-soft)}
.cc-decline:hover{border-color:var(--brand);color:var(--brand)}
@media(max-width:480px){.cc-actions .cc-btn{flex:1}}

/* ===== Launch offer banner (first-year adopters) ===== */
.launch-offer { background: var(--grad-brand); padding: 18px 24px; }
.launch-offer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; text-align: center; }
.launch-offer-icon { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.launch-offer-icon svg { font-size: 17px; color: #fff; }
.launch-offer-text { font-size: 15px; color: #fff; line-height: 1.5; }
.launch-offer-text strong { font-weight: 800; }
.launch-offer-badge { display: inline-flex; align-items: center; background: rgba(255,255,255,0.18); color: #fff; font-size: 11.5px; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
@media (max-width: 640px) { .launch-offer-inner { flex-direction: column; gap: 8px; } }

/* ===== Subtle scroll-reveal + micro-motion ===== */
.reveal-on .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,.61,.36,1); will-change: opacity, transform; }
.reveal-on .reveal.is-in { opacity: 1; transform: none; }
@keyframes ev-float { 0%, 100% { transform: rotate(-2deg) translateY(0); } 50% { transform: rotate(-2deg) translateY(-8px); } }
.floating-card { animation: ev-float 5.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  .reveal-on .reveal { opacity: 1 !important; transform: none !important; }
  .floating-card { animation: none !important; }
  .adopter { animation: none !important; }
}

/* animated nav underline */
.nav-item > a, .nav-item > .nav-toggle { position: relative; }
.nav-item > a::after, .nav-item > .nav-toggle::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; border-radius: 2px;
  background: var(--grad-text); transform: scaleX(0); transform-origin: left; transition: transform .22s ease;
}
.nav-item:hover > a::after, .nav-item:hover > .nav-toggle::after,
.nav-item:focus-within > a::after, .nav-item:focus-within > .nav-toggle::after,
.nav-item.active > a::after, .nav-item.active > .nav-toggle::after { transform: scaleX(1); }
@media (prefers-reduced-motion: reduce){ .nav-item > a::after, .nav-item > .nav-toggle::after { transition: none; } }
