/* A2P In A Snap
   Theme: locked dark. One accent (emerald).
   Radius system: buttons pill, cards 16px, inputs 10px. */

:root {
  --bg: #0a0e13;
  --bg-raised: #0f151c;
  --surface: #121a23;
  --surface-2: #17212c;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e9eef3;
  --text-muted: #92a2b1;
  --accent: #35d49b;
  --accent-strong: #2bbd88;
  --accent-ink: #06281c;
  --accent-soft: rgba(53, 212, 155, 0.11);
  --radius-card: 16px;
  --radius-input: 10px;
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: var(--font-display); letter-spacing: -0.02em; }

img { max-width: 100%; display: block; }

a { color: inherit; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  padding: 14px 28px;
  font-size: 16px;
}
.btn-primary:hover { background: var(--accent-strong); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
  padding: 14px 28px;
  font-size: 16px;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-sm { padding: 10px 20px; font-size: 14.5px; }
.btn-lg { padding: 17px 36px; font-size: 17px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 14, 19, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-name em { font-style: normal; color: var(--accent); }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }

/* ---------- Hero ---------- */
.hero {
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(900px 480px at 78% 10%, rgba(53, 212, 155, 0.07), transparent 60%),
    var(--bg);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 88px 24px 96px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.7rem);
  line-height: 1.05;
  font-weight: 700;
}
.hero-sub {
  margin-top: 22px;
  font-size: 18.5px;
  color: var(--text-muted);
  max-width: 34rem;
}
.hero-ctas { margin-top: 34px; display: flex; gap: 14px; flex-wrap: wrap; }

/* Kit preview card (real component preview) */
.hero-kit {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px;
  box-shadow: 0 24px 60px rgba(3, 8, 6, 0.45);
}
.kit-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.kit-title {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
}
.kit-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 5px 12px;
  border-radius: 999px;
}
.kit-biz {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  margin: 16px 0 6px;
}
.kit-list { list-style: none; margin-top: 12px; }
.kit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 15.5px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.kit-list li:last-child { border-bottom: none; }
.kit-list i { color: var(--accent); font-size: 19px; flex-shrink: 0; }
.kit-foot {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: var(--text-muted);
}

/* ---------- Platforms ---------- */
.platforms {
  border-bottom: 1px solid var(--border);
  padding: 34px 24px;
  text-align: center;
}
.platforms-label {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.platforms-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.platform {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #b9c5d0;
}
.mono-mark {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: #b9c5d0;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.muted-note { color: var(--text-muted); font-weight: 400; font-size: 14.5px; }

/* ---------- Sections ---------- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}
.section-narrow { max-width: 860px; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.eyebrow {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 14px;
}
.section h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  font-weight: 700;
}
.section-sub { margin-top: 16px; color: var(--text-muted); font-size: 17px; }

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bento-cell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.25s var(--ease);
}
.bento-cell:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.bento-wide { grid-column: span 2; }
.bento-tint {
  background: linear-gradient(135deg, rgba(53, 212, 155, 0.10), var(--surface) 55%);
  border-color: rgba(53, 212, 155, 0.22);
}
.bento-tint-2 {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
}
.bento-icon { font-size: 26px; color: var(--accent); }
.bento-cell h3 {
  margin-top: 16px;
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.3;
}
.bento-cell p { margin-top: 10px; color: var(--text-muted); font-size: 15.5px; }

/* ---------- Coverage paths ---------- */
.paths {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--surface-2) transparent;
}
.path-card {
  scroll-snap-align: start;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 26px 24px;
}
.path-icon {
  font-size: 24px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 10px;
  border-radius: 12px;
}
.path-card h3 { margin-top: 18px; font-size: 17.5px; font-weight: 600; }
.path-card p { margin-top: 8px; color: var(--text-muted); font-size: 14.5px; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 24px;
  position: relative;
  padding-bottom: 44px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 46px;
  bottom: 2px;
  width: 1px;
  background: var(--border-strong);
}
.step:last-child::before { display: none; }
.step-num {
  flex-shrink: 0;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step h3 { font-size: 19px; font-weight: 600; padding-top: 8px; }
.step p { margin-top: 8px; color: var(--text-muted); font-size: 16px; max-width: 34rem; }

/* ---------- Band ---------- */
.band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-raised);
}
.band-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 88px 24px;
  text-align: center;
}
.band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); line-height: 1.2; }
.band p { margin: 20px auto 0; color: var(--text-muted); font-size: 17px; max-width: 44rem; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--text-muted); transition: transform 0.25s var(--ease); flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--accent); }
.faq-item p {
  padding: 0 24px 22px;
  color: var(--text-muted);
  font-size: 15.5px;
  max-width: 60rem;
}

