/* ═══════════════════════════════════════════════
   132 DECIDE — DESIGN SYSTEM
   Fraunces / DM Sans / DM Mono  |  dark · ember · slate
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

[data-theme="dark"] {
  --bg:#0d1520;--bg2:#111827;--bg3:#1e293b;--surface:#1a2235;--surface2:#1e293b;
  --border:rgba(255,255,255,0.07);--border2:rgba(255,255,255,0.12);
  --text:#f1f5f9;--text2:#94a3b8;--text3:#475569;
  --accent:#3b82f6;--accent2:#60a5fa;--accent-glow:rgba(59,130,246,0.15);
  --green:#10b981;--amber:#f59e0b;--red:#ef4444;
  --logo-num:#60a5fa;--logo-word:#f1f5f9;--logo-mark:#3b82f6;
  --nav-bg:rgba(13,21,32,0.92);--tag-bg:rgba(59,130,246,0.12);
  --tag-color:#60a5fa;--tag-border:rgba(59,130,246,0.25);
}
[data-theme="ember"] {
  --bg:#1a1610;--bg2:#211d14;--bg3:#2a2419;--surface:#221e13;--surface2:#2a2419;
  --border:rgba(255,220,160,0.08);--border2:rgba(255,220,160,0.16);
  --text:#f5ead8;--text2:#a8956e;--text3:#6b5a3e;
  --accent:#e8852a;--accent2:#f0a050;--accent-glow:rgba(232,133,42,0.15);
  --green:#6dbf7a;--amber:#e8852a;--red:#d95f4b;
  --logo-num:#f0a050;--logo-word:#f5ead8;--logo-mark:#e8852a;
  --nav-bg:rgba(26,22,16,0.92);--tag-bg:rgba(232,133,42,0.12);
  --tag-color:#f0a050;--tag-border:rgba(232,133,42,0.3);
}
[data-theme="slate"] {
  --bg:#f0f4f8;--bg2:#e8edf3;--bg3:#dde3ec;--surface:#ffffff;--surface2:#f5f7fa;
  --border:rgba(0,0,0,0.08);--border2:rgba(0,0,0,0.15);
  --text:#1e293b;--text2:#64748b;--text3:#94a3b8;
  --accent:#2563eb;--accent2:#3b82f6;--accent-glow:rgba(37,99,235,0.1);
  --green:#059669;--amber:#d97706;--red:#dc2626;
  --logo-num:#2563eb;--logo-word:#1e293b;--logo-mark:#2563eb;
  --nav-bg:rgba(240,244,248,0.95);--tag-bg:rgba(37,99,235,0.08);
  --tag-color:#2563eb;--tag-border:rgba(37,99,235,0.2);
}

html { scroll-behavior:smooth; font-size:16px; }
body {
  background:var(--bg); color:var(--text);
  font-family:'DM Sans',sans-serif; line-height:1.6;
  transition:background 0.3s ease,color 0.3s ease; overflow-x:hidden;
}

h1,h2,h3 { font-family:'Fraunces',serif; line-height:1.1; letter-spacing:-0.02em; }
h1 { font-size:clamp(40px,6.5vw,80px); font-weight:900; }
h2 { font-size:clamp(28px,3.5vw,48px); font-weight:700; }
h3 { font-size:clamp(18px,2vw,24px); font-weight:700; }
.mono { font-family:'DM Mono',monospace; font-size:12px; letter-spacing:0.08em; }
em.accent { font-style:italic; color:var(--accent2); }

.btn-primary {
  display:inline-block; background:var(--accent); color:#fff;
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:600;
  padding:11px 24px; border-radius:7px; text-decoration:none;
  border:none; cursor:pointer; transition:filter 0.2s,transform 0.15s; white-space:nowrap;
}
.btn-primary:hover { filter:brightness(1.12); transform:translateY(-1px); }
.btn-primary-lg { font-size:16px; padding:14px 32px; border-radius:8px; }
.btn-outline {
  display:inline-block; background:none; color:var(--text);
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:500;
  padding:11px 24px; border-radius:7px; border:1px solid var(--border2);
  text-decoration:none; cursor:pointer; transition:border-color 0.2s; white-space:nowrap;
}
.btn-outline:hover { border-color:var(--text2); }
.btn-outline-lg { font-size:16px; padding:14px 32px; border-radius:8px; }
.btn-ghost {
  display:inline-block; background:none; border:none; color:var(--text2);
  font-family:'DM Sans',sans-serif; font-size:14px; font-weight:500;
  text-decoration:none; cursor:pointer; padding:8px 0; transition:color 0.2s;
}
.btn-ghost:hover { color:var(--text); }

/* NAV */
.site-nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  background:var(--nav-bg); backdrop-filter:blur(16px);
  border-bottom:1px solid var(--border); transition:background 0.3s;
}
.nav-inner {
  max-width:1200px; margin:0 auto; padding:0 40px;
  height:64px; display:flex; align-items:center; gap:32px;
}
.nav-logo { display:flex; align-items:center; gap:10px; text-decoration:none; flex-shrink:0; }
.nav-logo-mark { color:var(--logo-mark); transition:color 0.3s; }
.nav-logo-mark .logo-diamond { fill:var(--logo-mark); }
.nav-logo-mark .logo-rect { stroke:var(--logo-mark); }
.nav-logo-text { display:flex; flex-direction:column; line-height:1; }
.nav-logo-num { font-family:'DM Mono',monospace; font-size:9px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--logo-num); transition:color 0.3s; }
.nav-logo-word { font-family:'Fraunces',serif; font-size:20px; font-weight:700; color:var(--logo-word); transition:color 0.3s; margin-top:1px; }
.nav-links { display:flex; align-items:center; gap:4px; list-style:none; margin-left:8px; }
.nav-links a { color:var(--text2); text-decoration:none; font-size:14px; font-weight:500; padding:8px 14px; border-radius:6px; transition:color 0.2s,background 0.2s; }
.nav-links a:hover { color:var(--text); background:var(--border); }
.nav-dropdown-wrap { position:relative; }
.nav-dropdown-btn {
  display:flex; align-items:center; gap:6px; background:none; border:none; cursor:pointer;
  color:var(--text2); font-family:'DM Sans',sans-serif; font-size:14px; font-weight:500;
  padding:8px 14px; border-radius:6px; transition:color 0.2s,background 0.2s;
}
.nav-dropdown-btn:hover,.nav-dropdown-btn[aria-expanded="true"] { color:var(--text); background:var(--border); }
.nav-dropdown-btn svg { transition:transform 0.2s; }
.nav-dropdown-btn[aria-expanded="true"] svg { transform:rotate(180deg); }
.nav-dropdown {
  position:absolute; top:calc(100% + 8px); left:-8px; background:var(--surface);
  border:1px solid var(--border2); border-radius:12px; padding:8px; width:280px;
  box-shadow:0 20px 60px rgba(0,0,0,0.3); opacity:0; visibility:hidden;
  transform:translateY(-8px); transition:all 0.2s; z-index:300;
}
.nav-dropdown.open { opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown a { display:flex; gap:12px; align-items:flex-start; padding:10px 12px; border-radius:8px; text-decoration:none; color:var(--text); transition:background 0.15s; }
.nav-dropdown a:hover { background:var(--border); }
.dropdown-icon { font-size:18px; color:var(--accent2); flex-shrink:0; margin-top:1px; width:22px; }
.nav-dropdown a strong { display:block; font-size:13px; font-weight:600; color:var(--text); }
.nav-dropdown a em { display:block; font-size:12px; font-style:normal; color:var(--text2); margin-top:1px; }
.nav-right { margin-left:auto; display:flex; align-items:center; gap:12px; }
.theme-switcher { display:flex; align-items:center; gap:4px; background:var(--border); padding:4px; border-radius:8px; }
.theme-btn { width:28px; height:28px; border-radius:5px; border:none; cursor:pointer; background:none; color:var(--text3); display:flex; align-items:center; justify-content:center; transition:background 0.2s,color 0.2s; }
.theme-btn:hover { color:var(--text2); }
.theme-btn.active { background:var(--surface2); color:var(--accent2); }
.nav-hamburger { display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; margin-left:auto; }
.nav-hamburger span { display:block; width:22px; height:1.5px; background:var(--text2); border-radius:2px; transition:all 0.25s; }
.mobile-menu { display:none; position:fixed; top:64px; left:0; right:0; z-index:190; background:var(--bg2); border-bottom:1px solid var(--border); padding:20px 24px 28px; flex-direction:column; gap:4px; }
.mobile-menu.open { display:flex; }
.mobile-menu a { color:var(--text2); text-decoration:none; font-size:15px; font-weight:500; padding:10px 12px; border-radius:8px; transition:color 0.2s,background 0.2s; }
.mobile-menu a:hover { color:var(--text); background:var(--border); }
.mobile-menu-label { font-size:11px; font-weight:700; letter-spacing:0.1em; text-transform:uppercase; color:var(--text3); padding:12px 12px 4px; display:block; }
.mobile-menu-group a { font-size:14px; }
.mobile-cta { margin-top:12px; text-align:center; }
.mobile-signin { border-top:1px solid var(--border); margin-top:8px; padding-top:12px !important; }

/* LAYOUT */
.container { max-width:1120px; margin:0 auto; padding:0 40px; }
.container-narrow { max-width:760px; margin:0 auto; padding:0 40px; }
section { padding:96px 0; }
.section-label { font-family:'DM Mono',monospace; font-size:11px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent2); margin-bottom:12px; }
.section-sub { font-size:18px; color:var(--text2); font-weight:300; line-height:1.7; max-width:560px; }
.tag { display:inline-flex; align-items:center; font-family:'DM Mono',monospace; font-size:11px; font-weight:500; letter-spacing:0.06em; text-transform:uppercase; padding:3px 10px; border-radius:4px; background:var(--tag-bg); color:var(--tag-color); border:1px solid var(--tag-border); }
.tag-red { background:rgba(239,68,68,0.1); color:var(--red); border-color:rgba(239,68,68,0.25); }
.tag-green { background:rgba(16,185,129,0.1); color:var(--green); border-color:rgba(16,185,129,0.25); }
.tag-amber { background:rgba(245,158,11,0.1); color:var(--amber); border-color:rgba(245,158,11,0.25); }
.tag-muted { background:var(--border); color:var(--text3); border-color:var(--border2); }

