/* Stella — marketing site. Dark cinematic base, warm paper contrast, one accent per vertical.
   Fonts self-hosted (assets/fonts). No external requests. */

@import url("../fonts/fonts.css");

:root {
  --bg: #0e0c0b;
  --bg-2: #14110e;
  --surface: #1a1612;
  --raised: #221d18;
  --line: rgba(243, 236, 226, .10);
  --line-strong: rgba(243, 236, 226, .18);
  --ink: #f3ece2;
  --ink-soft: #c9bda9;
  --ink-faint: #8c8072;
  --accent: #e6b062;            /* overridden per vertical */
  --accent-ink: #1a1207;        /* text on accent */
  --paper: #f3ece2;
  --paper-2: #ebe2d3;
  --paper-ink: #1a1512;
  --paper-soft: #5c5147;
  --paper-line: rgba(26, 21, 18, .12);
  --good: #9ad3a0;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Onest', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --wrap: 1180px;
  --pad: clamp(20px, 4vw, 48px);
  --r: 22px;
  --r-sm: 12px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  color-scheme: dark;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body); font-weight: 350; font-size: 17px; line-height: 1.55;
  color: var(--ink); background: var(--bg);
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.display { font-family: var(--font-display); font-weight: 300; font-variation-settings: 'opsz' 144, 'SOFT' 30; letter-spacing: -.015em; line-height: 1.02; }
.display em { font-style: italic; font-weight: 300; color: var(--accent); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); font-weight: 300; color: var(--ink-soft); line-height: 1.6; }
.measure { max-width: 38ch; }
.muted { color: var(--ink-faint); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px; height: 50px; padding: 0 24px;
  border-radius: 999px; border: 1px solid transparent; font-weight: 600; font-size: 15px;
  cursor: pointer; white-space: nowrap; transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .35s;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--accent); color: var(--accent-ink); box-shadow: 0 10px 40px -14px color-mix(in srgb, var(--accent) 70%, transparent); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 50px -14px color-mix(in srgb, var(--accent) 80%, transparent); }
.btn-ghost { border-color: var(--line-strong); color: var(--ink); background: rgba(255,255,255,.02); backdrop-filter: blur(6px); }
.btn-ghost:hover { border-color: var(--ink-soft); }
.btn .arrow { transition: transform .35s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50; height: 72px;
  display: flex; align-items: center;
  transition: background .4s, backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.solid { background: rgba(14, 12, 11, .72); backdrop-filter: blur(14px) saturate(1.2); border-color: var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }
.brand { display: flex; align-items: baseline; gap: 12px; }
.brand-word { font-family: var(--font-body); font-weight: 600; font-size: 22px; letter-spacing: -.03em; line-height: 1; }
.wm i { font-style: normal; position: relative; }
.wm i::after { content: ""; position: absolute; left: 50%; top: -.06em; transform: translateX(-50%); width: .17em; height: .17em; border-radius: 50%; background: var(--accent); box-shadow: 0 0 .45em var(--accent), 0 0 .12em var(--accent); }
.brand-for { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; padding-left: 12px; border-left: 1px solid var(--line-strong); }
.nav-right { display: flex; align-items: center; gap: 8px; }
.nav-link { padding: 10px 14px; border-radius: 999px; font-size: 14.5px; font-weight: 500; color: var(--ink-soft); }
.nav-link:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.nav .btn { height: 42px; padding: 0 18px; font-size: 14px; }
@media (max-width: 720px) { .brand-for, .nav-plain { display: none; } }

/* industries menu */
.menu { position: relative; }
.menu summary { list-style: none; cursor: pointer; }
.menu summary::-webkit-details-marker { display: none; }
.menu-panel {
  position: absolute; top: calc(100% + 10px); right: 0; width: min(92vw, 720px); max-height: 80vh; overflow: auto;
  background: rgba(20, 17, 14, .96); border: 1px solid var(--line-strong); border-radius: 18px; padding: 16px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px 18px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,.8);
  backdrop-filter: blur(16px);
}
.menu-panel a { padding: 9px 10px; border-radius: 10px; font-size: 14.5px; color: var(--ink-soft); display: flex; align-items: center; gap: 10px; }
.menu-panel a:hover { color: var(--ink); background: rgba(255,255,255,.05); }
.menu-panel a .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--vc, var(--accent)); flex: none; }
.menu-panel .group { grid-column: 1 / -1; font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; padding: 10px 10px 4px; }
@media (max-width: 720px) { .menu-panel { grid-template-columns: 1fr; right: -60px; } }

