/* ==========================================================================
   Open Slot — shared marketing site styles
   Loaded on every page. Section-specific rules are grouped and labelled so a
   page that doesn't use a section just never triggers it.
   ========================================================================== */

:root{
  /* ---- brand ---- */
  --color-accent:#CFFF7C;
  --color-accent-text:#4E56B8;
  --color-accent-text-dark:#2E3270;
  --color-notify-dot:#FF5A4D;
  --logo-purple:#6C75D9;

  /* ---- neutrals ---- */
  --color-ink:#1A1917;
  --color-muted:#75726B;
  --color-faint:#827C6F;
  --color-surface:#FBFAF8;
  --color-sunken:#F5F3EF;
  --color-surface-2:#EFEDE7;
  --color-line:#E8E5DF;

  /* ---- wash / secondary ---- */
  --color-accent-wash:#F4FFE4;
  --color-accent-wash-border:#DFF6B8;
  --color-secondary-border:#DDD9D1;
  --color-discount:#5C7A2E;

  /* ---- status ---- */
  --status-confirmed:#CCFF99;
  --status-completed:#DBDDF9;
  --status-pending:#FFE79E;
  --status-negotiating:#BFE3FF;
  --status-onhold:#FFD9A8;
  --status-cancelled:#FFC9C2;

  /* ---- owner / dark console ---- */
  --color-nav-dark:#141310;
  --color-nav-muted:#8B857C;
  --color-ink-soft:#3A3833;
  --color-neutral-wash:#F1EFEA;
  --color-accent-text-wash:#DCE0FF;
  --color-toggle-off:#E5E1D8;

  /* ---- avatars ---- */
  --avatar-2:#8B7CD8;
  --avatar-3:#D89B4A;
  --avatar-4:#6BAF8E;

  /* ---- radius ---- */
  --r-badge:6px;
  --r-chip:14px;
  --r-card:18px;
  --r-pill:999px;

  /* ---- spacing ---- */
  --sp-screen:21px;
  --sp-list:10px;
  --sp-section:18px;

  /* ---- shadow ---- */
  --shadow-sm:0 8px 24px rgba(149,157,165,.2);
  --shadow-btn:0 0 0 1px rgba(0,0,0,.05);

  /* ---- easing ---- */
  --ease-out-swift:cubic-bezier(.16,1,.3,1);
  --ease-in-swift:cubic-bezier(.7,0,.84,0);
  --ease-elastic:cubic-bezier(.34,1.3,.64,1);

  /* ---- site chrome: dark/tech marketing shell (distinct from the light in-app UI shown inside devices) ---- */
  --bg-void:#0A0A0B;
  --bg-panel:#131315;
  --bg-panel-2:#18181B;
  --grey-line:#28282B;
  --grey-text:#A6A6AA;
  --grey-text-dim:#6E6E73;
  --text-inverse:#F4F3F1;

  /* ---- type ---- */
  --font-display:'Jost', 'Avenir Next', 'Avenir', -apple-system, sans-serif;
  --font-body:'Avenir Next', 'Avenir', 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono:'IBM Plex Mono', ui-monospace, monospace;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.01ms !important; animation-iteration-count:1 !important; transition-duration:.01ms !important; }
}

