:root {
  --cream: #f7f3ee;
  --paper: #fffaf3;
  --ink: #050505;
  --muted: #6c655f;
  --line: rgba(5, 5, 5, 0.14);
  --panel: rgba(255, 255, 255, 0.72);
  --black: #050505;
  --purple: #7b25ff;
  --magenta: #dd42d4;
  --pink: #f268b8;
  --yellow: #fff12d;
  --shadow: 0 22px 60px rgba(18, 15, 12, 0.12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Geist", system-ui, sans-serif;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(5, 5, 5, 0.035) 1px, transparent 1px),
    var(--cream);
  background-size: 44px 44px;
  color: var(--ink);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: "Manrope", "Geist", sans-serif;
  letter-spacing: 0;
  line-height: 0.94;
}
h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.15rem, 7.8vw, 7.7rem);
  font-weight: 800;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 5vw, 5.2rem);
  font-weight: 800;
}
h3 { margin-bottom: 0; font-size: 1.05rem; line-height: 1.24; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(247, 243, 238, 0.84);
  backdrop-filter: blur(18px);
}
.brand img { display: block; width: 124px; height: auto; }
.nav-links { display: flex; gap: clamp(14px, 3vw, 34px); color: var(--muted); font-weight: 700; }
.nav-links a:hover, .header-cta:hover { color: var(--ink); }
.header-cta { color: var(--purple); font-weight: 800; }

.section-shell { width: min(1160px, calc(100% - 36px)); margin: 0 auto; padding: 96px 0; }
.section-shell.compact { padding: 78px 0; }
.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
  padding-top: 62px;
}
.hero-copy p, .section-heading p, .scanner-intro p, .final-cta p {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.11rem;
}
.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}
.eyebrow.light { color: var(--yellow); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.08); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ink); color: white; box-shadow: 8px 8px 0 var(--yellow); }
.btn-secondary { background: transparent; color: var(--ink); }
.hero-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; color: var(--muted); font-size: 0.82rem; font-weight: 800; text-transform: uppercase; }
.hero-tags span { border-bottom: 2px solid var(--magenta); padding-bottom: 4px; }

.hero-visual { position: relative; min-height: 540px; }
.hero-mark {
  position: absolute;
  right: -20px;
  top: 2px;
  width: min(380px, 78%);
  transform: rotate(-8deg);
}
.audit-panel, .brand-card, .step-card, .scanner-form, .progress-card, .result-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.audit-panel {
  position: absolute;
  left: 30px;
  right: 0;
  bottom: 20px;
  min-height: 430px;
  padding: 26px;
  background: rgba(5, 5, 5, 0.94);
  color: white;
}
.audit-top, .progress-label, .metric-row, .result-panel, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.audit-top span, .metric-row span, .progress-label span { color: #bfb8b1; font-size: 0.86rem; }
.audit-top strong { display: block; margin-top: 4px; font-size: 1.38rem; }
.live-pill { padding: 7px 10px; border-radius: 999px; background: var(--yellow); color: var(--ink) !important; font-weight: 900; }
.score-ring {
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  margin: 38px auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, var(--black) 58%, transparent 59%),
    conic-gradient(var(--magenta) 0 72%, rgba(255,255,255,.14) 72% 100%);
}
.score-ring span { font-size: 4rem; font-weight: 800; }
.score-ring small { color: #cfc7bf; font-weight: 800; }
.metric-list { display: grid; gap: 18px; }
.metric-row div { flex: 1; height: 9px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.12); }
.metric-row i { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--yellow), var(--magenta), var(--purple)); }
.floating-note {
  position: absolute;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--yellow);
  font-weight: 900;
  box-shadow: 7px 7px 0 var(--ink);
}
.note-a { left: 0; top: 100px; transform: rotate(-6deg); }
.note-b { right: 6px; bottom: 52px; transform: rotate(5deg); background: white; }

.section-heading { margin-bottom: 36px; }
.benefit-grid, .steps, .service-grid { display: grid; gap: 16px; }
.benefit-grid { grid-template-columns: repeat(4, 1fr); }
.brand-card, .step-card { min-height: 168px; padding: 22px; }
.brand-card span, .step-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
}
.brand-card:nth-child(2) span, .brand-card:nth-child(4) span { background: var(--magenta); }
.process-band { background: var(--ink); color: white; }
.process-band .section-heading p, .process-band .step-card { color: white; }
.steps { grid-template-columns: repeat(3, 1fr); }
.step-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.step-card span { background: var(--yellow); color: var(--ink); }

