:root {
  --ink: #101826;
  --ink-soft: #263246;
  --muted: #657184;
  --paper: #f4f6f1;
  --surface: #ffffff;
  --surface-soft: #f9faf7;
  --line: #dfe4e8;
  --line-strong: #c9d1da;
  --blue: #2457e6;
  --blue-dark: #183aa1;
  --blue-soft: #edf2ff;
  --mint: #19ad7a;
  --mint-soft: #e8f8f1;
  --amber: #db8b21;
  --amber-soft: #fff4df;
  --red: #d9505b;
  --red-soft: #fff0f1;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --shadow: 0 26px 80px rgba(28, 45, 78, .13);
  --shadow-soft: 0 12px 36px rgba(28, 45, 78, .08);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    linear-gradient(rgba(36, 87, 230, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 87, 230, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 8%, rgba(36, 87, 230, .12), transparent 30%),
    radial-gradient(circle at 14% 42%, rgba(25, 173, 122, .09), transparent 25%);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(36, 87, 230, .35); outline-offset: 3px; }
img, svg { display: block; max-width: 100%; }
[hidden] { display: none !important; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 112px 0; position: relative; }
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-kicker::before { content: ""; width: 24px; height: 2px; background: currentColor; }
.section-title {
  max-width: 820px;
  margin: 0;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.13;
  letter-spacing: -.045em;
}
.section-lead { max-width: 700px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.9; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 13px;
  border: 1px solid rgba(36, 87, 230, .18);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 5px 18px rgba(36, 87, 230, .08);
}
.eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(25, 173, 122, .12); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(201, 209, 218, .7);
  background: rgba(244, 246, 241, .86);
  backdrop-filter: blur(18px);
}
.nav-wrap { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 900; letter-spacing: -.03em; }
.brand-mark {
  width: 38px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
  box-shadow: 7px 7px 0 var(--blue);
}
.brand-mark svg { width: 20px; }
.brand-name small { display: block; margin-top: 1px; color: var(--muted); font-size: 9px; font-weight: 700; letter-spacing: .14em; }
.desktop-nav { display: flex; align-items: center; gap: 26px; color: var(--ink-soft); font-size: 14px; font-weight: 600; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--blue); transition: right .24s ease; }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.mobile-menu-button { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; }
.mobile-menu-button svg { width: 20px; }
.mobile-nav { display: none; padding: 6px 20px 18px; border-top: 1px solid var(--line); background: rgba(255,255,255,.96); }
.mobile-nav.open { display: grid; }
.mobile-nav a { padding: 13px 4px; border-bottom: 1px solid var(--line); font-size: 15px; font-weight: 600; }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 0 19px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(36, 87, 230, .25); }
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 16px 34px rgba(36, 87, 230, .32); }
.btn-ink { color: #fff; background: var(--ink); }
.btn-ghost { color: var(--ink); border-color: var(--line-strong); background: rgba(255,255,255,.72); }
.btn-small { min-height: 42px; padding-inline: 16px; }
.btn svg { width: 17px; }

.hero { min-height: 760px; display: flex; align-items: center; padding: 92px 0 80px; position: relative; }
.hero::after {
  content: "GEO / AI SEARCH / WEBSITE";
  position: absolute;
  right: -60px;
  top: 45%;
  transform: rotate(90deg);
  color: rgba(16, 24, 38, .15);
  font-size: 10px;
  letter-spacing: .25em;
  font-weight: 800;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(460px, .94fr); gap: clamp(36px, 6vw, 84px); align-items: center; }
.hero-copy h1 {
  max-width: 690px;
  margin: 25px 0 24px;
  font-family: "Noto Serif SC", serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.08;
  letter-spacing: -.06em;
}
.hero-copy h1 em { color: var(--blue); font-style: normal; position: relative; white-space: nowrap; }
.hero-copy h1 em::after { content: ""; position: absolute; left: 2%; right: 0; bottom: 2px; height: 8px; z-index: -1; background: var(--mint); opacity: .28; transform: rotate(-1deg); }
.hero-copy > p { max-width: 650px; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.9; }
.diagnostic-form { margin-top: 34px; max-width: 660px; }
.input-shell {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-soft);
}
.input-shell:focus-within { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(36,87,230,.09), var(--shadow-soft); }
.input-shell input { width: 100%; min-width: 0; height: 52px; padding: 0 14px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 15px; }
.input-shell input::placeholder { color: #9aa3af; }
.form-error { min-height: 22px; margin: 8px 3px 0; color: var(--red); font-size: 13px; }
.form-note { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 13px; color: var(--muted); font-size: 12px; }
.form-note span { display: inline-flex; align-items: center; gap: 6px; }
.form-note svg { width: 14px; color: var(--mint); }
.hero-price { display: inline-flex; align-items: baseline; gap: 5px; color: var(--blue); font-weight: 900; }

.report-wrap { position: relative; padding: 24px 0 24px 20px; }
.orbit { position: absolute; inset: -18px -35px -12px -18px; border: 1px dashed rgba(36,87,230,.28); border-radius: 50%; transform: rotate(-12deg); }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }
.orbit::before { top: 14%; left: 9%; }
.orbit::after { bottom: 18%; right: 6%; background: var(--mint); }
.report-window {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(201,209,218,.9);
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}
.window-top { height: 54px; display: flex; align-items: center; gap: 8px; padding: 0 18px; border-bottom: 1px solid var(--line); background: #fbfcfa; }
.window-dot { width: 10px; height: 10px; border-radius: 50%; background: #d5dbe1; }
.window-dot:first-child { background: #f07b75; }
.window-dot:nth-child(2) { background: #efc55f; }
.window-dot:nth-child(3) { background: #74c889; }
.window-title { margin-left: 8px; color: var(--muted); font-size: 11px; font-weight: 700; }
.window-body { padding: 22px; }
.report-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.report-heading small { color: var(--blue); font-weight: 800; letter-spacing: .08em; }
.report-heading h2 { margin: 5px 0 0; font-size: 19px; letter-spacing: -.02em; }
.demo-pill { flex: 0 0 auto; padding: 6px 9px; border-radius: 999px; color: #0c7654; background: var(--mint-soft); font-size: 10px; font-weight: 800; }
.report-main { display: grid; grid-template-columns: 124px 1fr; gap: 22px; align-items: center; margin-top: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.score-ring {
  --score: 72;
  width: 118px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 50%;
  background: conic-gradient(var(--blue) calc(var(--score) * 1%), #e8ecf2 0);
}
.score-ring::before { content: ""; position: absolute; inset: 10px; border-radius: inherit; background: #fff; }
.score-value { position: relative; text-align: center; }
.score-value strong { display: block; font-size: 36px; line-height: 1; font-weight: 900; }
.score-value span { display: block; margin-top: 4px; color: var(--mint); font-size: 10px; font-weight: 800; }
.score-copy h3 { margin: 0 0 7px; font-size: 15px; }
.score-copy p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.65; }
.mini-bars { display: grid; gap: 9px; margin-top: 15px; }
.mini-bar-row { display: grid; grid-template-columns: 64px 1fr 26px; gap: 8px; align-items: center; font-size: 10px; color: var(--muted); }
.mini-bar { height: 6px; overflow: hidden; border-radius: 99px; background: #edf0f3; }
.mini-bar i { display: block; width: var(--w); height: 100%; border-radius: inherit; background: var(--blue); transform-origin: left; animation: grow 1.1s cubic-bezier(.2,.8,.2,1) both; }
.mini-bar-row:nth-child(2) i { background: var(--mint); animation-delay: .12s; }
.mini-bar-row:nth-child(3) i { background: var(--amber); animation-delay: .24s; }
.risk-title { display: flex; align-items: center; justify-content: space-between; margin: 17px 0 10px; font-size: 12px; font-weight: 800; }
.risk-title span { color: var(--muted); font-size: 9px; font-weight: 500; }
.risk-list { display: grid; gap: 8px; }
.risk-item { display: grid; grid-template-columns: auto 1fr auto; gap: 9px; align-items: center; padding: 10px 11px; border: 1px solid var(--line); border-radius: 10px; background: #fcfdfb; font-size: 10px; }
.risk-index { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 6px; color: var(--red); background: var(--red-soft); font-weight: 900; }
.risk-item strong { font-size: 10px; }
.risk-item em { color: var(--red); font-style: normal; font-weight: 800; }
.report-status {
  position: absolute;
  right: -16px;
  bottom: -10px;
  z-index: 4;
  min-width: 196px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-size: 11px;
  font-weight: 700;
}
.report-status::before { content: ""; display: inline-block; width: 8px; height: 8px; margin-right: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px var(--mint-soft); }
.report-status.loading::before { background: var(--amber); box-shadow: 0 0 0 4px var(--amber-soft); animation: pulse 1s infinite; }

.proof-strip { margin-top: 44px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-strong); border-bottom: 1px solid var(--line-strong); }
.proof-item { padding: 24px 10px 22px; position: relative; }
.proof-item + .proof-item::before { content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line-strong); }
.proof-item strong { display: block; font-size: 27px; letter-spacing: -.04em; }
.proof-item span { color: var(--muted); font-size: 12px; }

.problem-band { overflow: hidden; background: var(--ink); color: #fff; }
.problem-band .container { display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: center; }
.problem-statement { position: relative; padding: 70px 0; }
.problem-statement::before { content: "“"; position: absolute; left: -26px; top: 10px; color: rgba(255,255,255,.08); font-family: Georgia, serif; font-size: 190px; line-height: 1; }
.problem-statement h2 { margin: 0; font-family: "Noto Serif SC", serif; font-size: clamp(36px, 5vw, 64px); line-height: 1.2; letter-spacing: -.05em; }
.problem-statement h2 span { color: #73e4bd; }
.problem-statement p { max-width: 520px; margin: 24px 0 0; color: #b8c1ce; line-height: 1.9; }
.problem-list { display: grid; gap: 10px; padding: 60px 0; }
.problem-row { display: grid; grid-template-columns: 44px 1fr auto; gap: 14px; align-items: center; padding: 17px 18px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; background: rgba(255,255,255,.045); }
.problem-row b { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 11px; background: rgba(115,228,189,.12); color: #73e4bd; font-size: 12px; }
.problem-row strong { display: block; font-size: 14px; }
.problem-row small { display: block; margin-top: 3px; color: #8f9bae; font-size: 11px; }
.problem-row em { color: #f3b659; font-style: normal; font-size: 11px; font-weight: 800; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 54px; }
.feature-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 0 rgba(16,24,38,.025);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.feature-card:hover { transform: translateY(-7px); border-color: rgba(36,87,230,.38); box-shadow: var(--shadow-soft); }
.feature-number { position: absolute; right: 20px; top: 12px; color: rgba(16,24,38,.06); font-family: Georgia, serif; font-size: 72px; font-weight: 900; line-height: 1; }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(36,87,230,.14); border-radius: 13px; color: var(--blue); background: var(--blue-soft); }
.feature-icon svg { width: 21px; }
.feature-card h3 { margin: 24px 0 9px; font-size: 21px; letter-spacing: -.03em; }
.feature-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: auto; padding-top: 25px; }
.feature-tags span { padding: 6px 8px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--ink-soft); font-size: 10px; font-weight: 600; }
.check-count { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--blue); font-size: 11px; font-weight: 800; }

.report-section { background: #fff; }
.report-section::before { content: ""; position: absolute; inset: 0; background: linear-gradient(130deg, rgba(36,87,230,.035), transparent 44%); pointer-events: none; }
.report-showcase { display: grid; grid-template-columns: .75fr 1.25fr; gap: 66px; margin-top: 58px; align-items: start; }
.report-nav { position: sticky; top: 112px; display: grid; gap: 8px; }
.report-nav-item { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 16px; border: 1px solid transparent; border-radius: 13px; color: var(--muted); }
.report-nav-item.active { border-color: var(--line); color: var(--ink); background: var(--surface-soft); }
.report-nav-item b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; color: var(--blue); background: var(--blue-soft); font-size: 11px; }
.report-nav-item strong { display: block; font-size: 13px; }
.report-nav-item small { display: block; margin-top: 3px; color: var(--muted); line-height: 1.5; }
.report-canvas { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: #f6f8fb; box-shadow: var(--shadow); }
.canvas-head { display: flex; justify-content: space-between; align-items: center; gap: 14px; padding: 22px 24px; border-bottom: 1px solid var(--line); background: #fff; }
.canvas-head small { color: var(--muted); }
.canvas-body { padding: 22px; }
.canvas-summary { display: grid; grid-template-columns: 160px 1fr; gap: 20px; }
.canvas-score { display: grid; place-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 17px; background: #fff; }
.canvas-score strong { font-size: 54px; line-height: 1; }
.canvas-score span { margin-top: 8px; color: var(--amber); font-size: 11px; font-weight: 800; }
.canvas-analysis { padding: 20px; border-radius: 17px; color: #fff; background: var(--ink); }
.canvas-analysis small { color: #8fa0b8; }
.canvas-analysis h3 { margin: 8px 0 9px; font-size: 18px; }
.canvas-analysis p { margin: 0; color: #bac5d4; font-size: 11px; line-height: 1.7; }
.canvas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.canvas-card { padding: 17px; border: 1px solid var(--line); border-radius: 15px; background: #fff; }
.canvas-card h4 { margin: 0 0 13px; font-size: 12px; }
.funnel { display: grid; gap: 7px; align-items: center; }
.funnel-line { height: 24px; display: flex; align-items: center; justify-content: space-between; margin-inline: auto; padding: 0 9px; border-radius: 6px; color: var(--blue-dark); background: var(--blue-soft); font-size: 8px; font-weight: 800; }
.funnel-line:nth-child(2) { background: #e6f3ff; }
.funnel-line:nth-child(3) { background: var(--mint-soft); color: #087350; }
.funnel-line:nth-child(4) { background: var(--amber-soft); color: #9a5a08; }
.funnel-line:nth-child(5) { background: var(--red-soft); color: #a92f3a; }
.roadmap { display: grid; gap: 10px; }
.roadmap-line { display: grid; grid-template-columns: 32px 1fr; gap: 9px; }
.roadmap-line b { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; color: #fff; background: var(--blue); font-size: 9px; }
.roadmap-line:nth-child(2) b { background: var(--mint); }
.roadmap-line:nth-child(3) b { background: var(--amber); }
.roadmap-line strong { display: block; font-size: 10px; }
.roadmap-line span { color: var(--muted); font-size: 8px; }

.cases-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; }
.case-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 17px; margin-top: 44px; }
.case-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.9); box-shadow: var(--shadow-soft); }
.case-top { padding: 24px; border-bottom: 1px solid var(--line); }
.case-label { display: flex; justify-content: space-between; align-items: center; gap: 14px; color: var(--muted); font-size: 11px; }
.case-label span:last-child { padding: 5px 8px; border-radius: 99px; background: var(--amber-soft); color: #9b5a05; font-weight: 800; }
.case-top h3 { margin: 20px 0 8px; font-size: 20px; }
.case-top p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }
.case-score { display: flex; align-items: flex-end; gap: 7px; margin-top: 22px; }
.case-score strong { font-size: 48px; line-height: .9; letter-spacing: -.06em; }
.case-score span { color: var(--muted); font-size: 11px; }
.case-bottom { padding: 18px 24px 22px; }
.case-bottom small { color: var(--blue); font-weight: 800; }
.case-bottom ul { margin: 12px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.case-bottom li { position: relative; padding-left: 16px; color: var(--ink-soft); font-size: 11px; line-height: 1.5; }
.case-bottom li::before { content: ""; position: absolute; left: 0; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.case-card:nth-child(2) .case-bottom li::before { background: var(--amber); }
.case-card:nth-child(3) .case-bottom li::before { background: var(--mint); }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 58px; }
.process-step { position: relative; padding: 0 26px 0 0; }
.process-step:not(:last-child)::after { content: ""; position: absolute; top: 23px; left: 63px; right: 12px; border-top: 1px dashed var(--line-strong); }
.step-number { width: 48px; height: 48px; display: grid; place-items: center; position: relative; z-index: 2; border: 1px solid var(--line-strong); border-radius: 15px; background: #fff; color: var(--blue); font-family: Georgia, serif; font-size: 17px; font-weight: 900; box-shadow: 5px 5px 0 var(--blue-soft); }
.process-step h3 { margin: 23px 0 9px; font-size: 17px; }
.process-step p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.7; }

.pricing-section { background: var(--ink); color: #fff; }
.pricing-section .section-kicker { color: #73e4bd; }
.pricing-section .section-lead { color: #aeb9c8; }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 13px; margin-top: 52px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; min-height: 460px; padding: 26px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; background: rgba(255,255,255,.055); }
.price-card.featured { color: var(--ink); background: #fff; transform: translateY(-14px); box-shadow: 0 30px 70px rgba(0,0,0,.28); }
.price-badge { position: absolute; right: 16px; top: 16px; padding: 6px 9px; border-radius: 99px; color: #073f2e; background: #73e4bd; font-size: 9px; font-weight: 900; }
.price-name { color: #aeb9c8; font-size: 12px; font-weight: 800; }
.featured .price-name { color: var(--blue); }
.price-value { display: flex; align-items: baseline; gap: 5px; margin-top: 18px; }
.price-value strong { font-size: 43px; line-height: 1; letter-spacing: -.06em; }
.price-value span { color: #9eabba; font-size: 11px; }
.featured .price-value span { color: var(--muted); }
.price-desc { min-height: 46px; margin: 18px 0 0; color: #9eabba; font-size: 11px; line-height: 1.7; }
.featured .price-desc { color: var(--muted); }
.price-divider { height: 1px; margin: 22px 0; background: rgba(255,255,255,.12); }
.featured .price-divider { background: var(--line); }
.price-list { display: grid; gap: 12px; margin: 0 0 25px; padding: 0; list-style: none; }
.price-list li { display: grid; grid-template-columns: 16px 1fr; gap: 8px; color: #c4ccd6; font-size: 11px; line-height: 1.5; }
.featured .price-list li { color: var(--ink-soft); }
.price-list svg { width: 14px; margin-top: 2px; color: #73e4bd; }
.price-card .btn { width: 100%; margin-top: auto; }
.price-footnote { margin: 22px 0 0; color: #7f8c9f; font-size: 11px; text-align: center; }

.faq-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: start; }
.faq-aside { position: sticky; top: 110px; }
.faq-aside p { color: var(--muted); line-height: 1.8; }
.faq-list { border-top: 1px solid var(--line-strong); }
details { border-bottom: 1px solid var(--line-strong); }
summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; cursor: pointer; list-style: none; font-size: 16px; font-weight: 800; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; width: 28px; height: 28px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid var(--line); border-radius: 9px; color: var(--blue); background: #fff; }
details[open] summary::after { content: "−"; }
details p { max-width: 700px; margin: -7px 0 25px; color: var(--muted); font-size: 13px; line-height: 1.9; }

.final-cta { padding: 0 0 90px; }
.cta-panel { overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; padding: 54px 58px; border-radius: 28px; color: #fff; background: var(--blue); box-shadow: 0 30px 80px rgba(36,87,230,.27); }
.cta-panel::before { content: ""; position: absolute; width: 360px; height: 360px; right: -120px; top: -170px; border: 60px solid rgba(255,255,255,.09); border-radius: 50%; }
.cta-panel h2 { margin: 0; font-family: "Noto Serif SC", serif; font-size: clamp(30px, 4vw, 48px); letter-spacing: -.04em; }
.cta-panel p { margin: 13px 0 0; color: #dbe5ff; }
.cta-panel .btn { position: relative; z-index: 2; background: #fff; color: var(--blue-dark); }

footer { padding: 34px 0 45px; border-top: 1px solid var(--line-strong); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; color: var(--muted); font-size: 11px; }
.footer-links { display: flex; gap: 20px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes grow { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes pulse { 50% { opacity: .35; } }

@media (max-width: 1080px) {
  .desktop-nav { gap: 16px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 800px; }
  .report-wrap { width: min(760px, 100%); }
  .report-window { transform: none; }
  .proof-strip { max-width: 780px; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .report-showcase { grid-template-columns: 1fr; }
  .report-nav { position: static; grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { transform: none; }
}

@media (max-width: 820px) {
  .desktop-nav, .nav-actions .btn { display: none; }
  .mobile-menu-button { display: inline-flex; }
  .section { padding: 84px 0; }
  .problem-band .container, .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .problem-statement { padding-bottom: 10px; }
  .problem-list { padding-top: 28px; }
  .faq-aside { position: static; margin-bottom: 34px; }
  .case-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 42px 18px; }
  .process-step:not(:last-child)::after { display: none; }
  .cta-panel { grid-template-columns: 1fr; padding: 45px 36px; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: auto; padding: 65px 0 70px; }
  .hero::after, .orbit { display: none; }
  .hero-copy h1 { font-size: clamp(42px, 13vw, 61px); }
  .hero-copy > p, .section-lead { font-size: 16px; }
  .input-shell { grid-template-columns: 1fr; }
  .input-shell .btn { width: 100%; }
  .report-wrap { padding: 20px 0 25px; }
  .window-body { padding: 17px; }
  .report-main { grid-template-columns: 1fr; text-align: center; }
  .score-ring { margin-inline: auto; }
  .mini-bar-row { text-align: left; }
  .report-status { position: static; margin: 12px 12px 0; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(3)::before { display: none; }
  .feature-grid, .pricing-grid, .report-nav { grid-template-columns: 1fr; }
  .feature-card { min-height: 285px; }
  .canvas-summary, .canvas-grid { grid-template-columns: 1fr; }
  .canvas-head { align-items: flex-start; flex-direction: column; }
  .process-grid { grid-template-columns: 1fr; }
  .price-card { min-height: auto; }
  .price-card .btn { margin-top: 12px; }
  .cta-panel { padding: 38px 25px; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
