/* Mettevo Lab — shared stylesheet across service pages */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root, body.theme-matrix {
  --bg: #08080c; --bg-2: #0e0e14; --line: #1a1a24; --line-2: #262635;
  --fg: #d6d8d3; --mute: #6a6a78;
  --acc: #5cd28b; --acc-d: #2a9156;
  --red: #ff5f57; --amber: #f0b840; --blue: #6db5ff;
  --scan-color: 255,255,255; --scan-opacity: 0.06; --vig-opacity: 0.4;
}
body.theme-paper {
  --bg: #f5f3ed; --bg-2: #ebe8de; --line: #d6d1c2; --line-2: #b9b1a0;
  --fg: #0f0f12; --mute: #756f64;
  --acc: #0f0f12; --acc-d: #444;
  --red: #b8412e; --amber: #b58a1f; --blue: #2a4f8c;
  --scan-color: 0,0,0; --scan-opacity: 0.025; --vig-opacity: 0.05;
}
body.theme-midnight {
  --bg: #0a0e1c; --bg-2: #111729; --line: #1d263f; --line-2: #2a3559;
  --fg: #e6ecf5; --mute: #7882a0;
  --acc: #ff8a3d; --acc-d: #c46422;
  --red: #ff5f7a; --amber: #ffd166; --blue: #6db5ff;
  --scan-color: 255,255,255; --scan-opacity: 0.05; --vig-opacity: 0.35;
}
body.theme-vercel {
  --bg: #ffffff; --bg-2: #f5f5f5; --line: #e5e5e5; --line-2: #cfcfcf;
  --fg: #0a0a0a; --mute: #6b6b6b;
  --acc: #0a0a0a; --acc-d: #3a3a3a;
  --red: #d92d20; --amber: #b58a1f; --blue: #0070f3;
  --scan-color: 0,0,0; --scan-opacity: 0.02; --vig-opacity: 0.04;
}

html, body { background: var(--bg); color: var(--fg); font-family: 'Geist Mono', 'JetBrains Mono', monospace; -webkit-font-smoothing: antialiased; }
body { overflow-x: hidden; }
::selection { background: var(--acc); color: var(--bg); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; }
input, textarea { font: inherit; color: inherit; }

body::before { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 200; opacity: var(--scan-opacity);
  background: repeating-linear-gradient(0deg, rgba(var(--scan-color),0.5) 0 1px, transparent 1px 3px); mix-blend-mode: overlay; }
body::after { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 199;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,var(--vig-opacity)) 100%); }