/* ---------- hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding: 140px 0 clamp(60px, 9vh, 110px); overflow: hidden; isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; background: var(--bg-2); }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center);
  transform-origin: var(--origin, 60% 40%);
  animation: kenburns 26s var(--ease) both;
  will-change: transform;
}
@keyframes kenburns { from { transform: scale(1.14) translate3d(1.5%, 1%, 0); } to { transform: scale(1) translate3d(0,0,0); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(14,12,11,.92) 0%, rgba(14,12,11,.72) 30%, rgba(14,12,11,.25) 62%, rgba(14,12,11,.05) 100%),
    linear-gradient(180deg, rgba(14,12,11,.35) 0%, rgba(14,12,11,0) 30%, rgba(14,12,11,.35) 70%, rgba(14,12,11,.95) 100%);
}
@media (max-width: 720px) {
  .hero-scrim { background: linear-gradient(180deg, rgba(14,12,11,.55) 0%, rgba(14,12,11,.25) 30%, rgba(14,12,11,.78) 58%, rgba(14,12,11,.97) 100%); }
  .hero { padding-top: 120px; }
}
.hero-content { max-width: 720px; }
.hero h1 { font-size: clamp(2.7rem, 6.2vw, 5.6rem); margin: 22px 0 22px; text-wrap: balance; }
.hero .lead { max-width: 44ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; align-items: center; }
.hero-cta .hint { font-size: 14px; color: var(--ink-faint); margin-left: 6px; }

/* the greeting chip — how she answers */
.greet {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 44px;
  padding: 12px 18px 12px 12px; border-radius: 999px;
  background: rgba(20,17,14,.55); border: 1px solid var(--line-strong); backdrop-filter: blur(12px);
  font-size: 14.5px; color: var(--ink-soft); max-width: 100%;
}
.greet .wave { display: inline-flex; align-items: center; gap: 3px; height: 26px; width: 26px; justify-content: center; border-radius: 50%; background: var(--accent); flex: none; }
.greet .wave i { display: block; width: 2px; height: 8px; border-radius: 2px; background: var(--accent-ink); animation: wave 1.1s ease-in-out infinite; }
.greet .wave i:nth-child(2) { animation-delay: .15s; height: 12px; }
.greet .wave i:nth-child(3) { animation-delay: .3s; height: 6px; }
.greet .wave i:nth-child(4) { animation-delay: .45s; height: 10px; }
@keyframes wave { 0%, 100% { transform: scaleY(.5); } 50% { transform: scaleY(1.4); } }
.greet q { quotes: "“" "”"; color: var(--ink); font-family: var(--font-display); font-style: italic; font-size: 16.5px; font-variation-settings: 'opsz' 40; }
.greet .who { white-space: nowrap; }
@media (max-width: 640px) { .greet { border-radius: 22px; align-items: flex-start; } .greet .who { display: none; } }

/* film grain overlay on hero + bands */
.grain::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .09;
  background-image: url("../img/brand/grain.png"); background-size: 256px 256px; mix-blend-mode: overlay;
  animation: grain 1.2s steps(6) infinite;
}
@keyframes grain { 0% { transform: translate(0,0); } 20% { transform: translate(-3%, 2%); } 40% { transform: translate(2%, -4%); } 60% { transform: translate(-1%, 3%); } 80% { transform: translate(3%, -1%); } 100% { transform: translate(0,0); } }

/* ---------- sections ---------- */
.sec { position: relative; padding: clamp(72px, 10vw, 128px) 0; }
.sec-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin-top: 18px; text-wrap: balance; }
.sec-head .lead { margin-top: 18px; }
.sec-tight { padding-top: 0; }
.hr { height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }

/* pain — three big lines */
.pain ol { list-style: none; display: grid; gap: 0; border-top: 1px solid var(--line); }
.pain li {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; align-items: baseline;
  padding: clamp(22px, 3vw, 34px) 0; border-bottom: 1px solid var(--line);
  font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 3vw, 2.6rem); line-height: 1.15; letter-spacing: -.01em; font-variation-settings: 'opsz' 144;
}
.pain li b { font-family: var(--font-body); font-weight: 600; font-size: 12.5px; letter-spacing: .16em; color: var(--accent); }
.pain li em { font-style: italic; color: var(--ink-soft); }
.pain .after { margin-top: 30px; }

/* already-have-a-front-desk aside */
.desk-note { margin-top: clamp(40px, 6vw, 72px); border-radius: var(--r); border: 1px solid var(--line-strong); padding: clamp(22px, 3vw, 34px) clamp(22px, 3vw, 40px); background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), rgba(255,255,255,.02)); display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 10px 40px; align-items: start; }
@media (max-width: 800px) { .desk-note { grid-template-columns: 1fr; } }
.desk-note .eyebrow { grid-column: 1 / -1; }
.desk-note h3 { font-size: clamp(1.6rem, 2.8vw, 2.4rem); }
.desk-note p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }

/* ---------- the call — animated demo ---------- */
.call-grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: clamp(20px, 3vw, 44px); align-items: stretch; }
@media (max-width: 900px) { .call-grid { grid-template-columns: 1fr; } }
.phone {
  position: relative; border-radius: 28px; padding: 22px 22px 18px; height: 640px; display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); border: 1px solid var(--line-strong);
  box-shadow: 0 40px 100px -40px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.06);
}
.phone-head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.avatar { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: var(--accent-ink); font-family: var(--font-display); font-style: italic; font-size: 20px; }
.phone-head .name { font-weight: 600; font-size: 15px; }
.phone-head .status { font-size: 13px; color: var(--ink-faint); display: flex; align-items: center; gap: 8px; }
.phone-head .status .live { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 10px var(--good); }
.phone-head .timer { margin-left: auto; font-variant-numeric: tabular-nums; font-size: 13px; color: var(--ink-faint); }
.ring {
  position: absolute; inset: 0; border-radius: 28px; display: grid; place-items: center; background: rgba(14,12,11,.6); backdrop-filter: blur(4px);
  transition: opacity .6s var(--ease); z-index: 3;
}
.ring.hide { opacity: 0; pointer-events: none; }
.ring .pulse { position: relative; width: 84px; height: 84px; border-radius: 50%; background: var(--accent); display: grid; place-items: center; color: var(--accent-ink); }
.ring .pulse::before, .ring .pulse::after { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--accent); animation: ringpulse 1.6s ease-out infinite; opacity: 0; }
.ring .pulse::after { animation-delay: .8s; }
@keyframes ringpulse { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.7); opacity: 0; } }
.ring .cap { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; font-size: 14px; color: var(--ink-soft); }
.msgs { flex: 1; display: flex; flex-direction: column; gap: 12px; padding: 20px 0 8px; overflow: hidden; justify-content: flex-end; }
.msg { max-width: 86%; padding: 12px 16px; border-radius: 18px; font-size: 15.5px; line-height: 1.45; opacity: 0; transform: translateY(10px); animation: msgin .55s var(--ease) forwards; }
@keyframes msgin { to { opacity: 1; transform: none; } }
.msg.stella { align-self: flex-start; background: rgba(255,255,255,.07); border-bottom-left-radius: 6px; }
.msg.stella .typing { display: inline-flex; gap: 4px; align-items: center; height: 14px; }
.msg.stella .typing i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink-soft); animation: dot 1s infinite; }
.msg.stella .typing i:nth-child(2) { animation-delay: .15s; } .msg.stella .typing i:nth-child(3) { animation-delay: .3s; }
@keyframes dot { 0%, 100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
.msg.caller { align-self: flex-end; background: var(--accent); color: var(--accent-ink); border-bottom-right-radius: 6px; }
.msg.sys { align-self: center; background: transparent; color: var(--ink-faint); font-size: 12.5px; letter-spacing: .04em; padding: 4px 10px; border: 1px dashed var(--line-strong); border-radius: 999px; }
.msg.sms { align-self: flex-end; background: var(--good); color: #10261a; border-bottom-right-radius: 6px; font-size: 14px; }
.msg.sms::before { content: "SMS  "; font-weight: 700; font-size: 11px; letter-spacing: .1em; }
.phone-foot { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid var(--line); font-size: 12.5px; color: var(--ink-faint); }
.phone-foot .replay { cursor: pointer; background: none; border: 0; color: var(--ink-soft); font-size: 12.5px; display: inline-flex; gap: 6px; align-items: center; }
.phone-foot .replay:hover { color: var(--ink); }

/* day column calendar */
.day {
  border-radius: 24px; border: 1px solid var(--line-strong); padding: 20px; background: rgba(255,255,255,.02);
  display: flex; flex-direction: column; height: 640px;
}
.day-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.day-head .d { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; }
.day-head .loc { font-size: 12.5px; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; }
.day-grid { position: relative; flex: 1; display: grid; grid-template-rows: repeat(var(--rows, 9), 1fr); }
.day-grid .row { border-top: 1px solid var(--line); position: relative; font-size: 11.5px; color: var(--ink-faint); padding-left: 44px; }
.day-grid .row span { position: absolute; left: 0; top: -8px; font-variant-numeric: tabular-nums; }
.day-grid .row .staff { position: absolute; left: 44px; top: -8px; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; }
.slot {
  position: absolute; left: 44px; right: 0; border-radius: 10px; padding: 4px 10px; font-size: 12.5px; overflow: hidden; line-height: 1.25;
  background: color-mix(in srgb, #fff 7%, var(--bg)); border: 1px solid var(--line); color: var(--ink-soft);
  display: flex; gap: 8px; align-items: baseline; white-space: nowrap; text-overflow: ellipsis;
}
.slot.tall { flex-direction: column; gap: 2px; padding-top: 7px; }
.slot .t { font-size: 10.5px; color: var(--ink-faint); flex: none; font-variant-numeric: tabular-nums; }
.slot .l { overflow: hidden; text-overflow: ellipsis; }
.slot.busy { background: color-mix(in srgb, #fff 7%, var(--bg)); }
.slot.new { background: color-mix(in srgb, var(--accent) 24%, var(--bg)); border-color: var(--accent); color: var(--ink); opacity: 0; transform: scale(.96); }
.slot.new.in { animation: slotin .7s var(--ease) forwards; }
@keyframes slotin { 0% { opacity: 0; transform: scale(.94); } 60% { opacity: 1; transform: scale(1.02); box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 25%, transparent); } 100% { opacity: 1; transform: none; box-shadow: 0 0 0 0 transparent; } }
.slot.hole { background: repeating-linear-gradient(135deg, var(--bg) 0 6px, color-mix(in srgb, #fff 4%, var(--bg)) 6px 12px); border-style: dashed; color: var(--ink-faint); font-style: italic; }
.slot.gone { animation: slotout .6s var(--ease) forwards; }
@keyframes slotout { to { opacity: 0; transform: translateX(10px); } }
.slot.moved { animation: slotmove .8s var(--ease) forwards; }
@keyframes slotmove { 0% { transform: translateY(0); } 100% { transform: translateY(var(--dy)); } }
.day-note { margin-top: 12px; font-size: 12.5px; color: var(--ink-faint); min-height: 1.4em; }

/* ---------- late cancellation ---------- */
.late-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(20px, 3vw, 44px); align-items: stretch; }
@media (max-width: 900px) { .late-grid { grid-template-columns: 1fr; } }
.thread {
  position: relative; border-radius: 28px; padding: 22px 22px 18px; height: 600px; display: flex; flex-direction: column;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); border: 1px solid var(--line-strong);
  box-shadow: 0 40px 100px -40px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.06);
}
.thread-head { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.thread-head .name { font-weight: 600; font-size: 15px; }
.thread-head .status { font-size: 13px; color: var(--ink-faint); }
.thread-head .clock { margin-left: auto; font-variant-numeric: tabular-nums; font-size: 13px; color: var(--ink-faint); }
.sms-thread .msg.caller { background: rgba(255,255,255,.10); color: var(--ink); }
.sms-thread .msg.other { align-self: flex-end; background: color-mix(in srgb, var(--good) 22%, var(--bg)); color: var(--ink); border-bottom-right-radius: 6px; }
.sms-thread .msg .tag { display: block; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 4px; }
.sms-thread .msg.stella .tag { color: color-mix(in srgb, var(--accent) 70%, var(--ink)); }
.ledger { border-radius: 26px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.02); padding: clamp(20px, 3vw, 30px); display: flex; flex-direction: column; }
.steps { list-style: none; display: grid; gap: 6px; margin-bottom: 20px; }
.steps li { display: grid; grid-template-columns: 54px 1fr; gap: 12px; align-items: baseline; padding: 9px 12px; border-radius: 12px; background: rgba(255,255,255,.03); font-size: 14.5px; color: var(--ink-faint); transition: color .5s, background .5s; }
.steps li .t { font-variant-numeric: tabular-nums; font-size: 12.5px; }
.steps li.on { color: var(--ink); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.steps li.on .t { color: var(--accent); }
.steps li.on:nth-child(4) { background: color-mix(in srgb, var(--good) 16%, transparent); }
.steps li.on:nth-child(4) .t { color: var(--good); }
.late-bullets { list-style: none; display: grid; gap: 8px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.late-bullets li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.late-bullets li::before { content: "—"; color: var(--accent); }
.late-foot { margin-top: 14px; font-size: 12.5px; color: var(--ink-faint); }

/* owner command beat */
.owner { margin-top: clamp(40px, 6vw, 72px); display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding-top: clamp(32px, 4vw, 48px); border-top: 1px solid var(--line); }
@media (max-width: 900px) { .owner { grid-template-columns: 1fr; } }
.owner-copy h3 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin: 14px 0 14px; }
.owner-copy p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.owner-demo { display: grid; gap: 12px; }
.owner-say { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; border-radius: 22px; border: 1px solid var(--line-strong); background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015)); }
.owner-say .mic { width: 44px; height: 44px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; flex: none; box-shadow: 0 10px 30px -10px var(--accent); }
.owner-say .mic svg { width: 20px; height: 20px; }
.owner-say q { quotes: "“" "”"; font-family: var(--font-display); font-style: italic; font-size: clamp(1.1rem, 1.6vw, 1.35rem); line-height: 1.35; font-variation-settings: 'opsz' 40; }
.owner-report { display: grid; gap: 4px; padding: 16px 22px; border-radius: 16px; background: color-mix(in srgb, var(--good) 12%, transparent); border: 1px solid color-mix(in srgb, var(--good) 40%, transparent); }
.owner-report .k { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--good); font-weight: 700; }
.owner-report .v { font-size: 14.5px; color: var(--ink); line-height: 1.5; }

/* ---------- paper section (features) ---------- */
.paper { background: var(--paper); color: var(--paper-ink); color-scheme: light; }
.paper .eyebrow { color: var(--paper-soft); }
.paper .lead { color: var(--paper-soft); }
.paper .display em { color: color-mix(in srgb, var(--accent) 60%, var(--paper-ink)); }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--paper-line); border: 1px solid var(--paper-line); border-radius: var(--r); overflow: hidden; }
@media (max-width: 1000px) { .tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tiles { grid-template-columns: 1fr; } }
.tile { background: var(--paper); padding: 28px 26px 30px; display: flex; flex-direction: column; gap: 12px; min-height: 230px; transition: background .4s; }
.tile:hover { background: var(--paper-2); }
.tile .n { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--paper-soft); }
.tile h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; line-height: 1.15; letter-spacing: -.01em; font-variation-settings: 'opsz' 60; }
.tile p { font-size: 14.5px; color: var(--paper-soft); line-height: 1.5; }
.tile.special { background: color-mix(in srgb, var(--accent) 18%, var(--paper)); }
.tile.special .n { color: color-mix(in srgb, var(--accent) 70%, var(--paper-ink)); }
.tile .q { font-family: var(--font-display); font-style: italic; color: var(--paper-ink); font-size: 15.5px; margin-top: auto; padding-top: 10px; border-top: 1px solid var(--paper-line); }

/* ---------- differentiator ---------- */
.diff-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: 1fr; } }
.diff-copy h2 { font-size: clamp(1.9rem, 3.4vw, 3rem); margin: 16px 0 18px; text-wrap: balance; }
.diff-copy .lead { margin-bottom: 18px; }
.diff-copy ul { list-style: none; display: grid; gap: 10px; margin-top: 22px; }
.diff-copy li { display: grid; grid-template-columns: 18px 1fr; gap: 12px; color: var(--ink-soft); font-size: 15.5px; }
.diff-copy li::before { content: "—"; color: var(--accent); }
.widget { border-radius: 26px; border: 1px solid var(--line-strong); background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01)); padding: clamp(20px, 3vw, 34px); box-shadow: 0 40px 100px -50px rgba(0,0,0,.9); position: relative; overflow: hidden; }
.widget-title { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 18px; font-size: 13px; color: var(--ink-faint); letter-spacing: .06em; text-transform: uppercase; }
.widget-title b { color: var(--ink); font-weight: 600; letter-spacing: 0; text-transform: none; font-size: 15px; }

/* recipe: phase bar */
.recipe .lane { position: relative; margin-bottom: 26px; }
.recipe .lane-label { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px; display: flex; justify-content: space-between; }
.recipe .bar { display: flex; height: 58px; border-radius: 12px; overflow: hidden; gap: 3px; }
.recipe .ph { position: relative; display: flex; flex-direction: column; justify-content: center; padding: 0 12px; font-size: 13px; line-height: 1.2; min-width: 0; }
.recipe .ph small { font-size: 11px; color: var(--ink-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.recipe .ph.busy { background: color-mix(in srgb, var(--accent) 24%, transparent); border: 1px solid color-mix(in srgb, var(--accent) 60%, transparent); }
.recipe .ph.free { background: repeating-linear-gradient(135deg, transparent 0 6px, rgba(255,255,255,.05) 6px 12px); border: 1px dashed var(--line-strong); color: var(--ink-soft); }
.recipe .ph.space { background: rgba(255,255,255,.06); border: 1px solid var(--line); }
.recipe .ph.slotted { background: color-mix(in srgb, var(--good) 22%, transparent); border: 1px solid color-mix(in srgb, var(--good) 60%, transparent); opacity: 0; transform: translateY(8px); }
.recipe.play .ph.slotted { animation: msgin .7s var(--ease) 2.2s forwards; }
.recipe .playhead { position: absolute; top: 22px; bottom: 0; width: 2px; background: var(--ink); left: 0; opacity: 0; box-shadow: 0 0 12px var(--ink); }
.recipe.play .playhead { animation: sweep 6s linear 0.4s infinite; }
@keyframes sweep { 0% { left: 0; opacity: 0; } 5% { opacity: 1; } 95% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
.recipe .legend { display: flex; gap: 18px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-faint); margin-top: 6px; }
.recipe .legend i { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: -2px; margin-right: 6px; }

/* seats */
.seats .cls { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.seats .cls .name { font-family: var(--font-display); font-size: 1.3rem; }
.seats .cls .cap { font-variant-numeric: tabular-nums; color: var(--ink-soft); font-size: 14px; }
.seats .grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; }
.seats .seat { aspect-ratio: 1; border-radius: 10px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.03); display: grid; place-items: center; font-size: 12px; color: var(--ink-faint); transition: background .5s, border-color .5s, color .5s; }
.seats .seat.taken { background: rgba(255,255,255,.08); color: var(--ink-soft); }
.seats .seat.voice { background: color-mix(in srgb, var(--accent) 24%, transparent); border-color: var(--accent); color: var(--ink); }
.seats .wait { margin-top: 14px; font-size: 13px; color: var(--ink-faint); min-height: 1.4em; }

/* cadence */
.cad .levels { display: grid; gap: 10px; }
.cad .lvl { border-radius: 14px; border: 1px solid var(--line-strong); padding: 14px 16px; display: grid; grid-template-columns: 110px 1fr; gap: 12px; align-items: center; background: rgba(255,255,255,.02); }
.cad .lvl .k { font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }
.cad .lvl .v { font-size: 15px; }
.cad .lvl.top { border-color: color-mix(in srgb, var(--accent) 60%, transparent); background: color-mix(in srgb, var(--accent) 10%, transparent); }
.cad .weeks { display: grid; grid-template-columns: repeat(8, 1fr); gap: 6px; margin-top: 16px; }
.cad .wk { border-radius: 8px; height: 46px; border: 1px solid var(--line); display: grid; place-items: center; font-size: 11.5px; color: var(--ink-faint); position: relative; }
.cad .wk.on { background: color-mix(in srgb, var(--accent) 22%, transparent); border-color: color-mix(in srgb, var(--accent) 60%, transparent); color: var(--ink); }
.cad .wk.skip { background: repeating-linear-gradient(135deg, transparent 0 5px, rgba(255,255,255,.05) 5px 10px); border-style: dashed; }
.cad .wk.skip::after { content: attr(data-why); position: absolute; top: -18px; font-size: 10px; letter-spacing: .06em; color: var(--accent); white-space: nowrap; }
.cad .wk.next { border-color: var(--good); color: var(--good); }
.cad .note { margin-top: 12px; font-size: 13px; color: var(--ink-faint); }

/* travel */
.travel .map { position: relative; height: 240px; border-radius: 16px; background: radial-gradient(600px 240px at 30% 40%, rgba(255,255,255,.05), transparent 60%); overflow: hidden; }
.travel .pin { position: absolute; transform: translate(-50%, -50%); text-align: center; }
.travel .pin i { display: block; width: 14px; height: 14px; border-radius: 50%; margin: 0 auto 8px; background: var(--ink-faint); border: 3px solid var(--bg); box-shadow: 0 0 0 1px var(--line-strong); }
.travel .pin.home i { background: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 0 24px color-mix(in srgb, var(--accent) 60%, transparent); }
.travel .pin b { display: block; font-size: 13.5px; text-shadow: 0 0 8px var(--bg), 0 0 14px var(--bg); }
.travel .pin small { font-size: 12px; color: var(--ink-faint); text-shadow: 0 0 8px var(--bg), 0 0 14px var(--bg); }
.travel .pin .when { display: inline-block; margin-top: 6px; padding: 4px 10px; border-radius: 999px; background: rgba(255,255,255,.08); font-size: 12px; }
.travel .pin.soon .when { background: color-mix(in srgb, var(--good) 22%, transparent); color: var(--good); }
.travel .route { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }
.travel .route path { fill: none; stroke: var(--ink-faint); stroke-width: 1.5; stroke-dasharray: 5 6; opacity: .7; }
.travel.play .route path { animation: dash 2s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -22; } }
.travel .say { margin-top: 16px; font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--ink); line-height: 1.35; }

