/* ──────────────────────────────────────────────────────────────
   Quietluxe Design System — b2roll Marketing
   Modern · Posh · Cool · Refreshing
   ────────────────────────────────────────────────────────────── */

@import url("https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&display=swap");

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

:root {
  --bg:               #FAFAF7;
  --surface:          #FFFFFF;
  --surface-elevated: #F4F3EE;
  --border:           #E8E6E0;
  --border-strong:    #D8D5CC;
  --fg:               #1A1A1A;
  --fg-muted:         #6B6B6B;
  --fg-subtle:        #9B9B9B;

  --accent:           #87A96B;
  --accent-fg:        #FFFFFF;
  --accent-terracotta:#C97B5C;

  --font-display:  "Geist", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif:    "Geist", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-sans:     "Geist", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-emphasis: "Instrument Serif", Georgia, serif;
  --font-mono:     "JetBrains Mono", "Geist Mono", ui-monospace, monospace;

  --fz-hero:  72px;
  --fz-h1:    48px;
  --fz-h2:    32px;
  --fz-h3:    22px;
  --fz-body:  16px;
  --fz-small: 13px;

  --lh-hero:  1.02;
  --lh-h1:    1.08;
  --lh-h2:    1.18;
  --lh-h3:    1.3;
  --lh-body:  1.6;
  --lh-small: 1.5;

  --tr-hero:  -0.04em;
  --tr-label: 0.12em;

  --fw-body:    400;
  --fw-ui:      500;
  --fw-heading: 600;

  --sp-1:   8px;
  --sp-2:  16px;
  --sp-3:  24px;
  --sp-4:  32px;
  --sp-5:  48px;
  --sp-6:  64px;
  --sp-7:  96px;
  --sp-8: 128px;

  --container: 1200px;
  --section-y-desktop: 96px;
  --section-y-mobile:  64px;

  --r-input:  4px;
  --r-button: 8px;
  --r-card:  12px;
  --r-pill: 999px;

  --shadow-none: none;
  --shadow-card: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-pop:  0 8px 24px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);

  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast:   150ms;
  --dur:        220ms;
  --dur-slow:   320ms;
}

html, body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-size: var(--fz-body);
  line-height: var(--lh-body);
  font-weight: var(--fw-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(26,26,26,0.18) 1px, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.025;
  z-index: 0;
}

#root, .site-wrapper { position: relative; z-index: 1; }
.site-wrapper { display: flex; flex-direction: column; min-height: 100vh; }
.site-main { flex: 1; }

::selection { background: var(--accent); color: var(--accent-fg); }
:focus-visible { outline: 1px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ── Layout ────────────────────────────────────────────── */
.section { padding: var(--section-y-desktop) 32px; }
.container { max-width: var(--container); margin: 0 auto; }
.section + .section { border-top: 1px solid var(--border); }

/* ── Typography ────────────────────────────────────────── */
.hero, .display {
  font-family: var(--font-sans);
  font-size: var(--fz-hero);
  line-height: var(--lh-hero);
  letter-spacing: var(--tr-hero);
  font-weight: var(--fw-heading);
}
h1, .h1 { font-family: var(--font-sans); font-size: var(--fz-h1); line-height: var(--lh-h1); letter-spacing: -0.035em; font-weight: var(--fw-heading); margin: 0; }
h2, .h2 { font-family: var(--font-sans); font-size: var(--fz-h2); line-height: var(--lh-h2); letter-spacing: -0.03em; font-weight: var(--fw-heading); margin: 0; }
h3, .h3 { font-family: var(--font-sans); font-size: var(--fz-h3); line-height: var(--lh-h3); letter-spacing: -0.02em; font-weight: var(--fw-heading); margin: 0; }
p { margin: 0; }
.muted { color: var(--fg-muted); }
.subtle { color: var(--fg-subtle); }
.small { font-size: var(--fz-small); line-height: var(--lh-small); }
.label { font-size: var(--fz-small); letter-spacing: var(--tr-label); text-transform: uppercase; color: var(--fg-muted); font-weight: var(--fw-ui); }
.numeral { font-family: var(--font-mono); font-feature-settings: "tnum" 1; color: var(--fg-subtle); font-size: var(--fz-small); letter-spacing: 0.04em; }
.em-italic { font-family: var(--font-emphasis); font-style: italic; font-weight: 400; letter-spacing: -0.005em; }
.mono { font-family: var(--font-mono); font-size: 0.9em; }
.divider-line { width: 32px; height: 1px; background: var(--border-strong); display: inline-block; vertical-align: middle; }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--sp-1);
  font-family: var(--font-sans); font-size: var(--fz-body); font-weight: var(--fw-ui);
  padding: 14px 24px; border-radius: var(--r-button);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform var(--dur) var(--ease), background var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--accent-fg); }
