/* AccessibleWeb marketing site — editorial light theme.
   Recreated from design_handoff_site_redesign mockups (1440px frames);
   values in that file's <style> are the authoritative spec. */

:root {
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --bg: #fbfbfa;
  --border: #e7e5e0;
  --accent: #111111;
  --accent-hover: #333333;
  --panel: #ffffff;
  --warn-bg: #fefce8;
  --warn-border: #fef08a;
  --warn-text: #854d0e;
  --warn-strong: #713f12;
  --code-bg: #0f172a;
  --code-border: #263146;
  --code-text: #dbe4f0;
  --code-tag: #7dd3fc;
  --code-attr: #94a3b8;
  --code-val: #fbd38d;
  --widget-blue: #1976d2;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

html, body { overflow-x: clip; }

body {
  position: relative;
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

img { max-width: 100%; }

a { color: inherit; }

code { font-family: var(--mono); }

:focus-visible {
  outline: 3px solid var(--widget-blue);
  outline-offset: 2px;
}

/* ---- atmosphere ---- */
.page-glows {
  position: absolute;
  inset: 0 0 auto 0;
  height: 700px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.glow-1 { width: 900px; height: 620px; top: -260px; left: calc(50% - 370px); background: radial-gradient(closest-side, rgba(186, 207, 247, .55), rgba(186, 207, 247, 0)); }
.glow-2 { width: 640px; height: 520px; top: -140px; left: -180px; background: radial-gradient(closest-side, rgba(240, 222, 200, .5), rgba(240, 222, 200, 0)); }
.glow-3 { width: 640px; height: 520px; top: -120px; right: -200px; background: radial-gradient(closest-side, rgba(214, 201, 240, .42), rgba(214, 201, 240, 0)); }

/* ---- nav ---- */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 28px 16px 12px;
}

.navbar {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 9999px;
  padding: 8px 8px 8px 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7), 0 8px 28px rgba(15, 23, 42, .07);
}

@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .navbar {
    background: rgba(255, 255, 255, .45);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    backdrop-filter: blur(18px) saturate(1.4);
  }
}

.logo {
  font: 400 19px/1 var(--serif);
  letter-spacing: -0.5px;
  color: var(--text);
  text-decoration: none;
  margin-right: 22px;
  white-space: nowrap;
}

.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  font: 500 14px/1 var(--sans);
  color: var(--text-2);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 9999px;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.nav-link:hover { color: var(--text); background: rgba(15, 23, 42, .05); }
.nav-link.is-active { color: var(--text); background: rgba(15, 23, 42, .06); }

.btn-primary {
  font: 500 14px/1 var(--sans);
  color: #ffffff;
  background: var(--accent);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  padding: 11px 20px;
  border-radius: 9999px;
  margin-left: 14px;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary:hover { background: var(--accent-hover); }

/* mobile nav toggle (hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 9px;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
}

.nav-toggle:hover { background: rgba(15, 23, 42, .05); }

/* ---- shared hero type ---- */
.hero,
.page-hero {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 5vw, 80px) 0;
}

.hero-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--widget-blue);
  margin-bottom: 40px;
  box-shadow: inset 0 0 0 4px var(--widget-blue), inset 0 0 0 6px #ffffff, 0 14px 34px rgba(25, 118, 210, .28);
}

.hero-mark svg { width: 48px; height: 48px; fill: #ffffff; }

.hero-title {
  font: 400 clamp(40px, 6vw, 76px)/1.06 var(--serif);
  letter-spacing: -2px;
  margin: 0 auto;
  max-width: 1000px;
  text-wrap: balance;
}

.hero-title em { font-style: italic; letter-spacing: -1px; }

.hero-subtitle {
  font: 400 clamp(17px, 2.2vw, 21px)/1.6 var(--sans);
  color: var(--text-2);
  max-width: 640px;
  margin: 28px auto 0;
  text-wrap: pretty;
}

.page-title {
  font: 400 clamp(34px, 5vw, 56px)/1.1 var(--serif);
  letter-spacing: -1.5px;
  max-width: 900px;
  margin: 0 auto;
  text-wrap: balance;
}

.page-title em { font-style: italic; }

.page-sub {
  font: 400 clamp(16px, 2vw, 19px)/1.6 var(--sans);
  color: var(--text-2);
  max-width: 620px;
  margin: 22px auto 0;
  text-wrap: pretty;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
}

.cta-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 500 16px/1 var(--sans);
  color: #ffffff;
  background: var(--accent);
  border: 0;
  cursor: pointer;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 9999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 10px 26px rgba(15, 23, 42, .22);
  transition: background-color 0.15s ease;
}