body{
  font-family:var(--font-body);
  background:var(--color-surface);
  color:var(--color-ink);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

.mono{ font-family:var(--font-mono); }

h1,h2,h3{ font-family:var(--font-display); font-weight:700; letter-spacing:-0.02em; line-height:1.1; }
a{ color:inherit; text-decoration:none; }
img,svg{ display:block; max-width:100%; }
a:focus-visible, button:focus-visible{ outline:2px solid var(--color-accent-text); outline-offset:3px; }

.wrap{ max-width:1180px; margin:0 auto; padding:0 var(--sp-screen); }

.section-head{
  font-size:13px;
  font-weight:700;
  font-family:var(--font-display);
  letter-spacing:1.2px;
  text-transform:uppercase;
  color:var(--color-muted);
}

.btn{
  height:56px;
  border-radius:var(--r-card);
  padding:0 24px;
  font-family:var(--font-display);
  font-size:16px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  box-shadow:var(--shadow-btn);
  transition:transform .15s var(--ease-out-swift), background .15s ease;
  border:none;
  cursor:pointer;
}
.btn:hover{ transform:translateY(-1px); }
.btn-primary{ background:var(--color-accent); color:var(--color-accent-text); }
.btn-secondary{ background:#fff; color:var(--color-ink); border:1.5px solid var(--color-secondary-border); }
.btn-dark{ background:var(--color-ink); color:#fff; }
.btn-sm{ height:44px; padding:0 18px; font-size:14px; }

.btn svg{ width:18px; height:18px; flex-shrink:0; }

/* ---------- STATUS BADGE ---------- */
.status-badge{
  display:inline-block;
  border-radius:var(--r-badge);
  padding:4px 8px;
  font-family:var(--font-mono);
  font-size:10px;
  font-weight:500;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--color-ink);
}
.status-confirmed{ background:var(--status-confirmed); }
.status-completed{ background:var(--status-completed); }
.status-pending{ background:var(--status-pending); }
.status-negotiating{ background:var(--status-negotiating); }

/* ---------- NAV ---------- */
header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  background:rgba(251,250,248,0.78);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid transparent;
  transition:border-color .3s ease;
}
header.scrolled{ border-bottom-color:var(--color-line); }

nav{
  max-width:1180px;
  margin:0 auto;
  padding:16px var(--sp-screen);
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:9px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:19px;
  letter-spacing:-0.01em;
  color:var(--color-ink);
}
.logo-mark{ width:26px; height:26px; flex-shrink:0; }

.nav-links{ display:flex; align-items:center; gap:30px; font-size:14px; font-weight:500; color:var(--color-muted); }
.nav-links a{ transition:color .2s ease; }
.nav-links a:hover, .nav-links a.current{ color:var(--color-ink); }

.nav-cta{
  height:44px; padding:0 20px; border-radius:var(--r-pill);
  background:var(--color-accent); color:var(--color-accent-text);
  display:flex; align-items:center; font-family:var(--font-display); font-size:14px; font-weight:600;
  box-shadow:var(--shadow-btn);
}

.menu-toggle{ display:none; background:none; border:none; font-size:22px; cursor:pointer; color:var(--color-ink); }
.mobile-menu{ display:none; }
@media (max-width:840px){
  .nav-links{ display:none; }
  .menu-toggle{ display:block; }
  .mobile-menu.open{
    display:flex; flex-direction:column; gap:2px;
    padding:6px var(--sp-screen) 18px;
    border-top:1px solid var(--color-line);
    background:var(--color-surface);
  }
  .mobile-menu a{
    padding:13px 4px; font-size:15px; font-weight:500; color:var(--color-ink);
    border-bottom:1px solid var(--color-line);
  }
}

/* ---------- HERO ---------- */
.grain{ position:relative; }
.grain::after{
  content:'';
  position:absolute; inset:0;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity:.16;
  mix-blend-mode:multiply;
  pointer-events:none;
  z-index:0;
}

.mesh-stage{ position:absolute; inset:0; overflow:hidden; z-index:0; pointer-events:none; }
.mesh-blob{
  position:absolute;
  width:56vw; height:56vw; max-width:640px; max-height:640px;
  border-radius:50%;
  filter:blur(70px);
  transition:transform .7s cubic-bezier(.16,1,.3,1);
  will-change:transform;
}
.mesh-blob.b1{ top:-16%; left:-12%; background:radial-gradient(circle, rgba(108,117,217,0.22), transparent 70%); }
.mesh-blob.b2{ bottom:-22%; right:-10%; background:radial-gradient(circle, rgba(46,50,112,0.16), transparent 70%); }
.mesh-blob.b3{ top:35%; left:55%; width:38vw; height:38vw; max-width:440px; max-height:440px; background:radial-gradient(circle, rgba(120,110,90,0.10), transparent 70%); }
@media (prefers-reduced-motion: reduce){ .mesh-blob{ transition:none; } }
@media (pointer:coarse){ .mesh-stage{ display:none; } }

.hero{
  position:relative;
  padding:168px var(--sp-screen) 90px;
  text-align:center;
  overflow:hidden;
  background:
    radial-gradient(ellipse 55% 45% at 12% 6%, rgba(255,255,255,0.9), transparent 60%),
    linear-gradient(128deg, transparent 38%, rgba(120,113,100,0.09) 60%, rgba(90,84,74,0.14) 76%, transparent 94%),
    radial-gradient(ellipse 60% 50% at 82% 12%, rgba(108,117,217,0.08), transparent 65%),
    var(--color-surface);
}
.hero::before{
  content:'';
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 70% 60% at 50% 20%, black 0%, transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse 70% 60% at 50% 20%, black 0%, transparent 75%);
  pointer-events:none;
}
.hero .wrap{ max-width:760px; position:relative; z-index:1; }
.hero-kicker{
  font-size:13px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:var(--color-accent-text); margin-bottom:18px;
}
.echo-wordmark{
  position:absolute; top:36%; left:50%; transform:translate(-50%,-50%);
  font-family:var(--font-display);
  font-size:clamp(70px,14vw,220px); font-weight:700; letter-spacing:-0.02em;
  white-space:nowrap; color:transparent;
  -webkit-text-stroke:1px rgba(0,0,0,0.05);
  z-index:0; pointer-events:none; user-select:none;
}
@media (max-width:700px){ .echo-wordmark{ display:none; } }
.hero h1{ font-size:clamp(36px,6vw,64px); margin-bottom:20px; color:var(--color-ink); }
.hero p.lede{ font-size:18px; color:var(--color-muted); max-width:480px; margin:0 auto 34px; }
.cta-row{ display:flex; justify-content:center; gap:12px; flex-wrap:wrap; }
.cta-note{ margin-top:16px; font-size:12.5px; color:var(--color-faint); }