.btn-primary:hover { transform: scale(1.02); }
.btn-secondary { background: transparent; color: var(--fg); border-color: var(--border-strong); }
.btn-secondary:hover { background: var(--surface-elevated); border-color: var(--fg); }
.btn-ghost { background: transparent; color: var(--fg); }
.btn-ghost:hover { background: var(--surface-elevated); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Cards ─────────────────────────────────────────────── */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-card); padding: var(--sp-4);
  box-shadow: var(--shadow-card); transition: border-color var(--dur) var(--ease);
}
.card:hover { border-color: var(--border-strong); }

/* ── Scroll reveal ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(8px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ── Navigation ────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,250,247,0.92);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.site-nav.scrolled {
  background: rgba(250,250,247,0.96);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: calc(var(--container) + 64px); margin: 0 auto;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-wordmark {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 21px; font-weight: 600;
  letter-spacing: -0.04em; color: var(--fg); line-height: 1; text-decoration: none;
}
.nav-wordmark sup { font-size: 0.55em; font-weight: 500; margin: 0 1px; position: relative; top: -0.55em; letter-spacing: 0; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 14px; color: var(--fg-muted); text-decoration: none; font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--fg); }
.nav-links a.nav-signin { color: var(--fg); }
.nav-links .btn,
.nav-mobile-menu .btn {
  display: inline-flex;
  padding: 9px 20px;
  font-size: 13.5px;
  border-radius: var(--r-pill);
  letter-spacing: 0.01em;
  font-weight: 600;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.nav-links .btn-primary,
.nav-mobile-menu .btn-primary {
  background: var(--accent);
  color: var(--accent-fg);
}
.nav-links .btn-primary:hover,
.nav-mobile-menu .btn-primary:hover {
  color: var(--accent-fg);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(135,169,107,0.3);
}
.nav-mobile-menu .btn-full {
  display: flex;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.nav-mobile-toggle {
  display: none; width: 40px; height: 40px; border: 1px solid var(--border);
  border-radius: 8px; background: transparent; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-mobile-toggle svg { width: 20px; height: 20px; color: var(--fg); }
.nav-mobile-toggle .icon-close { display: none; }
.nav-mobile-toggle[aria-expanded="true"] .icon-menu { display: none; }
.nav-mobile-toggle[aria-expanded="true"] .icon-close { display: block; }
.nav-mobile-menu {
  display: none; padding: 16px 32px 20px;
  border-top: 1px solid var(--border); background: var(--bg);
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu a:not(.btn) { display: block; padding: 10px 0; font-size: 15px; color: var(--fg-muted); text-decoration: none; font-weight: 500; }
.nav-mobile-menu a:not(.btn):hover { color: var(--fg); }

/* ── Hero ──────────────────────────────────────────────── */
.hero-section { padding-top: 80px; padding-bottom: 96px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 80px; align-items: center; }
.hero-title {
  font-family: var(--font-serif); font-size: clamp(44px, 5.4vw, 76px);
  line-height: 1.04; letter-spacing: -0.03em; font-weight: 600; color: var(--fg); text-wrap: balance;
}
.hero-subtitle { font-size: 19px; line-height: 1.55; color: var(--fg); margin-top: 26px; max-width: 520px; font-weight: 500; letter-spacing: -0.005em; }
.hero-body { font-size: 15.5px; line-height: 1.6; color: var(--fg-muted); margin-top: 14px; max-width: 520px; }
.hero-pills { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px; max-width: 520px; }
.hero-pills li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--fg); }
.hero-pill-icon {
  width: 26px; height: 26px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--border); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-pill-icon svg { width: 13px; height: 13px; color: var(--fg); }
.hero-actions { display: flex; gap: 12px; margin-top: 36px; align-items: center; flex-wrap: wrap; }
.hero-meta { margin-top: 22px; }