/* NAV */
nav.top { position: sticky; top: 0; z-index: 100; background: var(--bg); border-bottom: 1px solid var(--line); padding: 14px 28px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; font-size: 12px; }
nav .brand { display: flex; align-items: center; gap: 12px; }
nav .lights { display: flex; gap: 6px; }
nav .lights span { width: 10px; height: 10px; border-radius: 50%; }
nav .lights .r { background: var(--red); } nav .lights .a { background: var(--amber); } nav .lights .g { background: var(--acc); }
nav .name b { color: var(--acc); font-weight: 500; }
nav .name span { color: var(--mute); }
/* new logo wordmark (variant 12: mettevo_) */
nav .brand { text-decoration: none; }
nav .brand .wm { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 22px; letter-spacing: -0.025em; line-height: 1; color: var(--fg); display: inline-flex; align-items: baseline; }
nav .brand .wm .under { color: var(--acc); display: inline-block; margin-left: 1px; animation: brand-blink 1.05s steps(2) infinite; transform: translateY(-2px); }
nav .brand .tag { font-size: 11px; color: var(--mute); letter-spacing: 0.02em; white-space: nowrap; }
@keyframes brand-blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }
nav .center { color: var(--mute); letter-spacing: 0.04em; text-align: center; font-size: 11px; }
nav .center .blink { color: var(--acc); animation: blink 1.2s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
nav .right { display: flex; gap: 22px; justify-content: flex-end; align-items: center; }
nav .right a { color: var(--mute); transition: color .2s ease; }
nav .right a:hover, nav .right a.active { color: var(--acc); }
nav .right .cta { padding: 8px 14px; border: 1px solid var(--acc); border-radius: 4px; color: var(--acc); }
nav .right .cta:hover { background: var(--acc); color: var(--bg); }

/* statusbar */
.statusbar { background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px 28px; display: flex; gap: 32px; font-size: 11px; color: var(--mute); white-space: nowrap; }
.statusbar .live { color: var(--acc); }
.statusbar .live::before { content: "●"; margin-right: 6px; animation: blink 1.2s steps(2) infinite; }
.statusbar .marquee { flex: 1; overflow: hidden; }
.statusbar .marquee span { display: inline-block; animation: scroll-h 60s linear infinite; }
@keyframes scroll-h { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Breadcrumb */
.crumb { padding: 18px 28px; border-bottom: 1px solid var(--line); font-size: 11px; color: var(--mute); display: flex; gap: 10px; }
.crumb a:hover { color: var(--acc); }
.crumb .sep { opacity: 0.5; }
.crumb b { color: var(--fg); font-weight: 500; }

/* LAYOUT */
section { padding: 80px 28px; position: relative; border-bottom: 1px solid var(--line); }
.panel { border: 1px solid var(--line); background: var(--bg-2); border-radius: 6px; }
.panel-head { padding: 10px 16px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--mute); }
.panel-head .lights { display: flex; gap: 6px; }
.panel-head .lights span { width: 10px; height: 10px; border-radius: 50%; }
.panel-head .lights .r { background: var(--red); } .panel-head .lights .a { background: var(--amber); } .panel-head .lights .g { background: var(--acc); }
.panel-head .title { color: var(--fg); }
.panel-head .meta { color: var(--mute); }

.sh { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.sh .num { color: var(--acc); font-size: 12px; letter-spacing: 0.08em; }
.sh h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(40px, 6vw, 80px); line-height: 0.95; letter-spacing: -0.02em; font-weight: 600; margin-top: 16px; }
.sh h2 .acc { color: var(--acc); }
.sh h2 .mono { font-family: 'JetBrains Mono', monospace; font-weight: 700; }
.sh .right { font-size: 14px; line-height: 1.55; color: var(--mute); max-width: 480px; justify-self: end; }
.sh .right em { color: var(--acc); font-style: normal; }

.btn { font-family: 'Geist Mono', monospace; font-size: 12px; padding: 14px 22px; border-radius: 4px; transition: all .25s ease; display: inline-flex; align-items: center; gap: 10px; cursor: pointer; border: 1px solid transparent; }
.btn-primary { background: var(--acc); color: var(--bg); }
.btn-primary:hover { background: var(--fg); }
.btn-ghost { border-color: var(--line-2); color: var(--fg); }
.btn-ghost:hover { border-color: var(--acc); color: var(--acc); }

/* HERO */
.hero { padding: 60px 28px 80px; }
.hero-grid { display: grid; grid-template-columns: 1fr 440px; gap: 44px; align-items: start; }
.hero .eyebrow { font-size: 12px; color: var(--mute); margin-bottom: 22px; }
.hero .eyebrow b { color: var(--acc); }
.hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(48px, 7.5vw, 124px); line-height: 0.96; letter-spacing: -0.025em; font-weight: 700; }
.hero h1 .mono { font-family: 'JetBrains Mono', monospace; }
.hero h1 .acc { color: var(--acc); }
.hero h1 .strike { color: var(--red); text-decoration: line-through; text-decoration-thickness: 4px; opacity: 0.85; }
.hero h1 .cur { display: inline-block; width: 0.5em; height: 0.78em; background: var(--acc); animation: blink 1s steps(2) infinite; vertical-align: -0.05em; }
.hero .lede { margin-top: 30px; font-size: 16px; line-height: 1.55; color: var(--fg); max-width: 580px; }
.hero .lede em { color: var(--acc); font-style: normal; }
.hero .cta-row { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.hero .micro { margin-top: 24px; font-size: 11px; color: var(--mute); display: flex; gap: 18px; flex-wrap: wrap; }
.hero .micro b { color: var(--acc); font-weight: 500; }

.terminal { font-size: 13px; line-height: 1.6; }
.terminal-body { padding: 20px; height: 360px; overflow: hidden; position: relative; }
.terminal .line { display: block; }
.terminal .prompt { color: var(--acc); }
.terminal .cmd { color: var(--fg); }
.terminal .out { color: var(--mute); }
.terminal .ok { color: var(--acc); }
.terminal .warn { color: var(--amber); }
.terminal .err { color: var(--red); }

/* PAINS */
.pains { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; background: var(--bg-2); }
.pain { padding: 28px; border-right: 1px solid var(--line); transition: background .3s; }
.pain:last-child { border-right: none; }
.pain:hover { background: var(--bg); }
.pain .ico { font-family: 'JetBrains Mono', monospace; color: var(--red); font-size: 11px; margin-bottom: 18px; letter-spacing: 0.06em; }
.pain .ico::before { content: "✗ "; }
.pain h4 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; line-height: 1.2; font-weight: 500; color: var(--fg); }
.pain p { font-size: 12px; color: var(--mute); line-height: 1.5; margin-top: 12px; }

