/* ============================================================
   everyv — live service desk
   A warm editorial frame for a precise operational workspace.
   ============================================================ */

:root {
  color-scheme: light;
  --midnight: #101722;
  --midnight-soft: #162232;
  --midnight-raised: #1c2b3d;
  --paper: #f5f1e8;
  --paper-deep: #ece5d8;
  --surface: #fffdf7;
  --surface-cool: #f0f3f4;
  --ink: #17202a;
  --ink-soft: #46515e;
  --ink-muted: #66717d;
  --line: #d7d0c4;
  --line-dark: rgba(255, 253, 247, 0.16);
  --violet: #5547e8;
  --violet-dark: #4336ce;
  --violet-light: #a9a3ff;
  --violet-wash: #e9e6ff;
  --green: #157b55;
  --green-light: #bcead2;
  --amber: #aa6817;
  --amber-light: #f3d69e;
  --white: #fffdf7;
  --shadow-small: 0 8px 24px rgba(16, 23, 34, 0.08);
  --shadow-large: 0 30px 70px rgba(3, 9, 18, 0.34);
  --display: "Aptos Display", "Segoe UI Variable Display", "Helvetica Neue", sans-serif;
  --body: "Segoe UI Variable Text", "Aptos", "Helvetica Neue", sans-serif;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  --container: 1240px;
  --gutter: clamp(1rem, 4vw, 3rem);
  --section-space: clamp(5rem, 9vw, 8.5rem);
  --radius-small: 0.5rem;
  --radius-medium: 0.875rem;
  --radius-large: 1.25rem;
  --ease-out: cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

p,
h1,
h2,
h3,
ul,
ol,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-wrap: balance;
}

h2 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 5vw, 4.8rem);
}

h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

::selection {
  background: var(--violet);
  color: var(--white);
}

:focus-visible {
  outline: 3px solid #8e86ff;
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - (2 * var(--gutter))), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: var(--section-space);
}

.section--dark {
  background: var(--midnight);
  color: var(--white);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border: 2px solid var(--white);
  background: var(--violet);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

/* Typography and shared controls */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  color: var(--violet-dark);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.25;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--violet-light);
}

.eyebrow__dot {
  width: 0.5rem;
  height: 0.5rem;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 0.25rem rgba(188, 234, 210, 0.12);
}

.button {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius-small);
  font-size: 0.9rem;
  font-weight: 720;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms var(--ease-out),
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 180ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(0.18rem);
}

.button--primary {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(55, 43, 202, 0.26);
}

.button--primary:hover {
  background: var(--violet-dark);
  box-shadow: 0 14px 30px rgba(55, 43, 202, 0.32);
}

.button--secondary {
  border-color: #a8a096;
  background: transparent;
  color: var(--ink);
}

.button--secondary:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.button--light {
  background: var(--white);
  color: var(--midnight);
  box-shadow: 0 10px 24px rgba(12, 9, 55, 0.2);
}

.button--light:hover {
  background: var(--violet-wash);
  color: var(--violet-dark);
  box-shadow: 0 14px 30px rgba(12, 9, 55, 0.28);
}

.button--text-light,
.button--text-dark {
  min-height: 2.75rem;
  padding-inline: 0;
  border-radius: 0;
  box-shadow: inset 0 -1px 0 currentColor;
}

.button--text-light {
  color: var(--white);
}

.button--text-dark {
  color: var(--ink);
}

.button--compact {
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  font-size: 0.84rem;
}

.button--large {
  min-height: 3.6rem;
  padding-inline: 1.4rem;
}

.section-intro {
  max-width: 52rem;
}

.section-intro > p:last-child {
  max-width: 42rem;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.section-intro--light > p:last-child {
  color: #b9c3cf;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.12);
  background: rgba(16, 23, 34, 0.97);
  color: var(--white);
}

.header__inner {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1;
  text-decoration: none;
}

.brand__mark {
  position: relative;
  width: 1.55rem;
  height: 1.55rem;
  display: inline-block;
  flex: 0 0 auto;
  transform: rotate(-6deg);
}

.brand__mark > span {
  position: absolute;
  inset-block: 0;
  width: 0.55rem;
  border-radius: 0.15rem;
  background: var(--violet-light);
}

.brand__mark > span:first-child {
  left: 0.17rem;
  clip-path: polygon(0 0, 100% 0, 65% 100%, 0 100%);
}

.brand__mark > span:last-child {
  right: 0.17rem;
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0 100%);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.3vw, 2.2rem);
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: #c4ccd5;
  font-size: 0.84rem;
  font-weight: 620;
  text-decoration: none;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.4rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--violet-light);
  transition: transform 180ms var(--ease-out);
}

.site-nav__links a:hover {
  color: var(--white);
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  width: 2.9rem;
  height: 2.9rem;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.nav-toggle > span {
  width: 1.2rem;
  height: 1px;
  display: block;
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.nav-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(0.22rem) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] > span:last-child {
  transform: translateY(-0.22rem) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--midnight);
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 5%;
  right: -14rem;
  width: 37rem;
  height: 37rem;
  border: 1px solid rgba(169, 163, 255, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 6rem rgba(169, 163, 255, 0.025),
    0 0 0 12rem rgba(169, 163, 255, 0.018);
}

.hero__grid-lines {
  position: absolute;
  z-index: -2;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 4.75rem 4.75rem;
  mask-image: linear-gradient(to bottom, black 25%, transparent 92%);
}

.hero__layout {
  min-height: calc(100svh - 4.75rem);
  display: grid;
  grid-template-columns: minmax(0, 0.83fr) minmax(36rem, 1.17fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 6rem);
  padding-block: clamp(4.75rem, 8vw, 8rem);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 12.2ch;
  margin-bottom: 1.65rem;
  font-size: clamp(3.25rem, 5.8vw, 6.4rem);
  letter-spacing: -0.06em;
}

.hero h1 em {
  color: var(--violet-light);
  font-style: normal;
}

.hero__lede {
  max-width: 37rem;
  margin-bottom: 2rem;
  color: #bdc7d2;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.4rem;
  margin-bottom: 1.5rem;
}

.hero__note {
  max-width: 36rem;
  margin-bottom: 0;
  padding-left: 1rem;
  border-left: 2px solid rgba(169, 163, 255, 0.48);
  color: #8f9daa;
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero__note strong {
  color: #cdd5de;
}

/* Hero product workspace */
.product-preview {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: var(--radius-large);
  background: #202c3b;
  box-shadow: var(--shadow-large);
  color: var(--ink);
}

.product-preview::after {
  content: "LIVE WORKSPACE";
  position: absolute;
  top: 48%;
  right: -3.65rem;
  padding: 0.25rem 0.65rem;
  transform: rotate(90deg);
  background: var(--violet);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.product-preview__bar {
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1.15rem;
  border-bottom: 1px solid rgba(255, 253, 247, 0.12);
  color: var(--white);
}

.product-preview__bar > div:first-child {
  min-width: 0;
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
}

.product-preview__venue {
  font-size: 0.88rem;
  font-weight: 720;
}

.product-preview__shift {
  color: #8f9ca9;
  font-size: 0.68rem;
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  color: #cbd3dc;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}

.live-label > span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #4ec98c;
  box-shadow: 0 0 0 0.22rem rgba(78, 201, 140, 0.12);
  animation: live-pulse 2.4s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 0.18rem rgba(78, 201, 140, 0.1); }
  50% { box-shadow: 0 0 0 0.36rem rgba(78, 201, 140, 0.02); }
}

.product-preview__body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, 0.85fr);
  background: var(--surface-cool);
}

.floor,
.arrivals {
  min-width: 0;
  padding: 1rem;
}

.arrivals {
  border-left: 1px solid #d8dfe2;
  background: var(--surface);
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 2.65rem;
}