/* ---------- Final CTA ---------- */
.final-cta { border-top: 1px solid var(--border); }
.final-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 110px 24px;
  text-align: center;
}
.final-cta h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
.final-cta p { margin: 18px 0 34px; color: var(--text-muted); font-size: 17.5px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); background: var(--bg-raised); }
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 44px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-note { color: var(--text-muted); font-size: 13.5px; max-width: 34rem; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: var(--text-muted); font-size: 14px; text-decoration: none; }
.footer-links a:hover { color: var(--text); }

/* ---------- Reveal on scroll (hidden state only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}

/* =========================================================
   SETUP WIZARD (setup.html)
   ========================================================= */
.wizard-page {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.wizard-main {
  flex: 1;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 24px 96px;
}
.wizard-title { font-size: clamp(1.6rem, 3vw, 2.1rem); }
.wizard-intro { margin-top: 12px; color: var(--text-muted); font-size: 16.5px; }

.progress {
  display: flex;
  gap: 8px;
  margin: 34px 0 38px;
}
.progress-seg {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--surface-2);
  transition: background 0.3s ease;
}
.progress-seg.done { background: var(--accent); }

.wizard-step-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.wizard-step h2 { font-size: 22px; margin-bottom: 26px; }

.field { margin-bottom: 22px; display: flex; flex-direction: column; gap: 8px; }
.field label { font-weight: 600; font-size: 15.5px; }
.field .req { color: var(--accent); }
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="url"],
.field select,
.field textarea {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-input);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(53, 212, 155, 0.18);
}
.field input::placeholder, .field textarea::placeholder { color: #6c7d8c; }
.hint { font-size: 13.5px; color: var(--text-muted); }
.error-msg { font-size: 13.5px; color: #ff8a80; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e0655c; }
.field.invalid .error-msg { display: block; }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Path selector radio-cards */
.choice-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.choice {
  position: relative;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 16px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.choice:hover { border-color: var(--accent); }
.choice input { position: absolute; opacity: 0; }
.choice i { font-size: 21px; color: var(--accent); margin-top: 2px; }
.choice-title { font-weight: 600; font-size: 15.5px; }
.choice-desc { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.choice:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.choice:has(input:focus-visible) { box-shadow: 0 0 0 3px rgba(53, 212, 155, 0.25); }

.check-field {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 18px;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--text-muted);
}
.check-field input {
  width: 19px; height: 19px;
  margin-top: 2px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 36px;
}
.wizard-nav .spacer { flex: 1; }

/* Review panel */
.review-list {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 8px 22px;
  margin-bottom: 26px;
}
.review-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.review-row:last-child { border-bottom: none; }
.review-row dt { color: var(--text-muted); flex-shrink: 0; }
.review-row dd { text-align: right; font-weight: 500; overflow-wrap: anywhere; }

/* Results */
.result-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  margin-bottom: 18px;
  overflow: hidden;
}
.result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.result-head h3 { font-size: 16px; font-weight: 600; }
.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.copy-btn.copied { color: var(--accent); border-color: var(--accent); }
.result-body {
  padding: 18px 20px;
  font-size: 15px;
  color: #c6d2dc;
  white-space: pre-wrap;
  line-height: 1.65;
}
.result-note {
  background: var(--accent-soft);
  border: 1px solid rgba(53, 212, 155, 0.25);
  border-radius: var(--radius-card);
  padding: 18px 20px;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 28px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.result-note i { color: var(--accent); font-size: 20px; flex-shrink: 0; margin-top: 1px; }

/* Generated site preview */
.site-section {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: 18px;
}
.site-section-head { flex-wrap: wrap; }
.site-tabs { display: flex; gap: 6px; }
.site-tab {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-tab:hover { color: var(--text); }
.site-tab.active { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }
#site-frame {
  width: 100%;
  height: 460px;
  border: none;
  display: block;
  background: #fff;
}
.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 20px;
  border-top: 1px solid var(--border);
}
.site-actions .hint { flex: 1; min-width: 200px; }

/* Team console */
.team-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(53, 212, 155, 0.25);
  padding: 8px 16px;
  border-radius: 999px;
}
.gate {
  min-height: calc(100dvh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.gate-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  text-align: center;
}
.gate-icon {
  font-size: 34px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 14px;
  border-radius: 50%;
}
.gate-card h1 { font-size: 22px; margin-top: 18px; }
.gate-card p { color: var(--text-muted); font-size: 15px; margin-top: 8px; }
.gate-card form { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.gate-card input {
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-input);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 13px 15px;
  text-align: center;
}
.gate-card input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(53, 212, 155, 0.18);
}
.gate-card .error-msg { display: none; }
.site-actions code {
  background: var(--surface-2);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: 12.5px;
}

/* =========================================================
   REPORT (report.html) + report banner on results pages
   ========================================================= */
.report-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(53, 212, 155, 0.14), var(--surface) 60%);
  border: 1px solid rgba(53, 212, 155, 0.35);
  border-radius: var(--radius-card);
  padding: 20px 22px;
  margin-bottom: 18px;
}
.report-banner h3 { font-size: 17px; font-weight: 600; }
.report-banner p { color: var(--text-muted); font-size: 14px; margin-top: 4px; max-width: 34rem; }
.report-banner-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.report-main {
  flex: 1;
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  padding: 44px 24px 96px;
}
.report-empty { text-align: center; padding: 80px 0; color: var(--text-muted); }
.report-empty i { font-size: 44px; color: var(--accent); }
.report-empty h1 { font-size: 24px; color: var(--text); margin: 16px 0 10px; }
.report-empty a { color: var(--accent); }