/* INCLUDES list */
.includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inc-row { padding: 18px 20px; border: 1px solid var(--line); border-radius: 4px; background: var(--bg-2); display: grid; grid-template-columns: 36px 1fr; gap: 18px; align-items: start; transition: border-color .25s ease, background .25s ease; }
.inc-row:hover { border-color: var(--acc); background: var(--bg); }
.inc-row .ix { font-family: 'JetBrains Mono', monospace; color: var(--acc); font-size: 12px; }
.inc-row h4 { font-family: 'Space Grotesk', sans-serif; font-size: 16px; font-weight: 500; line-height: 1.25; margin-bottom: 6px; }
.inc-row p { font-size: 12px; color: var(--mute); line-height: 1.5; }

/* TIERS */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tier { display: flex; flex-direction: column; transition: transform .35s ease, border-color .25s ease; }
.tier:hover { transform: translateY(-4px); border-color: var(--acc); }
.tier.featured { border-color: var(--acc); }
.tier.featured .panel-head { background: var(--acc); color: var(--bg); border-bottom-color: var(--acc); }
.tier.featured .panel-head .title { color: var(--bg); }
.tier.featured .panel-head .meta { color: var(--bg); opacity: 0.7; }
.tier .body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.tier h3 { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 600; line-height: 1.1; }
.tier .for { font-size: 11px; color: var(--mute); margin-top: 6px; letter-spacing: 0.04em; }
.tier .price { font-family: 'Space Grotesk', sans-serif; font-size: 40px; line-height: 1; font-weight: 700; margin-top: 20px; }
.tier .price span { font-size: 13px; color: var(--mute); font-weight: 400; display: block; margin-top: 4px; }
.tier ul { list-style: none; padding: 0; margin-top: 22px; padding-top: 22px; border-top: 1px dashed var(--line); display: flex; flex-direction: column; gap: 10px; }
.tier ul li { font-size: 12px; color: var(--fg); padding-left: 18px; position: relative; line-height: 1.45; }
.tier ul li::before { content: "→"; position: absolute; left: 0; color: var(--acc); font-family: 'JetBrains Mono', monospace; }
.tier .tier-cta { margin-top: auto; padding-top: 22px; }
.tier .tier-cta a { display: block; text-align: center; padding: 14px; border-radius: 4px; font-size: 12px; border: 1px solid var(--line-2); color: var(--fg); transition: all .2s ease; }
.tier .tier-cta a:hover { background: var(--acc); border-color: var(--acc); color: var(--bg); }
.tier.featured .tier-cta a { background: var(--acc); border-color: var(--acc); color: var(--bg); }
.tier.featured .tier-cta a:hover { background: var(--fg); border-color: var(--fg); }

/* LEAD MAGNET */
.magnet { padding: 80px 28px; background: var(--bg-2); border-bottom: 1px solid var(--line); }
.magnet-inner { display: grid; grid-template-columns: 1fr 460px; gap: 60px; align-items: center; max-width: 1300px; margin: 0 auto; }
.magnet .badge { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--acc); letter-spacing: 0.08em; margin-bottom: 18px; }
.magnet .badge::before { content: "★ "; }
.magnet h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 5vw, 64px); line-height: 1; font-weight: 700; letter-spacing: -0.02em; }
.magnet h2 .acc { color: var(--acc); }
.magnet .desc { margin-top: 24px; font-size: 15px; line-height: 1.55; color: var(--mute); max-width: 540px; }
.magnet ul { list-style: none; margin-top: 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.magnet ul li { padding-left: 22px; position: relative; font-size: 13px; line-height: 1.45; color: var(--fg); }
.magnet ul li::before { content: "→"; position: absolute; left: 0; color: var(--acc); }
.magnet-form { padding: 24px; }
.magnet-form .head { font-size: 11px; color: var(--mute); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }
.magnet-form .head b { color: var(--acc); }
.magnet-form .field { margin-bottom: 14px; }
.magnet-form label { font-size: 10px; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.magnet-form input, .magnet-form textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 4px; padding: 12px 14px; color: var(--fg); font-family: 'Geist Mono', monospace; font-size: 13px; outline: none; transition: border-color .2s ease; }
.magnet-form input:focus, .magnet-form textarea:focus { border-color: var(--acc); }
.magnet-form button { width: 100%; background: var(--acc); color: var(--bg); border: none; padding: 16px; border-radius: 4px; font-family: 'Geist Mono', monospace; font-size: 13px; cursor: pointer; transition: all .25s ease; margin-top: 6px; }
.magnet-form button:hover { background: var(--fg); }
.magnet-form .legal { margin-top: 12px; font-size: 11px; color: var(--mute); line-height: 1.5; }

/* PROCESS */
.process-list { border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.proc-step { display: grid; grid-template-columns: 70px 200px 1fr 130px; gap: 24px; padding: 22px 26px; border-bottom: 1px solid var(--line); background: var(--bg-2); align-items: center; transition: background .25s ease; }
.proc-step:last-child { border-bottom: none; }
.proc-step:hover { background: var(--bg); }
.proc-step .n { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--acc); }
.proc-step .name { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 500; line-height: 1.15; }
.proc-step .desc { font-size: 13px; color: var(--mute); line-height: 1.5; }
.proc-step .when { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mute); text-align: right; }
.proc-step .when b { color: var(--fg); }