/* ── Hero Visual ───────────────────────────────────────── */
.hero-visual { position: relative; min-height: 620px; }
.hero-visual-bg {
  position: absolute; inset: 32px -10px 32px 56px;
  background: var(--surface-elevated); border: 1px solid var(--border);
  border-radius: 14px; transform: rotate(2.4deg); box-shadow: var(--shadow-card);
}
.hero-storefront {
  position: relative; background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card);
}
.browser-chrome {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px; background: var(--bg);
}
.browser-dot { width: 8px; height: 8px; border-radius: 99px; background: var(--border-strong); }
.browser-url {
  margin-left: 8px; flex: 1; padding: 4px 12px; background: var(--surface-elevated);
  border: 1px solid var(--border); border-radius: 999px;
  display: flex; align-items: center; gap: 8px;
}
.browser-url svg { width: 10px; height: 10px; color: var(--fg-subtle); }
.browser-url span { font-family: var(--font-mono); font-size: 11px; color: var(--fg-muted); }
.store-nav {
  padding: 14px 22px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.store-name { font-family: var(--font-emphasis); font-style: italic; font-size: 22px; font-weight: 500; letter-spacing: -0.015em; color: var(--fg); }
.store-nav-icons { display: flex; align-items: center; gap: 18px; }
.store-nav-icons svg { width: 14px; height: 14px; color: var(--fg-muted); }
.cart-badge {
  display: inline-flex; align-items: center; gap: 4px;
}
.cart-badge .badge {
  font-size: 10px; font-weight: 600; background: var(--accent); color: var(--accent-fg);
  padding: 0 5px; border-radius: 999px; line-height: 1.5;
}
.store-banner { padding: 18px; background: var(--surface); }
.store-banner-inner {
  aspect-ratio: 16/6; background: linear-gradient(135deg, #E9E2D2 0%, #C9B79C 60%, #B79F7E 100%);
  border-radius: 8px; position: relative; overflow: hidden; padding: 18px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.store-banner-tag { font-size: 9.5px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(26,26,26,0.55); font-weight: 600; }
.store-banner-title { font-family: var(--font-emphasis); font-style: italic; font-size: 22px; color: rgba(26,26,26,0.85); align-self: flex-end; }
.store-section-head {
  padding: 0 22px 8px; display: flex; justify-content: space-between; align-items: baseline;
}
.store-section-head .label { font-size: 10px; }
.store-section-head a { font-style: italic; }
.product-grid { padding: 8px 18px 18px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.product-card { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; background: var(--surface); }
.product-thumb { aspect-ratio: 4/5; position: relative; }
.product-thumb-inner { position: absolute; inset: 12px; border: 1px solid rgba(26,26,26,0.06); border-radius: 4px; }
.product-tag {
  position: absolute; top: 8px; left: 8px;
  font-size: 8.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(26,26,26,0.7); font-weight: 600;
}
.product-tag--low { color: rgba(122,46,22,0.85); }
.product-info { padding: 8px 10px; }
.product-info-name { font-size: 10.5px; color: var(--fg); font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-info-price { font-size: 10px; margin-top: 1px; }
.store-trust {
  padding: 12px 22px; border-top: 1px solid var(--border); background: var(--bg);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10.5px; color: var(--fg-muted); letter-spacing: 0.06em;
}
.store-trust span { display: inline-flex; align-items: center; gap: 6px; }
.store-trust svg { width: 12px; height: 12px; }

/* Floating elements on hero visual */
.float-theme {
  position: absolute; top: -16px; left: -18px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 12px 8px 10px; box-shadow: var(--shadow-pop);
  display: flex; align-items: center; gap: 10px; transform: rotate(-3deg); z-index: 3;
}
.float-theme-dots { display: flex; gap: 3px; }
.float-theme-dot { width: 12px; height: 12px; border-radius: 999px; border: 1px solid rgba(26,26,26,0.1); }
.float-admin {
  position: absolute; top: 64px; right: -36px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 16px 12px; box-shadow: var(--shadow-pop);
  transform: rotate(3.5deg); z-index: 3; min-width: 180px;
}
.float-admin-bars { display: flex; gap: 2px; align-items: flex-end; margin-top: 10px; height: 20px; }
.float-admin-bar { width: 6px; border-radius: 2px 2px 0 0; }
.float-sms {
  position: absolute; right: -20px; bottom: 28px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 14px 14px; box-shadow: var(--shadow-pop);
  max-width: 240px; z-index: 3;
}
.float-sms-dot {
  width: 8px; height: 8px; border-radius: 99px; background: var(--accent);
  box-shadow: 0 0 0 4px rgba(135,169,107,0.18);
}
.float-sms-bubble {
  font-size: 12px; line-height: 1.45; color: var(--fg);
  background: var(--surface-elevated); border: 1px solid var(--border);
  padding: 8px 11px; border-radius: 12px; border-bottom-left-radius: 4px; margin-top: 8px;
}

/* ── Trust strip ───────────────────────────────────────── */
.trust-strip { padding-top: 56px; padding-bottom: 56px; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.trust-stat { padding-left: 32px; border-left: 1px solid var(--border); }
.trust-stat:first-child { padding-left: 0; border-left: none; }
.trust-number {
  font-family: var(--font-serif); font-size: 40px; line-height: 1;
  letter-spacing: -0.02em; font-weight: 600; color: var(--fg);
}

/* ── Section header (reused across HowItWorks, Features, etc.) ── */
.section-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: end; margin-bottom: 64px;
}
.section-title {
  font-family: var(--font-serif); font-size: 48px; line-height: 1.08;
  letter-spacing: -0.02em; font-weight: 600; margin: 0; color: var(--fg);
  max-width: 640px; text-wrap: balance;
}
.section-desc { font-size: 17px; line-height: 1.55; color: var(--fg-muted); max-width: 460px; margin: 0; }

/* ── How it works ──────────────────────────────────────── */
.hiw-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.hiw-step {
  padding: 32px;
  border: 1px solid var(--border); background: var(--surface);
  position: relative;
}
.hiw-step + .hiw-step { border-left: none; }
.hiw-step-title {
  font-family: var(--font-serif); font-size: 32px; line-height: 1.15;
  font-weight: 600; margin: 20px 0 16px; letter-spacing: -0.015em;
}
.hiw-step-foot {
  margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.hiw-step-foot span { font-style: italic; color: var(--fg-muted); }
.hiw-step-foot svg { width: 16px; height: 16px; color: var(--fg-subtle); }

/* ── Features grid ─────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.feature-card {
  padding: 40px 36px; border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border); background: var(--surface);
  transition: background 200ms var(--ease);
}
.feature-card:hover { background: var(--surface-elevated); }
.feature-card-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px;
}
.feature-icon {
  width: 40px; height: 40px; border-radius: 8px; background: var(--bg);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 18px; height: 18px; color: var(--fg); }
.feature-title {
  font-family: var(--font-serif); font-size: 28px; line-height: 1.2;
  font-weight: 600; letter-spacing: -0.015em; color: var(--fg); text-wrap: balance;
}
.feature-body { font-size: 15px; line-height: 1.6; color: var(--fg-muted); margin-top: 18px; max-width: 460px; }

/* ── Delivery ──────────────────────────────────────────── */
.delivery-section { background: var(--surface-elevated); }
.delivery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.partner-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column; min-height: 240px;
  transition: border-color 220ms var(--ease);
}
.partner-card:hover { border-color: var(--border-strong); }
.partner-tint { height: 3px; }
.partner-logo { flex: 1; padding: 32px 24px 20px; display: flex; align-items: center; justify-content: center; min-height: 120px; }
.partner-logo-placeholder {
  width: 100%; height: 80px; display: flex; align-items: center; justify-content: center;
  background: var(--surface-elevated); border: 1px dashed var(--border-strong); border-radius: 8px;
  font-size: 13px; color: var(--fg-subtle); font-weight: 500;
}
.partner-caption { padding: 14px 22px 22px; border-top: 1px solid var(--border); }

/* ── Tracking ──────────────────────────────────────────── */
.tracking-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 80px; align-items: center; }
.tracking-points { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
.tracking-points li { display: flex; gap: 12px; font-size: 15px; color: var(--fg); }
.tracking-points svg { width: 16px; height: 16px; color: var(--accent); margin-top: 4px; flex-shrink: 0; }
.tracking-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; box-shadow: var(--shadow-card); overflow: hidden;
}
.tracking-card-header {
  padding: 20px 28px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.tracking-status {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 999px; background: var(--bg);
}
.tracking-status-dot { width: 6px; height: 6px; border-radius: 99px; background: var(--accent); }
.tracking-stages { padding: 28px 28px 36px; display: flex; flex-direction: column; }
.tracking-stage { display: grid; grid-template-columns: 20px 1fr auto; gap: 16px; align-items: flex-start; }
.tracking-dot {
  width: 10px; height: 10px; border-radius: 99px; margin-top: 4px;
}
.tracking-dot--done { background: var(--accent); border: 1px solid var(--accent); }
.tracking-dot--current { width: 12px; height: 12px; background: var(--accent); border: 1px solid var(--accent); box-shadow: 0 0 0 4px rgba(135,169,107,0.16); }
.tracking-dot--pending { background: var(--surface); border: 1px solid var(--border-strong); }
.tracking-line {
  width: 1px; flex: 1; min-height: 36px; margin-top: 4px; margin-bottom: 4px; margin-left: auto; margin-right: auto;
}
.tracking-line--done { background: var(--accent); opacity: 0.5; }
.tracking-line--pending { background: var(--border); }
.tracking-card-footer {
  padding: 16px 28px; border-top: 1px solid var(--border); background: var(--surface-elevated);
  display: flex; justify-content: space-between;
}

/* ── SMS ───────────────────────────────────────────────── */
.sms-section { background: var(--surface-elevated); }
.sms-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.sms-stats {
  margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border); border-radius: 12px; overflow: hidden; background: var(--surface);
}
.sms-stat { padding: 20px 22px; }
.sms-stat:nth-child(odd) { border-right: 1px solid var(--border); }
.sms-stat:nth-child(-n+2) { border-bottom: 1px solid var(--border); }
.sms-stat-value {
  font-family: var(--font-serif); font-size: 24px; font-weight: 600;
  letter-spacing: -0.015em; color: var(--fg);
}

/* Phone frame */
.phone-frame {
  width: 320px; height: 640px; border-radius: 44px; background: var(--fg);
  padding: 8px; position: relative; margin: 0 auto;
  box-shadow: 0 30px 60px -20px rgba(26,26,26,0.25), 0 4px 12px rgba(26,26,26,0.08);
}
.phone-inner-ring {
  position: absolute; inset: 4px; border-radius: 40px;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%); pointer-events: none;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 36px;
  background: var(--bg); overflow: hidden;
}
.phone-status-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 38px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; font-size: 11.5px; font-family: var(--font-sans); font-weight: 600; color: var(--fg); z-index: 3;
}
.phone-dynamic-island {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 26px; background: var(--fg); border-radius: 999px; z-index: 4;
}
.phone-chat-header {
  position: absolute; top: 38px; left: 0; right: 0;
  padding: 8px 16px 14px; background: rgba(250,250,247,0.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between; z-index: 2;
}
.phone-avatar {
  width: 36px; height: 36px; border-radius: 999px; background: var(--surface-elevated);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-emphasis); font-style: italic; font-size: 18px; color: var(--fg);
}
.phone-conversation { padding: 116px 14px 90px; display: flex; flex-direction: column; gap: 18px; height: 100%; overflow: hidden; }
.phone-msg-group { display: flex; flex-direction: column; gap: 4px; }
.phone-msg-ts {
  text-align: center; font-size: 10.5px; color: var(--fg-subtle);
  font-weight: 600; letter-spacing: 0.02em; margin: 4px 0 8px;
}
.phone-bubble {
  max-width: 78%; background: var(--surface-elevated); border: 1px solid var(--border);
  border-radius: 18px; padding: 8px 13px; font-size: 12.5px; line-height: 1.4;
  color: var(--fg); text-wrap: pretty; word-break: break-word;
}
.phone-bubble--last { border-bottom-left-radius: 4px; }
.phone-input-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 10px 14px 18px; background: rgba(250,250,247,0.94);
  backdrop-filter: blur(8px); border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px; z-index: 2;
}
.phone-input-field {
  flex: 1; padding: 7px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 999px;
  font-size: 11.5px; color: var(--fg-subtle);
}

/* ── Templates mosaic ──────────────────────────────────── */
.templates-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border); border-left: 1px solid var(--border);
}
.template-card {
  border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--surface); display: flex; flex-direction: column; cursor: default;
}
.template-preview {
  aspect-ratio: 4/5; padding: 16px; position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border); transition: transform 320ms var(--ease);
  transform-origin: center bottom;
}
.template-card:hover .template-preview { transform: scale(1.02); }
.template-caption { padding: 14px 16px 16px; }
.template-caption-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.template-name { font-family: var(--font-serif); font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--fg); }