.cta-main:hover { background: var(--accent-hover); }

.cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font: 500 16px/1 var(--sans);
  color: var(--text);
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(15, 23, 42, .12);
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 9999px;
  transition: border-color 0.15s ease;
}

.cta-ghost:hover { border-color: var(--accent); }
.cta-ghost svg { width: 17px; height: 17px; fill: currentColor; }

.hero-meta {
  font: 400 13px/1 var(--mono);
  color: var(--muted);
  margin-top: 26px;
  letter-spacing: .01em;
}

.hero-meta span { margin: 0 10px; color: #cbd5e1; }

.audit-cta { margin-top: 32px; }

.audit-cta-note {
  display: block;
  font: 400 14px/1.5 var(--sans);
  color: var(--muted);
  max-width: 460px;
  margin: 18px auto 0;
}

/* ---- code snippet pill (homepage hero) ---- */
.snippet-wrap {
  display: flex;
  justify-content: center;
  margin-top: 46px;
  padding: 0 16px;
  position: relative;
  z-index: 2;
}

.code-snippet {
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 100%;
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: 9999px;
  padding: 15px 18px 15px 26px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .22);
}

.code-snippet code {
  font: 400 13.5px/1.4 var(--mono);
  color: var(--code-text);
  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.code-snippet code::-webkit-scrollbar { display: none; }

.code-snippet code .tag,
.code-block .tag,
pre.export-code .tag { color: var(--code-tag); }

.code-snippet code .attr,
.code-block .attr,
pre.export-code .attr { color: var(--code-attr); }

.code-snippet code .val,
.code-block .val,
pre.export-code .val { color: var(--code-val); }

/* copy buttons — dark context (snippet pill) */
.copy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 9999px;
  background: rgba(255, 255, 255, .1);
  color: #cbd5e1;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.copy-btn:hover { background: rgba(255, 255, 255, .18); color: #ffffff; }

.copy-btn svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.code-snippet .copy-btn:focus-visible,
.implementation-code .copy-btn:focus-visible,
.code-snippet code:focus-visible,
.implementation-code code:focus-visible {
  outline-color: #ffffff;
}

/* copy buttons — light context (export panel headers) */
.export-header .copy-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(15, 23, 42, .14);
  background: #ffffff;
  color: var(--text-2);
}

.export-header .copy-btn:hover {
  background: #ffffff;
  border-color: var(--accent);
  color: var(--text);
}

/* ---- hero image stage (homepage) ---- */
.stage {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 7vw, 84px) clamp(20px, 10vw, 140px) 0;
}

.stage-card {
  border-radius: 20px;
  border: 1px solid #eaeaea;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(15, 23, 42, .14), 0 4px 14px rgba(15, 23, 42, .05);
  overflow: hidden;
}

.stage-card img { width: 100%; display: block; }

/* ---- content columns ---- */
.container {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.inner {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 72px) clamp(20px, 4vw, 60px) 90px;
}

/* ---- warning callout ---- */
.warning {
  margin-top: 96px;
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 16px;
  padding: 28px 32px;
  font: 400 15.5px/1.65 var(--sans);
  color: var(--warn-text);
  text-wrap: pretty;
}

.warning strong { color: var(--warn-strong); }
.warning a { color: var(--warn-strong); font-weight: 600; }

/* ---- sections (homepage) ---- */
.section { margin-top: 110px; }