.scanner-section { background: var(--paper); }
.scanner-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
}
.scanner-intro { position: sticky; top: 112px; }
.progress-card { margin-top: 28px; padding: 18px; }
.progress-track { height: 10px; overflow: hidden; border-radius: 999px; background: rgba(5,5,5,.12); }
.progress-track span { display: block; width: 0%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--purple), var(--magenta), var(--yellow)); transition: width 220ms ease; }
.scanner-form { padding: clamp(18px, 3vw, 30px); background: rgba(255,255,255,.82); }
fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
legend, .question-title { margin-bottom: 18px; color: var(--ink); font-size: 1.05rem; font-weight: 900; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
label { display: grid; gap: 8px; color: var(--ink); font-size: 0.92rem; font-weight: 800; }
.wide { grid-column: 1 / -1; }
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: 0;
  padding: 0 14px;
}
input:focus { border-color: var(--purple); box-shadow: 0 0 0 4px rgba(123,37,255,.11); }
.quiz-list { display: grid; gap: 16px; margin-top: 26px; }
.question-card { padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(247,243,238,.72); }
.options-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.option-label {
  position: relative;
  min-height: 54px;
  padding: 14px 14px 14px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  cursor: pointer;
}
.option-label input { position: absolute; left: 12px; top: 15px; width: 18px; min-height: 18px; accent-color: var(--magenta); }
.option-label:has(input:checked) { border-color: var(--ink); background: var(--yellow); box-shadow: 4px 4px 0 var(--ink); }
.form-message { min-height: 24px; margin: 18px 0 10px; color: #b00035; font-weight: 800; }
.form-message.success { color: #167a46; }
.submit-btn { width: 100%; }

.result-panel { align-items: stretch; margin-top: 30px; padding: clamp(22px, 4vw, 34px); background: var(--ink); color: white; }
.result-score {
  display: grid;
  place-items: center;
  min-width: 220px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--yellow), var(--magenta));
  color: var(--ink);
}
.result-score span { font-size: clamp(4rem, 9vw, 6.6rem); font-weight: 900; line-height: 1; }
.result-score small { font-weight: 900; }
.result-copy { flex: 1; }
.result-copy p { color: #d7d1cb; }
.recommendation { margin: 22px 0; padding: 18px; border-left: 4px solid var(--yellow); border-radius: var(--radius); background: rgba(255,255,255,.08); }
.recommendation p { margin-bottom: 0; }

.authority .section-heading { max-width: 900px; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-chip {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  font-weight: 900;
}
.service-chip:nth-child(2n) { background: var(--ink); color: white; }
.final-cta { text-align: center; background: var(--ink); color: white; }
.final-cta .section-shell { padding: 86px 0; }
.final-cta img { width: 92px; margin-bottom: 18px; }
.final-cta p { margin: 0 auto 24px; color: #d7d1cb; }
.final-cta .btn-primary { background: var(--yellow); color: var(--ink); box-shadow: 8px 8px 0 var(--magenta); }
.site-footer { padding: 26px clamp(18px, 4vw, 56px); border-top: 1px solid var(--line); color: var(--muted); background: var(--cream); }
.site-footer img { width: 118px; }
.site-footer p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 520ms ease, transform 520ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero, .scanner-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .scanner-intro { position: static; }
  .benefit-grid, .steps, .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .site-header { padding: 14px 18px; }
  .brand img { width: 104px; }
  .header-cta { display: none; }
  .section-shell, .section-shell.compact { width: min(100% - 28px, 1160px); padding: 58px 0; }
  .hero { padding-top: 42px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.2rem); }
  h2 { font-size: clamp(2.15rem, 12vw, 3.4rem); }
  .hero-copy p, .section-heading p, .scanner-intro p, .final-cta p { font-size: 1rem; }
  .hero-actions, .hero-actions .btn, .btn { width: 100%; }
  .hero-visual { min-height: 420px; }
  .hero-mark { right: -24px; width: 250px; }
  .audit-panel { left: 0; min-height: 350px; padding: 20px; }
  .score-ring { width: 160px; height: 160px; margin: 26px auto; }
  .score-ring span { font-size: 3.2rem; }
  .floating-note { display: none; }
  .benefit-grid, .steps, .service-grid, .field-grid, .options-grid { grid-template-columns: 1fr; }
  .wide { grid-column: auto; }
  .scanner-form, .question-card { padding: 16px; }
  .result-panel { flex-direction: column; }
  .result-score { min-width: 0; min-height: 160px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