/* ── Tenants ───────────────────────────────────────────── */
.tenants-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 16px; }
.tenant-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 220ms var(--ease);
}
.tenant-card:hover { border-color: var(--border-strong); }
.tenant-hero { position: relative; border-bottom: 1px solid var(--border); padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.tenant-hero--lg { height: 220px; }
.tenant-hero--sm { height: 110px; padding: 16px; }
.tenant-mark {
  border-radius: 999px; background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-emphasis); font-style: italic; color: var(--fg);
}
.tenant-mark--lg { width: 56px; height: 56px; font-size: 26px; }
.tenant-mark--sm { width: 40px; height: 40px; font-size: 18px; }
.tenant-featured-badge {
  font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(26,26,26,0.55); font-weight: 600;
  padding: 4px 8px; background: rgba(250,250,247,0.6);
  border: 1px solid rgba(26,26,26,0.08); border-radius: 999px;
}
.tenant-body { padding: 22px 24px 20px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.tenant-body--sm { padding: 16px 18px; gap: 10px; }
.tenant-name { font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.02em; color: var(--fg); }
.tenant-name--lg { font-size: 24px; }
.tenant-name--sm { font-size: 17px; }
.tenant-tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; color: var(--fg-muted); }
.tenant-tag { padding: 3px 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 999px; }
.tenant-kpis {
  margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.tenant-kpi-value {
  font-family: var(--font-sans); font-weight: 600; letter-spacing: -0.025em; color: var(--fg); line-height: 1;
}

/* Avatars + "more" strip */
.avatar-pile { display: inline-flex; }
.avatar-pile span { width: 28px; height: 28px; border-radius: 999px; border: 2px solid var(--bg); margin-left: -10px; }
.avatar-pile span:first-child { margin-left: 0; }

/* Client cards */
.client-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 22px; display: flex; flex-direction: column; gap: 16px;
}
.client-avatar {
  width: 42px; height: 42px; border-radius: 999px; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-emphasis); font-style: italic; font-size: 18px; color: var(--fg); flex-shrink: 0;
}
.client-quote {
  margin: 0; font-family: var(--font-serif); font-size: 16.5px; line-height: 1.45;
  letter-spacing: -0.005em; color: var(--fg); text-wrap: pretty;
}