/* CASES — service page version */
.svc-cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc-case { padding: 0; display: flex; flex-direction: column; transition: transform .35s ease, border-color .25s ease; }
.svc-case:hover { transform: translateY(-4px); border-color: var(--acc); }
.svc-case .body { padding: 22px; flex: 1; display: flex; flex-direction: column; gap: 14px; }
.svc-case .row { display: flex; justify-content: space-between; align-items: baseline; font-size: 11px; color: var(--mute); }
.svc-case .row .pill { padding: 3px 8px; border: 1px solid var(--line); border-radius: 999px; }
.svc-case h3 { font-family: 'Space Grotesk', sans-serif; font-size: 28px; line-height: 1; font-weight: 600; }
.svc-case h3 .acc { color: var(--acc); }
.svc-case .sum { font-size: 12px; line-height: 1.55; color: var(--mute); flex: 1; }
.svc-case .sum em { color: var(--fg); font-style: normal; }
.svc-case .nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.svc-case .nums .n { padding: 10px; border: 1px solid var(--line); border-radius: 4px; }
.svc-case .nums .n b { font-family: 'Space Grotesk', sans-serif; font-size: 18px; line-height: 1; font-weight: 600; color: var(--acc); display: block; }
.svc-case .nums .n span { font-size: 9px; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; display: block; }

/* FAQ */
.faq-list { }
.faq-item { border-bottom: 1px solid var(--line); cursor: pointer; }
.faq-item:last-child { border-bottom: none; }
.faq-q { padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: background .2s ease; }
.faq-item:hover .faq-q { background: var(--bg); }
.faq-q h4 { font-family: 'Space Grotesk', sans-serif; font-size: 19px; line-height: 1.25; font-weight: 500; }
.faq-q .icon { font-family: 'JetBrains Mono', monospace; color: var(--acc); font-size: 14px; transition: transform .3s ease; }
.faq-item.open .faq-q .icon { transform: rotate(90deg); }
.faq-item.open .faq-q { background: var(--bg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a-inner { padding: 0 24px 22px; font-size: 14px; line-height: 1.6; color: var(--mute); max-width: 780px; }
.faq-a-inner .acc { color: var(--acc); }

/* FINAL CTA */
.cta-section { padding: 100px 28px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); border-bottom: none; }
.cta-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.cta-inner h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 5vw, 70px); line-height: 0.98; font-weight: 700; letter-spacing: -0.025em; }
.cta-inner h2 .acc { color: var(--acc); }
.cta-inner h2 .mono { font-family: 'JetBrains Mono', monospace; }
.cta-inner .sub { margin-top: 24px; font-size: 14px; color: var(--mute); line-height: 1.55; max-width: 480px; }
.cta-inner .promise { margin-top: 26px; font-size: 12px; color: var(--mute); line-height: 1.55; padding-left: 18px; border-left: 2px solid var(--acc); }
.cta-inner .promise b { color: var(--acc); font-weight: 500; }
.cta-form { padding: 24px; }
.cta-form .form-head { font-size: 11px; color: var(--mute); margin-bottom: 18px; padding-bottom: 14px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; }
.cta-form .form-head b { color: var(--acc); }
.cta-form .field { margin-bottom: 14px; }
.cta-form label { font-size: 10px; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; display: block; margin-bottom: 6px; }
.cta-form label .req { color: var(--red); }
.cta-form input, .cta-form textarea { width: 100%; background: var(--bg); border: 1px solid var(--line); border-radius: 4px; padding: 12px 14px; color: var(--fg); font-family: 'Geist Mono', monospace; font-size: 13px; outline: none; }
.cta-form input:focus, .cta-form textarea:focus { border-color: var(--acc); }
.cta-form textarea { resize: vertical; min-height: 70px; }
.cta-form button { width: 100%; background: var(--acc); color: var(--bg); border: none; padding: 16px; border-radius: 4px; font-family: 'Geist Mono', monospace; font-size: 13px; cursor: pointer; transition: all .25s ease; margin-top: 6px; }
.cta-form button:hover { background: var(--fg); }
.cta-form .legal { margin-top: 14px; font-size: 11px; color: var(--mute); line-height: 1.5; }

