/* ============================================================
   Savrli App — louder, warmer sibling of savrli.com.
   General Sans only. Color from large warm bands. No serif.
   ============================================================ */

:root {
  --paper:    #FAFAF7;
  --blush:    #FAF0EC;
  --cream:    #F7F1E6;
  --sand:     #F3EBE0;
  --ink:      #1D1D1F;
  --ink-mute: #6E6E73;
  --hairline: rgba(0, 0, 0, 0.08);
  --accent:   #E84B2B;

  --font-body:    "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --font-display: "General Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --max:    1280px;
  --pad-x:  clamp(20px, 4vw, 48px);
  --pad-y:  clamp(80px, 12vw, 160px);
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-style: normal;
}

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 160ms ease, color 160ms ease;
}
a:hover { text-decoration: underline; }

ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4, h5, h6, p { font-style: normal; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  transition: opacity 0.2s ease;
}
.wordmark img {
  display: block;
  height: 22px;
  width: auto;
}
.wordmark:hover { opacity: 0.75; text-decoration: none; }
@media (max-width: 640px) {
  .wordmark img { height: 18px; }
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
}
.site-nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}
.site-nav a:hover { color: var(--ink-mute); text-decoration: none; }
.site-nav a.nav-current { color: var(--accent); }

/* CTA pill in nav */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--ink);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background 160ms ease, transform 160ms ease;
}
.nav-cta:hover { background: #000; text-decoration: none; }
.nav-cta:active { transform: scale(0.97); }

.nav-mobile-cta { display: none; }
@media (max-width: 760px) {
  .site-nav .nav-link-text { display: none; }
  .site-nav .nav-cta { display: inline-flex; }
}
@media (max-width: 480px) {
  .header-inner { padding: 12px var(--pad-x); }
  .nav-cta { padding: 7px 14px; font-size: 12px; }
}

/* ============================================================
   SECTIONS — big, generous, color-banded
   ============================================================ */
section {
  padding: var(--pad-y) var(--pad-x);
}
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.bg-paper { background: var(--paper); }
.bg-white { background: #FFFFFF; }
.bg-blush { background: var(--blush); }
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--sand); }
.bg-ink   { background: var(--ink); color: #F5F5F7; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 18px;
}