/* device frame reused across scrollers */
.device{
  width:290px;
  background:linear-gradient(165deg,#2A2A2D,#0C0C0D);
  border-radius:46px;
  padding:14px;
  box-shadow:
    0 50px 100px -30px rgba(26,25,23,0.28),
    0 0 60px -25px rgba(78,86,184,0.25),
    0 0 0 1px rgba(255,255,255,0.04) inset;
  position:relative;
}
.device-screen{
  background:var(--color-surface);
  border-radius:34px;
  overflow:hidden;
  position:relative;
  height:580px;
}
.device-notch{
  position:absolute; top:0; left:50%; transform:translateX(-50%);
  width:108px; height:22px; background:#0C0C0D; border-radius:0 0 16px 16px; z-index:5;
}

.hero-phone-stage{ display:flex; justify-content:center; margin-top:56px; position:relative; z-index:1; }

/* ---------- EDITORIAL MOTION ---------- */
.tilt-stage{ perspective:1500px; }
.tilt-el{
  transform-style:preserve-3d;
  transform:perspective(1500px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  will-change:transform;
}
.tilt-el.smooth{ transition:transform .25s cubic-bezier(.16,1,.3,1); }
@keyframes floaty{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-16px); } }
.floaty{ animation:floaty 5.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce){
  .floaty{ animation:none; }
  .tilt-el{ transform:none !important; }
}

.scr-pad{ padding:40px var(--sp-screen) var(--sp-screen); height:100%; display:flex; flex-direction:column; }

/* ---------- STATEMENT ---------- */
.statement{ padding:110px var(--sp-screen); background:var(--color-sunken); border-top:1px solid var(--color-line); border-bottom:1px solid var(--color-line); }
.statement .wrap{ max-width:760px; }
.statement h2{ font-size:clamp(26px,4vw,42px); color:var(--color-ink); }
.statement .accent-word{
  background:linear-gradient(100deg, var(--color-accent) 0%, #8FE24F 100%);
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.statement p.sub{ margin-top:22px; font-size:16px; color:var(--color-muted); max-width:480px; }

/* ---------- PARALLAX SCROLLER ---------- */
.scroller{
  padding:60px var(--sp-screen) 40px;
  background:linear-gradient(180deg, var(--color-surface) 0%, var(--color-sunken) 50%, var(--color-surface) 100%);
}
.scroller .wrap{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:60px;
  align-items:start;
}
.scroller-intro{ grid-column:1 / -1; max-width:600px; margin-bottom:60px; }
.scroller-intro .section-head{ margin-bottom:12px; color:var(--color-accent); }
.scroller-intro h2{ font-size:clamp(26px,3.4vw,38px); color:var(--color-ink); }

.steps{ display:flex; flex-direction:column; position:relative; padding-left:30px; }
.progress-rail{
  position:absolute; left:0; top:4vh; bottom:4vh; width:2px;
  background:var(--color-line); border-radius:2px;
}
.progress-fill{
  position:absolute; left:0; top:0; width:2px; height:0%;
  background:linear-gradient(var(--logo-purple), var(--color-accent));
  border-radius:2px; transition:height .4s var(--ease-out-swift);
}
.progress-dot{
  position:absolute; left:50%; top:0%; transform:translate(-50%,-50%);
  width:9px; height:9px; border-radius:50%; background:var(--color-accent);
  box-shadow:0 0 14px 3px rgba(207,255,124,0.55);
  transition:top .4s var(--ease-out-swift);
}
.step{
  min-height:78vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  opacity:.28;
  transform:translateX(-6px);
  transition:opacity .4s ease, transform .4s var(--ease-out-swift);
}
.step.active{ opacity:1; transform:translateX(0); }
.step .step-num{
  font-family:var(--font-mono);
  font-size:12px;
  color:var(--color-accent-text);
  margin-bottom:14px;
  letter-spacing:.05em;
}
.step h3{ font-size:clamp(21px,2.4vw,27px); margin-bottom:12px; color:var(--color-ink); }
.step p{ color:var(--color-muted); font-size:15.5px; max-width:380px; }

.sticky-visual{
  position:sticky;
  top:14vh;
  height:78vh;
  display:flex;
  align-items:center;
  justify-content:center;
}
.sticky-visual::before, .sticky-visual::after{
  content:''; position:absolute; width:26px; height:26px;
  border:1.5px solid var(--color-line); opacity:.9; pointer-events:none;
}
.sticky-visual::before{ top:8%; left:4%; border-right:none; border-bottom:none; }
.sticky-visual::after{ bottom:8%; right:4%; border-left:none; border-top:none; }
.tech-tag{
  position:absolute; top:6%; right:5%;
  font-family:var(--font-mono); font-size:10.5px; letter-spacing:.1em;
  text-transform:uppercase; color:var(--color-faint);
}
@media (max-width:900px){ .sticky-visual::before, .sticky-visual::after, .tech-tag{ display:none; } }

.screen-stack{ position:relative; width:290px; }
.device-screen .pane{
  position:absolute; inset:0;
  opacity:0;
  transform:translateY(10px);
  transition:opacity .5s var(--ease-out-swift), transform .5s var(--ease-out-swift);
  pointer-events:none;
}
.device-screen .pane.active{ opacity:1; transform:translateY(0); pointer-events:auto; }

@media (max-width:900px){
  .scroller .wrap{ grid-template-columns:1fr; }
  .sticky-visual{ position:relative; top:0; height:auto; margin-bottom:40px; }
  .step{ min-height:auto; opacity:1; padding-bottom:48px; }
}

/* ---- app screen mock content ---- */
.app-toplabel{ font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--color-faint); margin-bottom:6px; }
.app-title{ font-family:var(--font-display); font-size:22px; font-weight:700; letter-spacing:-0.01em; margin-bottom:18px; color:var(--color-ink); }

.grid-card{
  background:#fff; border:1px solid var(--color-line); border-radius:var(--r-card);
  overflow:hidden; margin-bottom:12px;
  transition:transform .3s var(--ease-out-swift), box-shadow .3s ease;
}
.grid-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.grid-card-img{
  height:70px;
  background:linear-gradient(135deg, rgba(207,255,124,0.5), var(--color-sunken));
  position:relative;
}
.grid-card-badge{
  position:absolute; top:8px; left:8px;
  background:var(--color-accent); color:var(--color-accent-text);
  font-size:10px; font-weight:700; padding:3px 9px; border-radius:var(--r-pill);
}
.grid-card-body{ padding:11px 13px; }
.grid-card-body .name{ font-size:13.5px; font-weight:700; color:var(--color-ink); }
.grid-card-body .meta{ font-size:11.5px; color:var(--color-muted); margin-top:2px; }
.grid-2col{ display:grid; grid-template-columns:1fr 1fr; gap:10px; }

.bottom-bar{
  margin-top:auto;
  border-top:1px solid var(--color-line);
  padding-top:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.bottom-bar .price{ font-size:19px; font-weight:800; letter-spacing:-0.02em; color:var(--color-ink); min-width:0; }
.bottom-bar .price small{ font-size:11px; font-weight:500; color:var(--color-muted); display:block; margin-top:1px; }
.mini-btn{
  height:42px; padding:0 20px; border-radius:var(--r-card);
  background:var(--color-accent); color:var(--color-accent-text);
  font-size:13px; font-weight:700; display:flex; align-items:center; justify-content:center;
  white-space:nowrap; flex-shrink:0;
}

.info-block{
  border-radius:var(--r-card);
  padding:16px;
  background:var(--color-accent-wash);
  border:1px solid var(--color-accent-wash-border);
  display:flex; align-items:center; gap:12px;
  margin-bottom:14px;
}
.pulsing-dot{
  width:8px; height:8px; border-radius:50%;
  background:var(--color-discount);
  animation:pulse 1.2s ease-in-out infinite;
  flex-shrink:0;
}
@keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:.35;} }
.info-block .t{ font-size:13.5px; font-weight:600; color:var(--color-ink); }
.info-block .s{ font-size:12px; color:var(--color-muted); }