/* FOOTER */
footer { padding: 50px 28px 40px; border-top: 1px solid var(--line); display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; font-size: 12px; color: var(--mute); background: var(--bg-2); }
footer b { display: block; color: var(--acc); margin-bottom: 12px; font-weight: 500; font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; }
footer .col a { display: block; padding: 4px 0; color: var(--mute); }
footer .col a:hover { color: var(--acc); }
footer .brand-col .logo { font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700; color: var(--fg); letter-spacing: -0.025em; margin-bottom: 8px; line-height: 1; display: inline-flex; align-items: baseline; }
footer .brand-col .logo .under { color: var(--acc); display: inline-block; margin-left: 2px; animation: brand-blink 1.05s steps(2) infinite; transform: translateY(-3px); }
footer .brand-col .tag { font-size: 13px; line-height: 1.5; color: var(--mute); max-width: 280px; margin-bottom: 18px; }
footer .copy { grid-column: 1 / -1; padding-top: 24px; margin-top: 16px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 11px; }
footer .social { display: flex; gap: 8px; margin-top: 12px; }
footer .social a { width: 32px; height: 32px; border: 1px solid var(--line); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--mute); font-size: 11px; }
footer .social a:hover { color: var(--acc); border-color: var(--acc); }

/* Floating TG */
.tg-float { position: fixed; bottom: 22px; right: 22px; z-index: 110; width: 56px; height: 56px; border-radius: 50%; background: var(--acc); color: var(--bg); display: flex; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; box-shadow: 0 6px 24px rgba(0,0,0,0.35); border: 2px solid var(--acc); }
.tg-float::after { content: ""; position: absolute; inset: -4px; border: 2px solid var(--acc); border-radius: 50%; opacity: 0.4; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.5; } 100% { transform: scale(1.4); opacity: 0; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* --------------- BURGER MENU --------------- */
.burger { display: none; width: 38px; height: 38px; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: 6px; background: var(--bg); color: var(--fg); cursor: pointer; padding: 0; }
.burger span { display: block; width: 18px; height: 1.5px; background: currentColor; position: relative; transition: all .25s ease; }
.burger span::before, .burger span::after { content: ""; position: absolute; left: 0; right: 0; height: 1.5px; background: currentColor; transition: all .25s ease; }
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger.on span { background: transparent; }
.burger.on span::before { top: 0; transform: rotate(45deg); }
.burger.on span::after { top: 0; transform: rotate(-45deg); }

/* Responsive — TABLET (≤ 1100px) */
@media (max-width: 1100px) {
  nav.top { grid-template-columns: auto 1fr auto; padding: 12px 16px; gap: 12px; }
  nav .center { display: none; }
  nav .right a:not(.cta) { display: none; }
  nav .burger { display: inline-flex; }
  .hero-grid, .magnet-inner, .cta-inner, .sh { grid-template-columns: 1fr; gap: 24px; }
  .includes-grid { grid-template-columns: 1fr; }
  .pains, .tiers, .svc-cases { grid-template-columns: 1fr 1fr; }
  .pain { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .pain:nth-child(2n) { border-right: none; }
  .pain:nth-last-child(-n+2) { border-bottom: none; }
  .proc-step { grid-template-columns: 60px 1fr; gap: 12px; padding: 18px; }
  .proc-step .desc, .proc-step .when { grid-column: 2; }
  footer { grid-template-columns: 1fr 1fr; }
  section { padding: 64px 18px; }
  .statusbar { padding: 8px 16px; gap: 16px; font-size: 10px; }
  .statusbar .marquee { display: none; }
  .crumb { padding: 14px 18px; font-size: 10px; }
}

/* Responsive — PHONE (≤ 640px) */
@media (max-width: 640px) {
  body { font-size: 14px; }
  nav.top { padding: 10px 14px; }
  nav .brand .name { font-size: 11px; }
  nav .brand .name span { display: none; }
  nav .brand .tag { display: none; }
  nav .brand .wm { font-size: 18px; }
  nav .right .cta { font-size: 10px; padding: 8px 10px; }
  .statusbar { padding: 6px 14px; gap: 12px; font-size: 9px; flex-wrap: nowrap; overflow: hidden; }
  .statusbar #clock { display: none; }
  section { padding: 48px 14px; }
  .hero { padding: 36px 14px 48px; }
  .hero .lede { margin-top: 24px; font-size: 15px; }
  .hero .cta-row { margin-top: 22px; }
  .hero .cta-row a.btn { width: 100%; justify-content: center; }
  .hero .micro { margin-top: 18px; gap: 12px; flex-direction: column; }
  .terminal-body { height: 260px; padding: 14px; font-size: 11px; }
  .pains, .tiers, .svc-cases { grid-template-columns: 1fr; }
  .pain, .why-cell { border-right: none !important; border-bottom: 1px solid var(--line) !important; }
  .pain:last-child, .why-cell:last-child { border-bottom: none !important; }
  .tier .body { padding: 20px; }
  .tier h3 { font-size: 22px; }
  .tier .price { font-size: 32px; }
  .magnet { padding: 56px 14px; }
  .magnet h2, .cta-inner h2 { font-size: clamp(32px, 9vw, 48px); }
  .magnet-form, .cta-form { padding: 18px; }
  .proc-step { padding: 14px; gap: 10px; }
  .proc-step .name { font-size: 17px; }
  footer { grid-template-columns: 1fr; padding: 36px 16px 28px; gap: 26px; }
  footer .copy { grid-column: 1; flex-direction: column; gap: 8px; }
  footer .brand-col .logo { font-size: 26px; }
  .tg-float { width: 48px; height: 48px; font-size: 18px; bottom: 16px; right: 16px; }
  .sh { margin-bottom: 36px; }
  .panel-head { padding: 8px 12px; font-size: 10px; }
  .panel-head .title { max-width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}

/* Mobile menu overlay */
.mobile-menu { position: fixed; inset: 0; z-index: 1000; background: var(--bg); padding: 80px 28px 28px; display: none; flex-direction: column; gap: 4px; overflow-y: auto; }
.mobile-menu.on { display: flex; }
.mobile-menu a { font-family: 'Space Grotesk', sans-serif; font-size: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--fg); display: flex; justify-content: space-between; align-items: center; }
.mobile-menu a::after { content: "→"; color: var(--mute); font-family: 'JetBrains Mono', monospace; font-size: 18px; }
.mobile-menu a:active { color: var(--acc); }
.mobile-menu a.cta { color: var(--acc); }
.mobile-menu .foot { margin-top: auto; padding-top: 24px; font-size: 12px; color: var(--mute); }
.mobile-menu .foot a { font-size: 12px; padding: 8px 0; border-bottom: none; display: block; }
.mobile-menu .foot a::after { display: none; }


/* =============================================
   SEO LANDING PAGES — shared styles
   ============================================= */

/* Hero with one giant pain-question */
.lp-hero { padding: 80px 28px 60px; border-bottom: 1px solid var(--line); }
.lp-hero .wrap { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start; }
.lp-hero .badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border: 1px solid var(--red); border-radius: 999px; color: var(--red); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; margin-bottom: 24px; }
.lp-hero .badge::before { content: "●"; animation: blink 1.2s steps(2) infinite; }
.lp-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(40px, 5.5vw, 80px); line-height: 1; letter-spacing: -0.025em; font-weight: 700; }
.lp-hero h1 .acc { color: var(--acc); }
.lp-hero h1 .red { color: var(--red); }
.lp-hero h1 .strike { text-decoration: line-through; text-decoration-thickness: 3px; color: var(--mute); }
.lp-hero .sub { margin-top: 28px; font-size: 17px; line-height: 1.5; color: var(--fg); max-width: 580px; }
.lp-hero .sub em { color: var(--acc); font-style: normal; }
.lp-hero .actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.lp-hero .trust { margin-top: 22px; font-size: 11px; color: var(--mute); display: flex; gap: 18px; flex-wrap: wrap; }
.lp-hero .trust b { color: var(--acc); font-weight: 500; }