.report-head h1 { font-size: clamp(1.7rem, 3.6vw, 2.3rem); }
.meta-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 16px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
}
.chip i { color: var(--accent); }

.report-h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 44px 0 16px;
}
.panel-title { margin-top: 8px; }

.site-card {
  background: var(--surface);
  border: 1px solid rgba(53, 212, 155, 0.3);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-top: 30px;
}
.site-card-label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 12px;
}
.site-url-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.site-url {
  font-family: var(--font-display);
  font-size: clamp(15px, 2.4vw, 19px);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  overflow-wrap: anywhere;
}
.site-url:hover { color: var(--accent); }
.site-card-note { color: var(--text-muted); font-size: 14.5px; margin-top: 12px; }
.site-ticks { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 14px; }
.site-ticks span { display: inline-flex; gap: 7px; align-items: center; font-size: 13.5px; color: var(--text-muted); }
.site-ticks i { color: var(--accent); }

.acc-group { display: flex; flex-direction: column; gap: 10px; }
.acc {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
}
.acc-head {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15.5px;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.acc-head i { color: var(--text-muted); transition: transform 0.25s var(--ease); flex-shrink: 0; }
.acc.open .acc-head { color: var(--accent); }
.acc.open .acc-head i { transform: rotate(180deg); }
.acc-body { display: none; padding: 0 20px 18px; }
.acc.open .acc-body { display: block; }
.acc-body p { color: var(--text-muted); font-size: 14.5px; margin-bottom: 10px; }

.path-tabs { display: flex; gap: 10px; flex-wrap: wrap; }
.path-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.path-tab i { font-size: 17px; }
.path-tab:hover { color: var(--text); border-color: var(--accent); }
.path-tab.active { color: var(--accent); border-color: var(--accent); background: var(--accent-soft); }

.path-panel { margin-top: 10px; }
.panel-intro { color: var(--text-muted); font-size: 15.5px; margin-bottom: 18px; }
.panel-note { color: var(--text-muted); font-size: 14.5px; margin: 10px 0 16px; }

.warn-card, .crit-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-radius: var(--radius-card);
  padding: 18px 20px;
  margin: 14px 0;
}
.warn-card { background: rgba(246, 173, 85, 0.08); border: 1px solid rgba(246, 173, 85, 0.35); }
.warn-card > i { color: #f6ad55; font-size: 22px; flex-shrink: 0; }
.crit-card { background: rgba(233, 87, 87, 0.08); border: 1px solid rgba(233, 87, 87, 0.4); }
.crit-card > i { color: #ef6b6b; font-size: 22px; flex-shrink: 0; }
.warn-card strong, .crit-card strong { display: block; font-size: 15.5px; margin-bottom: 5px; }
.warn-card p, .crit-card p { color: var(--text-muted); font-size: 14.5px; }

.setting-list {
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 6px 20px;
  margin: 14px 0;
}
.setting-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.setting-list li:last-child { border-bottom: none; }
.setting-list span { color: var(--text-muted); }
.setting-list strong { text-align: right; }

.check-list { list-style: none; margin: 14px 0; display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  color: var(--text-muted);
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 4px;
  color: var(--accent);
  font-weight: 700;
}
.check-list strong { color: var(--text); }

.step-title { font-size: 16.5px; font-weight: 600; margin: 28px 0 10px; display: flex; align-items: center; gap: 10px; }
.step-chip {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 4px 12px;
  flex-shrink: 0;
}
.block-note { color: var(--text-muted); font-size: 13.5px; padding: 12px 20px 0; }

.tips-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  margin-top: 44px;
}
.tips-card h2 { font-size: 19px; margin-bottom: 14px; }
.tips-card ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.tips-card li { position: relative; padding-left: 26px; color: var(--text-muted); font-size: 15px; }
.tips-card li::before { content: "\2713"; position: absolute; left: 2px; color: var(--accent); font-weight: 700; }

.report-nav-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.print-only { display: none; }

/* ---------- White-label print (client PDF) ---------- */
@media print {
  :root {
    --bg: #ffffff;
    --bg-raised: #ffffff;
    --surface: #ffffff;
    --surface-2: #f2f4f6;
    --border: #d7dde3;
    --border-strong: #c2cad2;
    --text: #17222c;
    --text-muted: #45535f;
    --accent: #0c7a55;
    --accent-soft: #eaf6f1;
  }
  body { background: #fff; font-size: 12.5px; }
  .screen-only, .nav, .footer, .path-tabs, .path-select { display: none !important; }
  .print-only { display: block; }
  .print-head { border-bottom: 2px solid #17222c; padding-bottom: 14px; margin-bottom: 24px; }
  .print-head h1 { font-size: 22px; }
  .print-head p { color: #45535f; margin-top: 4px; }
  .report-main { max-width: 100%; padding: 0; }
  .path-panel.hidden { display: none !important; }
  .result-block, .site-card, .setting-list, .warn-card, .crit-card, .tips-card { break-inside: avoid; }
  .result-body { color: #17222c; }
  .copy-btn { display: none !important; }
  .warn-card { background: #fdf6ec; }
  .crit-card { background: #fdefef; }
  .warn-card > i { color: #b47416; }
  .crit-card > i { color: #b42318; }
  a { color: #0c7a55; text-decoration: none; }
}

.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 56px 24px 64px; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-wide { grid-column: span 2; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .bento { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }
  .field-row { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr; }
  .hero h1 br { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
