/* NanoPorter — direction H, "light editorial", 10 September 2026.
   Built on sample E's code (the rail, the arrival waves, the CSS VAT toggle, the details/summary
   FAQ, the pricing grid) and taken light: the whole page on the brand's LIGHT token set, one
   ground, hairlines instead of cards, type doing the drama, and dark used in exactly one place,
   the "Pick a look" room, faded at its edges. Only transform and opacity animate. Every word is
   in the HTML at first byte. */

@font-face {
  font-family: "InterVar";
  src: url("/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --page:   #F1F7F5;
  --ink:    #0E1618;
  --body:   #28332F;
  --muted:  #5C6E6A;
  --rule:   #BCD4CB;
  --tint:   #E7F1EC;
  --accent: #0D7C56;
  --accent-deep: #0A6647;
  --white:  #FFFFFF;
  --dark:   #0E1618;          /* the one dark room */
  --dark-ink: #F1F7F5;
  --dark-body: #D3E2DD;
  --dark-rule: #334441;

  --rail-w: 232px;
  --bar-h: 60px;
  --container: 1200px;
  --gutter: 28px;
  --r-btn: 6px;
  --r-pill: 60px;
  --hair: 1px solid var(--rule);
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-soft: cubic-bezier(.33, .02, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }
html, body { overflow-x: clip; }

body {
  margin: 0;
  background: var(--page);
  color: var(--body);
  font-family: "InterVar", Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh; display: flex; flex-direction: column;
}
main { flex: 1 0 auto; }

h1, h2, h3 { color: var(--ink); font-weight: 500; margin: 0; letter-spacing: -.02em; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
img { max-width: 100%; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.skip { position: absolute; left: -9999px; top: 0; z-index: 99; background: var(--accent); color: #fff; padding: 10px 16px; }
.skip:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-size: 15px; line-height: 20px; font-weight: 500;
  padding: 12px 18px; min-height: 44px;
  border-radius: var(--r-btn);
  text-decoration: none; cursor: pointer;
  transition: transform .25s var(--ease);
}
.btn:active { transform: translateY(1px); }

/* the one accent per screen */
.btn-glow { color: #fff; background: var(--accent); border: 1px solid var(--accent); }
.btn-glow:hover { background: var(--accent-deep); border-color: var(--accent-deep); }

.btn-quiet, .btn-chip { color: var(--ink); background: transparent; border: 1px solid var(--rule); }
.btn-quiet:hover, .btn-chip:hover { border-color: var(--ink); }
.btn-chip { border-radius: var(--r-pill); padding: 12px 20px; text-align: left; }
.btn-chip.is-on, .btn-chip[aria-pressed="true"] { background: var(--ink); color: var(--page); border-color: var(--ink); }

.round {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-grid; place-items: center;
  font-size: 22px; line-height: 1; color: var(--ink);
  background: var(--white); border: 1px solid var(--rule); cursor: pointer;
}
.round:hover { border-color: var(--ink); }

/* ---------------------------------------------------------------- the rail */

.rail {
  position: fixed; z-index: 40;
  inset: 0 0 auto 0;
  height: var(--bar-h);
  display: flex; align-items: center;
  background: rgba(241, 247, 245, .86);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: var(--hair);
}
.rail-inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; gap: 20px; }
.brand { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.lockup { display: block; height: 26px; width: auto; }
.chapters { display: none; }
.rail-sub { display: flex; gap: 18px; margin-inline: auto; }
.rail-sub a { color: var(--body); text-decoration: none; font-size: 14px; }
.rail-sub a:hover { color: var(--ink); }
.rail-sub-more { display: none; }
.rail-cta { flex: 0 0 auto; }

@media (min-width: 1024px) and (orientation: landscape) {
  .rail {
    inset: 0 auto 0 0; width: var(--rail-w); height: auto; display: block;
    background: var(--page); backdrop-filter: none; -webkit-backdrop-filter: none;
    border-bottom: 0; border-right: var(--hair);
  }
  .rail-inner { height: 100%; max-width: none; margin: 0; padding: 30px 26px 28px 30px; display: flex; flex-direction: column; align-items: stretch; gap: 0; overflow-y: auto; scrollbar-width: none; }
  .lockup { height: 30px; }
  /* Zara's numbered list as calm navigation */
  .chapters { display: block; position: relative; margin-top: 40px; }
  .chapters ol { display: flex; flex-direction: column; gap: 2px; }
  .chapters a { display: flex; align-items: baseline; gap: 12px; padding: 6px 0 6px 16px; text-decoration: none; color: var(--muted); font-size: 14px; line-height: 1.3; }
  .chapters a:hover { color: var(--body); }
  .chapters a.is-current { color: var(--ink); }
  .ch-num { font-size: 11px; letter-spacing: .12em; color: var(--muted); flex: 0 0 22px; font-variant-numeric: tabular-nums; }
  .chapters a.is-current .ch-num { color: var(--accent); }
  .ch-tick { position: absolute; left: 0; top: 0; width: 2px; height: 22px; background: var(--accent); transform: translateY(var(--tick-y, 9px)); transition: transform .5s var(--ease), opacity .3s var(--ease); opacity: 0; }
  .js .ch-tick { opacity: 1; }
  .rail-sub { margin: 26px 0 0; padding-top: 18px; border-top: var(--hair); display: flex; flex-wrap: wrap; gap: 8px 16px; }
  .rail-sub a { font-size: 13px; color: var(--muted); }
  .rail-sub a:hover { color: var(--ink); }
  .rail-sub-more { display: inline; }
  .rail-cta { margin-top: auto; align-self: stretch; will-change: transform; }
  main, .foot { padding-left: var(--rail-w); }
  .room-ground { left: calc(-1 * var(--rail-w)); }
}

/* ---------------------------------------------------------------- section rhythm */

.section { padding: 128px 0; position: relative; }
.band { background: var(--tint); }

/* editorial heads: left-aligned with the chapter numeral set huge and ghosted behind */
.head-left { position: relative; max-width: 760px; }
.head-centre { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; position: relative; }
.ghost {
  position: absolute; left: -.04em; top: -.9em; z-index: 0; pointer-events: none;
  font-size: clamp(120px, 15vw, 220px); line-height: 1; font-weight: 200; letter-spacing: -.04em;
  color: var(--rule); opacity: .55; user-select: none;
}
.head-centre .ghost { left: 50%; translate: -50% 0; top: -.9em; }
.head-left > *:not(.ghost), .head-centre > *:not(.ghost) { position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: baseline; gap: 10px; margin-bottom: 18px; font-size: 13px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); }
.eyebrow-num { color: var(--muted); letter-spacing: .12em; font-weight: 500; }
.section-title { font-size: clamp(1.9rem, 3.6vw, 3rem); line-height: 1.08; max-width: 14em; }
.section-title.title-xl { font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.02; letter-spacing: -.03em; max-width: 12em; }
.section-title.title-sm { font-size: clamp(1.6rem, 2.8vw, 2.25rem); line-height: 1.12; }
.head-wide { max-width: 900px; }
.head-centre .section-title { max-width: 16em; }
.section-sub { margin-top: 24px; color: var(--body); max-width: 34em; font-size: 20px; line-height: 1.5; }
.section-sub.wide { max-width: 44em; }
.section-sub + .section-sub { margin-top: 12px; }

/* shared: a copy column beside an artefact */
.two-up { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 64px; align-items: center; }
.two-up-rev .two-up-copy { order: 2; }
.lede { margin-top: 24px; color: var(--body); font-size: 22px; line-height: 1.45; max-width: 28em; }
.lede-2 { margin-top: 16px; color: var(--muted); font-size: 18px; max-width: 30em; }
@media (max-width: 900px) { .two-up { grid-template-columns: 1fr; gap: 40px; } .two-up-rev .two-up-copy { order: 0; } }

/* ---------------------------------------------------------------- 01 the hero: Sunday night */

.hero { padding: 112px 0 96px; }
.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 6px 14px 6px 6px; border-radius: var(--r-pill); border: var(--hair); background: var(--white); font-size: 14px; color: var(--body); }
.badge-pill { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: var(--r-pill); background: var(--accent); color: #fff; font-weight: 600; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.hero-title { margin-top: 26px; font-size: clamp(2.75rem, 7.6vw, 5.75rem); line-height: 1.02; letter-spacing: -.03em; max-width: 11em; }
.hero-sub { margin-top: 24px; max-width: 32em; color: var(--body); font-size: 19px; line-height: 1.5; }
.chips { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
.chips-note { margin-top: 16px; color: var(--muted); font-size: 14px; }

/* the scene: a fixed time, then the real enquiry email filling in beneath it */
.scene { margin-top: 64px; width: 100%; display: flex; flex-direction: column; align-items: center; }
.sunday { font-size: clamp(1.9rem, 4.6vw, 3.5rem); line-height: 1.1; font-weight: 300; letter-spacing: -.02em; color: var(--ink); }
.sunday b { font-weight: 500; }
.stamp { margin-top: 14px; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.hero-card { margin-top: 40px; width: 100%; max-width: 560px; }
.hero-card .email-sheet { max-height: 600px; overflow: hidden; -webkit-mask-image: linear-gradient(#000 74%, transparent 98%); mask-image: linear-gradient(#000 74%, transparent 98%); }

/* ---------------------------------------------------------------- the emails, real HTML, tilted */

.tilt-wrap { perspective: 1200px; }
.tilt { transform: rotateY(-14deg) rotateX(6deg); transform-origin: 50% 50%; transition: transform 1.1s var(--ease); will-change: transform; }
.tilt.tilt-l { transform: rotateY(14deg) rotateX(6deg); }
.tilt.is-in { transform: rotateY(-8deg) rotateX(3deg); }
.tilt.tilt-l.is-in { transform: rotateY(8deg) rotateX(3deg); }
.tilt-wrap:hover .tilt, .tilt-wrap:focus-within .tilt { transform: none; }

.email-sheet {
  position: relative; text-align: left;
  background: var(--white); border: var(--hair); border-radius: 8px;
  padding: 24px 22px;
  box-shadow: 0 30px 60px -20px rgba(13, 124, 86, .28), 0 8px 24px rgba(14, 22, 24, .08);
  /* the inlined email carries its own inline styles; this resets what it inherits from the page */
  font-family: "InterVar", Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 14px; line-height: 1.45; color: #1d1d1f; letter-spacing: 0;
}
.email-sheet table { border-collapse: collapse; }
.email-sheet p, .email-sheet div { margin-top: 0; }
.email-scroll { max-height: 640px; overflow-y: auto; overscroll-behavior: contain; scrollbar-width: thin; padding: 0; }
.email-scroll .fe-fade { opacity: .34; }
.email-caption { margin-top: 18px; color: var(--muted); font-size: 14px; max-width: 32em; }
.email-caption b { color: var(--body); font-weight: 500; }
.disclosure { margin-top: 14px; color: var(--body); font-size: 14px; max-width: 34em; }
/* the Friday email is a 600 px table; the sheet gives it room and lets it shrink */
.friday-sheet { padding: 0; overflow: hidden; }
.friday-sheet .email-scroll > table { width: 100% !important; }

/* the fill: each row of the hero's card goes from nothing to there, once, top to bottom,
   after the copy has landed. CSS keyframes, so it runs with JavaScript off. */
@keyframes fill { from { opacity: 0; transform: translate3d(0, 6px, 0); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------------- 02 the problem: a numbered editorial list */

.beats-list { margin-top: 64px; border-top: var(--hair); }
.beat { display: grid; grid-template-columns: 200px 1fr; gap: 24px 40px; align-items: start; padding: 44px 0 48px; border-bottom: var(--hair); }
.beat-num { font-size: clamp(64px, 9vw, 128px); line-height: .9; font-weight: 200; letter-spacing: -.05em; color: var(--rule); margin-top: -6px; }
.beat-title { font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.15; max-width: 18em; }
.beat-body { margin-top: 14px; color: var(--body); font-size: 18px; max-width: 32em; }
.beats-close { margin: 56px 0 0; max-width: 30em; color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.35; font-weight: 400; }

/* ---------------------------------------------------------------- 04 three voices: one conversation view */

.demo-chips { margin-top: 40px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.demo-chips-left { justify-content: flex-start; }
.handoff-label.handoff-left { margin-inline: 0; text-align: left; max-width: 40em; }
.demo-chips .btn-chip { padding: 12px 18px; font-size: 14px; }
.handoff-label { margin: 26px auto 0; max-width: 40em; text-align: center; color: var(--body); font-size: 16px; }
.demo-tabs { display: none; margin-top: 24px; gap: 8px; justify-content: center; flex-wrap: wrap; }
.demo-tab { flex: 1 1 auto; min-height: 44px; padding: 10px 12px; border-radius: var(--r-pill); border: var(--hair); background: transparent; color: var(--body); font: inherit; font-size: 13px; font-weight: 500; cursor: pointer; }
.demo-tab.is-on { background: var(--ink); color: var(--page); border-color: var(--ink); }

.demo-grid { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; align-items: stretch; border-top: var(--hair); border-bottom: var(--hair); }
.demo-card { display: flex; flex-direction: column; text-align: left; padding: 28px 28px 26px; border-left: var(--hair); }
.demo-card:first-child { border-left: 0; padding-left: 0; }
.demo-card:last-child { padding-right: 0; }
.demo-head { display: flex; align-items: flex-start; gap: 10px; min-height: 66px; padding-bottom: 16px; border-bottom: var(--hair); }
.widget-mark { width: 18px; height: 20px; display: block; flex: 0 0 auto; }
.demo-biz { color: var(--ink); font-size: 16px; font-weight: 600; line-height: 1.2; }
.demo-letterhead { display: block; margin-top: 2px; color: var(--muted); font-size: 13px; font-weight: 400; }
.widget-state { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: 12px; white-space: nowrap; }
.widget-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.demo-body { padding-top: 18px; display: flex; flex-direction: column; gap: 12px; }
.demo-x { display: flex; flex-direction: column; gap: 10px; }
.demo-x + .demo-x { padding-top: 14px; border-top: 1px dashed var(--rule); }
/* with JavaScript only the chosen exchange is laid out, so the row is as tall as the three answers
   on show, not the longest of the eighteen (the two-thirds-empty card in the critique) */
.js .demo-x { display: none; }
.js .demo-x.is-on { display: flex; }
.js .demo-x + .demo-x { padding-top: 0; border-top: 0; }
.demo-q { align-self: flex-end; max-width: 90%; margin: 0; font-size: 14px; line-height: 1.45; font-weight: 500; padding: 9px 14px; border-radius: 16px 16px 4px 16px; background: var(--ink); color: var(--page); }
.bubble { font-size: 16px; line-height: 1.55; }
.demo-card .bubble-bot { color: var(--body); }
.demo-card .bubble-bot strong { color: var(--ink); }
.handoff-state { align-self: flex-start; display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; padding: 5px 12px; border-radius: var(--r-pill); border: 1px solid var(--accent); color: var(--accent); font-size: 12px; font-weight: 600; letter-spacing: .02em; }
.handoff-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.demo-note { margin-top: auto; padding-top: 18px; color: var(--muted); font-size: 14px; }

/* the framing questions: hairline rows in two columns */
.framing { margin: 72px 0 0; max-width: 1000px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 56px; border-top: var(--hair); }
.fq { padding: 30px 0 34px; border-bottom: var(--hair); }
.fq h3 { font-size: clamp(1.2rem, 1.8vw, 1.5rem); line-height: 1.25; }
.fq p { margin-top: 12px; color: var(--body); font-size: 17px; line-height: 1.55; max-width: 32em; }

/* ---------------------------------------------------------------- 05 pick a look: the dark room */

.skins { isolation: isolate; padding: 0; color: var(--dark-body); }
.skins-head { padding-block: 128px 56px; }
.skins-head .section-sub { color: var(--body); }
.room { position: relative; padding: 150px 0 136px; }
/* the ground: dark, and faded to the light page at its top and bottom so it is a room in the
   house, not a block dropped into it. Nothing that has to be read sits over the fades. */
.room-ground {
  position: absolute; inset: 0; z-index: -1;
  background: var(--dark);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 130px, #000 calc(100% - 130px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 130px, #000 calc(100% - 130px), transparent 100%);
}
/* the wash: six layers pre-painted in each skin's glow, opacity-crossfaded */
.skin-layer { position: absolute; inset: 0; opacity: 0; transition: opacity .7s var(--ease); background: radial-gradient(60% 55% at 50% 52%, color-mix(in srgb, var(--glow) 38%, transparent), transparent 72%); }
.skin-layer.is-on { opacity: 1; }
.room-inner { position: relative; }
/* VR BOXX: the skin's own word, oversized and ghosted behind the widget */
.skin-word { position: absolute; left: 50%; top: 42%; translate: -50% -50%; z-index: 0; pointer-events: none; white-space: nowrap; font-size: clamp(80px, 14vw, 200px); font-weight: 700; letter-spacing: -.04em; color: var(--live-skin, var(--accent)); opacity: 0; transition: opacity .7s var(--ease); }
.js .skin-word { opacity: .12; }

.arc { position: relative; --card-w: min(360px, 84vw); z-index: 1; }
.chev { position: absolute; top: 46%; z-index: 20; transform: translateY(-50%); color: var(--dark-ink); background: rgba(241, 247, 245, .1); border-color: color-mix(in srgb, var(--live-skin, var(--accent)) 60%, transparent); transition: opacity .3s var(--ease); }
.chev:hover { border-color: var(--live-skin, var(--accent)); }
.chev[disabled] { opacity: .25; cursor: default; }
.chev-prev { left: calc(50% - var(--card-w) / 2 - 76px); }
.chev-next { right: calc(50% - var(--card-w) / 2 - 76px); }

/* without JavaScript: a native scroll-snap row */
.skin-track { display: flex; gap: 32px; overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scrollbar-width: none; padding-block: 8px 24px; width: 100vw; margin-inline: calc(50% - 50vw); padding-inline: calc(50vw - var(--card-w) / 2); }
.skin-track::-webkit-scrollbar { display: none; }
.skin-card { position: relative; flex: 0 0 var(--card-w); scroll-snap-align: center; text-align: left; }
.skin-stage { position: relative; padding: 0 0 88px 0; }
.skin-meta { margin-top: 18px; text-align: center; }
.skin-name { color: var(--dark-ink); font-size: 20px; font-weight: 500; }
.skin-tier { display: inline-block; margin-top: 8px; padding: 5px 12px; border-radius: var(--r-pill); border: 1px solid var(--dark-rule); color: var(--dark-body); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }

/* with JavaScript: one card centre, the neighbours smaller and dimmer either side, transform only */
.js .skin-track { display: block; overflow: visible; height: var(--track-h, 720px); padding: 0; margin-inline: calc(50% - 50vw); scroll-snap-type: none; touch-action: pan-y; -webkit-mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%); mask-image: linear-gradient(to right, transparent 0, #000 10%, #000 90%, transparent 100%); }
.js .skin-card { position: absolute; left: 50%; top: 8px; width: var(--card-w); margin-left: calc(var(--card-w) / -2); transform: translate3d(var(--x, 0px), 0, 0) scale(var(--s, 1)); opacity: var(--o, 1); transition: transform .7s var(--ease), opacity .7s var(--ease); will-change: transform, opacity; }
.js .skin-card:not(.is-live) { pointer-events: none; }
.js .skin-meta { opacity: 0; transition: opacity .35s var(--ease); }
.js .skin-card.is-live .skin-meta { opacity: 1; transition-delay: .2s; }
.skin-controls { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-top: 8px; position: relative; z-index: 2; }
.skin-dots { display: flex; gap: 6px; }
.skin-dots button { width: 36px; height: 44px; border-radius: 3px; border: 0; cursor: pointer; padding: 20px 3px; background-clip: content-box; background-color: rgba(211, 226, 221, .25); }
.skin-dots button.is-on { background-color: var(--live-skin, var(--accent)); }
.skin-hint { color: var(--dark-body); font-size: 14px; }

/* ---- THE WIDGET, the engine's own markup and CSS (widget-designer.html), parameterised per skin
   by CSS variables and data-attributes set inline on each .frame. Nothing here is a picture. */
.frame { position: relative; width: 100%; height: 520px; border-radius: var(--r-frame, 16px); overflow: hidden; display: flex; flex-direction: column; background: var(--surface, #fff); color: var(--w-ink, #1d1d1f); font-family: var(--font, Inter, system-ui, sans-serif); font-size: var(--fs, 14px); line-height: 1.45; letter-spacing: 0; box-shadow: 0 0 0 1px rgba(255,255,255,.62), 0 0 0 2px rgba(0,0,0,.62), 0 14px 44px rgba(0,0,0,.28), var(--glow, 0 0 0 0 transparent); }
.frame[data-frame=flat] { box-shadow: 0 0 0 1px var(--line), var(--glow, 0 0 0 0 transparent); }
.frame[data-frame=outlined] { box-shadow: 0 0 0 2px var(--accent), 0 14px 44px rgba(0,0,0,.18), var(--glow, 0 0 0 0 transparent); }
.frame[data-frame=hard] { border: 2px solid var(--w-ink); box-shadow: 8px 8px 0 0 var(--accent); border-radius: 0; }
.frame[data-texture=dots] { background-image: radial-gradient(color-mix(in srgb, var(--w-ink) 9%, transparent) 1px, transparent 1px); background-size: 14px 14px; }
.frame[data-texture=grid] { background-image: linear-gradient(color-mix(in srgb, var(--accent) 14%, transparent) 1px, transparent 1px), linear-gradient(90deg, color-mix(in srgb, var(--accent) 14%, transparent) 1px, transparent 1px); background-size: 22px 22px; }
.frame[data-texture=lines] { background-image: repeating-linear-gradient(0deg, transparent 0 7px, color-mix(in srgb, var(--w-ink) 5%, transparent) 7px 8px); }
.frame .head { padding: 14px 16px; border-bottom: 1px solid var(--line, #e5e7eb); background: var(--head-bg, var(--surface)); color: var(--head-ink, var(--w-ink)); display: flex; align-items: center; gap: 10px; }
.frame .av { width: 30px; height: 30px; border-radius: 50%; background: var(--accent); display: none; align-items: center; justify-content: center; flex: none; }
.frame .av svg { width: 18px; height: 18px; fill: #fff; }
.frame[data-avatar=head] .av, .frame[data-avatar=both] .av { display: flex; }
.frame .t { min-width: 0; }
.frame .t .ttl { margin: 0; font-size: calc(var(--fs) + 1px); display: flex; align-items: center; gap: 8px; font-weight: 700; color: inherit; letter-spacing: 0; line-height: 1.3; }
.frame[data-title=upper] .t .ttl { text-transform: uppercase; letter-spacing: .12em; font-size: calc(var(--fs) - 1px); }
.frame .t .ttl .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); display: none; }
.frame[data-header=surface] .t .ttl .dot, .frame[data-header=underline] .t .ttl .dot { display: inline-block; }
.frame[data-header=underline] .head { border-bottom: 2px solid var(--accent); }
.frame[data-header=gradient] .head { background: linear-gradient(100deg, var(--head-bg), var(--accent)); }
.frame .t p { margin: 2px 0 0; font-size: 11px; color: var(--head-muted, var(--muted-w)); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.frame .t p u { text-decoration: underline; }
.frame .endbtn { border: 1px solid var(--head-line, var(--line)); border-radius: 999px; padding: 2px 8px; font-weight: 600; color: var(--head-ink, var(--w-ink)); }
.frame[data-corners=none] .endbtn { border-radius: 3px; }
.frame .log { flex: 1; overflow: hidden; padding: 14px; display: flex; flex-direction: column; gap: 9px; }
.frame .line { display: flex; gap: 8px; align-items: flex-end; max-width: 88%; }
.frame .line.me { align-self: flex-end; flex-direction: row-reverse; }
.frame .mav { width: 24px; height: 24px; border-radius: 50%; background: var(--accent); display: none; flex: none; align-items: center; justify-content: center; margin-bottom: 2px; }
.frame .mav svg { width: 14px; height: 14px; fill: #fff; }
.frame[data-avatar=messages] .line.bot .mav, .frame[data-avatar=both] .line.bot .mav { display: flex; }
.frame[data-layout=stacked] .line, .frame[data-layout=stacked] .line.me { align-self: flex-start; flex-direction: row; max-width: 100%; }
.frame[data-layout=stacked] .msg { border-radius: var(--r-bubble); }
.frame[data-layout=stacked] .who { display: block; }
.frame .who { display: none; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-w); margin: 0 0 3px; }
.frame .msg { padding: 9px 12px; border-radius: var(--r-bubble, 14px); line-height: 1.45; font-size: var(--fs); }
.frame .line.bot .msg { background: var(--bot, #f3f4f6); color: var(--w-ink); border-bottom-left-radius: var(--r-tail, 4px); }
.frame .line.me .msg { background: var(--me); color: var(--me-ink, #fff); border-bottom-right-radius: var(--r-tail, 4px); }
.frame[data-bubbles=square] .msg { border-radius: 0 !important; }
.frame[data-bubbles=outlined] .line.bot .msg { background: transparent; border: 1.5px solid var(--line); }
.frame[data-bubbles=outlined] .line.me .msg { background: transparent; border: 1.5px solid var(--me); color: var(--w-ink); }
.frame[data-bubbles=notail] .msg { border-radius: var(--r-bubble) !important; }
.frame .msg u { color: var(--accent); font-weight: 600; }
.frame .dots { display: inline-flex; gap: 5px; align-items: center; padding: 3px 1px; }
.frame .dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted-w); display: inline-block; opacity: .6; }
.frame .in { display: flex; gap: 8px; padding: 10px; border-top: 1px solid var(--line, #e5e7eb); margin: 0; align-items: center; background: var(--surface); }
.frame .msgin { flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid var(--line, #e5e7eb); border-radius: var(--r-input, 10px); font-size: var(--fs); font-family: inherit; background: var(--input-bg, var(--surface)); color: var(--muted-w); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.frame[data-input=underline] .msgin { border: 0; border-bottom: 2px solid var(--line); border-radius: 0; background: transparent; }
.frame[data-input=pill] .msgin { border-radius: 999px; }
.frame[data-input=filled] .msgin { border: 0; background: var(--bot); }
.frame .send { padding: 10px 14px; border: 0; background: var(--send-bg, var(--me)); color: var(--send-ink, var(--me-ink, #fff)); border-radius: var(--r-input, 10px); font-size: var(--fs); font-weight: 600; font-family: inherit; display: flex; align-items: center; justify-content: center; gap: 6px; flex: none; }
.frame .send svg { width: 18px; height: 18px; display: none; }
.frame[data-send=round] .send { width: 40px; height: 40px; padding: 0; border-radius: 50%; }
.frame[data-send=round] .send span, .frame[data-send=icon] .send span { display: none; }
.frame[data-send=round] .send svg, .frame[data-send=icon] .send svg { display: block; }
.frame[data-send=icon] .send { background: transparent; color: var(--accent); padding: 0 6px; }
.frame[data-send=ghost] .send { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.frame .powered { font-size: 10px; color: var(--muted-w); text-align: center; padding: 0 0 6px; background: var(--surface); }
/* the launcher, below the window's bottom-right corner, as it sits on a site */
.launcher { position: absolute; right: 0; bottom: 8px; height: var(--size, 60px); min-width: var(--size, 60px); border-radius: 50%; background: var(--launcher); color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 0; box-shadow: 0 0 0 1px rgba(255,255,255,.62), 0 0 0 2px rgba(0,0,0,.62), 0 6px 20px rgba(0,0,0,.25), var(--lglow, 0 0 0 0 transparent); font-family: var(--font); font-weight: 700; font-size: 14px; }
.launcher .glyph { display: flex; align-items: center; justify-content: center; width: calc(var(--size, 60px) / 2); height: calc(var(--size, 60px) / 2); flex: none; }
.launcher svg { width: 100%; height: 100%; fill: #fff; display: block; }
.launcher[data-shape=square] { border-radius: calc(var(--size) * .22); }
.launcher[data-shape=pill] { border-radius: 999px; padding: 0 18px 0 12px; }
.launcher[data-shape=pill] .lbl { display: inline; }
.launcher .lbl { display: none; }
.launcher[data-shape=hard] { border-radius: 0; border: 2px solid var(--w-ink); box-shadow: 5px 5px 0 0 var(--w-ink); }

/* ---------------------------------------------------------------- 07 how it works: a timeline */

.steps { margin-top: 64px; position: relative; max-width: 860px; }
.steps::before { content: ""; position: absolute; left: 39px; top: 8px; bottom: 8px; width: 1px; background: var(--rule); }
.step { position: relative; display: grid; grid-template-columns: 80px 1fr; gap: 0 32px; padding: 0 0 56px; }
.step:last-child { padding-bottom: 0; }
.step-num { width: 80px; height: 80px; display: grid; place-items: center; background: var(--page); font-size: 40px; line-height: 1; font-weight: 200; letter-spacing: -.04em; color: var(--ink); position: relative; z-index: 1; }
.step-num::after { content: ""; position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); left: 36px; bottom: -4px; }
.step-title { font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.2; padding-top: 22px; }
.step-body { margin-top: 10px; color: var(--body); font-size: 18px; max-width: 32em; }
.step-run .step-body { margin-top: 4px; font-size: clamp(1.35rem, 2.2vw, 1.75rem); line-height: 1.2; font-weight: 400; color: var(--ink); letter-spacing: -.02em; }
.ownership { margin: 64px 0 0; max-width: 28em; color: var(--ink); font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.35; }
.option { margin: 18px 0 0; max-width: 36em; color: var(--body); font-size: 16px; }
/* the "your own website, unchanged" frame, small, where the one-line install is explained */
.site-still { margin-top: 22px; max-width: 360px; border: var(--hair); border-radius: 8px; background: var(--white); overflow: hidden; position: relative; font-size: 10px; color: var(--muted); }
.site-bar { height: 26px; display: flex; align-items: center; gap: 5px; padding-inline: 10px; border-bottom: var(--hair); }
.site-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rule); }
.site-url { margin-left: 8px; padding: 2px 10px; border-radius: 20px; background: var(--tint); color: var(--muted); font-size: 9px; letter-spacing: .02em; }
.site-nav { display: flex; align-items: center; gap: 12px; padding: 9px 14px; border-bottom: var(--hair); }
.site-nav b { color: var(--ink); font-weight: 600; margin-right: auto; }
.site-nav i { font-style: normal; }
.site-body { padding: 14px 14px 18px; display: flex; flex-direction: column; gap: 8px; }
.site-h1 { color: var(--ink); font-size: 15px; font-weight: 600; letter-spacing: -.01em; margin-bottom: 4px; }
.site-line { height: 6px; border-radius: 3px; background: var(--tint); }
.site-line.w70 { width: 70%; } .site-line.w52 { width: 52%; } .site-line.w40 { width: 40%; }
.site-pin { position: absolute; right: 12px; bottom: 12px; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; }
.site-pin img { width: 11px; height: auto; display: block; }

/* ---------------------------------------------------------------- 08 prices, on the tint floor */

.vat-toggle { margin: 34px auto 0; display: flex; align-items: center; justify-content: center; gap: 12px; color: var(--muted); font-size: 13px; }
.vat-toggle.vat-left { margin-inline: 0; justify-content: flex-start; }
.seg { display: inline-flex; align-items: center; gap: 2px; margin: 0; padding: 3px; border-radius: var(--r-pill); background: var(--white); border: var(--hair); }
.seg legend { float: left; padding: 0 12px 0 10px; line-height: 34px; color: var(--muted); }
.seg input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.seg label { font-size: 13px; padding: 7px 14px; border-radius: var(--r-pill); color: var(--muted); cursor: pointer; user-select: none; }
.seg input:checked + label { background: var(--ink); color: var(--page); font-weight: 600; }
.seg input:focus-visible + label { outline: 2px solid var(--accent); outline-offset: 2px; }
html:has(#vat-inc:checked) [data-ex] { display: none !important; }
html:has(#vat-inc:checked) [data-inc] { display: inline !important; }

.tiers-wrap { margin: 40px -14px 0; overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; padding-bottom: 20px; }
.tiers { width: 100%; min-width: 900px; border-collapse: separate; border-spacing: 14px 0; font-size: 15px; color: var(--body); }
.tiers th, .tiers td { text-align: left; vertical-align: top; padding: 14px 18px; }
.tiers .row-label, .tiers th[scope="row"] { width: 17%; min-width: 148px; padding-left: 0; padding-right: 10px; color: var(--body); font-weight: 500; line-height: 1.4; }
.tiers th[scope="row"] { padding-top: 14px; }
.fn-mark { display: inline-grid; place-items: center; min-width: 24px; min-height: 24px; margin: -4px 0 -4px -2px; color: var(--accent); text-decoration: none; font-weight: 700; }
/* each column reads as one white sheet on the tint floor; Enhanced carries the accent */
.tiers .tier { background: var(--white); border-left: var(--hair); border-right: var(--hair); }
.tiers thead .tier { position: relative; border-top: var(--hair); border-radius: 8px 8px 0 0; padding: 40px 18px 18px; }
.tiers tbody tr:last-child .tier { border-bottom: var(--hair); border-radius: 0 0 8px 8px; padding-bottom: 22px; }
.tiers tbody .tier { border-top: 1px solid var(--tint); }
.tiers tbody .row-price .tier { border-top: 0; padding-top: 6px; }
.tiers .tier.is-featured { border-left-color: var(--accent); border-right-color: var(--accent); }
.tiers thead .tier.is-featured { border-top-color: var(--accent); }
.tiers tbody tr:last-child .tier.is-featured { border-bottom-color: var(--accent); }
.tier-tag { position: absolute; top: 14px; left: 18px; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.tier-name { display: block; color: var(--ink); font-size: 22px; font-weight: 600; line-height: 1.2; }
.tier-for { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 400; }
.row-price .was { display: block; color: var(--muted); font-size: 15px; }
.row-price .now { display: block; margin-top: 2px; color: var(--ink); font-size: clamp(30px, 2.6vw, 40px); line-height: 1.05; font-weight: 600; letter-spacing: -.03em; }
.row-price .now small { font-size: 14px; font-weight: 400; color: var(--muted); }
.row-price .was + .now { color: var(--accent); }
.row-price .per { display: block; margin-top: 6px; color: var(--body); font-size: 13px; line-height: 1.35; }
.row-price .tier { padding-bottom: 16px; }
.tick { color: var(--accent); font-weight: 600; }
.no { color: var(--muted); }
.row-cta .tier { padding-top: 18px; }
.row-cta .btn { width: 100%; font-size: 14px; padding: 12px 6px; white-space: nowrap; }
.footnotes { margin: 24px 0 0; max-width: 760px; display: flex; flex-direction: column; gap: 8px; color: var(--muted); font-size: 14px; line-height: 1.5; }
.footnotes li:first-child { color: var(--body); }
@media (max-width: 620px) {
  .tiers { min-width: 860px; }
  .tiers .row-label, .tiers th[scope="row"] { position: sticky; left: 0; z-index: 2; background: var(--tint); min-width: 140px; width: 150px; padding-right: 12px; }
  .tiers th[scope="row"] { box-shadow: 8px 0 12px -8px rgba(14, 22, 24, .18); }
}

/* ---------------------------------------------------------------- 09 questions: hairline rows */

.qa-list { margin: 56px 0 0; max-width: 820px; border-top: var(--hair); }
.qa { border-bottom: var(--hair); }
.qa h3 { font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.3; font-weight: 500; }
.qa p { color: var(--body); font-size: 16px; line-height: 1.6; }
details.qa summary { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 0; cursor: pointer; list-style: none; }
details.qa summary::-webkit-details-marker { display: none; }
details.qa summary h3 { flex: 1; }
details.qa summary:hover h3 { color: var(--accent); }
details.qa summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.qa-chevron { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 50%; border: var(--hair); position: relative; transition: transform .35s var(--ease); }
.qa-chevron::before { content: ""; position: absolute; left: 50%; top: 50%; width: 9px; height: 9px; border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); translate: -50% -70%; rotate: 45deg; }
details.qa[open] .qa-chevron { transform: rotate(180deg); border-color: var(--ink); }
details.qa > p { margin: 0; padding: 0 60px 26px 0; max-width: 40em; }
details.qa .qa-body { padding: 0 60px 26px 0; max-width: 40em; }
details.qa .qa-body p + p { margin-top: 10px; }
@media (max-width: 620px) { details.qa > p, details.qa .qa-body { padding-right: 0; } }
.faq-more { margin-top: 30px; }
.more-link { display: inline-block; padding: 12px 0; min-height: 44px; color: var(--accent); text-decoration: none; font-size: 16px; font-weight: 600; }
.more-link:hover { color: var(--ink); }

/* ---------------------------------------------------------------- 10 get in touch */

.contact .two-up { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.contact .title-xl { font-size: clamp(2.2rem, 4.8vw, 3.9rem); max-width: 11em; }
.contact-sub { margin-top: 10px; color: var(--accent); font-size: 20px; font-weight: 500; }
.contact .lede a { color: var(--ink); }
.contact-cta { margin-top: 30px; }
.btn-big { font-size: 17px; padding: 16px 28px; }
.contact-lines { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 8px 24px; }
.contact-line { color: var(--body); text-decoration: none; font-size: 16px; padding: 10px 0; min-height: 44px; display: inline-flex; align-items: center; }
.contact-line:hover { color: var(--ink); }
.contact-form { display: flex; flex-direction: column; gap: 22px; padding: 0 0 0 48px; border-left: var(--hair); }
.field { display: flex; flex-direction: column; gap: 8px; color: var(--body); font-size: 13px; letter-spacing: .06em; text-transform: uppercase; }
.field input, .field textarea { font: inherit; font-size: 16px; color: var(--ink); padding: 10px 0; background: transparent; border: 0; border-bottom: 1px solid var(--rule); border-radius: 0; text-transform: none; letter-spacing: 0; }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--ink); }
.field textarea { resize: vertical; min-height: 90px; }
.contact-form .btn { align-self: flex-start; min-height: 44px; }
.form-note { color: var(--muted); font-size: 14px; }
@media (max-width: 900px) { .contact-form { padding-left: 0; border-left: 0; padding-top: 32px; border-top: var(--hair); } }

/* ---------------------------------------------------------------- footer */

.foot { position: relative; border-top: var(--hair); padding-block: 40px 56px; }
.foot-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; padding-right: 108px; }
.lockup-foot { height: 22px; }
@media (min-width: 1024px) and (orientation: landscape) {
  .foot { border-top: 0; }
  .foot::before { content: ""; position: absolute; left: var(--rail-w); right: 0; top: 0; border-top: var(--hair); }
  .foot-inner .brand { position: absolute; left: 30px; top: 50%; translate: 0 -50%; }
  .lockup-foot { height: 30px; }
  .foot-links { margin-inline: 0 auto; }
}
.foot-links { display: flex; gap: 22px; margin-inline: auto; }
.foot-links a { color: var(--muted); text-decoration: none; font-size: 14px; padding: 10px 0; display: inline-block; }
.foot-links a:hover { color: var(--ink); }
.foot-note { color: var(--muted); font-size: 13px; }
.foot-company { color: var(--body); text-decoration: underline; text-underline-offset: 3px; padding: 6px 0; }
.foot-company:hover { color: var(--ink); }

/* ---------------------------------------------------------------- motion
   The budget is spent at the top: the hero's stagger and the card's fill are CSS keyframes and
   run with JavaScript off. Below the fold, `.arrive` elements are visible by default; JavaScript
   marks only those still below the viewport as waiting and reveals them in order, calmly. */

@keyframes rise { from { opacity: 0; transform: translate3d(0, 18px, 0); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: no-preference) {
  .stage-1, .stage-2, .stage-3, .stage-4, .stage-5, .stage-6 { animation: rise .9s var(--ease) both; }
  .stage-1 { animation-delay: .05s; }
  .stage-2 { animation-delay: .18s; }
  .stage-3 { animation-delay: .32s; }
  .stage-4 { animation-delay: .46s; }
  .stage-5 { animation-delay: 1.15s; }   /* the change of scene: later than everything else */
  .stage-6 { animation-delay: 1.35s; }
  /* the fill: from 1.9 s, one row every .26 s, twelve rows, then still */
  .hero-card .fill { animation: fill .7s var(--ease-soft) both; animation-delay: calc(1.9s + (var(--i, 0) + 1) * .26s); }
  .arrive { transition: opacity .8s var(--ease-soft), transform .8s var(--ease-soft); transition-delay: var(--arrive-delay, 0s); }
  .arrive.is-waiting { opacity: 0; transform: translate3d(0, 20px, 0); }
  tr.arrive.is-waiting { transform: translate3d(0, 10px, 0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .arrive.is-waiting { opacity: 1; transform: none; }
  .tilt, .tilt.is-in, .tilt.tilt-l, .tilt.tilt-l.is-in { transform: none; }
}

/* ---------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .demo-grid { grid-template-columns: 1fr; max-width: 640px; margin-inline: auto; border-top: 0; }
  .demo-card { border-left: 0; padding: 28px 0; border-top: var(--hair); }
  .demo-card:first-child { border-top: 0; }
}

@media (max-width: 900px) {
  .section { padding: 96px 0; }
  .hero { padding: 116px 0 72px; }
  .beat { grid-template-columns: 1fr; gap: 8px; padding: 36px 0 40px; }
  .beat-num { font-size: 72px; }
  .framing { grid-template-columns: 1fr; }
  .steps::before { left: 27px; }
  .step { grid-template-columns: 56px 1fr; gap: 0 20px; padding-bottom: 44px; }
  .step-num { width: 56px; height: 56px; font-size: 30px; }
  .step-num::after { left: 24px; }
  .step-title { padding-top: 12px; }
}

@media (max-width: 767px) {
  /* a tilted card on a phone is unreadable: flat, still */
  .tilt, .tilt.is-in, .tilt.tilt-l, .tilt.tilt-l.is-in { transform: none; }
  .tilt-wrap { perspective: none; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .chips { flex-direction: column; align-items: stretch; }
  .btn-chip { text-align: center; }
  .scene { margin-top: 64px; }
  .hero-card .email-sheet { padding: 18px 16px; max-height: 520px; }
  .email-sheet { padding: 18px 16px; }
  .foot-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .foot-links { margin-inline: 0; flex-wrap: wrap; }
  .arc, .skin-track { --card-w: min(292px, 74vw); }
  .chev { width: 44px; height: 44px; font-size: 20px; }
  .js .skin-track { --track-h: 700px; }
  .frame { height: 480px; }
  .chev-prev { left: calc(2px - var(--gutter)); }
  .chev-next { right: calc(2px - var(--gutter)); }
  .rail-cta { padding: 12px 14px; font-size: 13px; }
  .btn-chip { padding: 13px 18px; }
  .rail-sub { display: none; }
  .rail-inner { justify-content: space-between; }
  .lockup { height: 30px; }
  .eyebrow { font-size: 12px; letter-spacing: .16em; }
  .ghost { font-size: 96px; top: -.92em; opacity: .4; }
  .contact { padding-bottom: 150px; }
  .js .demo-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .demo-tab { font-size: 12px; padding: 8px 6px; line-height: 1.3; }
  .js .demo-card { display: none; }
  .js .demo-card.is-shown { display: flex; }
  .demo-chips { margin-top: 28px; gap: 8px; }
  .demo-chips .btn-chip { font-size: 13px; padding: 10px 13px; min-height: 40px; }
  .handoff-label { margin-top: 18px; font-size: 15px; }
  .room { padding: 120px 0 112px; }
  .room-ground { -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 100px, #000 calc(100% - 100px), transparent 100%); mask-image: linear-gradient(to bottom, transparent 0, #000 100px, #000 calc(100% - 100px), transparent 100%); }
  .skins-head { padding-block: 96px 40px; }
}

@media (max-width: 1023px), (orientation: portrait) { .hero { padding-top: 100px; } }

/* ================================================================ pages: about, faq, privacy, terms, company */
.page { padding: 140px 0 96px; }
.page-inner { max-width: 760px; margin-inline: 0; }
.page-title { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.06; }
.page-lede { margin-top: 14px; color: var(--muted); font-size: 17px; }
.prose { margin-top: 36px; color: var(--body); font-size: 17px; line-height: 1.7; }
.prose h1 { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.06; }
.prose h2 { margin-top: 42px; font-size: 24px; line-height: 1.3; }
.prose h3 { margin-top: 28px; font-size: 19px; line-height: 1.3; font-weight: 600; }
.prose p { margin-top: 14px; }
.prose ul { margin-top: 12px; padding-left: 22px; list-style: disc; }
.prose li { margin-top: 8px; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--accent); }
mark.held, .held { background: #FBE9E7; color: var(--ink); border: 1px solid #E7A69F; border-radius: 4px; padding: 0 6px; }
.held-note { margin-top: 10px; display: inline-block; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.about-grid { margin-top: 32px; }
.about-grid::after { content: ""; display: block; clear: both; }
.about-grid .prose { margin-top: 0; }
.headshot { float: left; width: 250px; max-width: 45%; height: auto; margin: 6px 32px 14px 0; border-radius: 8px; border: var(--hair); }
.about-grid .prose p:first-child { margin-top: 0; }
@media (max-width: 720px) { .headshot { width: 160px; margin: 4px 18px 8px 0; } }
.faq-group { margin-top: 48px; }
.faq-group h2 { font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.faq-group .qa-list, .faq-group details.qa { margin-top: 0; }
.faq-group > details.qa:first-of-type { border-top: var(--hair); margin-top: 14px; }
.terms-shell { margin-top: 32px; padding: 40px; text-align: center; background: var(--tint); border: var(--hair); border-radius: 8px; }
@media (max-width: 620px) { .page { padding: 110px 0 60px; } }

/* the room's ground runs under the rail at desktop, so its left edge is the house wall, not a cut.
   Last in the file so it wins over the inset above. The ownership lines under the timeline share the
   step text column. */
@media (min-width: 1024px) and (orientation: landscape) {
  .room-ground { left: calc(-1 * var(--rail-w)); }
}
@media (min-width: 901px) {
  .ownership, .option { margin-left: 112px; }
}