/* Generic landing section header */
.lp-sec { padding: 80px 28px; border-bottom: 1px solid var(--line); }
.lp-sec .lp-wrap { max-width: 1200px; margin: 0 auto; }
.lp-sec .lp-num { color: var(--acc); font-size: 12px; letter-spacing: 0.08em; font-family: 'JetBrains Mono', monospace; margin-bottom: 12px; }
.lp-sec h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(32px, 4.5vw, 60px); line-height: 1; letter-spacing: -0.02em; font-weight: 600; max-width: 800px; }
.lp-sec h2 .acc { color: var(--acc); }
.lp-sec h2 .red { color: var(--red); }
.lp-sec .lp-lede { margin-top: 20px; font-size: 15px; line-height: 1.55; color: var(--mute); max-width: 720px; }
.lp-sec .lp-lede em { color: var(--fg); font-style: normal; }

/* Pain checklist */
.lp-checklist { margin-top: 36px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.lp-check { padding: 22px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg-2); display: flex; gap: 16px; align-items: start; transition: border-color .25s ease; }
.lp-check:hover { border-color: var(--red); }
.lp-check .x { font-family: 'JetBrains Mono', monospace; color: var(--red); font-size: 18px; font-weight: 700; line-height: 1; flex-shrink: 0; }
.lp-check h4 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 500; line-height: 1.25; margin-bottom: 6px; }
.lp-check p { font-size: 13px; color: var(--mute); line-height: 1.55; }