.section-kicker {
  font: 500 12px/1 var(--sans);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.section-title {
  font: 400 clamp(30px, 4vw, 42px)/1.15 var(--serif);
  letter-spacing: -1px;
  text-align: center;
  margin-top: 16px;
}

.section-sub {
  font: 400 17px/1.6 var(--sans);
  color: var(--text-2);
  text-align: center;
  max-width: 560px;
  margin: 16px auto 0;
  text-wrap: pretty;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 52px;
}

.feature {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px 30px 32px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
}

.feature h3 { font: 400 21px/1.3 var(--serif); letter-spacing: -0.5px; }

.feature ul { list-style: none; margin-top: 18px; display: grid; gap: 11px; }

.feature li {
  font: 400 15px/1.5 var(--sans);
  color: var(--text-2);
  padding-left: 26px;
  position: relative;
}

.feature li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
  font-weight: 600;
}

/* ---- stance ---- */
.stance { margin-top: 130px; text-align: center; }

.stance blockquote {
  font: 400 clamp(24px, 3vw, 34px)/1.4 var(--serif);
  font-style: italic;
  letter-spacing: -0.5px;
  color: var(--text);
  max-width: 760px;
  margin: 24px auto 0;
  text-wrap: balance;
}

.stance .attribution { font: 400 14px/1.5 var(--sans); color: var(--muted); margin-top: 22px; }
.stance .attribution a { color: var(--text-2); }

/* ---- bottom cta ---- */
.bottom-cta {
  position: relative;
  z-index: 2;
  margin: 130px clamp(16px, 3vw, 40px) 0;
  background: var(--code-bg);
  border-radius: 24px;
  text-align: center;
  padding: clamp(56px, 8vw, 90px) clamp(24px, 5vw, 60px) clamp(60px, 8vw, 96px);
  overflow: hidden;
}

.bottom-cta .glow-b {
  position: absolute;
  width: 780px;
  height: 420px;
  left: 50%;
  top: -220px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(125, 150, 220, .34), rgba(125, 150, 220, 0));
  filter: blur(60px);
  pointer-events: none;
}

.bottom-cta h2 {
  position: relative;
  font: 400 clamp(32px, 4.5vw, 46px)/1.15 var(--serif);
  letter-spacing: -1px;
  color: #f8fafc;
  text-wrap: balance;
}

.bottom-cta p {
  position: relative;
  font: 400 17px/1.6 var(--sans);
  color: #94a3b8;
  max-width: 520px;
  margin: 18px auto 0;
}

.cta-light {
  position: relative;
  display: inline-flex;
  font: 500 16px/1 var(--sans);
  color: var(--code-bg);
  background: #ffffff;
  text-decoration: none;
  padding: 16px 30px;
  border-radius: 9999px;
  margin-top: 36px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
  transition: background-color 0.15s ease;
}

.cta-light:hover { background: #e9edf3; }

/* ---- footer ---- */
.footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  max-width: 1360px;
  margin: 0 auto;
  padding: 44px clamp(20px, 4vw, 40px) 40px;
  font: 400 14px/1.5 var(--sans);
  color: var(--muted);
}

.footer .wordmark { font: 400 16px/1 var(--serif); letter-spacing: -0.5px; color: var(--text); }

.footer-links { display: flex; align-items: center; gap: 26px; }

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-links a:hover { color: var(--text); }
.footer-links svg { width: 16px; height: 16px; fill: currentColor; }

/* ---- panels (inner pages) ---- */
.panel {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px) clamp(22px, 3vw, 38px) clamp(28px, 3vw, 40px);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .05);
}

.panel > h2,
.panel .preview-panel-header h2,
.panel .export-header h2 {
  font: 400 26px/1.2 var(--serif);
  letter-spacing: -0.5px;
}

.panel-intro,
.preview-note {
  font: 400 15px/1.55 var(--sans);
  color: var(--muted);
  margin-top: 10px;
}

/* ---- customize builder ---- */
.builder-layout {
  display: grid;
  grid-template-columns: 480px 1fr;
  gap: 24px;
  align-items: start;
}

.control-group { margin-top: 30px; }