.extend-row{
  background:var(--color-sunken); border-radius:var(--r-chip);
  padding:14px 16px; display:flex; justify-content:space-between; align-items:center;
  font-size:13px; margin-bottom:10px; color:var(--color-ink);
}
.extend-row .lbl{ color:var(--color-muted); }
.extend-row.done{ background:var(--color-ink); color:#fff; }

.booking-detail-hero{
  background:var(--color-ink); color:#fff; border-radius:var(--r-card);
  padding:20px; margin-bottom:16px;
}
.booking-detail-hero .n{ font-size:17px; font-weight:800; margin-bottom:6px; color:#fff; }
.booking-detail-hero .t{ font-size:12.5px; color:#B9B7B0; margin-bottom:12px; }
.detail-row{
  display:flex; justify-content:space-between; padding:11px 0;
  border-bottom:1px solid var(--color-line); font-size:13.5px; color:var(--color-ink);
}
.detail-row .lbl{ font-family:var(--font-mono); font-size:10px; letter-spacing:.08em; text-transform:uppercase; color:var(--color-faint); }

.chat-bubble{
  max-width:80%; padding:10px 14px; border-radius:16px; font-size:13px; margin-bottom:8px; color:var(--color-ink);
}
.chat-bubble.in{ background:var(--color-sunken); border-bottom-left-radius:4px; }
.chat-bubble.out{ background:var(--color-accent-text-wash); margin-left:auto; border-bottom-right-radius:4px; }

/* ---------- OWNER DARK SCROLLER ---------- */
.owner-section{ background:var(--bg-panel-2); color:var(--text-inverse); padding:110px var(--sp-screen); position:relative; overflow:hidden; border-top:1px solid var(--grey-line); }
.owner-section .scroller-intro{ color:var(--text-inverse); }
.owner-section .scroller-intro .section-head{ color:var(--color-accent); }
.owner-section .step h3{ color:var(--text-inverse); }
.owner-section .step p{ color:var(--grey-text); }
.owner-section .step .step-num{ color:var(--color-accent); }
.owner-section .wrap{ position:relative; z-index:1; }

.console-frame{
  width:100%;
  max-width:520px;
  background:#1C1A16;
  border:1px solid #2C2A24;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 40px 90px -30px rgba(0,0,0,0.5);
}
.console-topbar{
  display:flex; gap:6px; padding:14px 16px; border-bottom:1px solid #2C2A24;
}
.console-topbar span{ width:9px; height:9px; border-radius:50%; background:#3A3833; }
.console-body{ display:flex; height:380px; }
.console-side{
  width:64px; background:var(--color-nav-dark); padding:16px 0; display:flex; flex-direction:column; align-items:center; gap:18px; flex-shrink:0;
}
.console-side .dot{ width:8px; height:8px; border-radius:2px; background:var(--color-accent); transform:rotate(45deg); margin-bottom:6px; }
.console-side .ic{ width:20px; height:20px; border-radius:6px; background:#2A2822; }
.console-side .ic.on{ background:rgba(255,255,255,0.12); box-shadow:inset 0 0 0 1px rgba(207,255,124,0.4); }
.console-main{ flex:1; background:var(--color-surface); position:relative; overflow:hidden; }
.console-pane{
  position:absolute; inset:0; padding:22px;
  opacity:0; transform:translateY(10px);
  transition:opacity .5s var(--ease-out-swift), transform .5s var(--ease-out-swift);
}
.console-pane.active{ opacity:1; transform:translateY(0); }
.console-pane h4{ font-family:var(--font-display); font-size:15px; font-weight:700; color:var(--color-ink); margin-bottom:14px; }

.metric-tiles{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:10px; margin-bottom:16px; }
.metric-tile{ background:#fff; border:1px solid var(--color-line); border-radius:var(--r-chip); padding:12px; transition:transform .25s var(--ease-out-swift); }
.metric-tile:hover{ transform:translateY(-2px); }
.metric-tile .num{ font-family:var(--font-mono); font-size:17px; font-weight:600; color:var(--color-ink); }
.metric-tile .lbl{ font-size:10.5px; color:var(--color-muted); margin-top:3px; }

.data-row{
  display:grid; grid-template-columns:1fr 1fr 90px; gap:10px; align-items:center;
  padding:10px 0; border-bottom:1px solid var(--color-line); font-size:12.5px; color:var(--color-ink);
}
.data-row.head{ font-family:var(--font-mono); font-size:9.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--color-faint); }

.util-bars{ display:flex; align-items:flex-end; gap:6px; height:90px; margin-top:8px; }
.util-bars .b{ flex:1; background:var(--color-sunken); border-radius:4px 4px 0 0; }
.util-bars .b.peak{ background:var(--color-accent); }

/* ---------- EDITORIAL AUTOPLAY SECTION ---------- */
.editorial{
  padding:120px var(--sp-screen);
  position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse 50% 45% at 90% 0%, rgba(255,255,255,0.8), transparent 60%),
    linear-gradient(128deg, transparent 40%, rgba(120,113,100,0.08) 62%, rgba(90,84,74,0.12) 80%, transparent 96%),
    var(--color-sunken);
  border-top:1px solid var(--color-line); border-bottom:1px solid var(--color-line);
}
.editorial .wrap{ position:relative; z-index:1; display:grid; grid-template-columns:0.85fr 1.15fr; gap:64px; align-items:center; }
.editorial-kicker{ font-family:var(--font-mono); font-size:11.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--color-accent-text); margin-bottom:16px; }
.editorial h2{ font-size:clamp(26px,3.4vw,38px); color:var(--color-ink); margin-bottom:16px; }
.editorial p{ color:var(--color-muted); font-size:15.5px; max-width:420px; margin-bottom:22px; }
.editorial-link{ font-size:14.5px; font-weight:700; color:var(--color-accent-text); display:inline-flex; align-items:center; gap:6px; }

.loop-card{
  background:var(--color-surface); border:1px solid var(--color-line); border-radius:var(--r-card);
  padding:28px; position:relative; overflow:hidden; min-height:260px;
}
.loop-face{
  position:absolute; inset:28px;
  opacity:0; transform:translateY(8px);
  animation:loopCycle 9s infinite;
}
.loop-face:nth-child(1){ animation-delay:0s; }
.loop-face:nth-child(2){ animation-delay:3s; }
.loop-face:nth-child(3){ animation-delay:6s; }
@keyframes loopCycle{
  0%{ opacity:0; transform:translateY(8px); }
  4%{ opacity:1; transform:translateY(0); }
  30%{ opacity:1; transform:translateY(0); }
  36%{ opacity:0; transform:translateY(-8px); }
  100%{ opacity:0; }
}
.loop-face .big{ font-family:var(--font-mono); font-size:44px; font-weight:600; color:var(--color-accent-text); }
.loop-face .lbl{ font-size:14px; color:var(--color-muted); margin-top:8px; }
@media (prefers-reduced-motion: reduce){
  .loop-face{ animation:none; opacity:1; position:static; transform:none; margin-bottom:18px; }
}
@media (max-width:900px){ .editorial .wrap{ grid-template-columns:1fr; } .loop-card{ min-height:200px; } }

/* ---------- DENSE FEATURE GRID ---------- */
.feature-grid-section{ padding:110px var(--sp-screen); background:var(--color-surface); }
.feature-grid-section .section-intro{ max-width:620px; margin:0 auto 56px; text-align:center; }
.feature-grid-section h2{ font-size:clamp(26px,3.4vw,38px); color:var(--color-ink); }
.feature-grid{
  max-width:1180px; margin:0 auto; display:grid;
  grid-template-columns:repeat(3, 1fr); gap:1px; background:var(--color-line);
  border:1px solid var(--color-line); border-radius:var(--r-card); overflow:hidden;
}
.feature-tile{ background:#fff; padding:28px; transition:background .25s ease; }
.feature-tile:hover{ background:var(--color-sunken); }
.feature-tile .tag{
  display:inline-block; font-family:var(--font-mono); font-size:9.5px; letter-spacing:.08em;
  text-transform:uppercase; color:var(--color-accent-text);
  background:rgba(78,86,184,0.08); border:1px solid rgba(78,86,184,0.22);
  padding:3px 8px; border-radius:var(--r-badge); margin-bottom:14px;
}
.feature-tile h3{ font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--color-ink); margin-bottom:8px; letter-spacing:-0.01em; }
.feature-tile p{ font-size:13.5px; color:var(--color-muted); line-height:1.5; }
@media (max-width:900px){ .feature-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:600px){ .feature-grid{ grid-template-columns:1fr; } }

/* ---------- FAQ ---------- */
.faq-section{ padding:110px var(--sp-screen); background:var(--color-sunken); border-top:1px solid var(--color-line); }
.faq-section h2{ text-align:center; font-size:clamp(26px,3.4vw,38px); color:var(--color-ink); margin-bottom:48px; }
.faq-section .faq-category{
  max-width:720px; margin:0 auto 14px;
  font-family:var(--font-mono); font-size:11.5px; font-weight:600; letter-spacing:.1em; text-transform:uppercase;
  color:var(--color-accent-text);
}
.faq-section .faq-category:not(:first-of-type){ margin-top:44px; }
.faq-list{ max-width:720px; margin:0 auto; }
.faq-item{ border-bottom:1px solid var(--color-line); }
.faq-q{
  all:unset; cursor:pointer; width:100%; box-sizing:border-box;
  padding:20px 4px; font-family:var(--font-display); font-size:16px; font-weight:600;
  color:var(--color-ink); display:flex; justify-content:space-between; align-items:center;
  gap:16px;
}
.faq-q .plus{ font-size:20px; color:var(--color-accent-text); transition:transform .3s var(--ease-out-swift); flex-shrink:0; }
.faq-item.open .faq-q .plus{ transform:rotate(45deg); }
.faq-a-wrap{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .4s var(--ease-out-swift); }
.faq-item.open .faq-a-wrap{ grid-template-rows:1fr; }
.faq-a-inner{ overflow:hidden; }
.faq-a-inner p{ padding:0 4px 22px; color:var(--color-muted); font-size:14.5px; max-width:600px; }
.faq-a-inner p + p{ margin-top:10px; }

/* ---------- STATS ---------- */
.stats{ background:var(--color-surface); padding:90px var(--sp-screen); border-top:1px solid var(--color-line); }
.stats .wrap{ display:grid; grid-template-columns:repeat(3,1fr); gap:40px; text-align:center; }
.stat-num{ font-family:var(--font-mono); font-size:clamp(30px,4vw,44px); font-weight:600; color:var(--color-accent-text); }
.stat-lbl{ margin-top:8px; font-size:13.5px; color:var(--color-muted); }
@media (max-width:700px){ .stats .wrap{ grid-template-columns:1fr; gap:40px; } }

/* ---------- COVERAGE ---------- */
.coverage{ padding:100px var(--sp-screen); text-align:center; background:var(--color-surface); }
.coverage h2{ font-size:clamp(24px,3.2vw,34px); margin-bottom:14px; color:var(--color-ink); }
.coverage p{ color:var(--color-muted); max-width:440px; margin:0 auto 32px; }
.city-pills{ display:flex; justify-content:center; gap:10px; flex-wrap:wrap; }
.city-pill{
  padding:9px 18px; border-radius:var(--r-pill); border:1.5px solid var(--color-line);
  font-size:13.5px; font-weight:600; color:var(--color-muted);
}
.city-pill.active{ background:var(--color-accent); color:var(--color-accent-text); border-color:var(--color-accent); }

/* ---------- FINAL CTA ---------- */
.final-cta{
  position:relative; overflow:hidden;
  background:
    radial-gradient(ellipse 55% 50% at 10% 100%, rgba(255,255,255,0.85), transparent 60%),
    linear-gradient(128deg, transparent 40%, rgba(120,113,100,0.08) 62%, rgba(90,84,74,0.13) 80%, transparent 96%),
    var(--color-sunken);
  padding:120px var(--sp-screen); text-align:center;
  border-top:1px solid var(--color-line);
}
.final-cta.compact{ padding:90px var(--sp-screen); }
.final-cta .wrap-inner{ position:relative; z-index:1; }
.final-cta h2{ font-size:clamp(28px,4.4vw,48px); max-width:640px; margin:0 auto 16px; color:var(--color-ink); }
.final-cta p{ color:var(--color-muted); margin-bottom:32px; }

/* ---------- INNER-PAGE HERO (About, Legal, Support, etc.) ---------- */
.page-hero{
  padding:150px var(--sp-screen) 64px;
  background:var(--color-sunken);
  border-bottom:1px solid var(--color-line);
  text-align:center;
}
.page-hero .wrap{ max-width:720px; }
.page-hero .section-head{ margin-bottom:14px; color:var(--color-accent-text); }
.page-hero h1{ font-size:clamp(32px,5vw,52px); color:var(--color-ink); margin-bottom:16px; }
.page-hero p.lede{ font-size:16.5px; color:var(--color-muted); max-width:560px; margin:0 auto; }
.page-hero .updated{ margin-top:18px; font-family:var(--font-mono); font-size:11.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--color-faint); }

/* ---------- PROSE (legal pages) ---------- */
.prose-section{ padding:64px var(--sp-screen) 120px; background:var(--color-surface); }
.prose{ max-width:720px; margin:0 auto; }
.prose h2{ font-size:22px; color:var(--color-ink); margin:48px 0 14px; }
.prose h2:first-child{ margin-top:0; }
.prose h3{ font-family:var(--font-body); font-size:16px; font-weight:700; color:var(--color-ink); margin:24px 0 8px; letter-spacing:0; }
.prose p{ font-size:15.5px; color:var(--color-muted); margin-bottom:14px; }
.prose p strong{ color:var(--color-ink); font-weight:600; }
.prose ul, .prose ol{ color:var(--color-muted); font-size:15.5px; margin:0 0 14px 22px; }
.prose li{ margin-bottom:8px; }
.prose li::marker{ color:var(--color-accent-text); }
.prose a{ color:var(--color-accent-text); font-weight:600; text-decoration:underline; text-underline-offset:2px; }
.prose table{ width:100%; border-collapse:collapse; margin:0 0 20px; font-size:14px; }
.prose th, .prose td{ text-align:left; padding:10px 14px; border-bottom:1px solid var(--color-line); }
.prose th{ font-family:var(--font-mono); font-size:10.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--color-faint); font-weight:600; }
.prose td{ color:var(--color-ink); }
.prose .callout{
  background:var(--color-accent-wash); border:1px solid var(--color-accent-wash-border);
  border-radius:var(--r-card); padding:16px 18px; margin-bottom:20px; font-size:14.5px; color:var(--color-ink);
}
.toc{
  max-width:720px; margin:0 auto 48px; padding:20px 22px; border:1px solid var(--color-line);
  border-radius:var(--r-card); background:var(--color-sunken);
}
.toc h2{ font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--color-muted); margin-bottom:12px; }
.toc ol{ margin:0; padding-left:20px; columns:2; column-gap:24px; }
.toc li{ font-size:14px; margin-bottom:8px; break-inside:avoid; }
.toc a{ color:var(--color-ink); font-weight:500; }
.toc a:hover{ color:var(--color-accent-text); }
@media (max-width:640px){ .toc ol{ columns:1; } }