/* ── Testimonials ─────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* ── Quote ─────────────────────────────────────────────── */
.quote-section { background: var(--surface-elevated); }
.quote-text {
  font-family: var(--font-serif); font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.22; letter-spacing: -0.015em; font-style: italic;
  font-weight: 400; color: var(--fg); margin: 0; text-wrap: balance;
}

/* ── Pricing ───────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.plan-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 32px; position: relative; display: flex; flex-direction: column; gap: 24px; min-height: 420px;
  transition: border-color 220ms var(--ease);
}
.plan-card:hover { border-color: var(--border-strong); }
.plan-card--featured { border-color: var(--fg); }
.plan-card--featured:hover { border-color: var(--fg); }
.plan-badge {
  position: absolute; top: -1px; right: 24px; transform: translateY(-50%);
  background: var(--accent); color: var(--accent-fg);
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; font-weight: 500;
}
.plan-name { font-family: var(--font-serif); font-size: 24px; font-weight: 600; letter-spacing: -0.015em; color: var(--fg); }
.plan-tagline { font-style: italic; color: var(--fg-muted); margin-top: 6px; }
.plan-price { font-family: var(--font-serif); font-size: 44px; line-height: 1; letter-spacing: -0.025em; font-weight: 600; color: var(--fg); }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; gap: 10px; font-size: 14px; color: var(--fg); }
.plan-features svg { width: 14px; height: 14px; color: var(--accent); margin-top: 4px; }
.plan-cta { margin-top: auto; justify-content: center; }

/* ── Apply form ────────────────────────────────────────── */
.apply-section { background: var(--surface); border-top: 1px solid var(--border); }
.apply-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 80px; max-width: 1100px; align-items: start; margin: 0 auto; }
.apply-sidebar { position: sticky; top: 100px; }
.apply-sidebar-title {
  font-family: var(--font-serif); font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; color: var(--fg); text-wrap: balance;
}
.apply-trust-list { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 14px; }
.apply-trust-item { display: flex; gap: 12px; align-items: center; font-size: 14px; color: var(--fg-muted); }
.apply-trust-item svg { width: 16px; height: 16px; color: var(--fg-subtle); }