.control-group h3 {
  font: 500 12px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.field { margin-top: 20px; }

.field > label,
.field label {
  display: block;
  font: 500 14px/1 var(--sans);
  color: var(--text-2);
  margin-bottom: 9px;
}

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

.field-row .field { margin-top: 20px; }

select {
  width: 100%;
  font: 400 15px/1.3 var(--sans);
  color: var(--text);
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 12px 38px 12px 14px;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

select:disabled { color: var(--muted); cursor: not-allowed; }

input[type="color"] {
  width: 100%;
  height: 45px;
  padding: 8px 12px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}

input[type="color"]::-webkit-color-swatch-wrapper { padding: 0; }
input[type="color"]::-webkit-color-swatch { border: 0; border-radius: 7px; }
input[type="color"]::-moz-color-swatch { border: 0; border-radius: 7px; }

/* icon picker */
.icon-picker { display: flex; flex-wrap: wrap; gap: 12px; }

.icon-picker-option { position: relative; display: inline-flex; }

.icon-picker-option input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.icon-picker-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1.5px solid #cbd5e1;
  border-radius: 12px;
  background: #ffffff;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.icon-picker-preview svg { width: 28px; height: 28px; fill: #475569; }

.icon-picker-option input:checked + .icon-picker-preview {
  border: 2px solid var(--accent);
  background: rgba(15, 23, 42, .04);
}

.icon-picker-option input:checked + .icon-picker-preview svg { fill: var(--text); }

.icon-picker-option input:focus-visible + .icon-picker-preview {
  outline: 3px solid var(--widget-blue);
  outline-offset: 2px;
}

/* range rows */
.range-row { display: flex; align-items: center; gap: 14px; }

input[type="range"] {
  flex: 1;
  height: 20px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  --fill: 50%;
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 9999px;
  background: linear-gradient(to right, var(--accent) 0 var(--fill), #e2e8f0 var(--fill) 100%);
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 19px;
  height: 19px;
  margin-top: -7px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .18);
}

input[type="range"]::-moz-range-track {
  height: 5px;
  border-radius: 9999px;
  background: #e2e8f0;
}

input[type="range"]::-moz-range-progress {
  height: 5px;
  border-radius: 9999px;
  background: var(--accent);
}

input[type="range"]::-moz-range-thumb {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .18);
}

.range-value {
  font: 400 13.5px/1 var(--mono);
  color: var(--muted);
  min-width: 44px;
  text-align: right;
}

/* secondary / ghost buttons */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: 500 14.5px/1 var(--sans);
  color: var(--text);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, .16);
  border-radius: 9999px;
  padding: 12px 22px;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease;
}

.btn-secondary:hover { border-color: var(--accent); }
.btn-secondary:disabled { opacity: .55; cursor: not-allowed; }

.voice-status,
.status {
  font: 400 13.5px/1.5 var(--sans);
  color: var(--muted);
  margin-top: 10px;
  min-height: 1.5em;
}

.form-actions { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }

/* preview iframe */
.preview-frame {
  display: block;
  width: 100%;
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fdfdfc;
  height: 560px;
}

/* export panels */
.export-section { margin-top: 24px; }

.export-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.export-note {
  font: 400 15px/1.55 var(--sans);
  color: var(--muted);
  margin-top: 10px;
}

.export-note code,
.get-step-card code,
.faq-answer code {
  font: 400 .9em var(--mono);
  background: rgba(15, 23, 42, .06);
  border-radius: 5px;
  padding: 2px 6px;
}

pre.export-code {
  margin-top: 18px;
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: 14px;
  padding: 22px 26px;
  overflow-x: auto;
}

pre.export-code code {
  font: 400 13.5px/1.75 var(--mono);
  color: var(--code-text);
  white-space: pre;
  background: none;
  padding: 0;
}

.self-host-download-actions { margin-top: 18px; }

/* dark inline code rows (audit steps, self host, faq install) */
.implementation-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: 12px;
  padding: 14px 18px;
}

.implementation-code code {
  font: 400 13px/1.5 var(--mono);
  color: var(--code-text);
  overflow-wrap: anywhere;
  background: none;
  padding: 0;
}

.implementation-code .copy-btn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.implementation-code .copy-btn svg { width: 14px; height: 14px; }

.faq-code {
  margin: 14px 0;
  background: var(--code-bg);
  border: 1px solid var(--code-border);
  border-radius: 12px;
  padding: 14px 18px;
  overflow-x: auto;
}

.faq-code code {
  font: 400 13px/1.5 var(--mono);
  color: var(--code-text);
  background: none;
  padding: 0;
  overflow-wrap: anywhere;
}