/* ---------- CONTENT GRID (About / Careers / Investors / Press / Studio partners) ---------- */
.content-section{ padding:90px var(--sp-screen); background:var(--color-surface); }
.content-section.alt{ background:var(--color-sunken); border-top:1px solid var(--color-line); border-bottom:1px solid var(--color-line); }
.content-section .wrap{ max-width:960px; }
.content-section .section-intro{ max-width:640px; margin-bottom:48px; }
.content-section .section-intro.center{ margin-left:auto; margin-right:auto; text-align:center; }
.content-section h2{ font-size:clamp(24px,3.2vw,34px); color:var(--color-ink); margin-top:12px; }
.content-section .section-intro p{ margin-top:14px; color:var(--color-muted); font-size:15.5px; }

.value-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.value-card{ background:#fff; border:1px solid var(--color-line); border-radius:var(--r-card); padding:26px; }
.value-card .num{ font-family:var(--font-mono); font-size:12px; color:var(--color-accent-text); margin-bottom:12px; }
.value-card h3{ font-family:var(--font-display); font-size:17px; font-weight:700; color:var(--color-ink); margin-bottom:8px; }
.value-card p{ font-size:14px; color:var(--color-muted); }
@media (max-width:820px){ .value-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .value-grid{ grid-template-columns:1fr; } }

.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:start; }
@media (max-width:820px){ .two-col{ grid-template-columns:1fr; gap:36px; } }