.apply-form {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.apply-form-header {
  padding: 20px 28px; border-bottom: 1px solid var(--border); background: var(--surface);
}
.apply-form-progress {
  height: 3px; background: var(--surface-elevated); border-radius: 999px; overflow: hidden; margin-top: 10px;
}
.apply-form-progress-bar { height: 100%; background: var(--accent); transition: width 220ms var(--ease); }
.apply-form-body { padding: clamp(24px, 3.6vw, 36px); display: flex; flex-direction: column; gap: 32px; }

.form-section-header { margin-bottom: 16px; }
.form-section-header .numeral { font-size: 12px; }
.form-section-title { font-family: var(--font-sans); font-size: 17px; font-weight: 600; letter-spacing: -0.02em; color: var(--fg); }
.form-row { display: grid; gap: 20px; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.form-row--full { grid-template-columns: 1fr; }

.field-label {
  display: flex; align-items: center; gap: 6px; margin-bottom: 8px;
  font-size: 11.5px; font-family: var(--font-sans); font-weight: 500;
  color: var(--fg); letter-spacing: 0.02em;
}
.field-required {
  width: 5px; height: 5px; border-radius: 999px; background: var(--accent); display: inline-block;
}
.field-required--error { background: var(--accent-terracotta); }
.field-input {
  width: 100%; padding: 12px 14px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 10px;
  font-family: var(--font-sans); font-size: 14px; line-height: 1.4;
  color: var(--fg); outline: none;
  transition: border-color 180ms var(--ease); box-sizing: border-box;
}
.field-input:focus { border-color: var(--fg); }
.field-input--error { border-color: var(--accent-terracotta); }
.field-input::placeholder { color: var(--fg-subtle); }
.field-error { color: var(--accent-terracotta); margin-top: 6px; font-style: italic; display: inline-flex; align-items: center; gap: 6px; }
.field-hint { margin-top: 6px; font-size: 11.5px; line-height: 1.5; }

.plan-selector { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.plan-option {
  text-align: left; padding: 14px; background: var(--bg);
  border: 1px solid var(--border); border-radius: 10px; cursor: pointer;
  font-family: var(--font-sans); transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.plan-option:hover { border-color: var(--border-strong); }
.plan-option--selected { background: var(--surface); border-color: var(--fg); }
.plan-radio {
  width: 14px; height: 14px; border-radius: 999px; background: var(--bg);
  border: 1px solid var(--border-strong);
  display: inline-flex; align-items: center; justify-content: center;
}
.plan-radio-inner { width: 6px; height: 6px; border-radius: 999px; background: var(--fg); display: none; }
.plan-option--selected .plan-radio { border-color: var(--fg); }
.plan-option--selected .plan-radio-inner { display: block; }

textarea.field-input { min-height: 96px; resize: vertical; }

.apply-form-footer {
  padding: 18px 28px; background: var(--surface); border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.apply-submit {
  padding: 14px 26px; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
}
.apply-submit:disabled { opacity: 0.6; cursor: wait; }

/* ── Apply success ─────────────────────────────────────── */
.apply-success { max-width: 760px; text-align: center; margin: 0 auto; }
.apply-success-icon {
  width: 56px; height: 56px; border-radius: 999px; background: var(--surface);
  border: 1px solid var(--border); margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.apply-success-url {
  margin-top: 40px; display: inline-flex; gap: 8px; padding: 8px 8px 8px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px; align-items: center;
}

/* ── Final CTA ─────────────────────────────────────────── */
.final-cta { padding-top: 120px; padding-bottom: 120px; }
.final-cta-grid { display: grid; grid-template-columns: 1.3fr auto; gap: 80px; align-items: end; }
.final-cta-title {
  font-family: var(--font-serif); font-size: clamp(40px, 5vw, 72px);
  line-height: 1.04; letter-spacing: -0.03em; font-weight: 600; color: var(--fg); text-wrap: balance;
}

/* ── Footer ────────────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--border); background: var(--bg); }
.footer-grid { padding: 72px 32px 40px; display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 64px; max-width: calc(var(--container) + 64px); margin: 0 auto; }
.footer-brand-text { margin-top: 16px; max-width: 280px; line-height: 1.6; }
.footer-socials { margin-top: 24px; display: flex; gap: 14px; }
.footer-social {
  width: 32px; height: 32px; border-radius: 999px; border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg-muted); text-decoration: none;
  transition: border-color 200ms var(--ease), color 200ms var(--ease);
}
.footer-social:hover { border-color: var(--fg); color: var(--fg); }
.footer-social svg { width: 14px; height: 14px; }
.footer-heading { margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--fg-muted); text-decoration: none; }
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  max-width: calc(var(--container) + 64px); margin: 0 auto;
  padding: 20px 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ── Legal pages ───────────────────────────────────────── */
.legal-article { max-width: 760px; margin: 0 auto; padding: 80px 32px; }
.legal-header { margin-bottom: 48px; padding-bottom: 32px; border-bottom: 1px solid var(--border); }
.legal-title { font-family: var(--font-serif); font-size: 44px; line-height: 1.08; letter-spacing: -0.02em; font-weight: 600; }
.legal-content h2 { font-family: var(--font-serif); font-size: 22px; font-weight: 600; margin: 40px 0 16px; color: var(--fg); }
.legal-content p { font-size: 16px; line-height: 1.7; color: var(--fg-muted); margin: 0 0 20px; }

/* ── Responsive ────────────────────────────────────────── */
html, body { overflow-x: hidden; }

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .section-header { grid-template-columns: 1fr; gap: 24px; }
  .hiw-grid { grid-template-columns: 1fr; }
  .hiw-step + .hiw-step { border-left: 1px solid var(--border); border-top: none; }
  .features-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .tracking-grid { grid-template-columns: 1fr; gap: 48px; }
  .sms-grid { grid-template-columns: 1fr; gap: 48px; }
  .templates-grid { grid-template-columns: repeat(3, 1fr); }
  .tenants-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .apply-grid { grid-template-columns: 1fr; gap: 48px; }
  .apply-sidebar { position: static; }
  .final-cta-grid { grid-template-columns: 1fr; gap: 32px; align-items: start; }
  .final-cta-grid > div:last-child { align-items: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .phone-frame { width: 280px; height: 560px; border-radius: 38px; }
  .phone-inner-ring { border-radius: 34px; }
  .phone-screen { border-radius: 30px; }
  .testimonials-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 760px) {
  .section { padding: var(--section-y-mobile) 20px; }

  /* Nav */
  .nav-inner { padding: 14px 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: flex; }
  .nav-mobile-menu { padding: 16px 20px 20px; }

  /* Hero */
  .hero-section { padding-top: 48px; padding-bottom: 64px; }
  .hero-title { font-size: 36px; }
  .hero-subtitle { font-size: 16px; margin-top: 20px; }
  .hero-body { font-size: 14.5px; }
  .hero-pills { grid-template-columns: 1fr; gap: 10px; margin-top: 24px; }
  .hero-actions { margin-top: 28px; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  /* Trust */
  .trust-strip { padding-top: 40px; padding-bottom: 40px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .trust-stat { padding-left: 0; border-left: none; }
  .trust-stat:nth-child(odd) { border-right: 1px solid var(--border); padding-right: 24px; }
  .trust-number { font-size: 32px; }

  /* Section headers */
  .section-title { font-size: 32px; }
  .section-desc { font-size: 15px; }

  /* HIW */
  .hiw-step { padding: 24px 20px; }
  .hiw-step-title { font-size: 26px; }

  /* Features */
  .feature-card { padding: 28px 22px; }
  .feature-title { font-size: 22px; }
  .feature-body { font-size: 14px; }

  /* Delivery */
  .delivery-grid { grid-template-columns: 1fr; }
  .partner-logo { padding: 24px 20px 16px; min-height: 80px; }
  .partner-card { min-height: auto; }

  /* Tracking */
  .tracking-card-header { padding: 16px 20px; flex-direction: column; gap: 12px; align-items: flex-start; }
  .tracking-stages { padding: 20px 20px 28px; }
  .tracking-card-footer { padding: 12px 20px; flex-direction: column; gap: 8px; align-items: flex-start; }

  /* SMS / Phone */
  .phone-frame { width: 260px; height: 520px; border-radius: 34px; padding: 6px; }
  .phone-inner-ring { border-radius: 30px; }
  .phone-screen { border-radius: 28px; }
  .phone-dynamic-island { width: 80px; height: 22px; top: 8px; }
  .phone-status-bar { padding: 0 20px; font-size: 10.5px; height: 34px; }
  .phone-chat-header { top: 34px; padding: 6px 12px 10px; }
  .phone-conversation { padding: 100px 10px 80px; gap: 14px; }
  .phone-bubble { font-size: 11.5px; max-width: 85%; }
  .phone-input-bar { padding: 8px 10px 14px; }
  .sms-stats { grid-template-columns: 1fr 1fr; }
  .sms-stat { padding: 16px 18px; }
  .sms-stat-value { font-size: 20px; }

  /* Templates */
  .templates-grid { grid-template-columns: repeat(2, 1fr); }

  /* Tenants */
  .tenant-hero--lg { height: 160px; }
  .tenant-body { padding: 18px 20px 16px; }
  .tenant-name--lg { font-size: 20px; }
  .tenant-kpis { gap: 8px; }

  /* Pricing */
  .plan-card { padding: 24px; min-height: auto; gap: 20px; }
  .plan-price { font-size: 32px; }
  .plan-name { font-size: 20px; }

  /* Apply */
  .apply-sidebar-title { font-size: 32px; }
  .apply-form-body { padding: 20px; gap: 28px; }
  .apply-form-header { padding: 16px 20px; }
  .apply-form-footer { padding: 16px 20px; flex-direction: column; align-items: stretch; gap: 14px; }
  .apply-form-footer .btn { width: 100%; justify-content: center; }
  .apply-submit { width: 100%; justify-content: center; }
  .plan-selector { grid-template-columns: 1fr; }
  .form-row--2 { grid-template-columns: 1fr; }

  /* Quote */
  .quote-text { font-size: 24px; }

  /* Final CTA */
  .final-cta { padding-top: 72px; padding-bottom: 72px; }
  .final-cta-grid > div:last-child { align-items: flex-start; }
  .final-cta-grid .btn-lg { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding: 48px 20px 32px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; align-items: center; text-align: center; }
  .footer-brand-text { max-width: 100%; }

  /* Inline grids that need overriding */
  .testimonials-grid { grid-template-columns: 1fr !important; }

  /* Legal */
  .legal-article { padding: 48px 20px; }
  .legal-title { font-size: 32px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .section-title { font-size: 26px; }
  .hiw-step-title { font-size: 22px; }
  .feature-title { font-size: 20px; }
  .trust-number { font-size: 28px; }
  .trust-grid { gap: 20px 16px; }
  .templates-grid { grid-template-columns: 1fr; }
  .plan-price { font-size: 28px; }
  .quote-text { font-size: 20px; }
  .apply-sidebar-title { font-size: 28px; }
  .final-cta-title { font-size: 32px; }
  .phone-frame { width: 240px; height: 480px; border-radius: 30px; }
  .phone-inner-ring { border-radius: 26px; }
  .phone-screen { border-radius: 24px; }
  .section-header { margin-bottom: 40px; }
  .nav-wordmark { font-size: 18px; gap: 10px; }
  .nav-wordmark svg { width: 26px; height: 26px; }
  .btn { padding: 12px 20px; font-size: 14px; }
  .btn-sm { padding: 10px 16px; font-size: 13px; }
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .delivery-grid { gap: 12px; }
  .partner-caption { padding: 12px 16px 16px; }
  .feature-card { padding: 22px 18px; }
  .tenant-hero--sm { height: 90px; }
  .tenant-body--sm { padding: 14px 16px; }
}

/* ─── FAQ ─── */
.faq-list { max-width: 820px; }
.faq-item { border-top: 1px solid var(--border); }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 24px 0; cursor: pointer; list-style: none;
  font-family: var(--font-sans); font-size: 18px; font-weight: 500;
  letter-spacing: -0.015em; color: var(--fg);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q:hover { color: var(--fg-muted); }
.faq-icon { position: relative; flex: 0 0 auto; width: 14px; height: 14px; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--fg-muted);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-icon::after { top: 0; left: 6px; width: 2px; height: 14px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); opacity: 0; }
.faq-a {
  padding: 0 56px 26px 0; margin-top: -4px;
  font-size: 16px; line-height: 1.65; color: var(--fg-muted);
}
@media (max-width: 640px) {
  .faq-q { font-size: 16px; padding: 20px 0; }
  .faq-a { padding-right: 0; }
}
