/* Stayfull marketing site — built from "Marketing Site.dc.html" (Interface Tokens v2). */

:root {
  --sf-bg: #ffffff;
  --sf-bg-secondary: #f7f7f5;
  --sf-bg-tertiary: #f0f0ed;
  --sf-fill: #f1f1ee;
  --sf-fg: #181a1b;
  --sf-fg-secondary: #5a6472;
  --sf-fg-muted: #646e7a;
  --sf-fg-subtle: #7d838c;
  --sf-fg-on-primary: #ffffff;
  --sf-border: #e5e5e1;
  --sf-border-strong: #d2d2cc;
  --sf-border-control: #82888a;
  --sf-primary: #0b6b63;
  --sf-primary-hover: #08564f;
  --sf-success-fg: #256b4c;
  --sf-success-surface: #e4f2ea;
  --sf-success-border: #bfdecd;
  --sf-warning-fg: #7d4d0e;
  --sf-warning-surface: #fbefd9;
  --sf-info-fg: #275d9e;
  --sf-info-surface: #e3ecf8;
  --sf-cat-1: #2f6fbf;
  --sf-cat-2: #9a6212;
  --sf-cat-3: #377c61;
  --sf-cat-4: #7c5cc4;
  --sf-cat-5: #0f7b88;
  --sf-cat-6: #b5476b;
  --sf-cat-7: #5566d5;
  --radius-sf-md: 6px;
  --radius-sf-lg: 10px;
  --radius-sf-xl: 14px;
  --sf-shadow-md: 0 1px 2px rgba(24, 26, 27, 0.06), 0 4px 16px rgba(24, 26, 27, 0.10);
  --sf-shadow-lg: 0 1px 2px rgba(24, 26, 27, 0.06), 0 16px 40px -12px rgba(24, 26, 27, 0.20);
  --sf-ease-out: cubic-bezier(0.19, 0.91, 0.38, 1);
  --sf-focus-halo: 0 0 0 3px color-mix(in oklab, var(--sf-primary) 25%, transparent);
  --sf-primary-tint: color-mix(in oklab, var(--sf-primary) 10%, transparent);
  --sf-critical-fg: #9b2c1e;
  --sf-critical-surface: #fbe9e7;
  --sf-critical-border: #f3c4bd;
  --sf-fg-on-cat: #ffffff;
  --sf-segment-thumb: var(--sf-bg);
  --sf-panel-bg: var(--sf-fg);
  --sf-panel-fg: #ffffff;
  --sf-panel-fg-muted: rgba(255, 255, 255, 0.72);
  --sf-panel-fg-subtle: rgba(255, 255, 255, 0.6);
  --sf-panel-fill: rgba(255, 255, 255, 0.06);
  --sf-panel-border: rgba(255, 255, 255, 0.1);
  --sf-shimmer: rgba(255, 255, 255, 0.65);
  color-scheme: light;
  --font-ui: Geist, system-ui, -apple-system, sans-serif;
  --font-display: Figtree, system-ui, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

/* Dark theme: the product's .dark values (web/app/globals.css). Applied by the
   nav toggle via data-theme; system preference is the default. */
:root[data-theme="dark"] {
  color-scheme: dark;
  --sf-bg: #1b1d20;
  --sf-bg-secondary: #141517;
  --sf-bg-tertiary: #111214;
  --sf-fill: #222528;
  --sf-fg: #ecedea;
  --sf-fg-secondary: #a3aab3;
  --sf-fg-muted: #8b929b;
  --sf-fg-subtle: #6f7680;
  --sf-fg-on-primary: #0e1214;
  --sf-border: #2b2e33;
  --sf-border-strong: #3a3e44;
  --sf-border-control: #71787f;
  --sf-primary: #2a9a8b;
  --sf-primary-hover: #45b3a4;
  --sf-success-fg: #82cfa9;
  --sf-success-surface: #16302a;
  --sf-success-border: rgba(93, 184, 142, 0.32);
  --sf-warning-fg: #e6b269;
  --sf-warning-surface: #33270f;
  --sf-info-fg: #93b9ec;
  --sf-info-surface: #172a42;
  --sf-critical-fg: #eb928f;
  --sf-critical-surface: #3a1c1b;
  --sf-critical-border: rgba(224, 107, 103, 0.32);
  --sf-cat-1: #6ba3e8;
  --sf-cat-2: #e0a34d;
  --sf-cat-3: #6fc4a0;
  --sf-cat-4: #a892e8;
  --sf-cat-5: #4fb8c4;
  --sf-cat-6: #e07fa0;
  --sf-cat-7: #8f9ceb;
  --sf-fg-on-cat: #0e1214;
  --sf-segment-thumb: #33383d;
  --sf-shadow-md: 0 0 0 1px rgba(255, 255, 255, 0.05), 0 4px 12px rgba(0, 0, 0, 0.5);
  --sf-shadow-lg: 0 0 0 1px rgba(255, 255, 255, 0.07), 0 4px 12px rgba(0, 0, 0, 0.45), 0 16px 40px rgba(0, 0, 0, 0.65);
  --sf-panel-bg: #0e1214;
  --sf-panel-fg: #ecedea;
  --sf-panel-fg-muted: #a3aab3;
  --sf-panel-fg-subtle: #8b929b;
  --sf-panel-fill: rgba(236, 237, 234, 0.05);
  --sf-panel-border: #2b2e33;
  --sf-shimmer: rgba(255, 255, 255, 0.07);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--sf-bg);
  color: var(--sf-fg);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--sf-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
button:focus-visible, a:focus-visible, input:focus-visible, summary:focus-visible {
  outline: none;
  box-shadow: var(--sf-focus-halo);
}
h1, h2, h3 { margin: 0; font-family: var(--font-display); text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
img { max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
.tabular { font-variant-numeric: tabular-nums; }
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 100;
  padding: 8px 12px; border-radius: var(--radius-sf-md);
  background: var(--sf-panel-bg); color: var(--sf-panel-fg); font-size: 14px;
}
.skip-link:focus { top: 8px; }

/* icons (inline SVGs) */
.ic { display: inline-flex; flex-shrink: 0; }
.ic svg { display: block; width: 100%; height: 100%; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: var(--radius-sf-md);
  font-size: 16px; font-weight: 500; white-space: nowrap; cursor: pointer;
  border: 1px solid transparent; text-decoration: none;
  transition: background-color 200ms var(--sf-ease-out), border-color 200ms var(--sf-ease-out);
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--sf-primary); color: var(--sf-fg-on-primary); border-color: var(--sf-primary); }
.btn-primary:hover { background: var(--sf-primary-hover); border-color: var(--sf-primary-hover); }
.btn-secondary { background: var(--sf-bg); color: var(--sf-fg); border-color: var(--sf-border-strong); }
.btn-secondary:hover { background: var(--sf-bg-secondary); }
.btn-sm { height: 36px; padding: 0 14px; font-size: 14px; }
.btn-block { width: 100%; }
.btn .ic { width: 16px; height: 16px; }

/* ---------- layout ---------- */
.container { max-width: 1200px; margin: 0 auto; }
.section { padding: 112px 24px 0; }
.section-head { display: flex; flex-direction: column; gap: 12px; max-width: 640px; }
.eyebrow {
  font-size: 12px; line-height: 16px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--sf-primary);
}
.h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.1; font-weight: 700; letter-spacing: -0.024em; }
.lead { font-size: 17px; line-height: 26px; color: var(--sf-fg-secondary); }
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px; align-items: start;
}

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in oklab, var(--sf-bg) 92%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--sf-border);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px; height: 64px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo { display: flex; flex-shrink: 0; }
.nav-logo img { height: 36px; width: auto; }
.logo-dark { display: none; }
:root[data-theme="dark"] .logo-light { display: none; }
:root[data-theme="dark"] .logo-dark { display: block; }
.navlinks { display: flex; gap: 24px; flex: 1; font-size: 14px; font-weight: 500; color: var(--sf-fg-secondary); }
.navlinks a { color: inherit; white-space: nowrap; }
.nav-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; }
.nav-signin {
  height: 36px; padding: 0 12px; display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 500; color: var(--sf-fg); white-space: nowrap;
}
.theme-toggle {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--sf-border); border-radius: var(--radius-sf-md); background: var(--sf-bg); color: var(--sf-fg-secondary);
  cursor: pointer; padding: 0; transition: background-color 200ms var(--sf-ease-out), color 200ms var(--sf-ease-out);
}
.theme-toggle:hover { background: var(--sf-bg-secondary); color: var(--sf-fg); }
.theme-toggle .ic { width: 16px; height: 16px; }
.theme-toggle .ic-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .ic-sun { display: inline-flex; }
:root[data-theme="dark"] .theme-toggle .ic-moon { display: none; }
@media (max-width: 1040px) { .navlinks { display: none; } }