.check-list{ list-style:none; display:flex; flex-direction:column; gap:14px; margin:0; }
.check-list li{ display:flex; gap:12px; font-size:15px; color:var(--color-ink); align-items:flex-start; }
.check-list li svg{ width:18px; height:18px; flex-shrink:0; margin-top:2px; color:var(--color-accent-text); }

.contact-grid{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.contact-card{
  background:#fff; border:1px solid var(--color-line); border-radius:var(--r-card); padding:26px;
  transition:transform .25s var(--ease-out-swift), box-shadow .25s ease;
}
.contact-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-sm); }
.contact-card .icon{
  width:40px; height:40px; border-radius:var(--r-chip); background:var(--color-accent-wash);
  display:flex; align-items:center; justify-content:center; margin-bottom:16px; color:var(--color-accent-text-dark);
}
.contact-card .icon svg{ width:19px; height:19px; }
.contact-card h3{ font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--color-ink); margin-bottom:6px; }
.contact-card p{ font-size:14px; color:var(--color-muted); margin-bottom:14px; }
.contact-card a.link{ font-size:14px; font-weight:700; color:var(--color-accent-text); }
@media (max-width:700px){ .contact-grid{ grid-template-columns:1fr; } }

.quote-block{
  border-left:3px solid var(--color-accent); padding:4px 0 4px 22px; margin:28px 0;
  font-family:var(--font-display); font-size:19px; color:var(--color-ink); font-weight:500; letter-spacing:-0.01em;
}