.display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.display-sm {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.028em;
  color: var(--ink);
  margin: 0;
}
.display-xs {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.subhead {
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 24px 0 0;
  max-width: 580px;
}
.subhead--center { margin-left: auto; margin-right: auto; }

.lede {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 18px;
  max-width: 640px;
}
.lede--mute { color: var(--ink-mute); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 0;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--ink);
  color: #fff;
}
.btn--primary:hover { background: #000; }
.btn--accent {
  background: var(--accent);
  color: #fff;
}
.btn--accent:hover { background: #d63d1f; box-shadow: 0 8px 24px -8px rgba(232, 75, 43, 0.45); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(29, 29, 31, 0.18);
}
.btn--ghost:hover { border-color: var(--ink); }
.btn--on-dark.btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.btn--on-dark.btn--ghost:hover { border-color: rgba(255,255,255,0.5); }

.text-link {
  color: var(--accent);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.005em;
}
.text-link:hover { text-decoration: underline; }

/* ============================================================
   SIGNUP FORM — pill input with inline button
   ============================================================ */
.signup-form {
  margin: 28px 0 0;
  display: flex;
  align-items: stretch;
  gap: 8px;
  max-width: 520px;
  width: 100%;
  background: #fff;
  border: 1px solid rgba(29, 29, 31, 0.12);
  border-radius: 999px;
  padding: 7px 7px 7px 22px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.signup-form--center { margin-left: auto; margin-right: auto; }
.signup-form:focus-within {
  border-color: rgba(29, 29, 31, 0.4);
  box-shadow: 0 0 0 6px rgba(232, 75, 43, 0.1);
}
.signup-form input[type="email"] {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  padding: 12px 4px;
  outline: none;
}
.signup-form input[type="email"]::placeholder {
  color: var(--ink-mute);
  opacity: 0.7;
}
.signup-form-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 22px;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}
.signup-form-btn:hover { background: #000; }
.signup-form-btn:active { transform: scale(0.97); }
.signup-form-btn[disabled] {
  background: var(--ink-mute);
  cursor: not-allowed;
}
.signup-form-btn-arrow {
  display: inline-block;
  transition: transform 160ms ease;
}
.signup-form-btn:hover .signup-form-btn-arrow { transform: translateX(2px); }

.signup-form-status {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
  min-height: 1.4em;
}
.signup-form-status[data-state="success"] { color: #1d6b3a; }
.signup-form-status[data-state="error"]   { color: #c0392b; }

.signup-microcopy {
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
}

/* Dark-context overrides for form */
.bg-ink .signup-form {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.16);
}
.bg-ink .signup-form:focus-within {
  border-color: rgba(255,255,255,0.4);
  box-shadow: 0 0 0 6px rgba(232, 75, 43, 0.18);
}
.bg-ink .signup-form input[type="email"] {
  color: #fff;
}
.bg-ink .signup-form input[type="email"]::placeholder {
  color: rgba(245,245,247,0.5);
}
.bg-ink .signup-form-btn {
  background: var(--accent);
}
.bg-ink .signup-form-btn:hover { background: #ff5a37; }
.bg-ink .signup-form-status { color: rgba(245,245,247,0.7); }
.bg-ink .signup-form-status[data-state="success"] { color: #6fdb95; }
.bg-ink .signup-form-status[data-state="error"]   { color: #ff8a72; }
.bg-ink .signup-microcopy { color: rgba(245,245,247,0.55); }

@media (max-width: 480px) {
  .signup-form { padding: 6px 6px 6px 18px; }
  .signup-form input[type="email"] { font-size: 14px; padding: 10px 4px; }
  .signup-form-btn { padding: 10px 16px; font-size: 13px; }
}

/* ============================================================
   HERO — split layout, big mockup on right
   ============================================================ */
.hero {
  padding: clamp(48px, 7vw, 96px) var(--pad-x) clamp(64px, 9vw, 120px);
  background: var(--paper);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.hero-text { max-width: 560px; }
.hero-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(48px, 8.5vw, 112px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
}
.hero-headline .accent { color: var(--accent); }

.hero-sub {
  margin: 24px 0 0;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.4;
  color: var(--ink-mute);
  font-weight: 400;
  letter-spacing: -0.01em;
  max-width: 480px;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 100%;
  max-width: 560px;
  height: auto;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image img, .float { animation: none !important; }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: clamp(32px, 5vw, 48px);
    text-align: left;
  }
  .hero-image { order: 2; }
  .hero-image img { max-width: 380px; }
}

/* ============================================================
   VALUE PROP STRIP — 3 columns
   ============================================================ */
.values {
  background: #fff;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: clamp(56px, 7vw, 96px) var(--pad-x);
}
.values-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
.value-item { }
.value-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 18px;
  box-shadow: 0 0 0 4px rgba(232, 75, 43, 0.12);
}
.value-label {
  margin: 0 0 8px;
  font-size: clamp(20px, 1.8vw, 24px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.value-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-mute);
  max-width: 320px;
}
@media (max-width: 800px) {
  .values-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   FULL-WIDTH PRODUCT SECTIONS (vibes, kai)
   ============================================================ */
.product {
  padding: var(--pad-y) var(--pad-x);
  overflow: hidden;
}
.product-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.product--centered { text-align: center; }
.product--centered .subhead { margin-left: auto; margin-right: auto; }

.product-image {
  margin: clamp(48px, 7vw, 80px) auto 0;
  max-width: 520px;
}
.product-image img {
  width: 100%;
  height: auto;
  animation: float 4.4s ease-in-out infinite;
}

.product-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.product-split--reverse { grid-template-columns: 1fr 1.05fr; }
.product-split--reverse .product-split-image { order: -1; }

.product-split-image {
  display: flex;
  justify-content: center;
}
.product-split-image img {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  animation: float 4.6s ease-in-out infinite;
}
.product-split-text { max-width: 520px; }
.product-split-text .display-sm { margin: 0 0 24px; }
.product-split-text .lede { margin: 0 0 18px; max-width: 480px; }
.fine-print {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .product-split { grid-template-columns: 1fr; gap: 40px; text-align: left; }
  .product-split--reverse .product-split-image { order: 0; }
  .product-split-image img { max-width: 360px; }
}

/* ============================================================
   HOW IT WORKS — 3 steps numbered
   ============================================================ */
.steps {
  background: #fff;
  padding: var(--pad-y) var(--pad-x);
}
.steps-inner {
  max-width: var(--max);
  margin: 0 auto;
}
.steps-head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 5vw, 64px);
}
.step { }
.step-num {
  font-family: var(--font-display);
  font-size: clamp(32px, 3vw, 40px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1;
}
.step-title {
  margin: 0 0 12px;
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.15;
}
.step-body {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-mute);
  max-width: 320px;
}
@media (max-width: 800px) {
  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   CITIES SECTION
   ============================================================ */
.cities-section {
  background: var(--cream);
  padding: var(--pad-y) var(--pad-x);
}
.cities-section .section-inner {
  text-align: center;
}
.cities-list {
  margin: clamp(40px, 6vw, 72px) auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(4px, 0.6vw, 8px) clamp(48px, 6vw, 96px);
  max-width: 980px;
}
.city-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
  padding: 4px 0;
  display: inline-block;
  cursor: default;
  transition: transform 200ms ease, color 200ms ease;
  text-align: left;
}
.city-name:hover {
  color: var(--accent);
  transform: translateX(8px);
}
.cities-footer {
  margin: clamp(48px, 6vw, 72px) auto 0;
  font-size: 16px;
  color: var(--ink-mute);
}

@media (max-width: 720px) {
  .cities-list { grid-template-columns: 1fr; gap: 2px; }
  .city-name { font-size: clamp(32px, 9vw, 44px); }
}

/* ============================================================
   FINAL CTA — dark moment
   ============================================================ */
.waitlist {
  background: var(--ink);
  color: #F5F5F7;
  padding: var(--pad-y) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.waitlist::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 75, 43, 0.18), transparent 60%);
  pointer-events: none;
}
.waitlist-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.waitlist .display-sm { color: #fff; }
.waitlist .subhead {
  color: rgba(245, 245, 247, 0.7);
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--paper);
  border-top: 1px solid var(--hairline);
  padding: 48px var(--pad-x);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.footer-left .wordmark img { height: 18px; }
.footer-meta {
  margin: 0;
  font-size: 13px;
  color: var(--ink-mute);
}
.footer-meta a { color: var(--ink-mute); text-decoration: underline; text-decoration-color: rgba(0,0,0,0.2); }
.footer-meta a:hover { color: var(--ink); }
.footer-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
}
.footer-links a {
  color: var(--ink-mute);
  text-decoration: none;
}
.footer-links a:hover { color: var(--ink); }

@media (max-width: 640px) {
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================================
   REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Inner page hero
   ============================================================ */
.page-hero {
  padding: clamp(88px, 13vw, 160px) var(--pad-x) clamp(56px, 8vw, 96px);
  text-align: center;
}
.page-hero-inner {
  max-width: 880px;
  margin: 0 auto;
}
.page-hero .subhead {
  margin: 28px auto 0;
  max-width: 640px;
}

/* ============================================================
   HOW IT WORKS PAGE — full step blocks
   ============================================================ */
.step-block {
  padding: var(--pad-y) var(--pad-x);
}
.step-block-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.step-block--reverse .step-block-illus { order: -1; }
.step-block-text {
  max-width: 440px;
  width: 100%;
  justify-self: end;
}
.step-block--reverse .step-block-text {
  justify-self: start;
}
.step-block-illus {
  width: 100%;
  max-width: 440px;
  justify-self: start;
}
.step-block--reverse .step-block-illus {
  justify-self: end;
}

.step-block-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 20px;
}
.step-block-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.0;
  color: var(--ink);
  margin: 0 0 24px;
}
.step-block-body {
  font-size: clamp(17px, 1.3vw, 19px);
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 16px;
}
.step-block-body--mute { color: var(--ink-mute); }

.step-block-illus {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  background: var(--paper);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.step-block-illus img {
  max-width: 80%;
  height: auto;
  animation: float 4.6s ease-in-out infinite;
}
.step-block-illus--blush { background: var(--blush); }
.step-block-illus--cream { background: var(--cream); }
.step-block-illus--sand  { background: var(--sand); }

@media (max-width: 900px) {
  .step-block-inner { grid-template-columns: 1fr; gap: 40px; }
  .step-block--reverse .step-block-illus { order: 0; }
  .step-block-illus { aspect-ratio: 1 / 1; max-width: 460px; margin: 0 auto; width: 100%; }
}

/* ============================================================
   CITIES PAGE — stacked list
   ============================================================ */
.city-row {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: baseline;
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--hairline);
}
.city-row:last-child { border-bottom: 0; }
.city-row-name {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: -0.028em;
  line-height: 1;
  color: var(--ink);
  margin: 0;
  transition: color 200ms ease, transform 200ms ease;
}
.city-row:hover .city-row-name {
  color: var(--accent);
  transform: translateX(6px);
}
.city-row-note {
  font-size: clamp(16px, 1.3vw, 18px);
  line-height: 1.5;
  color: var(--ink-mute);
  margin: 0;
}
.cities-page-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.cities-page-cta {
  margin: clamp(48px, 6vw, 80px) 0 0;
  text-align: center;
}
@media (max-width: 720px) {
  .city-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .city-row-name { font-size: clamp(32px, 9vw, 40px); }
}

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: clamp(20px, 2.5vw, 28px) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color 160ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.18);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease, color 200ms ease;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.faq-answer {
  padding: 0 0 clamp(24px, 3vw, 32px);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-mute);
  max-width: 680px;
}
.faq-answer p { margin: 0 0 12px; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ============================================================
   SHARED — utility
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.center { text-align: center; }
.section-head { text-align: center; max-width: 760px; margin: 0 auto; }