/* ---------- image band ---------- */
.band { position: relative; min-height: 70vh; display: grid; place-items: center; overflow: hidden; isolation: isolate; text-align: center; padding: clamp(80px, 12vw, 160px) 0; }
.band img { position: absolute; inset: -12% 0; width: 100%; height: 124%; object-fit: cover; object-position: var(--pos, center); z-index: -2; will-change: transform; }
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 60% at 50% 55%, rgba(14,12,11,.6), rgba(14,12,11,.85)); }
.band blockquote { max-width: 900px; padding: 0 var(--pad); }
.band blockquote p { font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: clamp(1.7rem, 4vw, 3.3rem); line-height: 1.15; letter-spacing: -.01em; text-wrap: balance; }
.band blockquote footer { margin-top: 22px; font-size: 13.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft); }

/* staff points list */
.points { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
@media (max-width: 560px) { .points { grid-template-columns: 1fr; } }
.points li { padding: 16px 0 18px; border-top: 1px solid var(--line); }
.points li b { display: block; font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; margin-bottom: 6px; font-variation-settings: 'opsz' 60; letter-spacing: -.01em; }
.points li span { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; }
.points li span::first-letter { text-transform: uppercase; }

/* ---------- guardrails ---------- */
.guards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
@media (max-width: 1000px) { .guards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .guards { grid-template-columns: 1fr; } }
.guard { background: var(--bg); padding: 26px 24px 28px; }
.guard h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; margin-bottom: 10px; font-variation-settings: 'opsz' 60; }
.guard p { font-size: 14.5px; color: var(--ink-soft); }
.guard .no { display: inline-block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; font-weight: 700; }