.brand-swatches{ display:flex; flex-wrap:wrap; gap:14px; margin:20px 0 4px; }
.brand-swatch{ width:120px; }
.brand-swatch .chip{ height:64px; border-radius:var(--r-chip); border:1px solid var(--color-line); margin-bottom:8px; }
.brand-swatch .lbl{ font-family:var(--font-mono); font-size:10.5px; color:var(--color-muted); }
.brand-swatch .hex{ font-family:var(--font-mono); font-size:10.5px; color:var(--color-faint); }

.sitemap-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:36px; }
.sitemap-col h4{ font-size:12.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--color-ink); margin-bottom:14px; }
.sitemap-col ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.sitemap-col a{ font-size:14.5px; color:var(--color-muted); }
.sitemap-col a:hover{ color:var(--color-accent-text); }
@media (max-width:820px){ .sitemap-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .sitemap-grid{ grid-template-columns:1fr; } }

/* ---------- 404 ---------- */
.error-page{ padding:180px var(--sp-screen) 140px; text-align:center; }
.error-page .code{ font-family:var(--font-mono); font-size:14px; letter-spacing:.1em; color:var(--color-accent-text); margin-bottom:14px; }
.error-page h1{ font-size:clamp(30px,4.4vw,44px); margin-bottom:16px; }
.error-page p{ color:var(--color-muted); max-width:440px; margin:0 auto 28px; }