/* Education / explanation block */
.lp-edu { margin-top: 36px; padding: 36px; border: 1px solid var(--line); border-left: 3px solid var(--acc); border-radius: 6px; background: var(--bg-2); max-width: 920px; }
.lp-edu p { font-size: 16px; line-height: 1.65; color: var(--fg); }
.lp-edu p + p { margin-top: 14px; }
.lp-edu p b { color: var(--acc); font-weight: 500; }

/* Comparison 2-column (vs table) */
.lp-vs { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: 6px; overflow: hidden; }
.lp-vs .col-head { padding: 18px 24px; font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; border-bottom: 1px solid var(--line); }
.lp-vs .col-head.bad { background: var(--bg); color: var(--red); border-right: 1px solid var(--line); }
.lp-vs .col-head.good { background: var(--acc); color: var(--bg); }
.lp-vs .vs-row { display: contents; }
.lp-vs .cell { padding: 16px 24px; border-bottom: 1px solid var(--line); font-size: 14px; line-height: 1.5; }
.lp-vs .cell.bad { background: var(--bg); color: var(--mute); border-right: 1px solid var(--line); }
.lp-vs .cell.good { background: var(--bg-2); color: var(--fg); }
.lp-vs .cell.good b { color: var(--acc); font-weight: 500; }
.lp-vs > div:nth-last-child(-n+2) .cell { border-bottom: none; }

/* Case block */
.lp-case { margin-top: 36px; padding: 0; border: 1px solid var(--acc); border-radius: 6px; overflow: hidden; }
.lp-case .case-head { padding: 14px 22px; background: var(--acc); color: var(--bg); font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.06em; display: flex; justify-content: space-between; }
.lp-case .case-body { padding: 32px; background: var(--bg-2); display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.lp-case .story h3 { font-family: 'Space Grotesk', sans-serif; font-size: 26px; line-height: 1.15; font-weight: 600; margin-bottom: 14px; }
.lp-case .story p { font-size: 14px; color: var(--fg); line-height: 1.6; }
.lp-case .story p + p { margin-top: 10px; }
.lp-case .story p em { color: var(--acc); font-style: normal; }
.lp-case .nums-big { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.lp-case .nums-big .n { padding: 22px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); }
.lp-case .nums-big .n b { font-family: 'Space Grotesk', sans-serif; font-size: 36px; line-height: 1; font-weight: 700; color: var(--acc); display: block; letter-spacing: -0.02em; }
.lp-case .nums-big .n span { font-size: 10px; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 8px; display: block; }

/* 3-step method */
.lp-method { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.lp-step { padding: 28px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg-2); position: relative; }
.lp-step .step-n { font-family: 'JetBrains Mono', monospace; font-size: 14px; color: var(--acc); font-weight: 500; margin-bottom: 14px; }
.lp-step h4 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 500; line-height: 1.2; margin-bottom: 10px; }
.lp-step p { font-size: 13px; line-height: 1.55; color: var(--mute); }