.panel-heading > div,
.board-visual__top > div:first-child,
.followup-visual__head > div,
.booking-slip > div:first-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.panel-heading strong,
.board-visual__top strong,
.followup-visual__head strong,
.booking-slip strong {
  overflow: hidden;
  font-size: 0.76rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel-kicker,
.panel-meta {
  color: var(--ink-muted);
  font-size: 0.57rem;
  font-weight: 720;
  letter-spacing: 0.09em;
  line-height: 1.3;
  text-transform: uppercase;
}

.panel-meta {
  flex: 0 0 auto;
  padding-top: 0.15rem;
}

.floor__map {
  position: relative;
  height: 15.5rem;
  overflow: hidden;
  border: 1px solid #d4dcdf;
  border-radius: 0.65rem;
  background-color: #e6ebec;
  background-image:
    linear-gradient(rgba(23, 32, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 32, 42, 0.035) 1px, transparent 1px);
  background-size: 1.5rem 1.5rem;
}

.table {
  position: absolute;
  min-width: 3.8rem;
  min-height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.05rem;
  border: 1px solid #adb8bd;
  background: rgba(255, 253, 247, 0.92);
  box-shadow: 0 4px 10px rgba(23, 32, 42, 0.07);
}

.table--round {
  width: 3.7rem;
  height: 3.7rem;
  border-radius: 50%;
}

.table--wide {
  min-width: 5.6rem;
  border-radius: 0.5rem;
}

.table strong {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.table span {
  color: var(--ink-muted);
  font-size: 0.48rem;
}

.table--seated {
  border-color: rgba(21, 123, 85, 0.42);
  background: #e3f3e9;
}

.table--available {
  border-style: dashed;
  border-color: #8f9aa0;
  background: rgba(255, 253, 247, 0.72);
}

.table--arriving {
  border: 2px solid var(--amber);
  background: #fff4dc;
}

.table--a { top: 14%; left: 10%; }
.table--b { top: 13%; right: 9%; }
.table--c { top: 45%; left: 43%; }
.table--d { bottom: 10%; left: 8%; }
.table--e { right: 11%; bottom: 9%; }

.floor__station,
.mini-host {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px dashed #9faab0;
  color: #65717b;
  font-family: var(--mono);
  font-size: 0.48rem;
  letter-spacing: 0.09em;
}

.floor__station {
  top: 0;
  bottom: 0;
  left: -0.1rem;
  width: 1.2rem;
  border-block: 0;
  writing-mode: vertical-rl;
}

.floor__legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  margin: 0.7rem 0 0;
  padding: 0;
  color: var(--ink-muted);
  font-size: 0.58rem;
  list-style: none;
}

.floor__legend li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.status-dot {
  width: 0.48rem;
  height: 0.48rem;
  display: inline-block;
  flex: 0 0 auto;
  border: 1px solid #77838d;
  border-radius: 50%;
  background: transparent;
}

.status-dot--green {
  border-color: var(--green);
  background: var(--green);
}

.status-dot--amber {
  border-color: var(--amber);
  background: var(--amber);
}

.count-badge {
  min-width: 1.35rem;
  height: 1.35rem;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--violet-wash);
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 750;
}

.arrival-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.arrival {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  min-height: 3.55rem;
  padding: 0.45rem 0.35rem;
  border-top: 1px solid #e3ded5;
}

.arrival--active {
  margin-inline: -0.35rem;
  padding-inline: 0.7rem;
  border-color: transparent;
  border-radius: 0.45rem;
  background: var(--violet-wash);
}

.arrival time {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.arrival > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.arrival strong {
  overflow: hidden;
  font-size: 0.64rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.arrival > div span {
  color: var(--ink-muted);
  font-size: 0.52rem;
}

.arrival__state {
  color: var(--green);
  font-size: 0.49rem;
  font-weight: 700;
}

.message-card {
  margin-top: 0.8rem;
  padding: 0.75rem;
  border: 1px solid #d6d0c6;
  border-radius: 0.55rem;
  background: #faf7f0;
  box-shadow: var(--shadow-small);
}

.message-card__head {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.message-card__head strong {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 0.57rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.message-card__head time {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 0.48rem;
}

.message-card p {
  margin: 0.5rem 0 0 1.65rem;
  color: var(--ink-soft);
  font-size: 0.57rem;
  line-height: 1.45;
}

.telegram-mark {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #2389c9;
  color: #fff;
}

.telegram-mark svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: currentColor;
}

.telegram-mark--large {
  width: 2.4rem;
  height: 2.4rem;
}

.telegram-mark--large svg {
  width: 1.45rem;
  height: 1.45rem;
}

.preview-rail {
  min-height: 4.15rem;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 0.75rem 1rem;
  border-top: 1px solid rgba(255, 253, 247, 0.12);
  color: #9eabb8;
}

.preview-rail__label {
  flex: 0 0 auto;
  color: #71808e;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.preview-rail ol {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-rail ol::before {
  content: "";
  position: absolute;
  top: 0.5rem;
  right: 14%;
  left: 14%;
  height: 1px;
  background: #4a5664;
}

.preview-rail li {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.15rem;
  text-align: center;
}

.preview-rail li > span {
  z-index: 1;
  width: 1rem;
  height: 1rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid #63707e;
  border-radius: 50%;
  background: #202c3b;
  font-family: var(--mono);
  font-size: 0.42rem;
}

.preview-rail li strong {
  color: #b9c3cd;
  font-size: 0.49rem;
  font-weight: 650;
  line-height: 1.2;
}

.preview-rail li.is-complete > span {
  border-color: var(--green-light);
  color: var(--green-light);
}

.preview-rail li.is-live > span {
  border-color: var(--violet-light);
  background: var(--violet);
  color: var(--white);
}

/* Honest product facts */
.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.proof-strip__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-strip__list > li {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem;
  padding: 1.5rem clamp(1rem, 2vw, 1.75rem);
  border-right: 1px solid var(--line);
}

.proof-strip__list > li:first-child {
  padding-left: 0;
}

.proof-strip__list > li:last-child {
  padding-right: 0;
  border-right: 0;
}

.proof-strip__index {
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
}

.proof-strip__list div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.proof-strip__list strong {
  font-size: 0.77rem;
  line-height: 1.3;
}

.proof-strip__list div > span {
  margin-top: 0.2rem;
  color: var(--ink-muted);
  font-size: 0.66rem;
  line-height: 1.4;
}

/* Product stories */
.stories {
  position: relative;
  background: var(--paper);
}

.stories::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(34vw, 31rem);
  height: 1px;
  background: var(--violet);
}

.stories .section-intro {
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
}

.story-list {
  display: flex;
  flex-direction: column;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(28rem, 1.28fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-top: 1px solid var(--line);
}

.story:last-child {
  padding-bottom: 0;
}

.story--reverse {
  grid-template-columns: minmax(28rem, 1.28fr) minmax(0, 0.72fr);
}

.story--reverse .story__copy {
  grid-column: 2;
}

.story--reverse .story-visual {
  grid-row: 1;
  grid-column: 1;
}

.story__copy {
  max-width: 31rem;
}

.story__number {
  display: block;
  margin-bottom: 1.25rem;
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.story__copy h3 {
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 3.6vw, 3.5rem);
}

.story__copy > p {
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 0.68rem 0 0.68rem 1.75rem;
  border-top: 1px solid rgba(23, 32, 42, 0.12);
  color: #313c47;
  font-size: 0.83rem;
  font-weight: 620;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 1rem;
  left: 0.15rem;
  width: 0.7rem;
  height: 0.4rem;
  transform: rotate(-45deg);
  border-bottom: 2px solid var(--green);
  border-left: 2px solid var(--green);
}

.story-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cfc8bd;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-small);
}

/* Booking conversation visual */
.chat-visual {
  position: relative;
  min-height: 30rem;
  padding: 1.15rem;
  background-color: #e8edef;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(23, 32, 42, 0.08) 1px, transparent 0);
  background-size: 1.2rem 1.2rem;
}

.chat-visual::before {
  content: "GUEST CONVERSATION";
  position: absolute;
  top: 1.55rem;
  right: -3.6rem;
  z-index: 2;
  transform: rotate(90deg);
  color: #7f8b94;
  font-family: var(--mono);
  font-size: 0.52rem;
  letter-spacing: 0.12em;
}

.chat-visual__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1px solid #d3ccc1;
  border-radius: 0.65rem 0.65rem 0 0;
  background: var(--surface);
}

.chat-visual__header > div {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.chat-visual__header strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.chat-visual__header div > span {
  color: var(--ink-muted);
  font-size: 0.63rem;
}

.online-state {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex: 0 0 auto;
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 700;
}

.online-state::before {
  content: "";
  width: 0.46rem;
  height: 0.46rem;
  border-radius: 50%;
  background: var(--green);
}

.chat-visual__messages {
  min-height: 15.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.25rem clamp(1rem, 3vw, 2rem) 4.2rem;
  border-inline: 1px solid #d3ccc1;
  background: rgba(255, 253, 247, 0.72);
}

.bubble {
  width: fit-content;
  max-width: 74%;
  margin: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid #d6d0c6;
  border-radius: 0.35rem 0.85rem 0.85rem 0.85rem;
  background: var(--surface);
  color: var(--ink-soft);
  font-size: 0.72rem;
  line-height: 1.45;
  box-shadow: 0 4px 10px rgba(23, 32, 42, 0.05);
}

.bubble--venue {
  align-self: flex-end;
  border-color: #c8c2ff;
  border-radius: 0.85rem 0.35rem 0.85rem 0.85rem;
  background: var(--violet-wash);
  color: #29215f;
}

.bubble--guest:last-child {
  margin-left: 1.25rem;
}

.booking-slip {
  position: relative;
  z-index: 1;
  width: calc(100% - clamp(2rem, 8vw, 5.5rem));
  margin: -3.15rem auto 0;
  padding: 1rem;
  border-top: 3px solid var(--green);
  border-radius: 0.2rem 0.2rem 0.65rem 0.65rem;
  background: var(--surface);
  box-shadow: 0 18px 32px rgba(23, 32, 42, 0.14);
}

.booking-slip > div:first-child {
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #e2dcd2;
}

.booking-slip dl {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  margin: 0;
}

.booking-slip dl > div {
  min-width: 0;
  padding: 0.7rem 0.65rem 0 0;
}

.booking-slip dl > div + div {
  padding-left: 0.65rem;
  border-left: 1px solid #e2dcd2;
}

.booking-slip dt {
  color: var(--ink-muted);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.booking-slip dd {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.25rem 0 0;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

/* Live floor visual */
.board-visual {
  min-height: 29rem;
  border-color: #28384b;
  background: var(--midnight-soft);
  color: var(--white);
}

.board-visual__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid var(--line-dark);
}

.board-visual .panel-kicker {
  color: #7f8e9d;
}

.board-visual__summary {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.board-visual__summary span {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line-dark);
  color: #c0cad4;
  font-family: var(--mono);
  font-size: 0.56rem;
  font-variant-numeric: tabular-nums;
}

.board-visual__content {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(12rem, 0.65fr);
  min-height: 24rem;
}

.mini-floor {
  position: relative;
  min-height: 24rem;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background-image:
    linear-gradient(rgba(255, 253, 247, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.038) 1px, transparent 1px);
  background-size: 2.25rem 2.25rem;
}

.mini-table {
  position: absolute;
  min-width: 4.2rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid #687585;
  border-radius: 0.5rem;
  background: #263548;
  color: #e5e9ed;
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
}

.mini-table span {
  display: block;
  color: #9ba7b3;
  font-size: 0.5rem;
  font-weight: 500;
}

.mini-table:nth-child(1) { top: 12%; left: 12%; }
.mini-table:nth-child(2) { top: 13%; right: 11%; }
.mini-table:nth-child(3) { top: 44%; left: 40%; }
.mini-table:nth-child(4) { bottom: 10%; left: 11%; }
.mini-table:nth-child(5) { right: 12%; bottom: 10%; }

.mini-table--seated {
  border-color: #3c9772;
  background: #173e36;
  color: #d9f4e6;
}

.mini-table--arriving {
  border: 2px solid #d99a40;
  background: #4c3825;
  color: #ffe2ad;
}

.mini-host {
  top: 0;
  bottom: 0;
  left: -0.1rem;
  width: 1.35rem;
  border-block: 0;
  border-color: #576473;
  color: #82909e;
  writing-mode: vertical-rl;
}

.board-queue {
  padding: 1.15rem;
  background: #192638;
}

.board-queue > .panel-kicker {
  display: block;
  margin-bottom: 0.9rem;
}

.board-queue > div {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 0.55rem;
  padding: 0.85rem 0;
  border-top: 1px solid var(--line-dark);
}

.board-queue time {
  color: var(--violet-light);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-variant-numeric: tabular-nums;
}

.board-queue p {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.board-queue strong {
  overflow: hidden;
  font-size: 0.67rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.board-queue p span {
  color: #8997a5;
  font-size: 0.55rem;
}

/* Follow-up timeline visual */
.followup-visual {
  min-height: 29rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--surface);
}

.followup-visual__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
}

.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  padding: 0.3rem 0.55rem;
  border: 1px solid currentColor;
  border-radius: 0.35rem;
  font-size: 0.56rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.status-tag--green {
  color: var(--green);
  background: #e9f5ee;
}

.timeline {
  margin: 0;
  padding: 0.25rem 0 0;
  list-style: none;
}

.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 1.25rem minmax(0, 1fr) auto;
  gap: 0.75rem;
  min-height: 5.3rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
}

.timeline li::before {
  content: "";
  position: absolute;
  top: 2rem;
  bottom: -2rem;
  left: 0.32rem;
  width: 1px;
  background: #c9c1b6;
}

.timeline li:last-child::before {
  display: none;
}

.timeline__mark {
  position: relative;
  z-index: 1;
  width: 0.7rem;
  height: 0.7rem;
  margin-top: 0.62rem;
  border: 2px solid #9a9186;
  border-radius: 50%;
  background: var(--surface);
}

.timeline .is-done .timeline__mark {
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 0 0 0.25rem #e7f3ec;
}

.timeline li > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.timeline time {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 0.56rem;
  font-variant-numeric: tabular-nums;
}

.timeline strong {
  margin-top: 0.12rem;
  font-size: 0.76rem;
}

.timeline p {
  margin: 0.08rem 0 0;
  color: var(--ink-muted);
  font-size: 0.63rem;
}

.timeline__state {
  align-self: center;
  color: var(--ink-muted);
  font-size: 0.56rem;
  font-weight: 650;
}

.timeline .is-done .timeline__state {
  color: var(--green);
}

.waitlist-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.2rem;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--amber);
  background: #fff3dc;
}

.waitlist-note p {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0;
}

.waitlist-note strong {
  font-size: 0.7rem;
}

.waitlist-note p span {
  color: #76562c;
  font-size: 0.59rem;
}

.waitlist-note__action {
  color: #72420c;
  font-size: 0.6rem;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

/* End-to-end service rail */
.service-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.service-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.35;
  background-image: linear-gradient(90deg, transparent 0 49.9%, rgba(255, 255, 255, 0.04) 50% 50.1%, transparent 50.2%);
  background-size: 12rem 100%;
}

.service-section .section-intro {
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.service-rail {
  position: relative;
  --service-rail-gap: clamp(1.5rem, 4vw, 4rem);
  --service-node-radius: 1.675rem;
}

.service-rail__track {
  display: none;
}

.service-rail__track > span {
  display: none;
}

.service-rail ol {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--service-rail-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-rail li {
  position: relative;
  min-width: 0;
}

.service-rail li:not(:last-child)::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: calc(2rem + var(--service-node-radius));
  left: var(--service-node-radius);
  width: calc(100% + var(--service-rail-gap));
  height: 1px;
  background: #3d4856;
}

.service-rail li:nth-child(-n + 2)::before {
  height: 2px;
  background: var(--violet-light);
}

.service-rail__step {
  display: block;
  margin-bottom: 1.35rem;
  color: #74818e;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.service-rail__icon {
  position: relative;
  z-index: 1;
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  margin-bottom: 1.5rem;
  border: 1px solid #5a6674;
  border-radius: 50%;
  background: var(--midnight);
  color: #c3ccd6;
}

.service-rail__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.service-rail__icon--live {
  border-color: var(--green-light);
  background: #173b32;
  color: var(--green-light);
  box-shadow: 0 0 0 0.45rem rgba(188, 234, 210, 0.07);
}

.service-rail__status {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--violet-light);
  font-size: 0.62rem;
  font-weight: 720;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-rail__status--live {
  color: var(--green-light);
}

.service-rail h3 {
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.service-rail p {
  margin: 0;
  color: #98a5b2;
  font-size: 0.82rem;
  line-height: 1.55;
}

/* Role outcomes */
.roles {
  background: var(--surface);
}

.roles__intro {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  align-items: start;
  gap: clamp(2rem, 7vw, 7rem);
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.roles__intro .eyebrow {
  padding-top: 0.55rem;
}

.roles__intro h2 {
  max-width: 13ch;
  margin-bottom: 0;
}

.roles__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.role {
  min-width: 0;
  min-height: 20rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-right: 1px solid var(--line);
}

.role:first-child {
  padding-left: 0;
}

.role:last-child {
  padding-right: 0;
  border-right: 0;
}

.role__number {
  margin-bottom: auto;
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.role h3 {
  margin: 3rem 0 0.75rem;
  font-size: clamp(2rem, 3vw, 3rem);
}

.role p {
  max-width: 22rem;
  margin-bottom: 2rem;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.role__outcome {
  width: fit-content;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 2px solid var(--violet);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 720;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.validation-horizon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.validation-horizon li {
  min-width: 0;
  min-height: 13.5rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.4vw, 2.25rem);
  border-right: 1px solid var(--line);
}

.validation-horizon li:first-child {
  padding-left: 0;
}

.validation-horizon li:last-child {
  padding-right: 0;
  border-right: 0;
}

.validation-horizon span {
  color: var(--violet-dark);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 740;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.validation-horizon strong {
  display: block;
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.validation-horizon p {
  max-width: 22rem;
  margin: 0.75rem 0 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* Pricing */
.pricing {
  position: relative;
  background: var(--paper-deep);
}

.pricing__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(17rem, 0.6fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
  margin-bottom: clamp(2.75rem, 5vw, 4.5rem);
}

.pricing__heading .section-intro h2 {
  margin-bottom: 0;
}

.pricing__heading > p {
  margin-bottom: 0.65rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-block: 1px solid #bfb7aa;
  background: rgba(255, 253, 247, 0.25);
}

.plan {
  position: relative;
  min-width: 0;
  min-height: 32rem;
  display: flex;
  flex-direction: column;
  padding: clamp(1.35rem, 2.5vw, 2.35rem);
  border-right: 1px solid #bfb7aa;
}

.plan:last-child {
  border-right: 0;
}

.plan--featured {
  margin-block: -0.8rem;
  padding-top: calc(clamp(1.5rem, 3vw, 2.35rem) + 0.8rem);
  border: 1px solid var(--violet);
  background: var(--surface);
  box-shadow: 0 18px 42px rgba(45, 36, 121, 0.12);
}

.plan--featured + .plan {
  border-left: 0;
}

.plan__flag {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  min-height: 1.75rem;
  display: grid;
  place-items: center;
  background: var(--violet);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.plan__top {
  min-height: 10.75rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.plan__label {
  display: block;
  min-height: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--ink-muted);
  font-size: 0.66rem;
  font-weight: 680;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.plan h3 {
  margin-bottom: 1.45rem;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.plan__top p {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
}

.plan__top p strong {
  font-family: var(--display);
  font-size: clamp(2.35rem, 3.5vw, 3.5rem);
  font-weight: 670;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
  line-height: 1;
}

.plan__top p span {
  max-width: 6rem;
  color: var(--ink-muted);
  font-size: 0.64rem;
  line-height: 1.3;
}

.plan > ul {
  margin: 1.6rem 0 2rem;
  padding: 0;
  list-style: none;
}

.plan > ul li {
  position: relative;
  padding: 0.55rem 0 0.55rem 1.45rem;
  color: var(--ink-soft);
  font-size: 0.77rem;
  line-height: 1.45;
}

.plan > ul li::before {
  content: "";
  position: absolute;
  top: 0.93rem;
  left: 0.1rem;
  width: 0.56rem;
  height: 0.32rem;
  transform: rotate(-45deg);
  border-bottom: 1.5px solid var(--green);
  border-left: 1.5px solid var(--green);
}

.plan > .button {
  width: 100%;
  margin-top: auto;
}

.launch-offer {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  align-items: center;
  gap: 2rem;
  margin: clamp(2.5rem, 5vw, 4.5rem) 0 0;
  padding: clamp(1.5rem, 3vw, 2.25rem) 0;
  border-block: 1px solid #bfb7aa;
}

.launch-offer--priority {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  padding: clamp(1.7rem, 3.4vw, 2.8rem);
  border: 1px solid rgba(255, 253, 247, 0.24);
  background: #4438ba;
  color: var(--white);
  box-shadow: 0 22px 46px rgba(45, 36, 121, 0.2);
}

.launch-offer--priority::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8rem;
  right: -4rem;
  width: 21rem;
  height: 21rem;
  border: 1px solid rgba(255, 253, 247, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(255, 253, 247, 0.035);
}

.launch-offer__label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--violet-dark);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launch-offer--priority .launch-offer__label {
  color: #ddd9ff;
}

.launch-offer h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
}

.launch-offer--priority h3 {
  max-width: 17ch;
  color: var(--white);
}

.launch-offer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.launch-offer--priority p {
  max-width: 42rem;
  color: #e4e1ff;
}

.launch-offer--priority .button {
  min-width: 12rem;
}

.enterprise-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  align-items: center;
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-top: clamp(2rem, 4vw, 3.25rem);
  padding: clamp(1.45rem, 2.8vw, 2.15rem);
  border: 1px solid #bfb7aa;
  border-top: 2px solid #9b92ed;
  background: rgba(255, 253, 247, 0.42);
}

.enterprise-strip__label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--violet-dark);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.enterprise-strip h3 {
  max-width: 28rem;
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
}

.enterprise-strip p {
  max-width: 44rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.enterprise-strip .button {
  min-width: 10rem;
}

.pricing__note {
  max-width: 52rem;
  margin: 1.5rem 0 0;
  color: #655e55;
  font-size: 0.68rem;
  line-height: 1.55;
}

/* FAQ */
.faq {
  background: var(--surface);
}

.faq__layout {
  display: grid;
  grid-template-columns: minmax(16rem, 0.65fr) minmax(0, 1.35fr);
  align-items: start;
  gap: clamp(3rem, 10vw, 9rem);
}

.faq__intro {
  position: sticky;
  top: 7rem;
}

.faq__intro h2 {
  font-size: clamp(2.7rem, 4.5vw, 4.4rem);
}

.faq__intro > p:not(.eyebrow) {
  margin-bottom: 1rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.faq__intro > a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--violet-dark);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.faq__intro > a:hover {
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.faq__list {
  border-top: 1px solid var(--ink);
}

.faq__list details {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  min-height: 5.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 2rem;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

.faq__list summary::-webkit-details-marker {
  display: none;
}

.faq__list summary > span {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: block;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq__list summary > span::before,
.faq__list summary > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.72rem;
  height: 1px;
  transform: translate(-50%, -50%);
  background: currentColor;
  transition: transform 180ms var(--ease-out);
}

.faq__list summary > span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__list details[open] summary > span {
  border-color: var(--violet);
  background: var(--violet);
  color: var(--white);
}

.faq__list details[open] summary > span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__list details[open] summary {
  color: var(--violet-dark);
}

.faq__list details > p {
  max-width: 45rem;
  margin: -0.35rem 3rem 1.75rem 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* Closing demo invitation */
.demo-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--midnight-soft);
  color: var(--white);
}

.demo-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0 24.9%, rgba(255, 255, 255, 0.045) 25% 25.1%, transparent 25.2% 74.9%, rgba(255, 255, 255, 0.045) 75% 75.1%, transparent 75.2%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 4.5rem;
}

.demo-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -11rem;
  width: 26rem;
  height: 26rem;
  border: 1px solid rgba(169, 163, 255, 0.25);
  border-radius: 50%;
}

.demo-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(19rem, 0.65fr);
  align-items: end;
  gap: clamp(3rem, 10vw, 10rem);
}

.demo-section h2 {
  max-width: 12ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6rem);
}

.demo-section__action > p {
  margin-bottom: 1.4rem;
  color: #b7c2cd;
  font-size: 0.94rem;
}

.demo-section__action .button {
  width: 100%;
}

.demo-section__action > span {
  display: block;
  margin-top: 0.85rem;
  color: #8593a1;
  font-size: 0.65rem;
  line-height: 1.5;
}

/* Footer */
.footer {
  padding-block: 2.5rem;
  border-top: 1px solid var(--line-dark);
  background: var(--midnight);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: end;
  gap: clamp(2rem, 7vw, 7rem);
}

.brand--footer {
  margin-bottom: 0.8rem;
}

.footer__inner > div > p {
  max-width: 24rem;
  margin: 0;
  color: #8794a2;
  font-size: 0.75rem;
}

.footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer nav a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  color: #bcc6d0;
  font-size: 0.76rem;
  font-weight: 650;
  text-decoration: none;
}

.footer nav a:hover {
  color: var(--white);
}

.footer__copy {
  margin: 0 0 0.7rem;
  color: #74818f;
  font-family: var(--mono);
  font-size: 0.64rem;
  white-space: nowrap;
}

/* Progressive reveal states. Content is visible by default when JS is absent. */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-reveal-ready {
  opacity: 0.94;
  transform: translateY(0.65rem);
  transition:
    opacity 360ms var(--ease-out),
    transform 360ms var(--ease-out);
}

.reveal.is-reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay.is-reveal-ready {
  transition-delay: 55ms;
}

.reveal--long-delay.is-reveal-ready {
  transition-delay: 95ms;
}

/* ============================================================
   Responsive layout
   ============================================================ */

@media (max-width: 72.5rem) {
  .hero__layout {
    min-height: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 4rem;
  }

  .hero__copy {
    max-width: 52rem;
  }

  .hero h1 {
    max-width: 13ch;
    font-size: clamp(3.5rem, 8vw, 6.25rem);
  }

  .product-preview {
    width: min(100%, 58rem);
    margin-inline: auto;
  }
}

@media (max-width: 65rem) {
  .story,
  .story--reverse {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }

  .story__copy,
  .story--reverse .story__copy {
    max-width: 43rem;
    grid-row: auto;
    grid-column: 1;
  }

  .story-visual,
  .story--reverse .story-visual {
    width: min(100%, 50rem);
    grid-row: auto;
    grid-column: 1;
  }

  .story--reverse .story-visual {
    grid-row: 2;
  }

  .pricing__heading {
    gap: 3rem;
  }

  .plan {
    padding-inline: 1.35rem;
  }
}

@media (max-width: 56.25rem) {
  .proof-strip__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip__list > li,
  .proof-strip__list > li:first-child,
  .proof-strip__list > li:last-child {
    padding: 1.25rem;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .proof-strip__list > li:nth-child(even) {
    border-right: 0;
  }

  .proof-strip__list > li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .service-rail__track {
    display: none;
  }

  .service-rail ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem 2.5rem;
  }

  .service-rail li {
    position: relative;
    padding-top: 1rem;
    border-top: 1px solid #3d4856;
  }

  .service-rail li:not(:last-child)::before {
    display: none;
  }

  .service-rail__step {
    margin-bottom: 1rem;
  }

  .roles__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }

  .roles__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .validation-horizon {
    grid-template-columns: minmax(0, 1fr);
  }

  .validation-horizon li,
  .validation-horizon li:first-child,
  .validation-horizon li:last-child {
    min-height: auto;
    display: grid;
    grid-template-columns: 9rem minmax(9rem, 0.5fr) minmax(0, 1fr);
    align-items: start;
    gap: 1.25rem;
    padding: 1.5rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .validation-horizon li:last-child {
    border-bottom: 0;
  }

  .validation-horizon strong,
  .validation-horizon p {
    margin: 0;
  }

  .role,
  .role:first-child,
  .role:last-child {
    min-height: auto;
    display: grid;
    grid-template-columns: 3.5rem minmax(8rem, 0.45fr) minmax(0, 1fr);
    align-items: start;
    gap: 1.25rem;
    padding: 2rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .role:last-child {
    border-bottom: 0;
  }

  .role__number,
  .role h3,
  .role p,
  .role__outcome {
    margin: 0;
  }

  .role p {
    grid-row: span 2;
  }

  .role__outcome {
    grid-column: 2;
  }

  .pricing__heading {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .pricing__heading > p {
    max-width: 38rem;
  }

  .plans {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border: 0;
    background: transparent;
  }

  .plan,
  .plan--featured {
    min-height: auto;
    margin: 0;
    padding: 2rem;
    border: 1px solid #bfb7aa;
    border-bottom: 0;
    background: rgba(255, 253, 247, 0.46);
    box-shadow: none;
  }

  .plan:last-child {
    border-right: 1px solid #bfb7aa;
    border-bottom: 1px solid #bfb7aa;
  }

  .plan--featured {
    padding-top: 3.25rem;
    border-color: var(--violet);
    background: var(--surface);
    box-shadow: 0 15px 36px rgba(45, 36, 121, 0.1);
  }

  .plan--featured + .plan {
    border-left: 1px solid #bfb7aa;
  }

  .plan__top {
    min-height: auto;
  }

  .plan__label {
    min-height: auto;
  }

  .plan > ul {
    columns: 2;
    column-gap: 2rem;
  }

  .plan > .button {
    width: min(100%, 21rem);
  }

  .launch-offer,
  .enterprise-strip {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 1.5rem;
  }

  .launch-offer--priority {
    padding: 1.7rem;
  }

  .launch-offer--priority .button,
  .enterprise-strip .button {
    width: fit-content;
  }

  .faq__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .faq__intro {
    position: static;
    max-width: 36rem;
  }

  .demo-section__inner {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    gap: 2.5rem;
  }

  .demo-section__action {
    max-width: 34rem;
  }
}

@media (max-width: 51.25rem) {
  .validation-horizon li,
  .validation-horizon li:first-child,
  .validation-horizon li:last-child {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
  }

  .validation-horizon strong {
    margin-top: 0.1rem;
  }

  .header__inner {
    min-height: 4.35rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    z-index: 90;
    top: 4.35rem;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    gap: 2rem;
    overflow-y: auto;
    padding: 1.5rem var(--gutter) 2.5rem;
    transform: translateY(-0.75rem);
    visibility: hidden;
    opacity: 0;
    border-top: 1px solid var(--line-dark);
    background: var(--midnight);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms var(--ease-out),
      visibility 0s linear 180ms;
  }

  .site-nav.is-open,
  .site-nav.open,
  .site-nav[aria-hidden="false"],
  .nav-toggle[aria-expanded="true"] + .site-nav {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s;
  }

  .site-nav__links {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .site-nav__links li {
    border-bottom: 1px solid var(--line-dark);
  }

  .site-nav__links a {
    min-height: 4rem;
    display: flex;
    justify-content: space-between;
    color: var(--white);
    font-family: var(--display);
    font-size: 1.5rem;
    font-weight: 620;
    letter-spacing: -0.03em;
  }

  .site-nav__links a::after {
    display: none;
  }

  .site-nav__links a::before {
    content: "↘";
    order: 2;
    color: var(--violet-light);
    font-size: 0.9rem;
  }

  .site-nav > .button {
    width: 100%;
    margin-top: auto;
  }

  .hero__layout {
    padding-block: clamp(4rem, 10vw, 6rem);
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }

  .footer__copy {
    grid-column: 1 / -1;
    margin: 0;
  }
}

@supports selector(body:has(*)) {
  @media (max-width: 51.25rem) {
    body:has(.nav-toggle[aria-expanded="true"]) {
      overflow: hidden;
    }
  }
}

@media (max-width: 40rem) {
  :root {
    --gutter: 1rem;
    --section-space: 4.75rem;
  }

  .hero::before {
    top: 9rem;
    right: -20rem;
  }

  .hero h1 {
    font-size: clamp(2.75rem, 14vw, 4.2rem);
    line-height: 0.98;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button--primary {
    width: 100%;
  }

  .hero__actions .button--text-light {
    width: fit-content;
  }

  .product-preview::after {
    display: none;
  }

  .product-preview__bar {
    min-height: 3.6rem;
    padding-inline: 0.8rem;
  }

  .product-preview__bar > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.05rem;
  }

  .product-preview__body {
    grid-template-columns: minmax(0, 1fr);
  }

  .arrivals {
    border-top: 1px solid #d8dfe2;
    border-left: 0;
  }

  .floor__map {
    height: 14rem;
  }

  .preview-rail {
    padding-inline: 0.75rem;
  }

  .preview-rail__label {
    display: none;
  }

  .proof-strip__list {
    grid-template-columns: minmax(0, 1fr);
  }

  .proof-strip__list > li,
  .proof-strip__list > li:first-child,
  .proof-strip__list > li:last-child,
  .proof-strip__list > li:nth-last-child(-n + 2) {
    padding: 1.15rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip__list > li:last-child {
    border-bottom: 0;
  }

  .stories .section-intro {
    margin-bottom: 2.75rem;
  }

  .story {
    gap: 2rem;
    padding-block: 3rem;
  }

  .story__copy h3 {
    font-size: 2.15rem;
  }

  .chat-visual {
    min-height: 29rem;
    padding: 0.65rem;
  }

  .chat-visual::before {
    display: none;
  }

  .chat-visual__header {
    padding-inline: 0.7rem;
  }

  .chat-visual__messages {
    padding-inline: 0.7rem;
  }

  .bubble {
    max-width: 86%;
  }

  .booking-slip {
    width: calc(100% - 0.8rem);
  }

  .booking-slip dl {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.7fr);
  }

  .booking-slip dl > div:last-child {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }

  .board-visual__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .board-visual__summary {
    justify-content: flex-start;
  }

  .board-visual__content {
    grid-template-columns: minmax(0, 1fr);
  }

  .mini-floor {
    min-height: 19rem;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .timeline li {
    grid-template-columns: 1.1rem minmax(0, 1fr);
  }

  .timeline__state {
    grid-column: 2;
    justify-self: start;
  }

  .waitlist-note {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .waitlist-note__action {
    grid-column: 2;
  }

  .service-rail ol {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.5rem;
  }

  .service-rail li {
    display: grid;
    grid-template-columns: 3.4rem minmax(0, 1fr);
    column-gap: 1rem;
  }

  .service-rail__step {
    grid-column: 1 / -1;
  }

  .service-rail__icon {
    grid-row: 2 / span 3;
  }

  .service-rail__status,
  .service-rail h3,
  .service-rail p {
    grid-column: 2;
  }

  .service-rail__status {
    align-self: end;
  }

  .service-rail h3 {
    margin-top: -0.2rem;
  }

  .role,
  .role:first-child,
  .role:last-child {
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 0.75rem 1rem;
  }

  .role p {
    grid-row: auto;
    grid-column: 2;
  }

  .role__outcome {
    grid-column: 2;
  }

  .plan,
  .plan--featured {
    padding-inline: 1.25rem;
  }

  .plan > ul {
    columns: 1;
  }

  .plan > .button {
    width: 100%;
  }

  .launch-offer {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .launch-offer .button {
    width: fit-content;
  }

  .enterprise-strip {
    gap: 1.25rem;
    padding: 1.35rem;
  }

  .faq__list summary {
    min-height: 4.75rem;
  }

  .faq__list details > p {
    margin-right: 0;
  }

  .demo-section h2 {
    font-size: clamp(2.75rem, 14vw, 4.25rem);
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .footer nav,
  .footer__copy {
    grid-column: 1;
  }
}

@media (max-width: 23.5rem) {
  .product-preview__shift,
  .preview-rail li strong {
    display: none;
  }

  .live-label {
    font-size: 0.55rem;
  }

  .floor,
  .arrivals {
    padding-inline: 0.7rem;
  }

  .table--wide {
    min-width: 4.7rem;
  }

  .floor__legend {
    gap-inline: 0.55rem;
  }
}

@media (hover: none) {
  .button:hover {
    transform: none;
  }
}

@media (pointer: coarse) {
  .brand,
  .nav-toggle,
  .button,
  .site-nav__links a,
  .footer nav a,
  .faq__intro > a,
  .faq__list summary {
    min-width: 2.75rem;
    min-height: 2.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal,
  .reveal.is-reveal-ready,
  .reveal.is-reveal-ready.is-visible {
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (forced-colors: active) {
  .button,
  .status-tag,
  .status-dot,
  .live-label > span,
  .timeline__mark,
  .eyebrow__dot {
    forced-color-adjust: none;
  }

  .site-header,
  .hero,
  .section--dark,
  .demo-section,
  .footer {
    border-color: CanvasText;
  }
}


@font-face {
  font-family: "Bricolage Grotesque";
  src: url("/assets/fonts/BricolageGrotesque-Variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-stretch: 75% 100%;
  font-display: block;
}

.brand {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.4rem;
  font-weight: 500;
  font-stretch: 100%;
  font-optical-sizing: auto;
  letter-spacing: -0.035em;
  color: rgb(238, 242, 247);
}

/* Keep the main landing headings on one consistent responsive scale. */
.hero h1,
.demo-section h2 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 14ch;
}

.language-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.15rem;
  padding: 0.2rem;
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.04);
}

.language-switcher__button {
  min-width: 2.25rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.55rem;
  border: 0;
  border-radius: 0.35rem;
  background: transparent;
  color: #9ca8b5;
  font: inherit;
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-switcher__button:hover {
  color: var(--white);
}

.language-switcher__button.is-active {
  background: rgba(169, 163, 255, 0.18);
  color: var(--white);
}

.language-switcher__button:focus-visible {
  outline: 2px solid var(--violet-light);
  outline-offset: 2px;
}

/* Mobile navigation is intentionally treated as its own composition rather
   than a stacked version of the desktop header. */
@media (max-width: 51.25rem) {
  .nav-toggle {
    position: relative;
    z-index: 101;
    width: 3rem;
    height: 3rem;
    border-color: rgba(255, 253, 247, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    transition:
      background-color 180ms ease,
      border-color 180ms ease,
      color 180ms ease,
      transform 180ms var(--ease-out),
      box-shadow 180ms ease;
  }

  .nav-toggle:hover {
    border-color: rgba(255, 253, 247, 0.28);
    background: rgba(255, 255, 255, 0.09);
  }

  .nav-toggle[aria-expanded="true"] {
    border-color: var(--white);
    background: var(--white);
    color: var(--midnight);
    box-shadow: 0 10px 26px rgba(3, 9, 18, 0.2);
  }

  .site-nav {
    top: 4.35rem;
    gap: 0;
    overscroll-behavior: contain;
    padding:
      clamp(1.1rem, 4vw, 1.6rem)
      var(--gutter)
      max(1.25rem, env(safe-area-inset-bottom));
    transform: translateX(1rem);
    border-top: 1px solid rgba(255, 253, 247, 0.08);
    background:
      radial-gradient(circle at 100% 0%, rgba(85, 71, 232, 0.14), transparent 30rem),
      linear-gradient(180deg, #101722 0%, #0d141e 100%);
    scrollbar-width: none;
    transition:
      opacity 190ms ease,
      transform 220ms var(--ease-out),
      visibility 0s linear 220ms;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav.is-open,
  .site-nav.open,
  .site-nav[aria-hidden="false"],
  .nav-toggle[aria-expanded="true"] + .site-nav {
    transform: translateX(0);
    transition-delay: 0s;
  }

  .site-nav__links {
    width: 100%;
    align-items: stretch;
    gap: 0.3rem;
    counter-reset: mobile-nav;
  }

  .site-nav__links li {
    border: 0;
    counter-increment: mobile-nav;
  }

  .site-nav__links a {
    position: relative;
    min-height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    padding: 0.7rem 0.85rem 0.7rem 3.5rem;
    border: 1px solid transparent;
    border-radius: 0.9rem;
    color: #e8edf3;
    font-size: clamp(1.42rem, 6vw, 1.8rem);
    font-weight: 580;
    letter-spacing: -0.035em;
    line-height: 1.05;
    transition:
      background-color 160ms ease,
      border-color 160ms ease,
      color 160ms ease,
      transform 180ms var(--ease-out);
  }

  .site-nav__links a::before {
    content: "0" counter(mobile-nav);
    position: absolute;
    top: 50%;
    left: 0.9rem;
    order: initial;
    transform: translateY(-50%);
    color: #687687;
    font-family: var(--mono);
    font-size: 0.62rem;
    font-weight: 650;
    letter-spacing: 0.08em;
  }

  .site-nav__links a::after {
    content: "";
    position: static;
    width: 0.5rem;
    height: 0.5rem;
    display: block;
    flex: 0 0 auto;
    margin-left: auto;
    transform: rotate(45deg);
    border-top: 1.5px solid currentColor;
    border-right: 1.5px solid currentColor;
    background: transparent;
    color: var(--violet-light);
    transition: transform 180ms var(--ease-out), color 160ms ease;
  }

  .site-nav__links a:hover,
  .site-nav__links a:focus-visible {
    transform: translateX(0.15rem);
    border-color: rgba(255, 253, 247, 0.1);
    background: rgba(255, 255, 255, 0.055);
    color: var(--white);
  }

  .site-nav__links a:hover::after,
  .site-nav__links a:focus-visible::after {
    transform: translateX(0.15rem) rotate(45deg);
    color: var(--white);
  }

  .language-switcher {
    width: 100%;
    align-self: stretch;
    justify-content: stretch;
    gap: 0.25rem;
    margin-top: auto;
    padding: 0.3rem;
    border-color: rgba(255, 253, 247, 0.12);
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.045);
  }

  .language-switcher__button {
    min-width: 0;
    min-height: 2.9rem;
    flex: 1 1 50%;
    border-radius: 0.58rem;
    color: #8996a5;
    font-size: 0.72rem;
  }

  .language-switcher__button.is-active {
    background: rgba(169, 163, 255, 0.16);
    color: #f3f1ff;
    box-shadow: inset 0 0 0 1px rgba(169, 163, 255, 0.16);
  }

  .site-nav > .button {
    width: 100%;
    min-height: 3.65rem;
    margin-top: 0.75rem;
    border-radius: 0.8rem;
    font-size: 0.92rem;
    box-shadow: 0 14px 34px rgba(55, 43, 202, 0.2);
  }
}

@media (max-width: 24rem) {
  .site-nav__links a {
    min-height: 4.35rem;
    padding-left: 3.15rem;
    font-size: 1.35rem;
  }

  .site-nav__links a::before {
    left: 0.8rem;
  }
}

@media (max-width: 51.25rem) and (max-height: 43rem) {
  .site-nav {
    padding-top: 0.8rem;
  }

  .site-nav__links {
    gap: 0.1rem;
  }

  .site-nav__links a {
    min-height: 3.75rem;
    font-size: 1.3rem;
  }

  .language-switcher__button {
    min-height: 2.5rem;
  }

  .site-nav > .button {
    min-height: 3.15rem;
    margin-top: 0.55rem;
  }
}


.site-nav__preferences {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.preferences-menu__trigger {
  min-height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
  color: #c7d0da;
  font: inherit;
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.preferences-menu__trigger:hover,
.site-nav__preferences.is-open .preferences-menu__trigger {
  border-color: rgba(169, 163, 255, 0.34);
  background: rgba(169, 163, 255, 0.075);
  color: var(--white);
}

.preferences-menu__trigger:focus-visible,
.region-switcher__option:focus-visible,
.currency-switcher__button:focus-visible,
.site-nav__preferences .language-switcher__button:focus-visible {
  outline: 2px solid var(--violet-light);
  outline-offset: 2px;
}

.preferences-menu__summary {
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1;
  white-space: nowrap;
}

.preferences-menu__chevron {
  width: 0.42rem;
  height: 0.42rem;
  margin-top: -0.16rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.68;
  transition: transform 160ms var(--ease-out), opacity 160ms ease;
}

.site-nav__preferences.is-open .preferences-menu__chevron {
  margin-top: 0.14rem;
  transform: rotate(225deg);
  opacity: 1;
}

.preferences-menu__panel {
  position: absolute;
  z-index: 40;
  top: calc(100% + 0.65rem);
  right: 0;
  width: 17.5rem;
  overflow: hidden;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(255, 253, 247, 0.13);
  border-radius: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(85, 71, 232, 0.13), transparent 11rem),
    rgba(15, 22, 32, 0.985);
  box-shadow: 0 18px 48px rgba(3, 9, 18, 0.34);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.preferences-menu__panel--region {
  width: 18rem;
  padding: 0.8rem;
}

.preferences-menu__panel--region > .preferences-menu__label {
  display: block;
  margin: 0.1rem 0 0.7rem;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-switcher {
  display: grid;
  border-top: 1px solid rgba(255, 253, 247, 0.09);
}

.region-switcher__option {
  min-height: 4.2rem;
  display: grid;
  align-content: center;
  gap: 0.28rem;
  padding: 0.75rem 0.25rem;
  border-bottom: 1px solid rgba(255, 253, 247, 0.09);
  color: #aab5c0;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, padding-left 160ms ease;
}

.region-switcher__option strong {
  color: #edf1f5;
  font-size: 0.78rem;
  font-weight: 690;
}

.region-switcher__option span {
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.04em;
}

.region-switcher__option:hover {
  padding-left: 0.55rem;
  background: rgba(169, 163, 255, 0.055);
  color: var(--white);
}

.region-switcher__option.is-active {
  padding-left: 0.55rem;
  background: rgba(169, 163, 255, 0.1);
}

.region-switcher__option.is-active strong::after {
  content: ' ·';
  color: var(--violet-light);
}

.preferences-menu__group {
  min-height: 4.15rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.8rem;
}

.preferences-menu__group + .preferences-menu__group {
  border-top: 1px solid rgba(255, 253, 247, 0.09);
}

.preferences-menu__label {
  color: #9ba8b5;
  font-size: 0.75rem;
  font-weight: 620;
  line-height: 1.2;
}

.site-nav__preferences .language-switcher,
.currency-switcher {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.12rem;
  margin: 0;
  padding: 0.18rem;
  border: 1px solid rgba(255, 253, 247, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.035);
}

.currency-switcher__button,
.site-nav__preferences .language-switcher__button {
  min-width: 2.45rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.5rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8996a4;
  font: inherit;
  font-size: 0.65rem;
  font-weight: 720;
  letter-spacing: 0.055em;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.currency-switcher__button:hover,
.site-nav__preferences .language-switcher__button:hover {
  color: var(--white);
}

.currency-switcher__button.is-active,
.site-nav__preferences .language-switcher__button.is-active {
  background: rgba(169, 163, 255, 0.15);
  color: #f4f2ff;
  box-shadow: inset 0 0 0 1px rgba(169, 163, 255, 0.12);
}

@media (max-width: 51.25rem) {
  .site-nav__preferences {
    width: 100%;
    display: block;
    margin-top: auto;
  }

  .preferences-menu__trigger {
    width: 100%;
    min-height: 3rem;
    justify-content: space-between;
    padding-inline: 0.95rem;
    border-color: rgba(255, 253, 247, 0.11);
    border-radius: 0;
    background: rgba(255, 255, 255, 0.04);
  }

  .preferences-menu__summary {
    font-size: 0.69rem;
  }

  .preferences-menu__panel {
    position: static;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.2rem 0.85rem;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .preferences-menu__panel--region {
    padding: 0.75rem 0.9rem;
  }

  .region-switcher__option {
    min-height: 3.8rem;
  }

  .preferences-menu__group {
    min-height: 3.8rem;
  }

  .currency-switcher__button,
  .site-nav__preferences .language-switcher__button {
    min-width: 2.7rem;
    min-height: 2.35rem;
  }
}

@media (max-width: 24rem) {
  .preferences-menu__panel {
    padding-inline: 0.7rem;
  }

  .preferences-menu__group {
    gap: 0.55rem;
  }

  .currency-switcher__button,
  .site-nav__preferences .language-switcher__button {
    min-width: 2.4rem;
    padding-inline: 0.35rem;
  }
}

@media (max-width: 51.25rem) and (max-height: 43rem) {
  .preferences-menu__trigger {
    min-height: 2.65rem;
  }

  .region-switcher__option,
  .preferences-menu__group {
    min-height: 3.35rem;
  }

  .currency-switcher__button,
  .site-nav__preferences .language-switcher__button {
    min-height: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .preferences-menu__trigger,
  .preferences-menu__chevron,
  .region-switcher__option,
  .currency-switcher__button,
  .site-nav__preferences .language-switcher__button {
    transition: none;
  }
}


.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}

.cookie-consent [hidden] {
  display: none !important;
}

.cookie-consent__notice {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  width: min(42rem, calc(100vw - 2rem));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 1.35rem;
  padding: 1.25rem;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 100% 0%, rgba(85, 71, 232, 0.18), transparent 38%),
    rgba(16, 23, 34, 0.97);
  color: var(--white);
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  pointer-events: auto;
}

.cookie-consent__copy {
  min-width: 0;
}

.cookie-consent__eyebrow {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--violet-light);
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.cookie-consent__title,
.cookie-consent__dialog-title {
  margin: 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.cookie-consent__description,
.cookie-consent__dialog-description {
  max-width: 52rem;
  margin: 0.65rem 0 0;
  color: #b8c2ce;
  font-size: 0.88rem;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.55rem;
}

.cookie-consent__primary,
.cookie-consent__secondary,
.cookie-consent__close {
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.cookie-consent__primary,
.cookie-consent__secondary {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 0.65rem;
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1;
  white-space: nowrap;
  transition: transform 160ms var(--ease-out), border-color 160ms ease, background-color 160ms ease;
}

.cookie-consent__primary {
  border: 1px solid var(--violet);
  background: var(--violet);
  color: var(--white);
}

.cookie-consent__primary:hover {
  background: var(--violet-dark);
  border-color: var(--violet-dark);
  transform: translateY(-1px);
}

.cookie-consent__secondary {
  border: 1px solid rgba(255, 253, 247, 0.16);
  background: rgba(255, 255, 255, 0.035);
  color: #d6dde5;
}

.cookie-consent__secondary:hover {
  border-color: rgba(169, 163, 255, 0.5);
  background: rgba(169, 163, 255, 0.08);
  color: var(--white);
}

.cookie-consent__primary:focus-visible,
.cookie-consent__secondary:focus-visible,
.cookie-consent__close:focus-visible,
.footer__privacy-button:focus-visible {
  outline: 2px solid var(--violet-light);
  outline-offset: 3px;
}

.cookie-consent__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 14, 0.62);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  pointer-events: auto;
}

.cookie-consent__dialog {
  position: absolute;
  isolation: isolate;
  top: 50%;
  left: 50%;
  width: min(48rem, calc(100vw - 2rem));
  max-height: min(48rem, calc(100dvh - 2rem));
  overflow-y: auto;
  transform: translate(-50%, -50%);
  padding: 0;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at 88% 0%, rgba(85, 71, 232, 0.19), transparent 21rem),
    linear-gradient(180deg, #121b27 0%, #0e151f 100%);
  color: var(--white);
  box-shadow: 0 34px 90px rgba(3, 9, 18, 0.48);
  pointer-events: auto;
  scrollbar-width: thin;
}

.cookie-consent__dialog::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 auto;
  height: 11rem;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  pointer-events: none;
}

.cookie-consent__dialog-head {
  min-height: 7.5rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 1.65rem 1.35rem;
  border-bottom: 1px solid rgba(255, 253, 247, 0.1);
}

.cookie-consent__dialog-title {
  max-width: 18ch;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.cookie-consent__dialog-description {
  max-width: 43rem;
  margin: 0;
  padding: 1.25rem 1.65rem 0;
  color: #aeb9c5;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-consent__close {
  position: relative;
  width: 2.65rem;
  height: 2.65rem;
  flex: 0 0 2.65rem;
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.045);
  color: #dce3ea;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.cookie-consent__close:hover {
  border-color: rgba(169, 163, 255, 0.42);
  background: rgba(169, 163, 255, 0.1);
  color: var(--white);
}

.cookie-consent__close::before,
.cookie-consent__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.9rem;
  height: 1px;
  background: currentColor;
}

.cookie-consent__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.cookie-consent__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.cookie-consent__settings {
  display: grid;
  gap: 0;
  margin: 1.35rem 1.65rem 0;
  border-top: 1px solid rgba(255, 253, 247, 0.11);
  counter-reset: privacy-setting;
}

.cookie-consent__setting {
  display: grid;
  grid-template-columns: 2.3rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.11);
  border-radius: 0;
  background: transparent;
  counter-increment: privacy-setting;
}

.cookie-consent__setting::before {
  content: "0" counter(privacy-setting);
  align-self: start;
  padding-top: 0.16rem;
  color: #687687;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.cookie-consent__setting strong,
.cookie-consent__setting span {
  display: block;
}

.cookie-consent__setting strong {
  color: #f2f5f7;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 620;
  letter-spacing: -0.015em;
}

.cookie-consent__setting > div > span {
  max-width: 35rem;
  margin-top: 0.32rem;
  color: #8f9dac;
  font-size: 0.78rem;
  line-height: 1.5;
}

.cookie-consent__state {
  position: relative;
  min-width: 5.5rem;
  padding: 0.42rem 0.65rem 0.42rem 1.35rem;
  border: 1px solid rgba(255, 253, 247, 0.1);
  border-radius: 999px;
  color: #8f9ba8;
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.cookie-consent__state::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.62rem;
  width: 0.38rem;
  height: 0.38rem;
  transform: translateY(-50%);
  border-radius: 50%;
  background: #687687;
}

.cookie-consent__state--active {
  border-color: rgba(21, 123, 85, 0.38);
  background: rgba(21, 123, 85, 0.09);
  color: #9cdfbf;
}

.cookie-consent__state--active::before {
  background: #57c693;
  box-shadow: 0 0 0 3px rgba(87, 198, 147, 0.1);
}

.cookie-consent__save {
  width: calc(100% - 3.3rem);
  min-height: 3.2rem;
  margin: 1.35rem 1.65rem 1.65rem;
  border-radius: 0.75rem;
}

.footer__privacy-button {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  padding: 0;
  border: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: #bcc6d0;
  font-family: inherit;
  font-size: 0.76rem;
  font-weight: 650;
  line-height: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.footer__privacy-button:hover {
  color: var(--white);
}

.footer__privacy-button:focus-visible {
  border-radius: 0.2rem;
}

body.cookie-consent-open {
  overflow: hidden;
}

@media (max-width: 51.25rem) {
  .cookie-consent__notice {
    right: 0;
    bottom: 0;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.15rem var(--gutter) calc(1.15rem + env(safe-area-inset-bottom));
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .cookie-consent__description {
    max-width: 38rem;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .cookie-consent__primary,
  .cookie-consent__secondary {
    width: 100%;
    min-height: 3rem;
  }

  .cookie-consent__dialog {
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: min(88dvh, 48rem);
    transform: none;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 1.35rem 1.35rem 0 0;
  }

  .cookie-consent__dialog-head {
    min-height: 0;
    padding: 1.25rem var(--gutter) 1.1rem;
  }

  .cookie-consent__dialog-title {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .cookie-consent__dialog-description {
    padding: 1rem var(--gutter) 0;
  }

  .cookie-consent__settings {
    margin: 1.1rem var(--gutter) 0;
  }

  .cookie-consent__setting {
    grid-template-columns: 2rem minmax(0, 1fr) auto;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .cookie-consent__save {
    width: calc(100% - (2 * var(--gutter)));
    min-height: 3.25rem;
    margin: 1.1rem var(--gutter) calc(1.15rem + env(safe-area-inset-bottom));
  }
}

@media (max-width: 26rem) {
  .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent__setting {
    grid-template-columns: 1.8rem minmax(0, 1fr);
  }

  .cookie-consent__state {
    width: fit-content;
    grid-column: 2;
    margin-top: 0.1rem;
  }
}

@media (max-height: 38rem) and (max-width: 51.25rem) {
  .cookie-consent__notice {
    max-height: 92dvh;
    overflow-y: auto;
  }

  .cookie-consent__dialog {
    max-height: 94dvh;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-consent__primary,
  .cookie-consent__secondary,
  .cookie-consent__close {
    transition: none;
  }
}

/* Final geometry layer for the site's strict service surfaces. */
.cookie-consent__notice,
.cookie-consent__dialog {
  border-radius: 0;
}