/* ---------- FOOTER ---------- */
footer{ background:var(--color-surface); color:var(--color-muted); padding:76px var(--sp-screen) 28px; border-top:1px solid var(--color-line); }
.footer-grid{
  max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1fr; gap:40px;
  padding-bottom:56px; border-bottom:1px solid var(--color-line);
}
.footer-brand .logo{ color:var(--color-ink); margin-bottom:16px; }
.footer-brand p{ font-size:14px; max-width:230px; margin-bottom:20px; }
.social-row{ display:flex; gap:12px; }
.social-row a{
  width:34px; height:34px; border:1px solid var(--color-line); border-radius:var(--r-badge);
  display:flex; align-items:center; justify-content:center; transition:border-color .2s ease, color .2s ease;
}
.social-row a:hover{ border-color:var(--color-accent-text); color:var(--color-accent-text); }
.social-row svg{ width:15px; height:15px; }

.footer-col h4{ font-family:var(--font-display); font-size:12.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase; color:var(--color-ink); margin-bottom:16px; }
.footer-col ul{ list-style:none; display:flex; flex-direction:column; gap:11px; }
.footer-col a{ font-size:14px; transition:color .2s ease; }
.footer-col a:hover{ color:var(--color-ink); }

.footer-bottom{
  max-width:1180px; margin:0 auto; padding-top:24px; display:flex; justify-content:space-between;
  align-items:center; font-size:12.5px; flex-wrap:wrap; gap:12px; color:var(--color-faint);
}
.footer-bottom-links{ display:flex; gap:20px; }
.footer-bottom-links a{ color:var(--color-faint); }

@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }
