:root {
  --bg: #161e26;
  --bg-2: #1c2630;
  --bg-3: #232f3a;
  --bg-soft: #eef1f5;
  --bg-paper: #f7f8fa;
  --ink: #ffffff;
  --ink-dark: #15202b;
  --muted: #a8b3bf;
  --muted-dark: #5b6a7a;
  --line: rgba(255,255,255,.12);
  --line-strong: rgba(255,255,255,.22);
  --line-dark: rgba(20,28,38,.14);
  --primary: #3e5266;
  --primary-2: #4a6178;
  --primary-dark: #232f3a;
  --accent: #b27a52;
  --accent-2: #c6916b;
  --accent-soft: rgba(178,122,82,.16);
  --green: #6f9c89;
  --red: #c46b6b;
  --radius: 14px;
  --font: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 18% 4%, rgba(62,82,102,.42), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(178,122,82,.18), transparent 28%),
    linear-gradient(180deg, #161e26, #1c2630 52%, #161e26);
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: var(--accent-2); font-size: 12px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.eyebrow:before { content: ""; width: 34px; height: 1px; background: currentColor; }

/* ===== Top header ===== */
.topbar {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(22,30,38,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.topbar__inner { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; color: var(--ink); }
.brand__mark { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #ffffff; box-shadow: 0 8px 28px rgba(62,82,102,.34); font-weight: 900; font-size: 18px; letter-spacing: .02em; }
.brand__name { font-size: 18px; letter-spacing: .01em; }
.nav { display: flex; gap: 22px; align-items: center; color: var(--muted); font-size: 14px; font-weight: 800; }
.nav a { transition: color .15s ease; }
.nav a:hover, .nav a.is-active { color: var(--ink); }
.nav__cta { min-height: 42px; display: inline-flex; align-items: center; padding: 0 16px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1b1006; box-shadow: 0 10px 24px rgba(178,122,82,.32); }
.nav__cta:hover { color: #1b1006; }

.burger { display: none; width: 44px; height: 44px; border: 1px solid var(--line-strong); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; position: relative; padding: 0; }
.burger span { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .22s ease, opacity .22s ease, top .22s ease; }
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 28px; }
.is-burger-open .burger span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.is-burger-open .burger span:nth-child(2) { opacity: 0; }
.is-burger-open .burger span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

.mobile-nav {
  display: none; position: fixed; left: 0; right: 0; top: 70px; z-index: 49;
  padding: 18px 16px 26px;
  background: rgba(22,30,38,.97);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(0,0,0,.4);
}
.mobile-nav a { display: flex; min-height: 50px; align-items: center; padding: 0 14px; color: var(--ink); font-weight: 800; border-radius: 12px; }
.mobile-nav a:hover, .mobile-nav a.is-active { background: rgba(255,255,255,.06); color: var(--accent-2); }
.mobile-nav .nav__cta { width: 100%; justify-content: center; margin-top: 8px; color: #1b1006; }
.is-burger-open .mobile-nav { display: block; }
body.is-burger-open { overflow: hidden; }

@media (max-width: 820px) {
  .nav { display: none; }
  .burger { display: inline-flex; align-items: center; justify-content: center; }
}

/* ===== Hero ===== */
.field-hero { position: relative; padding: 48px 0 70px; overflow: hidden; }
.field-bg { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, black, transparent 86%); -webkit-mask-image: linear-gradient(to bottom, black, transparent 86%); }
.field-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 410px; gap: 30px; align-items: start; }
.hero-copy { padding-top: 22px; }
.query-brand { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--ink); font-size: 18px; font-weight: 900; }
.query-brand__mark { width: 34px; height: 34px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #ffffff; box-shadow: 0 6px 20px rgba(178,122,82,.24); font-weight: 900; }
.hero-copy h1 { margin: 18px 0 0; font-size: clamp(46px, 7vw, 84px); line-height: .92; letter-spacing: -.01em; }
.hero-copy p.lede { max-width: 640px; margin: 22px 0 0; color: var(--muted); font-size: 18px; }
.brief-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 22px; border-radius: 999px; font-weight: 900; transition: transform .15s ease, box-shadow .15s ease, background .15s ease; cursor: pointer; border: 0; }
.btn--primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1b1006; box-shadow: 0 14px 30px rgba(178,122,82,.34); }
.btn--primary:hover { transform: translateY(-1px); box-shadow: 0 18px 36px rgba(178,122,82,.4); }
.btn--ghost { color: var(--ink); border: 1px solid var(--line-strong); background: rgba(255,255,255,.05); }
.btn--ghost:hover { background: rgba(255,255,255,.1); }

/* ===== Lead form ===== */
.hero-form { grid-column: 2; grid-row: 1; position: sticky; top: 88px; }
.lead-card { padding: 24px; border: 1px solid rgba(178,122,82,.24); border-radius: 20px; background: rgba(247,248,250,.97); color: var(--ink-dark); box-shadow: 0 28px 90px rgba(0,0,0,.36); }
.lead-card__head { margin-bottom: 18px; }
.lead-card__head span.eyebrow { color: #6c4a32; }
.lead-card__head h2 { margin: 10px 0 0; font-size: 28px; line-height: 1.05; color: var(--ink-dark); }
.lead-card__head p { margin: 10px 0 0; color: var(--muted-dark); }
.contact-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-label { display: block; margin-bottom: 7px; color: var(--muted-dark); font-size: 12px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.rf-form-input { width: 100%; height: 48px; padding: 0 14px; border: 1px solid rgba(20,28,38,.16); border-radius: 12px; background: #ffffff; color: var(--ink-dark); outline: none; font-weight: 600; transition: border-color .15s ease, box-shadow .15s ease; }
.rf-form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(62,82,102,.22); }
.form-field.has-error .rf-form-input { border-color: var(--red); box-shadow: 0 0 0 3px rgba(196,107,107,.18); }
.iti, .iti-wrap { width: 100%; }
.err { display: none; margin-top: 6px; color: var(--red); font-size: 12px; font-weight: 800; }
.form-field.has-error .err:not(.hide), .form-field.has-error .error-msg { display: block; }
.hide, .waiting_block.hidden { display: none !important; }
.form-submit { min-height: 52px; border: 0; border-radius: 12px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1b1006; font-weight: 900; cursor: pointer; box-shadow: 0 14px 30px rgba(178,122,82,.32); transition: transform .15s ease; }
.form-submit:hover { transform: translateY(-1px); }
.form-note { margin: 0; color: var(--muted-dark); font-size: 12px; }
.form-note a { color: var(--ink-dark); text-decoration: underline; text-underline-offset: 3px; font-weight: 900; }
.dot-spinner { display: flex; gap: 5px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-dark); animation: tPulse .9s infinite alternate; }
.dot:nth-child(2) { animation-delay: .15s; }
.dot:nth-child(3) { animation-delay: .3s; }
@keyframes tPulse { from { opacity: .3; transform: translateY(0); } to { opacity: 1; transform: translateY(-3px); } }

/* ===== Signal strip ===== */
.signal-strip { overflow: hidden; border-block: 1px solid var(--line); background: var(--bg-soft); color: var(--ink-dark); font-weight: 900; }
.strip-track { display: flex; width: max-content; animation: tTicker 32s linear infinite; }
.strip-track span { padding: 14px 30px; white-space: nowrap; }
.strip-track span b { color: var(--accent); }
@keyframes tTicker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== Market field ===== */
.market-field { padding: 80px 0; }
.market-field-grid { display: grid; grid-template-columns: .56fr 1fr; gap: 28px; align-items: start; }
.market-field-copy { position: sticky; top: 88px; }
.market-field-copy h2 { margin: 18px 0 0; font-size: clamp(34px, 4.8vw, 60px); line-height: .96; }
.market-field-copy p { max-width: 520px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.field-visual { border: 1px solid var(--line-strong); border-radius: 22px; background: rgba(255,255,255,.045); box-shadow: 0 28px 90px rgba(0,0,0,.34); overflow: hidden; }
.field-top { min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.field-top b { color: var(--accent-2); font-size: 24px; letter-spacing: 0; }
.field-body { display: grid; grid-template-columns: 122px 1fr; }
.asset-rail { display: grid; align-content: start; gap: 8px; padding: 16px; border-right: 1px solid var(--line); background: rgba(0,0,0,.18); }
.asset-rail button { min-height: 42px; border: 1px solid transparent; border-radius: 12px; background: transparent; color: var(--muted); font-weight: 900; cursor: pointer; transition: background .15s ease, color .15s ease; }
.asset-rail button:hover { color: var(--ink); }
.asset-rail button.is-active { color: #1b1006; background: linear-gradient(135deg, var(--accent), var(--accent-2)); }
.map-canvas { position: relative; min-height: 360px; overflow: hidden; background: linear-gradient(135deg, rgba(62,82,102,.18), rgba(178,122,82,.10)); }
.map-canvas:before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,255,255,.16) 1px, transparent 1px); background-size: 24px 24px; opacity: .32; }
.map-canvas svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.node { position: absolute; display: inline-flex; align-items: center; gap: 7px; padding: 8px 11px; border: 1px solid var(--line-strong); border-radius: 999px; background: rgba(22,30,38,.82); color: var(--ink); font-size: 12px; font-weight: 900; }
.node i { width: 8px; height: 8px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 18px var(--accent); }
.n1 { left: 10%; top: 64%; } .n2 { left: 37%; top: 38%; } .n3 { right: 18%; top: 24%; } .n4 { right: 8%; bottom: 20%; }
.field-readout { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); }
.field-readout div { padding: 16px; background: rgba(22,30,38,.96); }
.field-readout span { display: block; color: var(--muted); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .1em; }
.field-readout b { display: block; margin-top: 6px; font-size: 18px; color: var(--ink); }
.field-metrics { grid-column: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.field-metrics article { min-height: 116px; padding: 18px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.045); }
.field-metrics span { color: var(--muted); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.field-metrics b { display: block; margin-top: 12px; font-size: 22px; line-height: 1.05; color: var(--ink); }

/* ===== Tools hub ===== */
.tools-hub { padding: 82px 0; background: var(--bg-soft); color: var(--ink-dark); }
.tools-hub .eyebrow { color: #6c4a32; }
.tools-layout { display: grid; grid-template-columns: .58fr 1fr; gap: 34px; align-items: start; }
.tools-head { position: sticky; top: 88px; }
.tools-head h2 { margin: 18px 0 0; font-size: clamp(34px, 4.8vw, 56px); line-height: .96; color: var(--ink-dark); }
.tools-head p { max-width: 540px; margin: 20px 0 0; color: var(--muted-dark); font-size: 18px; }
.tools-console { border: 1px solid rgba(20,28,38,.1); border-radius: 22px; background: #ffffff; box-shadow: 0 28px 90px rgba(20,28,38,.14); overflow: hidden; }
.tools-tabs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(20,28,38,.12); }
.tools-tabs button { min-height: 58px; border: 0; background: #ffffff; color: var(--muted-dark); font-weight: 900; cursor: pointer; }
.tools-tabs button:hover { background: #f1f3f6; color: var(--ink-dark); }
.tools-tabs button.is-active { background: var(--primary-dark); color: var(--accent-2); }
.tools-content { padding: 22px; }
.tools-copy { display: grid; align-content: center; min-height: 390px; padding: 30px; border-radius: 18px; background: var(--primary-dark); color: var(--ink); }
.tools-copy span { color: var(--accent-2); font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.tools-copy h3 { margin: 12px 0 0; font-size: clamp(28px, 4vw, 44px); line-height: .96; }
.tools-copy p { margin: 16px 0 0; color: #c0cad5; }
.tools-copy ul { display: grid; gap: 8px; margin: 20px 0 0; padding: 0; list-style: none; }
.tools-copy li { display: flex; align-items: center; gap: 10px; color: #dbe4ec; font-weight: 700; }
.tools-copy li:before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 14px rgba(178,122,82,.5); }
.tools-copy a { min-height: 46px; display: inline-flex; align-items: center; justify-self: start; margin-top: 24px; padding: 0 16px; border-radius: 999px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #1b1006; font-weight: 900; box-shadow: 0 10px 24px rgba(178,122,82,.3); }

/* ===== Author panel ===== */
.author-panel { padding: 78px 0; background: var(--bg-soft); color: var(--ink-dark); }
.author-panel .eyebrow { color: #6c4a32; }
.author-card { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 28px; align-items: center; padding: 24px; border: 1px solid rgba(20,28,38,.1); border-radius: 24px; background: #ffffff; box-shadow: 0 28px 90px rgba(20,28,38,.14); }
.author-card__avatar { width: 100%; aspect-ratio: 1; display: grid; place-items: center; border-radius: 22px; overflow: hidden; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #ffffff; font-size: 50px; font-weight: 900; letter-spacing: .04em; }
.author-card h2 { margin: 16px 0 0; font-size: clamp(28px, 4.2vw, 44px); line-height: 1; color: var(--ink-dark); }
.author-card__name { display: inline-flex; margin-top: 16px; color: var(--ink-dark); font-size: 22px; font-weight: 900; text-decoration: underline; text-underline-offset: 4px; }
.author-card__role { margin: 6px 0 0; color: #6c4a32; font-weight: 900; }
.author-card p:not(.author-card__role) { max-width: 760px; margin: 14px 0 0; color: var(--muted-dark); font-size: 17px; }
.author-card__link { min-height: 44px; display: inline-flex; align-items: center; margin-top: 20px; padding: 0 16px; border-radius: 999px; background: var(--primary-dark); color: var(--accent-2); font-weight: 900; }

/* ===== FAQ ===== */
.seo-faq { padding: 82px 0; background: var(--bg-2); }
.seo-faq__head { max-width: 840px; margin-bottom: 26px; }
.seo-faq__head h2 { margin: 18px 0 0; font-size: clamp(32px, 4.6vw, 56px); line-height: .96; }
.seo-faq__head p { margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.seo-faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.seo-faq__item { border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.045); overflow: hidden; }
.seo-faq__item summary { min-height: 66px; display: flex; align-items: center; padding: 18px 22px; color: var(--ink); font-size: 17px; font-weight: 900; cursor: pointer; gap: 12px; }
.seo-faq__item summary::-webkit-details-marker { display: none; }
.seo-faq__item summary::after { content: "+"; margin-left: auto; color: var(--accent-2); font-size: 22px; line-height: 1; flex: 0 0 auto; }
.seo-faq__item[open] summary::after { content: "–"; }
.seo-faq__item p { margin: 0; padding: 0 22px 22px; color: var(--muted); line-height: 1.65; }

/* ===== Briefing / Allocator / Proof ===== */
.briefing, .proof-wall { padding: 76px 0; }
.briefing-grid { display: grid; grid-template-columns: .62fr 1fr; gap: 36px; }
.briefing h2, .proof-wall h2 { margin: 18px 0 0; font-size: clamp(34px, 4.8vw, 58px); line-height: .96; }
.layer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.layer-grid article, .proof-layout article { min-height: 190px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.045); }
.layer-grid span { color: var(--accent-2); font-family: var(--mono); font-weight: 900; font-size: 16px; }
.layer-grid b, .proof-layout b { display: block; margin-top: 12px; font-size: 20px; color: var(--ink); }
.layer-grid p, .proof-layout p { margin: 12px 0 0; color: var(--muted); }
.allocator { padding: 82px 0; color: var(--ink-dark); background: linear-gradient(135deg, var(--bg-soft), #e6e1d8); }
.allocator-grid { display: grid; grid-template-columns: 1fr .82fr; gap: 42px; align-items: center; }
.allocator .eyebrow { color: #6c4a32; }
.allocator-copy h2 { margin: 18px 0 0; font-size: clamp(32px, 4.4vw, 52px); line-height: .98; color: var(--ink-dark); }
.allocator-copy p { color: var(--muted-dark); font-size: 18px; max-width: 540px; margin-top: 18px; }
.allocator-card { display: grid; grid-template-columns: .86fr 1fr; gap: 18px; padding: 22px; border: 1px solid rgba(20,28,38,.1); border-radius: 22px; background: #ffffff; box-shadow: 0 28px 90px rgba(20,28,38,.16); }
.allocation-output { display: grid; align-content: center; min-height: 260px; padding: 26px; border-radius: 18px; color: var(--ink); background: var(--primary-dark); }
.allocation-output span, .allocation-output small { color: #b9c3cf; }
.allocation-output small { display: block; min-height: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.allocation-output strong { display: flex; align-items: center; min-height: 72px; margin: 8px 0; color: var(--accent-2); font-size: clamp(28px, 4vw, 46px); line-height: 1; font-variant-numeric: tabular-nums; white-space: nowrap; overflow: hidden; }
.allocation-controls { display: grid; align-content: center; gap: 16px; }
.allocation-controls label { display: grid; gap: 9px; color: var(--ink-dark); font-weight: 900; }
.allocation-controls label span { display: flex; justify-content: space-between; gap: 14px; }
.allocation-controls output { color: var(--accent); font-family: var(--mono); }
.allocation-controls input[type=range] { width: 100%; accent-color: var(--accent); }
.allocation-controls select { height: 48px; border: 1px solid rgba(20,28,38,.18); border-radius: 12px; background: #ffffff; color: var(--ink-dark); font-weight: 900; padding: 0 12px; }
.proof-layout { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 12px; }
.proof-lead { min-height: 240px; }

/* ===== Local edge section (Anlagstein CH key) ===== */
.local-edge { padding: 80px 0; background: var(--bg-2); }
.local-edge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
.local-edge h2 { margin: 18px 0 0; font-size: clamp(32px, 4.6vw, 54px); line-height: .98; }
.local-edge p.lede { max-width: 540px; margin: 20px 0 0; color: var(--muted); font-size: 18px; }
.local-edge ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.local-edge li { padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.045); }
.local-edge li b { display: block; color: var(--ink); font-size: 17px; }
.local-edge li p { margin: 8px 0 0; color: var(--muted); }

/* ===== Risk disclosure ===== */
.risk-strip { padding: 40px 0; background: var(--primary-dark); border-top: 1px solid var(--line); }
.risk-strip p { margin: 0; color: var(--muted); font-size: 14px; }
.risk-strip strong { color: var(--accent-2); }

/* ===== Footer ===== */
.site-footer { padding: 36px 0 50px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; background: #10171f; }
.site-footer__top { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 32px; padding-bottom: 24px; border-bottom: 1px solid var(--line); }
.site-footer__top h4 { margin: 0 0 12px; color: var(--ink); font-size: 14px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.site-footer__top ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.site-footer__top a { color: var(--muted); transition: color .15s ease; }
.site-footer__top a:hover { color: var(--ink); }
.site-footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; padding-top: 18px; }
.site-footer__bottom a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Floating brief / reveal ===== */
.floating-brief {
  position: fixed; left: 18px; bottom: 18px; z-index: 25;
  width: min(340px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid rgba(178,122,82,.32);
  border-radius: 18px;
  background: rgba(22,30,38,.92);
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  opacity: 0; transform: translateY(18px); pointer-events: none;
  transition: opacity .24s ease, transform .24s ease;
}
.floating-brief.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.floating-brief a { display: flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 18px; border-radius: 999px; color: #1b1006; background: linear-gradient(135deg, var(--accent), var(--accent-2)); font-weight: 900; text-align: center; }

.reveal-item { opacity: 0; transform: translateY(22px); transition: opacity .52s ease, transform .52s ease; }
.reveal-item.is-inview { opacity: 1; transform: translateY(0); }
.reveal-item:nth-child(2) { transition-delay: .06s; }
.reveal-item:nth-child(3) { transition-delay: .12s; }
.reveal-item:nth-child(4) { transition-delay: .18s; }

/* ===== Inner / legal pages ===== */
.page-hero { padding: 60px 0 30px; }
.page-hero h1 { margin: 0; font-size: clamp(38px, 5.8vw, 64px); line-height: .96; letter-spacing: -.01em; }
.page-hero p { max-width: 720px; margin: 18px 0 0; color: var(--muted); font-size: 18px; }
.legal-body { padding: 30px 0 80px; }
.legal-body article { max-width: 820px; color: var(--ink); }
.legal-body h2 { margin: 36px 0 12px; font-size: clamp(22px, 2.6vw, 28px); }
.legal-body h3 { margin: 28px 0 10px; font-size: 18px; }
.legal-body p, .legal-body li { color: #cfd6df; line-height: 1.7; font-size: 16px; }
.legal-body ul, .legal-body ol { padding-left: 22px; }
.legal-body strong { color: var(--ink); }
.legal-body a { color: var(--accent-2); text-decoration: underline; }

.standalone-form { padding: 50px 0 80px; }
.standalone-form .lead-card { max-width: 640px; margin: 0 auto; }

.thank-you-page { min-height: 60vh; display: grid; place-items: center; padding: 80px 0; text-align: center; }
.thank-you-page .badge { width: 96px; height: 96px; margin: 0 auto 24px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: #ffffff; font-size: 48px; font-weight: 900; box-shadow: 0 18px 50px rgba(178,122,82,.34); }
.thank-you-page h1 { margin: 0; font-size: clamp(36px, 5vw, 56px); }
.thank-you-page p { max-width: 560px; margin: 18px auto 0; color: var(--muted); font-size: 18px; }
.thank-you-page .btn { margin-top: 28px; }

/* ===== Responsive ===== */
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
  .reveal-item, .floating-brief { transition: none; transform: none; opacity: 1; }
}
@media (max-width: 1080px) {
  .field-grid, .market-field-grid, .tools-layout, .briefing-grid, .allocator-grid, .proof-layout, .local-edge-grid, .site-footer__top { grid-template-columns: 1fr; }
  .field-visual, .hero-form, .field-metrics { grid-column: auto; grid-row: auto; }
  .hero-form, .market-field-copy, .tools-head { position: static; }
  .seo-faq__grid { grid-template-columns: 1fr; }
  .author-card { grid-template-columns: 1fr; }
  .author-card__avatar { max-width: 220px; }
}
@media (max-width: 720px) {
  .field-body, .field-readout, .field-metrics, .tools-tabs, .tools-content, .layer-grid, .allocator-card { grid-template-columns: 1fr; }
  .asset-rail { grid-template-columns: repeat(2, 1fr); border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-copy { padding-top: 8px; }
  .hero-copy h1 { font-size: clamp(40px, 13vw, 64px); }
  .tools-head h2, .tools-copy h3 { font-size: clamp(28px, 9vw, 40px); overflow-wrap: anywhere; }
  .floating-brief { display: none; }
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
  .lead-card { padding: 18px; }
  .brand__name { font-size: 16px; }
}