/* ---- faq ---- */
.faq-search {
  display: flex;
  justify-content: center;
  margin-top: 46px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.faq-search-wrap {
  position: relative;
  width: 640px;
  max-width: 100%;
}

.faq-search-wrap svg {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 17px;
  height: 17px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.faq-search-input {
  width: 100%;
  background: rgba(255, 255, 255, .85);
  border: 1px solid rgba(15, 23, 42, .12);
  border-radius: 9999px;
  padding: 16px 24px 16px 53px;
  font: 400 15.5px/1.3 var(--sans);
  color: var(--text);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}

.faq-search-input::placeholder { color: var(--muted); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
  transition: border-color 0.15s ease;
}

.faq-item[open] { border-color: rgba(15, 23, 42, .18); }

.faq-question {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  font: 400 19px/1.35 var(--serif);
  letter-spacing: -0.3px;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ""; }

.faq-question::after {
  content: "+";
  flex: none;
  font: 400 22px/1 var(--sans);
  color: var(--muted);
}

.faq-item[open] .faq-question::after { content: "−"; }

.faq-answer {
  font: 400 15.5px/1.65 var(--sans);
  color: var(--text-2);
  margin-top: 14px;
  max-width: 640px;
  text-wrap: pretty;
}

.faq-answer p + p { margin-top: 10px; }
.faq-answer a { color: var(--text); }

.faq-empty-state {
  max-width: 800px;
  margin: 20px auto 0;
  text-align: center;
  font: 400 15.5px/1.6 var(--sans);
  color: var(--muted);
}

/* ---- steps timeline (audit, get-widget) ---- */
.get-widget-steps-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.get-widget-steps-timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 10px;
  bottom: 40px;
  width: 1px;
  background: var(--border);
}

.get-step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 26px;
  padding-bottom: 28px;
}

.get-step:last-child { padding-bottom: 0; }

.get-step-dot {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #ffffff;
  font: 500 16px/1 var(--sans);
  box-shadow: 0 0 0 6px var(--bg);
}

.get-step-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 26px 30px 28px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, .04);
}

.get-step-number {
  font: 500 12px/1 var(--sans);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.get-step-card h2 {
  font: 400 23px/1.25 var(--serif);
  letter-spacing: -0.5px;
  margin-top: 10px;
}

.get-step-card p {
  font: 400 15.5px/1.6 var(--sans);
  color: var(--text-2);
  margin-top: 10px;
}

.get-step-card p.get-step-number { margin-top: 0; color: var(--muted); }

.implementation-note {
  font: 400 14px/1.5 var(--sans);
  color: var(--warn-text);
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: 10px;
  padding: 12px 16px;
  margin-top: 16px;
}

/* ---- responsive ---- */
@media (max-width: 1000px) {
  .builder-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .feature-list { grid-template-columns: 1fr; }

  .footer { justify-content: center; text-align: center; }
}

@media (max-width: 720px) {
  .nav-wrap { padding: 16px 16px 0; }

  .navbar {
    width: 100%;
    justify-content: space-between;
    padding: 8px 8px 8px 20px;
  }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 18px 40px rgba(15, 23, 42, .14);
  }

  .nav-links.is-open { display: flex; }

  .nav-link { padding: 13px 16px; }

  .nav-links .btn-primary {
    margin-left: 0;
    padding: 13px 16px;
    text-align: center;
  }

  .glow { display: none; }

  .hero-mark { width: 68px; height: 68px; margin-bottom: 28px; }
  .hero-mark svg { width: 38px; height: 38px; }

  .warning { margin-top: 56px; padding: 22px 22px; }

  .section { margin-top: 72px; }
  .stance { margin-top: 84px; }
  .bottom-cta { margin-top: 84px; }

  .field-row { grid-template-columns: 1fr; }

  .implementation-code { flex-wrap: wrap; }

  .get-step { grid-template-columns: 36px 1fr; gap: 16px; }
  .get-step-dot { width: 36px; height: 36px; font-size: 14px; }
  .get-widget-steps-timeline::before { left: 17px; }
  .get-step-card { padding: 20px 20px 22px; }

  .faq-item { padding: 18px 20px; }
}

/* ---- reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }
}