/* ---------- desk glass ---------- */
.desk-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
@media (max-width: 900px) { .desk-grid { grid-template-columns: 1fr; } }
.glass {
  border-radius: 30px; border: 1px solid var(--line-strong); padding: 26px 26px 92px; background: linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.015));
  box-shadow: 0 50px 120px -50px rgba(0,0,0,.9), inset 0 1px 0 rgba(255,255,255,.08); position: relative;
}
.glass .now { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--ink-faint); letter-spacing: .08em; text-transform: uppercase; }
.glass .now b { font-family: var(--font-display); font-size: 2.2rem; color: var(--ink); font-weight: 300; letter-spacing: 0; text-transform: none; font-variant-numeric: tabular-nums; }
.glass .next { margin: 18px 0 8px; font-family: var(--font-display); font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.1; }
.glass .next small { display: block; font-family: var(--font-body); font-size: 13px; color: var(--ink-faint); margin-top: 6px; }
.glass ul { list-style: none; margin-top: 18px; display: grid; gap: 8px; }
.glass li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; color: var(--ink-soft); padding: 10px 12px; border-radius: 12px; background: rgba(255,255,255,.03); }
.glass li i { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-faint); margin-top: 7px; flex: none; }
.glass li.changed i { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.glass li.changed { opacity: 0; animation: msgin .7s var(--ease) 1.2s forwards; }
.glass .mic { position: absolute; right: 22px; bottom: 22px; width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; box-shadow: 0 10px 30px -10px var(--accent); }
.glass .mic svg { width: 22px; height: 22px; }
.glass .say { position: absolute; right: 90px; bottom: 30px; font-size: 13px; color: var(--ink-soft); font-style: italic; font-family: var(--font-display); opacity: 0; animation: msgin .7s var(--ease) 2.4s forwards; }
@media (max-width: 560px) { .glass .say { display: none; } }

/* ---------- early access ---------- */
.access { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.access-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 5vw, 80px); align-items: start; }
@media (max-width: 900px) { .access-grid { grid-template-columns: 1fr; } }
.access h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 16px 0 18px; text-wrap: balance; }
.form { border-radius: 26px; border: 1px solid var(--line-strong); padding: clamp(20px, 3vw, 34px); background: rgba(255,255,255,.025); display: grid; gap: 14px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .form .row { grid-template-columns: 1fr; } }
.field { display: grid; gap: 6px; }
.field label { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.field input, .field select, .field textarea {
  height: 48px; padding: 0 14px; border-radius: 12px; border: 1px solid var(--line-strong); background: rgba(255,255,255,.03); color: var(--ink);
  outline: none; transition: border-color .3s, box-shadow .3s; width: 100%;
}
.field textarea { height: auto; min-height: 96px; padding: 12px 14px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent); }
.field select option { color: #000; }
.form .fine { font-size: 12.5px; color: var(--ink-faint); }
.form .btn { justify-self: start; }
.form .ok, .form .err { display: none; padding: 14px 16px; border-radius: 12px; font-size: 14.5px; }
.form .ok { background: color-mix(in srgb, var(--good) 18%, transparent); color: var(--good); }
.form .err { background: rgba(200, 80, 60, .18); color: #f2a08c; }
.form.sent .ok { display: block; } .form.failed .err { display: block; }
.form.sent .btn { display: none; }

/* ---------- footer ---------- */
.foot { border-top: 1px solid var(--line); padding: 56px 0 40px; font-size: 14px; color: var(--ink-faint); }
.foot-grid { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; }
@media (max-width: 800px) { .foot-grid { grid-template-columns: 1fr; } }
.foot .brand-word { font-size: 28px; color: var(--ink); }
.foot .cols { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
@media (max-width: 800px) { .foot .cols { grid-template-columns: repeat(2, 1fr); } }
.foot .cols h4 { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 12px; font-weight: 700; }
.foot .cols a { display: block; padding: 4px 0; color: var(--ink-soft); }
.foot .cols a:hover { color: var(--ink); }
.foot .legal { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }

/* ---------- hub: vertical grid ---------- */
.verts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 1000px) { .verts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .verts { grid-template-columns: 1fr; } }
.vert { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; isolation: isolate; border: 1px solid var(--line); background: var(--surface); }
.vert img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: var(--pos, center); transition: transform 1.2s var(--ease), filter .8s; z-index: -2; filter: saturate(.9); }
.vert:hover img { transform: scale(1.06); filter: saturate(1.05); }
.vert::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(14,12,11,.05) 30%, rgba(14,12,11,.9) 100%); }
.vert .body { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px; }
.vert .body .eyebrow { color: var(--ink-soft); font-size: 11px; }
.vert .body .eyebrow::before { background: var(--vc, var(--accent)); box-shadow: 0 0 14px var(--vc, var(--accent)); }
.vert h3 { font-family: var(--font-display); font-weight: 300; font-size: 1.7rem; line-height: 1.05; margin-top: 10px; letter-spacing: -.01em; }
.vert p { font-size: 13.5px; color: var(--ink-soft); margin-top: 8px; max-height: 0; overflow: hidden; opacity: 0; transition: max-height .6s var(--ease), opacity .5s; }
.vert:hover p { max-height: 80px; opacity: 1; }
.vert .go { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(14,12,11,.5); border: 1px solid var(--line-strong); backdrop-filter: blur(8px); transition: background .4s, transform .5s var(--ease); }
.vert:hover .go { background: var(--accent); color: var(--accent-ink); transform: rotate(-45deg); }
.vert-group { grid-column: 1 / -1; padding: 30px 0 4px; font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: var(--ink-soft); display: flex; align-items: center; gap: 16px; }
.vert-group::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* thesis on hub */
.thesis { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 40px); }
@media (max-width: 800px) { .thesis { grid-template-columns: 1fr; } }
.thesis h3 { font-family: var(--font-display); font-weight: 300; font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.12; margin-bottom: 12px; letter-spacing: -.01em; }
.thesis h3 em { font-style: italic; color: var(--accent); }
.thesis p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- reveal motion ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 1s var(--ease), transform 1.1s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
/* stagger without inline styles: siblings get --i by position */
.pain li:nth-child(2), .tiles .tile:nth-child(4n+2), .guards .guard:nth-child(2), .thesis > :nth-child(2), .verts .vert:nth-child(3n+2), .diff-grid > :nth-child(2), .desk-grid > :nth-child(2), .access-grid > :nth-child(2), .late-grid > :nth-child(2) { --i: 1; }
.pain li:nth-child(3), .tiles .tile:nth-child(4n+3), .guards .guard:nth-child(3), .thesis > :nth-child(3), .verts .vert:nth-child(3n+3) { --i: 2; }
.tiles .tile:nth-child(4n+4), .guards .guard:nth-child(4) { --i: 3; }
.mt-14 { margin-top: 14px; } .mt-26 { margin-top: 26px; }
.foot-tag { margin-top: 14px; max-width: 34ch; }
.access-note { margin-top: 18px; font-size: 14.5px; max-width: 44ch; }
.nf { min-height: 70vh; display: flex; align-items: center; }
.nf-h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 18px 0; }
.acc { color: var(--accent); }
.recipe .legend .lg-busy { background: color-mix(in srgb, var(--accent) 40%, transparent); }
.recipe .legend .lg-free { background: rgba(255,255,255,.08); border: 1px dashed var(--line-strong); }
.recipe .legend .lg-second { background: color-mix(in srgb, var(--good) 40%, transparent); }
[data-reveal].in { opacity: 1; transform: none; }
.hero h1 .w { display: inline-block; opacity: 0; transform: translateY(.35em) rotate(1.5deg); animation: wordin 1.1s var(--ease) forwards; animation-delay: calc(.25s + var(--wi) * 70ms); }
@keyframes wordin { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001s !important; animation-iteration-count: 1 !important; transition-duration: .001s !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero h1 .w { opacity: 1; transform: none; }
  .grain::after { display: none; }
}