/* ---------- hero ---------- */
.hero {
  padding: 80px 24px 0;
  background: linear-gradient(180deg, var(--sf-bg-secondary), var(--sf-bg) 70%);
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px;
}
.pill-award {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; line-height: 18px; color: var(--sf-fg-secondary);
  padding: 6px 12px 6px 8px; border: 1px solid var(--sf-border); border-radius: 9999px; background: var(--sf-bg);
}
.pill-award b {
  font-size: 11px; line-height: 16px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0 7px; border-radius: 9999px; background: var(--sf-success-surface); color: var(--sf-success-fg);
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.05; font-weight: 700; letter-spacing: -0.03em; max-width: 16ch; }
.hero-sub { font-size: 19px; line-height: 28px; color: var(--sf-fg-secondary); max-width: 58ch; }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.hero-fine { font-size: 13px; line-height: 18px; color: var(--sf-fg-muted); }

/* demo */
.demo-wrap { width: 100%; margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.demo-tabs { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.demo-tab {
  height: 34px; padding: 0 12px; border-radius: 9999px;
  border: 1px solid var(--sf-border); background: var(--sf-bg); color: var(--sf-fg-secondary);
  font-size: 13px; font-weight: 500; cursor: pointer; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 7px;
  transition: all 200ms var(--sf-ease-out);
}
.demo-tab .ic { width: 15px; height: 15px; }
.demo-tab:hover { background: var(--sf-bg-secondary); }
.demo-tab.active { border-color: var(--sf-primary); background: var(--sf-primary-tint); color: var(--sf-primary); }
.demo-frame {
  border: 1px solid var(--sf-border); border-radius: var(--radius-sf-xl); background: var(--sf-bg);
  box-shadow: var(--sf-shadow-lg); overflow: hidden; text-align: left;
}
.demo-bar {
  height: 40px; border-bottom: 1px solid var(--sf-border); display: flex; align-items: center; gap: 12px;
  padding: 0 14px; background: var(--sf-bg-secondary);
}
.demo-dots { display: flex; gap: 6px; }
.demo-dots span { width: 10px; height: 10px; border-radius: 9999px; background: var(--sf-border-strong); }
.demo-url {
  flex: 1; max-width: 420px; margin: 0 auto; height: 24px; border-radius: 5px;
  background: var(--sf-bg); border: 1px solid var(--sf-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--sf-fg-secondary); font-family: var(--font-mono);
}
.demo-status {
  margin-left: auto; font-size: 12px; line-height: 16px; color: var(--sf-primary);
  display: inline-flex; align-items: center; gap: 5px; font-weight: 500; white-space: nowrap; transition: color 300ms;
}
.demo-status::before { content: ""; width: 6px; height: 6px; border-radius: 9999px; background: currentColor; }
.demo-status.done { color: var(--sf-success-fg); }
.demo { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(240px, 1fr); height: 460px; background: var(--sf-bg-secondary); }
.demo-art {
  padding: 20px; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--sf-border); min-height: 0;
}
.demo-log { padding: 20px; display: flex; flex-direction: column; gap: 12px; background: var(--sf-bg); min-height: 0; overflow: hidden; }
.demo-log-head { display: flex; align-items: center; gap: 8px; }
.demo-log-head .ava { display: flex; width: 24px; height: 24px; align-items: center; justify-content: center; border-radius: 9999px; background: var(--sf-primary); color: var(--sf-fg-on-primary); }
.demo-log-head .ava .ic { width: 14px; height: 14px; }
.demo-log-head strong { font-size: 13px; line-height: 18px; font-weight: 600; }
.demo-clock { margin-left: auto; font-size: 12px; color: var(--sf-fg-muted); font-variant-numeric: tabular-nums; }
.log-list { display: flex; flex-direction: column; gap: 10px; }
.log-line {
  display: flex; gap: 10px; align-items: flex-start;
  opacity: 0; transform: translateY(6px); transition: all 350ms var(--sf-ease-out);
}
.log-line.on { opacity: 1; transform: none; }
.log-dot {
  display: flex; width: 18px; height: 18px; flex-shrink: 0; align-items: center; justify-content: center;
  border-radius: 9999px; margin-top: 1px; background: var(--sf-success-surface); color: var(--sf-success-fg); transition: all 300ms;
}
.log-dot .ic { width: 11px; height: 11px; }
.log-dot .ic-loader { display: none; }
.log-line.cur .log-dot { background: var(--sf-primary); color: var(--sf-fg-on-primary); }
.log-line.cur .log-dot .ic-check { display: none; }
.log-line.cur .log-dot .ic-loader { display: inline-flex; animation: sfSpin 900ms linear infinite; }
.log-text { font-size: 13px; line-height: 18px; color: var(--sf-fg-secondary); text-wrap: pretty; }
.log-line.cur .log-text { color: var(--sf-fg); }
.demo-done { margin-top: auto; display: flex; gap: 8px; align-items: center; opacity: 0; transition: opacity 400ms; }
.demo-done.on { opacity: 1; }
.demo-done .pill { gap: 5px; }
.demo-done .pill .ic { width: 12px; height: 12px; }
.demo-done a { font-size: 12px; line-height: 16px; color: var(--sf-fg-muted); }
@keyframes sfSpin { to { transform: rotate(360deg); } }
@keyframes sfBlink { to { visibility: hidden; } }

/* artifact cards inside the demo */
.art {
  width: 100%; display: flex; flex-direction: column; max-height: 100%;
  border: 1px solid var(--sf-border); border-radius: var(--radius-sf-lg); background: var(--sf-bg);
  box-shadow: var(--sf-shadow-md); overflow: hidden; font-size: 13px; line-height: 18px;
}
.art-head { display: flex; align-items: center; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--sf-border); }
.art-head.tight { padding: 10px 14px; justify-content: space-between; }
.art-head .title { font-size: 13px; line-height: 16px; font-weight: 600; }
.art-head .sub { font-size: 11px; line-height: 14px; color: var(--sf-fg-muted); }
.art-head .col { display: flex; flex-direction: column; }
.art-head .right { margin-left: auto; }
.avatar {
  width: 28px; height: 28px; border-radius: 9999px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600;
}
.avatar.info { background: var(--sf-info-surface); color: var(--sf-info-fg); }
.avatar.success { background: var(--sf-success-surface); color: var(--sf-success-fg); }
.avatar.photo { background: linear-gradient(135deg, #d9d2c4, #6f675a); }
.art-foot {
  padding: 10px 14px; border-top: 1px solid var(--sf-border); display: flex; justify-content: space-between;
  align-items: center; font-size: 12px; color: var(--sf-fg-muted);
}
.art-foot a { font-weight: 500; }

/* pills / badges */
.pill {
  display: inline-flex; align-items: center; font-size: 11px; line-height: 16px; font-weight: 500;
  padding: 1px 8px; border-radius: 9999px; white-space: nowrap; transition: all 300ms;
  background: var(--sf-bg-tertiary); color: var(--sf-fg-muted);
}
.pill.success { background: var(--sf-success-surface); color: var(--sf-success-fg); }
.pill.warning { background: var(--sf-warning-surface); color: var(--sf-warning-fg); }
.pill.info { background: var(--sf-info-surface); color: var(--sf-info-fg); }
.pill.neutral { background: var(--sf-bg-tertiary); color: var(--sf-fg-muted); }
.pill.md { font-size: 12px; padding: 3px 10px; }

/* reveal primitives */
.fx { opacity: 0; transform: translateY(6px); transition: all 300ms var(--sf-ease-out); }
.fx.on { opacity: 1; transform: none; }
.fx-fade { opacity: 0; transition: opacity 300ms; }
.fx-fade.on { opacity: 1; }
.fx-x { opacity: 0; transform: translateX(8px); transition: all 300ms var(--sf-ease-out); }
.fx-x.on { opacity: 1; transform: none; }
.fx-scale { opacity: 0; transform: scale(1.04); transition: opacity 500ms var(--sf-ease-out), transform 700ms var(--sf-ease-out); }
.fx-scale.on { opacity: 1; transform: none; }
.fx-inv { opacity: 1; transition: opacity 300ms; }
.fx-inv.on { opacity: 0; }
.fx-pop { opacity: 0; transform: scale(0.6); transform-origin: left center; transition: opacity 300ms var(--sf-ease-out), transform 300ms var(--sf-ease-out); }
.fx-pop.on { opacity: 1; transform: none; }
.delay-150 { transition-delay: 150ms; }

/* chat */
.chat { padding: 14px; display: flex; flex-direction: column; gap: 10px; font-size: 14px; line-height: 20px; }
.bubble { max-width: 85%; padding: 8px 12px; }
.bubble.them { align-self: flex-start; border-radius: 14px 14px 14px 4px; background: var(--sf-bg-tertiary); }
.bubble.us { align-self: flex-end; border-radius: 14px 14px 4px 14px; background: var(--sf-primary); color: var(--sf-fg-on-primary); }
.chat-note { align-self: flex-start; font-size: 12px; color: var(--sf-fg-muted); display: flex; gap: 6px; align-items: center; }
.chat-note .ic { width: 12px; height: 12px; color: var(--sf-success-fg); }
.chat-sent { align-self: flex-end; font-size: 11px; color: var(--sf-fg-muted); }
.room-card {
  align-self: flex-end; width: 280px; max-width: 85%; border: 1px solid var(--sf-border);
  border-radius: var(--radius-sf-lg); overflow: hidden; background: var(--sf-bg);
}
.room-card img { width: 100%; height: 96px; object-fit: cover; display: block; }
.room-card-body { padding: 10px 12px; display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.room-card-body .col { display: flex; flex-direction: column; }
.room-card-body .name { font-size: 13px; line-height: 18px; font-weight: 600; }
.room-card-body .dates { font-size: 12px; line-height: 16px; color: var(--sf-fg-muted); }
.room-card-body .price { font-size: 14px; font-weight: 600; font-variant-numeric: tabular-nums; }
.chat-chip {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; border-radius: var(--radius-sf-md); font-size: 13px;
}
.chat-chip.link { align-self: flex-end; border: 1px solid var(--sf-border); background: var(--sf-bg-secondary); }
.chat-chip.link .ic { width: 14px; height: 14px; color: var(--sf-fg-muted); }
.chat-chip.paid { align-self: flex-start; background: var(--sf-success-surface); color: var(--sf-success-fg); font-weight: 500; }
.chat-chip.paid .ic { width: 14px; height: 14px; }

/* social post — drawn as an Instagram feed post so it reads instantly */
.art.ig { max-width: 400px; margin: 0 auto; font-size: 13px; line-height: 18px; }
.ig-head { display: flex; align-items: center; gap: 10px; padding: 10px 12px; }
.ig-head .col { display: flex; flex-direction: column; min-width: 0; }
.ig-ring { display: inline-flex; padding: 2px; border-radius: 9999px; background: linear-gradient(45deg, #f9ce34, #ee2a7b 55%, #6228d7); flex-shrink: 0; }
.ig-ring .avatar { width: 30px; height: 30px; border: 2px solid var(--sf-bg); }
.ig-handle { font-size: 13px; line-height: 16px; font-weight: 600; }
.ig-sub { font-size: 11px; line-height: 14px; color: var(--sf-fg-muted); }
.ig-media { height: 210px; }
.ig-actions { display: flex; align-items: center; gap: 14px; padding: 10px 12px 6px; color: var(--sf-fg); }
.ig-actions .ic { width: 22px; height: 22px; }
.ig-actions .ic svg { stroke-width: 1.7; }
.ig-actions .ig-save { margin-left: auto; display: inline-flex; }
.ig-body { padding: 0 12px 12px; display: flex; flex-direction: column; gap: 4px; }
.ig-body .caption { font-size: 13px; line-height: 18px; min-height: 36px; }
.ig-body .caption b { font-weight: 600; }
.ig-body .tags { font-size: 13px; line-height: 18px; color: var(--sf-info-fg); }
.ig-time { font-size: 11px; line-height: 14px; color: var(--sf-fg-muted); margin-top: 4px; transition: color 300ms; }

.post-media { height: 170px; background: var(--sf-bg-tertiary); position: relative; overflow: hidden; }
.post-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* "working" skeleton over a media area until the photo lands */
.media-skeleton {
  position: absolute; inset: 0; overflow: hidden; background: var(--sf-bg-tertiary);
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: var(--sf-fg-muted);
}
.media-skeleton::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 25%, var(--sf-shimmer) 50%, transparent 75%);
  transform: translateX(-100%); animation: sfShimmer 1.5s var(--sf-ease-out) infinite;
}
.media-skeleton .ic { width: 14px; height: 14px; color: var(--sf-primary); animation: sfSpin 900ms linear infinite; position: relative; }
.media-skeleton.on { pointer-events: none; }
@keyframes sfShimmer { to { transform: translateX(100%); } }
.post-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; min-height: 96px; }
.post-body .caption { font-size: 14px; line-height: 20px; min-height: 40px; }
.caret { display: none; width: 2px; height: 16px; background: var(--sf-primary); vertical-align: -3px; margin-left: 1px; animation: sfBlink 1s steps(2) infinite; }
.caret.on { display: inline-block; }
.post-body .tags { font-size: 13px; line-height: 18px; color: var(--sf-primary); }

/* marketing calendar */
.cal-head { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-bottom: 1px solid var(--sf-border); font-size: 12px; line-height: 16px; }
.cal-head .month { font-weight: 600; font-size: 13px; }
.cal-head .count { color: var(--sf-fg-muted); }
.cal-legend { margin-left: auto; display: flex; gap: 10px; }
.cal-legend span { display: inline-flex; align-items: center; gap: 5px; color: var(--sf-fg-secondary); font-size: 11px; }
.cal-legend i { width: 8px; height: 8px; border-radius: 2px; display: inline-block; }
.cal-dow {
  display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); border-bottom: 1px solid var(--sf-border);
  background: var(--sf-bg-secondary); color: var(--sf-fg-muted); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em;
}
.cal-dow span { padding: 5px 8px; }
.cal-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); grid-auto-rows: minmax(56px, 1fr); flex: 1; }
.cal-cell {
  padding: 5px 6px; border-right: 1px solid var(--sf-border); border-bottom: 1px solid var(--sf-border);
  display: flex; flex-direction: column; gap: 3px; min-width: 0; background: var(--sf-bg);
}
.cal-cell.weekend { background: var(--sf-bg-secondary); }
.cal-cell.blank { background: transparent; }
.cal-cell .d { font-size: 11px; color: var(--sf-fg-muted); font-variant-numeric: tabular-nums; }
.cal-item {
  font-size: 10px; line-height: 14px; font-weight: 500; padding: 0 5px; border-radius: 3px; color: var(--sf-fg-on-cat);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

/* rates table */
.art table { width: 100%; border-collapse: collapse; }
.art thead tr { color: var(--sf-fg-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.04em; }
.art th { text-align: left; padding: 8px 14px; font-weight: 500; }
.art th.r, .art td.r { text-align: right; }
.art tbody tr { border-top: 1px solid var(--sf-border); }
.art td { padding: 10px 14px; }
.art td.was { color: var(--sf-fg-muted); font-variant-numeric: tabular-nums; }
.art td.now { font-weight: 600; font-variant-numeric: tabular-nums; transition: color 300ms; }
.art td.now.up { color: var(--sf-primary); }
.strike { text-decoration: line-through; }
.chan { display: flex; justify-content: flex-end; gap: 4px; }
.chan span { width: 16px; height: 16px; border-radius: 4px; opacity: 0; transition: opacity 300ms; }
.chan span:nth-child(2) { transition-delay: 100ms; }
.chan span:nth-child(3) { transition-delay: 200ms; }
.chan.on span { opacity: 1; }

/* comp set */
.comp-list { padding: 4px 0; }
.comp-row { display: grid; grid-template-columns: minmax(0, 1.3fr) 44px minmax(0, 1fr) 88px; align-items: center; gap: 12px; padding: 8px 14px; }
.comp-row.you { background: color-mix(in oklab, var(--sf-primary) 5%, transparent); font-weight: 600; }
.comp-row .name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.comp-row .rating { font-size: 12px; color: var(--sf-fg-muted); font-variant-numeric: tabular-nums; }
.bar { height: 6px; border-radius: 9999px; background: var(--sf-bg-tertiary); overflow: hidden; }
.bar i { display: block; height: 100%; border-radius: 9999px; background: var(--sf-border-strong); transition: width 600ms var(--sf-ease-out), background 300ms; }
.comp-row.you .bar i { background: var(--sf-primary); }
.comp-row .price { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
.comp-row .price .was { color: var(--sf-fg-muted); font-size: 12px; margin-right: 6px; text-decoration: line-through; }
.comp-row .price .now { font-weight: 600; transition: color 300ms; }
.comp-row .price .now.moved { color: var(--sf-warning-fg); }
.comp-row.you .price .now.moved { color: var(--sf-primary); }

/* reviews */
.review-body { padding: 14px; display: flex; flex-direction: column; gap: 12px; }
.stars { display: flex; gap: 2px; color: #d9a21b; font-size: 14px; line-height: 16px; }
.stars .off { color: var(--sf-border-strong); }
.review-body p { font-size: 14px; line-height: 21px; color: var(--sf-fg); }
.review-reply {
  margin: 0 14px 14px; padding: 12px 14px; border-left: 3px solid var(--sf-primary); background: var(--sf-bg-secondary);
  border-radius: 0 var(--radius-sf-md) var(--radius-sf-md) 0; display: flex; flex-direction: column; gap: 6px;
}
.review-reply .label { font-size: 11px; line-height: 14px; font-weight: 600; color: var(--sf-fg-secondary); text-transform: uppercase; letter-spacing: 0.04em; }
.review-reply p { font-size: 14px; line-height: 21px; min-height: 42px; }

/* blog */
.blog { color: #1c3a5e; background: #fff; border-color: #ece9e2; }
.blog .art-head { padding: 10px 16px; border-bottom-color: #ece9e2; font-size: 12px; }
.blog .art-head .site-name { font-family: var(--font-display); font-weight: 600; font-size: 14px; }
.blog .art-head .right { color: #5a6472; }
.blog-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; min-height: 0; }
.blog-media { position: relative; height: 140px; flex-shrink: 0; border-radius: 8px; overflow: hidden; background: var(--sf-bg-tertiary); }
.blog-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-body .kicker { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: #5a6472; }
.blog-body .title { font-family: var(--font-display); font-size: 18px; line-height: 24px; font-weight: 600; min-height: 24px; }
.blog-body .excerpt { font-size: 13px; line-height: 19px; color: #5a6472; min-height: 38px; }
.blog-foot { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: #5a6472; }
.blog-foot .live { display: inline-flex; gap: 6px; align-items: center; }
.blog-foot .live::before { content: ""; width: 6px; height: 6px; border-radius: 9999px; background: var(--sf-success-fg); }

/* housekeeping */
.hk-list { padding: 6px 0; }
.hk-row { display: flex; align-items: center; gap: 12px; padding: 8px 14px; }
.hk-row .room { width: 36px; font-weight: 600; font-variant-numeric: tabular-nums; }
.hk-row .note { flex: 1; color: var(--sf-fg-secondary); }
.who {
  display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500;
  padding: 2px 8px 2px 3px; border-radius: 9999px; background: var(--sf-bg-tertiary); color: var(--sf-fg);
}
.who i {
  width: 18px; height: 18px; border-radius: 9999px; color: var(--sf-fg-on-cat); display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 600; font-style: normal;
}
.who.maint { background: var(--sf-warning-surface); color: var(--sf-warning-fg); }
.who.maint i { background: var(--sf-warning-fg); }

/* supplies */
.sup-list { padding: 4px 0; border-bottom: 1px solid var(--sf-border); }
.sup-row { display: flex; align-items: center; gap: 12px; padding: 7px 14px; }
.sup-row.hot { background: color-mix(in oklab, var(--sf-primary) 4%, transparent); }
.sup-row .name { flex: 1; font-weight: 500; }
.sup-row .cat { color: var(--sf-fg-muted); font-size: 12px; }
.sup-row .qty { width: 44px; text-align: right; font-variant-numeric: tabular-nums; font-weight: 600; }
.sup-body { padding: 12px 14px; display: flex; flex-direction: column; gap: 10px; }
.sup-meta { display: flex; justify-content: space-between; font-size: 12px; color: var(--sf-fg-muted); }
.sup-meta b { font-variant-numeric: tabular-nums; color: var(--sf-fg); font-weight: 500; }
.sup-bar i { background: var(--sf-warning-fg); }
.sup-bar.ok i { background: var(--sf-success-fg); }
.steps { display: flex; align-items: center; margin-top: 6px; }
.step { display: flex; align-items: center; flex: 1; min-width: 0; }
.step .node { display: flex; flex-direction: column; align-items: center; gap: 4px; min-width: 0; }
.step .dot {
  display: flex; width: 20px; height: 20px; align-items: center; justify-content: center; border-radius: 9999px;
  background: var(--sf-bg-tertiary); color: var(--sf-fg-subtle); transition: all 300ms;
}
.step .dot .ic { width: 11px; height: 11px; display: none; }
.step .lbl { font-size: 11px; line-height: 14px; color: var(--sf-fg-muted); white-space: nowrap; }
.step .line { height: 1px; flex: 1; margin: 0 6px 18px; background: var(--sf-border); transition: background 300ms; }
.step.on .dot { background: var(--sf-primary); color: var(--sf-fg-on-primary); }
.step.on .dot .ic { display: inline-flex; }
.step.on .lbl { color: var(--sf-fg); }
.step.line-on .line { background: var(--sf-primary); }
.tracking { font-size: 12px; line-height: 16px; color: var(--sf-fg-muted); font-family: var(--font-mono); }

@media (max-width: 760px) {
  .demo { grid-template-columns: minmax(0, 1fr); height: auto; }
  .demo-art { border-right: 0; border-bottom: 1px solid var(--sf-border); }
  .demo-url { display: none; }
  .demo-log { max-height: 220px; }
}

/* ---------- outcomes ---------- */
.outcomes-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
@media (max-width: 900px) { .outcomes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .outcomes-grid { grid-template-columns: minmax(0, 1fr); } }
.outcome {
  border: 1px solid var(--sf-border); border-radius: var(--radius-sf-lg); padding: 24px;
  display: flex; flex-direction: column; gap: 14px; background: var(--sf-bg);
}
.outcome .icon {
  display: flex; width: 40px; height: 40px; align-items: center; justify-content: center;
  border-radius: var(--radius-sf-md); background: var(--sf-primary-tint); color: var(--sf-primary);
}
.outcome .icon .ic { width: 20px; height: 20px; }
.outcome h3 { font-size: 20px; line-height: 26px; font-weight: 600; letter-spacing: -0.012em; }
.outcome .body { font-size: 15px; line-height: 22px; color: var(--sf-fg-secondary); flex: 1; }
.outcome .where { font-size: 13px; line-height: 18px; color: var(--sf-fg-muted); display: flex; gap: 6px; align-items: baseline; }
.outcome .where b { font-weight: 600; color: var(--sf-fg-secondary); white-space: nowrap; }

/* ---------- ava ---------- */
.ava-panel {
  max-width: 1200px; margin: 0 auto; border-radius: var(--radius-sf-xl); background: var(--sf-panel-bg); color: var(--sf-panel-fg); border: 1px solid var(--sf-panel-border);
  padding: clamp(32px, 5vw, 64px); display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px; align-items: center;
}
.ava-panel .copy { display: flex; flex-direction: column; gap: 16px; }
.ava-tag { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.ava-tag .ava { display: flex; width: 32px; height: 32px; align-items: center; justify-content: center; border-radius: 9999px; background: var(--sf-primary); color: var(--sf-fg-on-primary); }
.ava-tag .ava .ic { width: 18px; height: 18px; }
.ava-panel h2 { font-size: clamp(28px, 3.4vw, 40px); line-height: 1.12; font-weight: 700; letter-spacing: -0.022em; }
.ava-panel .lead { color: var(--sf-panel-fg-muted); }
.prompts { display: flex; flex-direction: column; gap: 10px; }
.prompt {
  display: flex; flex-direction: column; gap: 8px; padding: 14px 16px; border-radius: var(--radius-sf-lg);
  background: var(--sf-panel-fill); border: 1px solid var(--sf-panel-border);
}
.prompt .ask { font-size: 15px; line-height: 22px; color: var(--sf-panel-fg); }
.prompt .did { font-size: 13px; line-height: 18px; color: var(--sf-panel-fg-subtle); display: flex; gap: 8px; align-items: center; }
.prompt .did .ic { width: 14px; height: 14px; color: #82cfa9; }

/* ---------- day ---------- */
@media (min-width: 700px) { .day-copy { position: sticky; top: 96px; } }
.timeline { display: flex; flex-direction: column; border-left: 1px solid var(--sf-border); margin-left: 8px; }
.tl-item { display: flex; gap: 20px; padding: 0 0 28px 24px; position: relative; }
.tl-item::before {
  content: ""; position: absolute; left: -5px; top: 6px; width: 9px; height: 9px; border-radius: 9999px;
  background: var(--sf-primary); box-shadow: 0 0 0 3px var(--sf-bg);
}
.tl-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.tl-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.tl-time { font-size: 13px; line-height: 18px; font-weight: 500; color: var(--sf-fg-muted); font-variant-numeric: tabular-nums; }
.tl-mod { font-size: 12px; line-height: 16px; font-weight: 500; padding: 1px 8px; border-radius: 9999px; background: var(--sf-bg-tertiary); color: var(--sf-fg-secondary); }
.tl-text { font-size: 15px; line-height: 22px; color: var(--sf-fg); }

/* ---------- platform ---------- */
.modules { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.module {
  display: flex; gap: 12px; align-items: flex-start; padding: 16px; border: 1px solid var(--sf-border);
  border-radius: var(--radius-sf-lg); background: var(--sf-bg-secondary);
}
.module .ic { width: 18px; height: 18px; color: var(--sf-primary); flex-shrink: 0; margin-top: 2px; }
.module .col { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.module .name { font-size: 15px; line-height: 20px; font-weight: 600; }
.module .desc { font-size: 13px; line-height: 18px; color: var(--sf-fg-secondary); }

/* ---------- pricing ---------- */
.pricing-points { margin-top: 8px; display: flex; flex-direction: column; gap: 10px; }
.pricing-points li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 22px; }
.pricing-points .ic { width: 18px; height: 18px; color: var(--sf-success-fg); margin-top: 2px; }
.price-card {
  border: 1px solid var(--sf-border); border-radius: var(--radius-sf-xl); padding: 32px;
  display: flex; flex-direction: column; gap: 24px; background: var(--sf-bg); box-shadow: var(--sf-shadow-md);
}
.price-top { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.seg { display: inline-flex; padding: 3px; border-radius: 9999px; background: var(--sf-bg-tertiary); }
.seg button {
  height: 30px; padding: 0 14px; border: 0; border-radius: 9999px; font-size: 13px; font-weight: 500; cursor: pointer;
  background: transparent; color: var(--sf-fg-secondary); transition: all 200ms var(--sf-ease-out);
}
.seg button[aria-pressed="true"] { background: var(--sf-segment-thumb); color: var(--sf-fg); box-shadow: var(--sf-shadow-md); }
.save-pill { font-size: 12px; line-height: 16px; font-weight: 600; padding: 2px 8px; border-radius: 9999px; background: var(--sf-success-surface); color: var(--sf-success-fg); }
.rooms { display: flex; flex-direction: column; gap: 10px; }
.rooms-label { display: flex; justify-content: space-between; font-size: 14px; line-height: 20px; }
.rooms-label b { font-weight: 500; }
.rooms-label span { font-variant-numeric: tabular-nums; color: var(--sf-fg-secondary); }
.rooms input[type="range"] { width: 100%; accent-color: var(--sf-primary); margin: 0; }
.ticks { position: relative; height: 18px; font-size: 11px; line-height: 16px; color: var(--sf-fg-muted); font-variant-numeric: tabular-nums; }
.tick.start { transform: none; align-items: flex-start; }
.tick { position: absolute; display: flex; flex-direction: column; align-items: center; transform: translateX(-50%); }
.tick.end { transform: translateX(-100%); }
.tick i { width: 1px; height: 4px; background: var(--sf-border-strong); display: block; }
.price-line { display: flex; flex-direction: column; gap: 4px; }
.price-row { display: flex; align-items: baseline; gap: 6px; }
.price-big { font-family: var(--font-display); font-size: 48px; line-height: 52px; font-weight: 700; letter-spacing: -0.03em; font-variant-numeric: tabular-nums; }
.price-per { font-size: 15px; color: var(--sf-fg-secondary); }
.price-note { font-size: 13px; line-height: 18px; color: var(--sf-fg-muted); }
.price-fine { text-align: center; font-size: 13px; line-height: 18px; color: var(--sf-fg-muted); }

/* ---------- compare ---------- */
.cmp { overflow-x: auto; border: 1px solid var(--sf-border); border-radius: var(--radius-sf-lg); }
.cmp table { width: 100%; min-width: 560px; border-collapse: collapse; font-size: 14px; line-height: 20px; }
.cmp thead tr, .cmp tfoot tr { background: var(--sf-bg-secondary); }
.cmp th { text-align: left; padding: 12px 16px; font-weight: 600; border-bottom: 1px solid var(--sf-border); }
.cmp th.cap { width: 40%; }
.cmp th.sf { color: var(--sf-primary); }
.cmp td { padding: 10px 16px; border-bottom: 1px solid var(--sf-border); }
.cmp td.cap { font-weight: 500; }
.cmp td.sf { color: var(--sf-success-fg); font-weight: 500; white-space: nowrap; }
.cmp td.sf.soon { color: var(--sf-fg-muted); font-weight: 400; }
.cmp td.old { color: var(--sf-fg-secondary); font-variant-numeric: tabular-nums; white-space: nowrap; }
.cmp tfoot td { padding: 14px 16px; font-weight: 600; border-bottom: 0; }
.cmp tfoot td.sf, .cmp tfoot td.old { font-weight: 700; font-family: var(--font-display); font-size: 18px; white-space: nowrap; }
.cmp tfoot td.sf { color: var(--sf-primary); }
.cmp tfoot td.old { font-variant-numeric: tabular-nums; color: var(--sf-fg); }
.cmp-short { display: none; }
.cmp-short .ic { width: 16px; height: 16px; vertical-align: -3px; }
@media (max-width: 600px) {
  .cmp table { min-width: 0; }
  .cmp-full { display: none; }
  .cmp-short { display: inline; }
  .cmp td, .cmp th { padding-left: 10px; padding-right: 10px; white-space: normal; }
  .cmp tfoot td { font-size: 15px; }
}

.stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.stat { border: 1px solid var(--sf-border); border-radius: var(--radius-sf-lg); background: var(--sf-bg-secondary); padding: 20px 24px; display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.stat-value { font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 32px); line-height: 1.1; font-weight: 700; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.stat-value s { color: var(--sf-fg-subtle); font-weight: 500; text-decoration-thickness: 2px; margin-right: 6px; }
.stat-label { font-size: 13px; line-height: 18px; color: var(--sf-fg-secondary); }
@media (max-width: 640px) { .stats { grid-template-columns: minmax(0, 1fr); } .stat { flex-direction: row; align-items: baseline; justify-content: space-between; } }

/* ---------- founder ---------- */
.founder { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
.founder .quote-mark { width: 28px; height: 28px; color: var(--sf-primary); }
.founder blockquote {
  margin: 0; font-family: var(--font-display); font-size: clamp(22px, 2.6vw, 30px); line-height: 1.3;
  font-weight: 500; letter-spacing: -0.012em; text-wrap: pretty;
}
.founder-by { display: flex; align-items: center; gap: 12px; }
.founder-by img {
  width: 44px; height: 44px; border-radius: 9999px; object-fit: cover; object-position: top;
  background: var(--sf-bg-tertiary); border: 1px solid var(--sf-border); flex-shrink: 0;
}
.founder-by .col { display: flex; flex-direction: column; }
.founder-by .name { font-size: 15px; line-height: 20px; font-weight: 600; }
.founder-by .role { font-size: 13px; line-height: 18px; color: var(--sf-fg-secondary); }

/* ---------- faq ---------- */
.faq-list { display: flex; flex-direction: column; border-top: 1px solid var(--sf-border); }
.faq-list details { border-bottom: 1px solid var(--sf-border); }
.faq-list summary {
  cursor: pointer; list-style: none; padding: 18px 0; font-size: 17px; line-height: 24px; font-weight: 600;
  display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary .ic { width: 18px; height: 18px; color: var(--sf-fg-muted); transition: transform 200ms var(--sf-ease-out); }
.faq-list details[open] summary .ic { transform: rotate(180deg); }
.faq-list p { padding: 0 0 20px; font-size: 15px; line-height: 23px; color: var(--sf-fg-secondary); max-width: 60ch; }

/* ---------- cta ---------- */
.cta-section { padding: 112px 24px 96px; }
.cta-panel {
  max-width: 1200px; margin: 0 auto; border: 1px solid var(--sf-border); border-radius: var(--radius-sf-xl);
  background: var(--sf-bg-secondary); padding: clamp(32px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center;
}
.cta-copy { display: flex; flex-direction: column; gap: 14px; }
.cta-fine { font-size: 13px; line-height: 18px; color: var(--sf-fg-muted); }
.waitlist {
  display: flex; flex-direction: column; gap: 12px; background: var(--sf-bg); border: 1px solid var(--sf-border);
  border-radius: var(--radius-sf-lg); padding: 24px; box-shadow: var(--sf-shadow-md);
}
.field { display: flex; flex-direction: column; gap: 6px; font-size: 12px; line-height: 16px; font-weight: 500; color: var(--sf-fg-secondary); }
.field input {
  height: 44px; border: 1px solid var(--sf-border-control); border-radius: var(--radius-sf-md); background: var(--sf-fill);
  padding: 0 12px; font: inherit; font-size: 15px; color: var(--sf-fg); width: 100%;
  transition: border-color 150ms, box-shadow 150ms;
}
.field input::placeholder { color: var(--sf-fg-subtle); }
.field input:focus { border-color: var(--sf-primary); box-shadow: var(--sf-focus-halo); }
.waitlist .btn { border: 0; }
.waitlist-fine { text-align: center; font-size: 12px; line-height: 16px; color: var(--sf-fg-muted); }
.waitlist-error {
  margin: 0; padding: 10px 12px; border-radius: var(--radius-sf-md); font-size: 13px; line-height: 18px;
  background: var(--sf-critical-surface); color: var(--sf-critical-fg); border: 1px solid var(--sf-critical-border);
}
.waitlist-error[hidden] { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ---------- tour ---------- */
.tour { max-width: 1000px; margin: 0 auto; padding: 64px 24px 0; display: flex; flex-direction: column; gap: 28px; }
.tour .section-head { max-width: 720px; }
.tour-frame { border: 1px solid var(--sf-border); border-radius: var(--radius-sf-xl); overflow: hidden; background: #000; box-shadow: var(--sf-shadow-lg); }
.tour-frame video { display: block; width: 100%; height: auto; aspect-ratio: 16 / 9; }
.tour-note { font-size: 13px; line-height: 18px; color: var(--sf-fg-muted); }
.tour + .cta-section { padding-top: 80px; }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--sf-border); padding: 40px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; align-items: flex-start; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; max-width: 320px; }
.footer-brand img { height: 24px; width: auto; align-self: flex-start; }
.footer-brand p { font-size: 13px; line-height: 18px; color: var(--sf-fg-secondary); }
.footer-cols { display: flex; gap: 48px; flex-wrap: wrap; font-size: 13px; line-height: 18px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col b { font-weight: 600; }
.footer-col a { color: var(--sf-fg-secondary); }
.footer-bottom {
  max-width: 1200px; margin: 32px auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { margin: 0; font-size: 12px; line-height: 16px; color: var(--sf-fg-muted); }

@media (prefers-reduced-motion: reduce) {
  .fx, .fx-fade, .fx-x, .fx-scale, .fx-inv, .fx-pop, .log-line, .demo-done, .chan span, .bar i, .demo-tab, .step .dot { transition: none; }
  .caret, .log-line.cur .log-dot .ic-loader, .media-skeleton::before, .media-skeleton .ic { animation: none; }
}

/* ---------- subpages: legal documents ---------- */
.doc { max-width: 760px; margin: 0 auto; padding: 64px 24px 96px; }
.doc-title { font-size: clamp(32px, 4.4vw, 44px); line-height: 1.1; font-weight: 700; letter-spacing: -0.024em; margin-top: 12px; }
.doc-meta { font-size: 13px; line-height: 18px; color: var(--sf-fg-muted); margin-top: 12px; }
.doc-intro { font-size: 17px; line-height: 27px; color: var(--sf-fg-secondary); margin-top: 28px; }
.doc-body { margin-top: 40px; font-size: 15px; line-height: 24px; color: var(--sf-fg-secondary); }
.doc-body h2 { font-size: 20px; line-height: 26px; font-weight: 600; letter-spacing: -0.012em; color: var(--sf-fg); margin: 36px 0 10px; }
.doc-body h2:first-child { margin-top: 0; }
.doc-body p { margin: 0 0 12px; }
.doc-body ul, .doc-body ol { list-style: disc; padding-left: 22px; margin: 0 0 14px; }
.doc-body li { margin-bottom: 6px; }
.doc-body a { text-decoration: underline; text-underline-offset: 2px; }
.doc-body strong { color: var(--sf-fg); font-weight: 600; }
.doc-foot { margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--sf-border); font-size: 13px; line-height: 18px; color: var(--sf-fg-muted); display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- subpages: brand ---------- */
.brand { max-width: 1200px; margin: 0 auto; padding: 64px 24px 96px; display: flex; flex-direction: column; gap: 80px; }
.brand-section { display: flex; flex-direction: column; gap: 24px; }
.brand-group { display: flex; flex-direction: column; gap: 12px; }
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.card { border: 1px solid var(--sf-border); border-radius: var(--radius-sf-lg); background: var(--sf-bg); overflow: hidden; display: flex; flex-direction: column; }
.card-stage { padding: 40px; display: flex; align-items: center; justify-content: center; border-bottom: 1px solid var(--sf-border); min-height: 160px; }
.card-stage.dark { background: #181a1b; }
.card-stage.light { background: #ffffff; }
.card-stage.ground { background: var(--sf-bg-secondary); }
.card-stage img { height: 56px; width: auto; max-width: 100%; }
.card-stage img.mark { height: 72px; }
.card-body { padding: 16px 20px 20px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-body h3 { font-size: 15px; line-height: 20px; font-weight: 600; letter-spacing: -0.004em; }
.card-body p { font-size: 13px; line-height: 18px; color: var(--sf-fg-secondary); flex: 1; }
.card-actions { display: flex; gap: 8px; margin-top: 12px; }
.card-actions .btn { flex: 1; }
.spec-list { font-family: var(--font-mono); font-size: 13px; line-height: 20px; color: var(--sf-fg-secondary); display: flex; flex-direction: column; gap: 6px; padding: 20px; }
.subhead { font-size: 15px; line-height: 20px; font-weight: 600; letter-spacing: -0.004em; }
.swatches { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
.swatch { border: 1px solid var(--sf-border); border-radius: var(--radius-sf-lg); overflow: hidden; background: var(--sf-bg); }
.swatch i { display: block; height: 80px; border-bottom: 1px solid var(--sf-border); }
.swatch div { padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.swatch b { font-size: 12px; line-height: 16px; font-weight: 600; font-family: var(--font-mono); }
.swatch span { font-size: 12px; line-height: 16px; color: var(--sf-fg-muted); font-family: var(--font-mono); }
.specimen { padding: 24px; border-bottom: 1px solid var(--sf-border); display: flex; flex-direction: column; gap: 10px; }
.specimen:last-child { border-bottom: 0; }
.specimen .label { font-size: 12px; line-height: 16px; color: var(--sf-fg-muted); font-family: var(--font-mono); }
.specimen .note { font-size: 13px; line-height: 18px; color: var(--sf-fg-secondary); max-width: 60ch; }
.specimen .body-sample { font-size: 14px; line-height: 20px; color: var(--sf-fg); max-width: 60ch; }
.specimen .mono-sample { font-family: var(--font-mono); font-size: 14px; line-height: 20px; }
.tiles { display: flex; gap: 24px; flex-wrap: wrap; }
.tile { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.tile i { display: block; width: 88px; height: 88px; background: var(--sf-primary); }
.tile i.surface { background: var(--sf-bg); border: 1px solid var(--sf-border); }
.tile span { font-size: 12px; line-height: 16px; color: var(--sf-fg-muted); font-family: var(--font-mono); }
.row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; padding: 24px; }
.row.ground { background: var(--sf-bg-secondary); }

/* The guest-site mock keeps its own light palette in light mode; in dark it joins the room. */
:root[data-theme="dark"] .blog { background: var(--sf-bg); color: var(--sf-fg); border-color: var(--sf-border); }
:root[data-theme="dark"] .blog .art-head { border-bottom-color: var(--sf-border); }
:root[data-theme="dark"] .blog .art-head .right,
:root[data-theme="dark"] .blog-body .kicker,
:root[data-theme="dark"] .blog-body .excerpt,
:root[data-theme="dark"] .blog-foot { color: var(--sf-fg-secondary); }