/* HERO */
.hero { min-height:100vh; display:flex; align-items:center; justify-content:center; text-align:center; padding:120px 40px 80px; position:relative; overflow:hidden; }
#hero-canvas { position:absolute; inset:0; z-index:0; pointer-events:none; opacity:0.6; }
.hero-inner { position:relative; z-index:1; max-width:900px; }
.hero-badge { display:inline-flex; align-items:center; gap:8px; background:var(--accent-glow); border:1px solid var(--tag-border); color:var(--accent2); font-family:'DM Mono',monospace; font-size:11px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; padding:6px 16px; border-radius:100px; margin-bottom:32px; animation:fadeUp 0.5s ease both; }
.hero-badge-dot { width:6px; height:6px; border-radius:50%; background:var(--accent); animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }
.hero h1 { margin-bottom:28px; animation:fadeUp 0.5s 0.1s ease both; }
.hero-sub { font-size:20px; color:var(--text2); max-width:580px; margin:0 auto 48px; font-weight:300; line-height:1.7; animation:fadeUp 0.5s 0.2s ease both; }
.hero-actions { display:flex; align-items:center; justify-content:center; gap:16px; flex-wrap:wrap; animation:fadeUp 0.5s 0.3s ease both; }
.hero-proof { margin-top:60px; display:flex; align-items:center; justify-content:center; gap:12px; flex-wrap:wrap; font-family:'DM Mono',monospace; font-size:12px; color:var(--text3); animation:fadeUp 0.5s 0.4s ease both; }
.hero-proof-div { width:1px; height:14px; background:var(--border2); }
@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* PROBLEM */
.problem-strip { background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.problem-grid { display:grid; grid-template-columns:repeat(4,1fr); }
.problem-item { padding:40px 36px; border-right:1px solid var(--border); }
.problem-item:last-child { border-right:none; }
.problem-icon { font-size:26px; margin-bottom:16px; }
.problem-item h3 { font-family:'DM Sans',sans-serif; font-size:15px; font-weight:600; color:var(--text); margin-bottom:8px; }
.problem-item p { font-size:13px; color:var(--text2); line-height:1.6; }

/* COST QUESTIONS */
.cost-section { background:var(--bg); }
.cost-questions { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.cost-q-card { background:var(--surface); padding:40px 36px; display:flex; flex-direction:column; gap:20px; transition:background 0.2s; }
.cost-q-card:hover { background:var(--surface2); }
.cost-q-question { font-family:'Fraunces',serif; font-size:clamp(18px,1.6vw,22px); font-weight:700; color:var(--text); line-height:1.25; }
.cost-q-body { font-size:14px; color:var(--text2); line-height:1.75; flex:1; }
.cost-q-contrast { border-top:1px solid var(--border); padding-top:20px; font-size:13px; color:var(--text2); line-height:1.65; }
.cost-q-contrast-label { display:block; font-family:'DM Mono',monospace; font-size:10px; font-weight:500; letter-spacing:0.1em; text-transform:uppercase; color:var(--accent2); margin-bottom:8px; }

/* FEATURES */
.features-section { background:var(--bg2); }
.features-header { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; margin-bottom:64px; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:14px; overflow:hidden; }
.feature-card { background:var(--surface); padding:32px 28px; transition:background 0.2s; }
.feature-card:hover { background:var(--surface2); }
.feature-icon { width:42px; height:42px; background:var(--accent-glow); border:1px solid var(--tag-border); border-radius:10px; display:flex; align-items:center; justify-content:center; margin-bottom:18px; color:var(--accent2); }
.feature-card h3 { font-family:'DM Sans',sans-serif; font-size:15px; font-weight:600; color:var(--text); margin-bottom:8px; }
.feature-card p { font-size:13px; color:var(--text2); line-height:1.65; }

/* HOW IT WORKS */
.how-section { background:var(--bg); }
.steps-row { display:grid; grid-template-columns:repeat(5,1fr); gap:0; margin-top:64px; position:relative; }
.steps-row::before { content:''; position:absolute; top:24px; left:10%; right:10%; height:1px; background:linear-gradient(90deg,transparent,var(--accent),transparent); }
.step { text-align:center; padding:0 20px; }
.step-num { width:48px; height:48px; border-radius:50%; background:var(--bg2); border:1px solid var(--accent); display:flex; align-items:center; justify-content:center; font-family:'Fraunces',serif; font-size:20px; font-weight:700; color:var(--accent); margin:0 auto 20px; position:relative; z-index:1; }
.step h3 { font-family:'DM Sans',sans-serif; font-size:14px; font-weight:600; color:var(--text); margin-bottom:8px; }
.step p { font-size:13px; color:var(--text2); line-height:1.6; }

/* PRICING */
.pricing-section { background:var(--surface); border-top:1px solid var(--border); }
.pricing-header { margin-bottom:0; }
.pricing-card { background:var(--bg2); border:1px solid var(--border2); border-radius:16px; padding:48px 52px; display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; max-width:900px; margin:64px auto 0; }
.pricing-pilot-badge { display:inline-flex; align-items:center; gap:8px; background:var(--green); color:#fff; font-size:11px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:4px 14px; border-radius:100px; margin-bottom:20px; }
.pricing-price { font-family:'Fraunces',serif; font-size:64px; font-weight:900; color:var(--text); line-height:1; margin-bottom:4px; }
.pricing-price sup { font-size:28px; vertical-align:top; margin-top:12px; }
.pricing-period { font-size:14px; color:var(--text2); margin-bottom:24px; }
.pricing-then { font-size:14px; color:var(--text2); padding-top:20px; border-top:1px solid var(--border); margin-top:8px; }
.pricing-then strong { color:var(--text); }
.pricing-features { list-style:none; display:flex; flex-direction:column; gap:14px; }
.pricing-features li { display:flex; gap:10px; align-items:flex-start; font-size:14px; color:var(--text2); }
.pricing-features li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; margin-top:1px; }
.pricing-cta { margin-top:28px; }
.pricing-note { font-size:12px; color:var(--text3); margin-top:12px; line-height:1.5; }

/* CTA BAND */
.cta-band { background:var(--bg); padding:96px 40px; text-align:center; position:relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 700px 400px at 50% 50%,var(--accent-glow),transparent 70%); pointer-events:none; }
.cta-band-inner { position:relative; z-index:1; max-width:600px; margin:0 auto; }
.cta-band h2 { margin-bottom:16px; }
.cta-band p { font-size:18px; color:var(--text2); margin-bottom:36px; font-weight:300; }
.cta-band-actions { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* STATS BAND */
.stats-band { background:var(--accent); padding:56px 40px; }
.stats-band-inner { max-width:1120px; margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); text-align:center; gap:32px; }
.stat-num { font-family:'Fraunces',serif; font-size:44px; font-weight:900; color:#fff; line-height:1; margin-bottom:6px; }
.stat-label { font-size:13px; color:rgba(255,255,255,0.7); font-weight:500; }

/* USE CASE PAGES */
.uc-hero { padding:140px 40px 80px; background:var(--bg); position:relative; overflow:hidden; border-bottom:1px solid var(--border); }
.uc-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 800px 500px at 60% 50%,var(--accent-glow),transparent 70%); pointer-events:none; }
.uc-hero-inner { max-width:1120px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; position:relative; z-index:1; }
.uc-hero h1 { margin-bottom:20px; }
.uc-hero-sub { font-size:18px; color:var(--text2); font-weight:300; line-height:1.7; margin-bottom:36px; }
.uc-hero-actions { display:flex; gap:16px; flex-wrap:wrap; }
.uc-scenario { background:var(--surface); border:1px solid var(--border2); border-radius:14px; padding:28px; }
.uc-scenario-label { font-family:'DM Mono',monospace; font-size:11px; text-transform:uppercase; letter-spacing:0.1em; color:var(--accent2); margin-bottom:16px; }
.uc-scenario h4 { font-family:'Fraunces',serif; font-size:18px; font-weight:700; color:var(--text); margin-bottom:12px; }
.uc-scenario p { font-size:14px; color:var(--text2); line-height:1.7; }
.uc-scenario-stats { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:20px; }
.uc-stat { background:var(--bg2); border:1px solid var(--border); border-radius:8px; padding:12px 14px; }
.uc-stat-num { font-family:'Fraunces',serif; font-size:24px; font-weight:700; color:var(--accent2); line-height:1; }
.uc-stat-label { font-size:12px; color:var(--text3); margin-top:4px; }
.uc-pain { background:var(--surface); border-bottom:1px solid var(--border); }
.uc-pain-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:12px; overflow:hidden; margin-top:48px; }
.uc-pain-item { background:var(--surface2); padding:28px 24px; }
.uc-pain-item h3 { font-family:'DM Sans',sans-serif; font-size:15px; font-weight:600; color:var(--text); margin-bottom:8px; }
.uc-pain-item p { font-size:13px; color:var(--text2); line-height:1.65; }
.uc-pain-quote { font-style:italic; font-size:14px; color:var(--text2); border-left:3px solid var(--accent); padding-left:16px; margin-top:16px; margin-bottom:48px; line-height:1.7; }
.uc-memo { background:var(--bg); }
.uc-memo-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:start; margin-top:48px; }
.memo-card { background:var(--surface); border:1px solid var(--border); border-radius:14px; overflow:hidden; }
.memo-card-header { background:var(--surface2); border-bottom:1px solid var(--border); padding:12px 18px; display:flex; align-items:center; gap:6px; }
.mc-dot { width:9px; height:9px; border-radius:50%; }
.memo-card-title { padding:20px 22px; border-bottom:1px solid var(--border); }
.memo-card-title h4 { font-family:'Fraunces',serif; font-size:16px; font-weight:700; color:var(--text); margin-bottom:8px; }
.memo-tags { display:flex; gap:8px; flex-wrap:wrap; }
.memo-row { display:flex; align-items:center; gap:14px; padding:13px 22px; border-bottom:1px solid var(--border); cursor:default; }
.memo-row:last-child { border-bottom:none; }
.memo-row-num { width:22px; height:22px; border-radius:50%; background:var(--bg3); border:1px solid var(--border2); display:flex; align-items:center; justify-content:center; font-size:10px; font-weight:700; color:var(--text3); flex-shrink:0; }
.memo-row.active .memo-row-num { background:var(--accent); border-color:var(--accent); color:#fff; }
.memo-row-label { font-size:13px; font-weight:500; color:var(--text); }
.memo-row-sub { font-size:12px; color:var(--text2); }
.memo-row-check { margin-left:auto; color:var(--green); font-size:13px; }
.chain-visual { display:flex; flex-direction:column; gap:0; }
.chain-step { display:flex; gap:16px; align-items:flex-start; padding-bottom:24px; position:relative; }
.chain-step:last-child { padding-bottom:0; }
.chain-step::before { content:''; position:absolute; left:15px; top:32px; bottom:0; width:1px; background:var(--border); }
.chain-step:last-child::before { display:none; }
.chain-node { width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; flex-shrink:0; z-index:1; }
.cn-approved { background:rgba(16,185,129,0.15); color:var(--green); border:1px solid rgba(16,185,129,0.3); }
.cn-active { background:var(--accent-glow); color:var(--accent2); border:1px solid var(--tag-border); }
.cn-pending { background:var(--border); color:var(--text3); border:1px solid var(--border2); }
.chain-info h5 { font-size:13px; font-weight:600; color:var(--text); margin-bottom:2px; }
.chain-info p { font-size:12px; color:var(--text2); }
.chain-status { display:inline-block; font-size:10px; font-weight:700; letter-spacing:0.08em; text-transform:uppercase; padding:2px 8px; border-radius:3px; margin-top:4px; }
.cs-approved { background:rgba(16,185,129,0.12); color:var(--green); }
.cs-active { background:var(--accent-glow); color:var(--accent2); }
.cs-pending { background:var(--border); color:var(--text3); }
.uc-benefits { background:var(--surface); border-top:1px solid var(--border); }
.benefits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:12px; overflow:hidden; margin-top:48px; }
.benefit-card { background:var(--surface2); padding:28px 24px; }
.benefit-icon { color:var(--accent2); font-size:22px; margin-bottom:14px; }
.benefit-card h3 { font-family:'DM Sans',sans-serif; font-size:15px; font-weight:600; color:var(--text); margin-bottom:8px; }
.benefit-card p { font-size:13px; color:var(--text2); line-height:1.65; }