/* Stats strip (social proof) */
.lp-stats { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--acc); border-radius: 6px; overflow: hidden; }
.lp-stats .stat { padding: 32px; background: var(--bg-2); border-right: 1px solid var(--line); }
.lp-stats .stat:last-child { border-right: none; }
.lp-stats .stat .lbl { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--mute); letter-spacing: 0.06em; text-transform: uppercase; }
.lp-stats .stat .v { font-family: 'Space Grotesk', sans-serif; font-size: 56px; line-height: 1; font-weight: 700; color: var(--acc); margin-top: 10px; letter-spacing: -0.025em; }
.lp-stats .stat .foot { font-size: 12px; color: var(--mute); margin-top: 10px; line-height: 1.5; }

/* Guarantee block */
.lp-guarantee { margin-top: 40px; padding: 28px; border: 2px dashed var(--acc); border-radius: 6px; display: grid; grid-template-columns: 90px 1fr; gap: 22px; align-items: center; }
.lp-guarantee .seal { width: 80px; height: 80px; border-radius: 50%; background: var(--acc); color: var(--bg); display: flex; flex-direction: column; align-items: center; justify-content: center; font-family: 'Space Grotesk', sans-serif; font-weight: 700; line-height: 1; }
.lp-guarantee .seal b { font-size: 28px; }
.lp-guarantee .seal span { font-size: 9px; margin-top: 4px; letter-spacing: 0.08em; }
.lp-guarantee h4 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 600; line-height: 1.15; margin-bottom: 6px; }
.lp-guarantee p { font-size: 13px; line-height: 1.55; color: var(--mute); }
.lp-guarantee p b { color: var(--acc); font-weight: 500; }

/* Final CTA — bigger version */
.lp-cta-final { padding: 100px 28px; background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 50%, var(--bg) 100%); border-bottom: 1px solid var(--line); }
.lp-cta-final .wrap { max-width: 920px; margin: 0 auto; text-align: center; }
.lp-cta-final .eye { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--mute); margin-bottom: 18px; }
.lp-cta-final .eye span { color: var(--acc); }
.lp-cta-final h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(36px, 5vw, 72px); line-height: 1; font-weight: 700; letter-spacing: -0.025em; }
.lp-cta-final h2 .acc { color: var(--acc); }
.lp-cta-final .sub { margin-top: 26px; font-size: 16px; color: var(--mute); line-height: 1.55; max-width: 640px; margin-left: auto; margin-right: auto; }
.lp-cta-final form { margin-top: 36px; max-width: 540px; margin-left: auto; margin-right: auto; text-align: left; }
.lp-cta-final .field { margin-bottom: 12px; }
.lp-cta-final input, .lp-cta-final select { width: 100%; background: var(--bg); border: 1px solid var(--line-2); border-radius: 4px; padding: 14px 16px; color: var(--fg); font-family: 'Geist Mono', monospace; font-size: 13px; outline: none; transition: border-color .2s ease; }
.lp-cta-final input:focus, .lp-cta-final select:focus { border-color: var(--acc); }
.lp-cta-final button { width: 100%; background: var(--acc); color: var(--bg); border: none; padding: 18px; border-radius: 4px; font-family: 'Geist Mono', monospace; font-size: 14px; font-weight: 500; cursor: pointer; transition: all .25s ease; margin-top: 6px; }
.lp-cta-final button:hover { background: var(--fg); }
.lp-cta-final .legal { margin-top: 14px; font-size: 11px; color: var(--mute); line-height: 1.5; text-align: center; }

/* Responsive */
@media (max-width: 1100px) {
  .lp-hero .wrap { grid-template-columns: 1fr; gap: 32px; }
  .lp-case .case-body { grid-template-columns: 1fr; }
  .lp-checklist, .lp-vs, .lp-method, .lp-stats { grid-template-columns: 1fr; }
  .lp-vs .col-head, .lp-vs .cell { border-right: none !important; }
  .lp-vs .col-head.bad, .lp-vs .cell.bad { border-bottom: 1px solid var(--line) !important; }
}
@media (max-width: 640px) {
  .lp-hero, .lp-sec, .lp-cta-final { padding: 56px 16px; }
  .lp-hero { padding-top: 40px; padding-bottom: 40px; }
  .lp-stats .stat .v { font-size: 44px; }
  .lp-guarantee { grid-template-columns: 1fr; text-align: center; }
  .lp-guarantee .seal { margin: 0 auto; }
}