/* FOOTER */
.site-footer { background:var(--surface); border-top:1px solid var(--border); padding:60px 0 32px; }
.footer-inner { max-width:1120px; margin:0 auto; padding:0 40px; }
.footer-top { display:grid; grid-template-columns:300px 1fr; gap:80px; margin-bottom:48px; }
.footer-brand p { font-size:13px; color:var(--text2); line-height:1.7; margin-bottom:8px; }
.footer-by { font-size:12px; color:var(--text3) !important; }
.footer-by strong { color:var(--text2); }
.footer-cols { display:flex; gap:60px; }
.footer-col h4 { font-family:'DM Mono',monospace; font-size:11px; font-weight:500; letter-spacing:0.12em; text-transform:uppercase; color:var(--text3); margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col a { color:var(--text2); text-decoration:none; font-size:14px; transition:color 0.2s; }
.footer-col a:hover { color:var(--text); }
.footer-bottom { border-top:1px solid var(--border); padding-top:24px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }
.footer-bottom p { font-size:13px; color:var(--text3); }
.footer-stack { font-family:'DM Mono',monospace; font-size:12px !important; }

/* DEMO MODAL */
.demo-modal-overlay {
  position:fixed; inset:0; z-index:1000;
  background:rgba(0,0,0,0.7); backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; padding:24px;
  opacity:0; visibility:hidden; transition:opacity 0.25s ease, visibility 0.25s ease;
}
.demo-modal-overlay.open { opacity:1; visibility:visible; }
.demo-modal {
  background:var(--surface); border:1px solid var(--border2);
  border-radius:18px; padding:48px; max-width:520px; width:100%;
  position:relative; transform:translateY(16px) scale(0.98);
  transition:transform 0.25s ease; box-shadow:0 32px 80px rgba(0,0,0,0.4);
}
.demo-modal-overlay.open .demo-modal { transform:translateY(0) scale(1); }
.demo-modal-close {
  position:absolute; top:20px; right:20px;
  width:36px; height:36px; border-radius:8px; border:1px solid var(--border2);
  background:var(--bg2); color:var(--text2); display:flex; align-items:center;
  justify-content:center; cursor:pointer; transition:background 0.2s, color 0.2s;
}
.demo-modal-close:hover { background:var(--border); color:var(--text); }
.demo-modal-label { font-family:'DM Mono',monospace; font-size:11px; font-weight:500; letter-spacing:0.14em; text-transform:uppercase; color:var(--accent2); margin-bottom:10px; }
.demo-modal-title { font-family:'Fraunces',serif; font-size:32px; font-weight:700; color:var(--text); line-height:1.1; margin-bottom:12px; }
.demo-modal-sub { font-size:14px; color:var(--text2); line-height:1.7; margin-bottom:28px; }
.demo-modal-pricing { display:flex; align-items:center; gap:20px; background:var(--bg2); border:1px solid var(--border); border-radius:12px; padding:20px 24px; margin-bottom:28px; }
.demo-modal-price { font-family:'Fraunces',serif; font-size:52px; font-weight:900; color:var(--text); line-height:1; flex-shrink:0; }
.demo-modal-price sup { font-size:24px; vertical-align:top; margin-top:8px; }
.demo-modal-price-label { font-size:14px; font-weight:600; color:var(--text); margin-bottom:4px; }
.demo-modal-price-then { font-size:13px; color:var(--text2); }
.demo-modal-email-link {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; padding:16px; border-radius:10px;
  border:1px solid var(--border2); background:var(--bg2);
  font-family:'DM Mono',monospace; font-size:16px; font-weight:500;
  color:var(--text); text-decoration:none; letter-spacing:0.02em;
  transition:border-color 0.2s, background 0.2s, color 0.2s;
  margin-bottom:24px;
}
.demo-modal-email-link:hover { border-color:var(--accent); color:var(--accent2); background:var(--accent-glow); }
.demo-modal-email-link svg { color:var(--accent2); flex-shrink:0; }
.demo-modal-includes { list-style:none; border-top:1px solid var(--border); padding-top:20px; display:flex; flex-direction:column; gap:10px; }
.demo-modal-includes li { display:flex; gap:10px; align-items:flex-start; font-size:13px; color:var(--text2); }
.demo-modal-includes li::before { content:'✓'; color:var(--green); font-weight:700; flex-shrink:0; }

/* SCROLL ANIMATIONS */
.fade-in { opacity:0; transform:translateY(20px); transition:opacity 0.5s ease,transform 0.5s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* RESPONSIVE */
@media(max-width:960px){
  .nav-links,.nav-right .nav-signin{display:none}
  .nav-hamburger{display:flex}
  .container,.container-narrow{padding:0 24px}
  .cost-layout,.features-header,.uc-hero-inner,.uc-memo-layout,.pricing-card,.cost-questions{grid-template-columns:1fr;gap:40px}
  .problem-grid{grid-template-columns:1fr 1fr}
  .problem-item{border-right:none;border-bottom:1px solid var(--border)}
  .problem-item:nth-child(odd){border-right:1px solid var(--border)}
  .features-grid,.uc-pain-grid,.benefits-grid{grid-template-columns:1fr}
  .steps-row{grid-template-columns:1fr 1fr;gap:40px}
  .steps-row::before{display:none}
  .stats-band-inner{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr;gap:40px}
  .footer-bottom{flex-direction:column;text-align:center}
  .uc-hero{padding:100px 24px 60px}
  section{padding:64px 0}
}
@media(max-width:640px){
  .problem-grid{grid-template-columns:1fr}
  .problem-item{border-right:none !important}
  .hero{padding:100px 24px 60px}
  .pricing-card{padding:32px 24px}
}
