:root {
  --bg: #0b0a0b;
  --cream: #f3e6d0;
  --cream-dim: rgba(243, 230, 208, 0.64);
  --cream-mute: rgba(243, 230, 208, 0.42);
  --red: #c43a32;
  --red-deep: #8a201c;
  --charcoal: #2a2726;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --stroke: rgba(255, 255, 255, 0.16);
  --radius: 44px;
  --radius-sm: 28px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Helvetica, Arial, sans-serif;
  --spot-x: 50%;
  --spot-y: 20%;
}

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

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.5;
  min-height: 100%;
  overflow-x: hidden;
}

a { color: var(--cream); }

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

code {
  font-size: 0.86em;
  color: var(--cream-dim);
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 80;
  padding: 0.6rem 1rem;
  background: #000;
  color: #fff;
  border-radius: 999px;
}

.skip:focus { top: 1rem; }

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.7;
  animation: drift 22s ease-in-out infinite;
}

.orb-a {
  width: 48vw;
  height: 48vw;
  left: -12vw;
  top: -10vw;
  background: radial-gradient(circle, #8a201c 0%, transparent 70%);
}

.orb-b {
  width: 42vw;
  height: 42vw;
  right: -14vw;
  top: 18vh;
  background: radial-gradient(circle, #c14e36 0%, transparent 70%);
  animation-delay: -7s;
}

.orb-c {
  width: 50vw;
  height: 50vw;
  left: 20vw;
  bottom: -20vw;
  background: radial-gradient(circle, #3a3228 0%, transparent 70%);
  animation-delay: -13s;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.55'/></svg>");
}

.spot {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(700px circle at var(--spot-x) var(--spot-y), rgba(196, 58, 50, 0.18), transparent 55%);
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(4%, 6%, 0) scale(1.08); }
}

.glass {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05) 38%, rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(42px) saturate(180%);
  -webkit-backdrop-filter: blur(42px) saturate(180%);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(255, 255, 255, 0.04),
    0 28px 70px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(255, 255, 255, 0.18), transparent 42%);
  opacity: 0.85;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: min(1120px, calc(100% - 28px));
  margin: 0 auto;
  padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(18, 16, 16, 0.48);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid var(--stroke);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.nav.is-scrolled {
  background: rgba(18, 16, 16, 0.72);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 1.15rem;
  margin-left: auto;
  font-size: 0.92rem;
}

.nav-links a {
  color: var(--cream-dim);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--cream); }

.nav-cta {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 4.5rem 0 2rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1, h2, h3 { letter-spacing: -0.045em; }

.hero h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.2rem);
  font-weight: 720;
  line-height: 0.95;
}

.lede {
  max-width: 36rem;
  margin: 1.2rem auto 1.7rem;
  color: var(--cream-dim);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.app-store {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: #000;
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  padding: 0.62rem 1.1rem 0.62rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 10px 30px rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.app-store:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}

.app-store .copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.app-store small { font-size: 0.62rem; opacity: 0.9; }
.app-store strong { font-size: 1.15rem; font-weight: 600; letter-spacing: -0.02em; }

.ghost-link {
  color: var(--cream-dim);
  text-decoration: none;
  font-weight: 550;
}

.ghost-link:hover { color: var(--cream); }

.hero-stage {
  position: relative;
  margin-top: 3.2rem;
  min-height: 560px;
  padding-bottom: 2rem;
}

.hero-phones {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  justify-items: center;
  gap: 0;
  perspective: 1200px;
}

.hero-phones .phone:first-child {
  transform: translate(48px, 36px) rotate(-12deg);
  z-index: 1;
}

.hero-phones .phone-hero {
  transform: translateY(0);
  z-index: 3;
}

.hero-phones .phone:last-child {
  transform: translate(-48px, 36px) rotate(12deg);
  z-index: 1;
}

.float-chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.chip {
  position: absolute;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--stroke);
  font-size: 0.82rem;
  animation: floaty 7s ease-in-out infinite;
}

.chip:nth-child(1) { left: 4%; top: 18%; }
.chip:nth-child(2) { right: 6%; top: 8%; animation-delay: -2s; }
.chip:nth-child(3) { left: 8%; bottom: 16%; animation-delay: -3.5s; }
.chip:nth-child(4) { right: 4%; bottom: 22%; animation-delay: -1.2s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.phone {
  width: 250px;
  aspect-ratio: 9 / 19.4;
  margin: 0;
}

.phone-sm { width: 190px; }

.phone-bezel {
  position: relative;
  height: 100%;
  padding: 5px;
  border-radius: 48px;
  background: linear-gradient(160deg, #4a4744, #1c1b1a 42%, #0c0b0b);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 30px 70px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.phone-sm .phone-bezel { border-radius: 38px; }

.island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 4;
  width: 80px;
  height: 18px;
  transform: translateX(-50%);
  background: #000;
  border-radius: 9px;
}

.phone-sm .island {
  top: 9px;
  width: 64px;
  height: 16px;
  border-radius: 8px;
}

.island.live {
  width: 118px;
  animation: island-pulse 3.6s ease-in-out infinite;
}

.island-la {
  top: 8px;
  width: 118px;
  height: 18px;
  border-radius: 9px;
  overflow: visible;
  transform: translateX(-50%);
  transition: width 0.55s cubic-bezier(0.32, 0.72, 0, 1);
}

.island-la[data-mode="duty"] { width: 120px; }
.island-la[data-mode="rest"] { width: 108px; }
.island-la[data-mode="holdover"] { width: 112px; }
.island-la[data-mode="onin"] { width: 100px; }
.island-la[data-mode^="mini"] { width: 43px; }

.island-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 0 8px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.4s ease,
    transform 0.55s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
  color: #fff;
  font-size: 6.5px;
  font-weight: 700;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.island-slide.is-on {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.island-slide.island-mini {
  inset: auto;
  top: 50%;
  right: -20px;
  z-index: 2;
  width: 18px;
  height: 18px;
  padding: 0;
  overflow: visible;
  border-radius: 50%;
  background: #000;
  justify-content: center;
  gap: 0;
  font-size: 5.5px;
  letter-spacing: -0.05em;
  box-shadow: 0 0 0 1.5px #0c0b0b;
  transform: translate(4px, -50%) scale(0.72);
}

.island-slide.island-mini.is-on {
  transform: translate(0, -50%) scale(1);
}

.island-lead,
.island-trail {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  min-width: 0;
}

.island-lead svg,
.island-trail svg {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
}

.island-rest { color: #857ad2; }
.island-hot { color: #8cd1ff; }
.island-slide .island-lead { font-size: 6px; }
.island-slide[data-island="onin"] .island-lead {
  color: #b8b8b8;
  font-size: 6px;
  letter-spacing: 0.04em;
}
.island-slide[data-island="onin"] .island-trail { color: #b8b8b8; }

@keyframes island-pulse {
  0%, 100% { width: 118px; }
  50% { width: 148px; }
}

.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 43px;
  background: #161312;
}

.phone-sm .screen { border-radius: 33px; }

.shot-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

.shot-img.is-loaded {
  opacity: 1;
}

.screen.has-shot .mock { display: none; }

.slide:has(.shot-img.is-loaded) .shot-hint,
.media-frame:has(.shot-img.is-loaded) .shot-hint,
.shot-tile:has(.shot-img.is-loaded) .shot-hint {
  display: none;
}

.mock {
  position: absolute;
  inset: 0;
  padding: 54px 16px 18px;
  color: var(--cream);
}

.mock-map .map-wash,
.mock-map:empty,
.mock.mock-map {
  background:
    radial-gradient(circle at 30% 40%, rgba(196, 58, 50, 0.28), transparent 28%),
    linear-gradient(160deg, #2a3230, #171412 55%, #1c2420);
}

.mock-map .map-wash {
  position: absolute;
  inset: 0;
}

.pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--red);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  animation: pinpop 2.8s ease-in-out infinite;
}

.pin.p1 { left: 28%; top: 34%; }
.pin.p2 { left: 58%; top: 28%; animation-delay: -0.6s; background: #c14e36; }
.pin.p3 { left: 46%; top: 52%; animation-delay: -1.2s; background: #d8b48a; }
.pin.p4 { left: 70%; top: 46%; animation-delay: -1.8s; }

@keyframes pinpop {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-5px); }
}

.glass-sheet {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 16px;
  padding: 12px 14px;
  border-radius: 22px;
  background: rgba(20, 18, 18, 0.55);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-align: left;
}

.map-card p, .map-card em {
  margin: 0;
  color: var(--cream-mute);
  font-size: 0.72rem;
  font-style: normal;
}

.map-card strong {
  display: block;
  margin: 0.15rem 0 0.2rem;
  font-size: 0.95rem;
}

.mock-hotels header,
.mock-social header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-weight: 650;
}

.mock-hotels .hotel-row,
.mock-search .result,
.mock-tools .tool-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.mock-hotels .hotel-row.on {
  background: rgba(196, 58, 50, 0.28);
}

.mock-hotels:empty::before,
.mock-map:empty::before,
.mock-duty:empty::before,
.mock-social:empty::before,
.mock-lock:empty::before {
  content: "";
}

.mock-hotels:empty {
  background:
    linear-gradient(180deg, transparent 40px, rgba(255, 255, 255, 0.06) 40px, rgba(255, 255, 255, 0.06) 78px, transparent 78px) 0 70px / 100% 52px repeat-y,
    #161312;
}

.mock-duty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 50% 38%, rgba(196, 58, 50, 0.28), #141110 58%);
}

.mock-duty p { margin: 0; color: var(--cream-mute); font-size: 0.78rem; }
.mock-duty strong { font-size: 2.4rem; letter-spacing: -0.06em; line-height: 1; margin: 0.2rem 0 0.8rem; }
.mock-duty .ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--red);
  animation: spin 8s linear infinite;
  margin-bottom: 1rem;
}

.mock-duty ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mock-duty li {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0.2rem;
  color: var(--cream-dim);
  font-size: 0.78rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.mock-search .search-bar {
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: var(--cream-dim);
}

.chip-row {
  display: flex;
  gap: 6px;
  margin: 10px 0;
}

.chip-row span {
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(196, 58, 50, 0.28);
  font-size: 0.68rem;
}

.mock-social .avatars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.mock-social .avatars i {
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(160deg, #c14e36, #5a2a24);
}

.mock-social .msg {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  text-align: left;
  font-size: 0.78rem;
}

.mock-social .msg p { margin: 0.25rem 0 0; color: var(--cream-dim); }

.mock.mock-lock {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 42px 10px 10px;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(90, 70, 88, 0.55), transparent 42%),
    linear-gradient(180deg, #1c1824 0%, #0b0b10 48%, #121018 100%);
  color: #fff;
}

.mock-lock .lock-date {
  margin: 0;
  font-size: 10px;
  font-weight: 510;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.mock-lock .time {
  margin: 0;
  font-size: 42px;
  font-weight: 250;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.la-card {
  width: 100%;
  flex: 0 0 auto;
  margin-top: auto;
  border-radius: 13px;
  overflow: hidden;
  background: #1c1c1e;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  text-align: left;
  line-height: 1.2;
}

.la-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 12px 5px 10px;
}

.la-col-left,
.la-col-right {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.la-col-left { flex: 1; }

.la-col-right {
  flex: 1.15;
  align-items: flex-end;
  text-align: right;
  padding-right: 2px;
}

.la-app {
  font-size: 7px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.la-tail {
  margin-top: 1px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.la-duty-cap {
  margin-top: 5px;
  font-size: 4.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}

.la-duty-clock {
  margin-top: 1px;
  font-size: 8px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #b8b8b8;
  letter-spacing: -0.01em;
}

.la-duty-clock.la-duty-ot {
  color: #ffc761;
}

.la-ot {
  margin-top: 1px;
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
}

.la-days {
  font-size: 7px;
  font-weight: 500;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.la-progress {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  margin-top: 4px;
  width: calc(100% - 2px);
}

.la-end {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 0 0 auto;
}

.la-end b {
  font-size: 4.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.la-end em {
  font-size: 5.5px;
  font-style: normal;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
}

.la-track {
  flex: 1;
  min-width: 20px;
  height: 2px;
  margin-top: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.la-track i {
  display: block;
  height: 100%;
  width: 46%;
  border-radius: 99px;
  background: #0a84ff;
  animation: la-fill 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes la-fill {
  from { width: 0; }
}

.la-hotel {
  margin: 0;
  padding: 2px 12px 6px 10px;
  font-size: 6px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  background: #1c1c1e;
}

.la-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 5px 12px 8px 10px;
  background: #000;
  border-top: 0.5px solid rgba(255, 255, 255, 0.12);
  font-size: 7px;
  font-weight: 500;
}

.la-uber {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.la-uber svg {
  width: 4.5px;
  height: 8px;
  opacity: 0.85;
}

.la-counts {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.la-counts span {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.la-ico {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  fill: #fff;
}

.la-ico-ppl {
  width: 11px;
  height: 8px;
}

.lock-tools {
  display: flex;
  justify-content: space-between;
  width: calc(100% - 18px);
  margin-top: 10px;
  padding-bottom: 4px;
}

.lock-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.lock-btn::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
}

.lock-btn.camera::before {
  inset: 9px;
  border-radius: 5px;
}

.phone-sm .mock-lock .lock-date,
.phone-sm .mock-lock .lock-tools { display: none; }

.phone-sm .mock.mock-lock { padding: 38px 8px 14px; }

.phone-sm .mock-lock .time {
  font-size: 26px;
  margin-bottom: 0;
}

.phone-sm .la-card { border-radius: 11px; }
.phone-sm .la-app { font-size: 6px; }
.phone-sm .la-tail { font-size: 7px; }
.phone-sm .la-days { font-size: 6px; }
.phone-sm .la-duty-clock { font-size: 7px; }
.phone-sm .la-hotel { font-size: 5px; padding: 2px 10px 5px 8px; }
.phone-sm .la-bar { font-size: 6px; padding: 5px 10px 6px 8px; }
.phone-sm .la-body { padding: 7px 10px 4px 8px; gap: 8px; }

.wid {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #1c1c1e;
  color: #fff;
  text-align: left;
  line-height: 1.15;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.wid.small {
  aspect-ratio: 1;
  padding: 8px 8px 7px;
  border-radius: 16px;
}

.wid.medium {
  position: relative;
  width: 100%;
  aspect-ratio: 2.12 / 1.08;
  padding: 8px 10px 7px;
  border-radius: 16px;
}

.wid-jet {
  position: absolute;
  right: 7px;
  top: 8px;
  width: 64%;
  max-height: 50%;
  object-fit: contain;
  object-position: right center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.94;
}

.wid.medium > *:not(.wid-jet) {
  position: relative;
  z-index: 1;
}

.wid-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 4px;
  margin-bottom: 1px;
}

.wid-app {
  flex: 0 0 auto;
  font-size: 7px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.wid-days {
  font-size: 5.5px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-align: right;
  white-space: nowrap;
}

.wid-track {
  flex: 0 0 auto;
  height: 2px;
  margin: 3px 0 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.22);
  overflow: hidden;
}

.wid-track i {
  display: block;
  width: 46%;
  height: 100%;
  border-radius: 99px;
  background: #0a84ff;
  animation: la-fill 1.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wid-tail {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.wid.medium .wid-tail {
  font-size: 8px;
  font-weight: 500;
  margin-top: 1px;
}

.wid-counts {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 6.5px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.wid-counts span {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.wid-hotel {
  margin-top: 3px;
  font-size: 6px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wid.medium .wid-hotel {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 6.5px;
}

.wid-duty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 3px;
}

.wid-duty .la-duty-cap,
.wid .la-duty-cap {
  margin-top: 0;
}

.wid .la-duty-clock {
  font-size: 6.5px;
}

.wid.medium .la-duty-clock {
  font-size: 7.5px;
}

.wid .la-ot {
  font-size: 4.5px;
}

.wid-status {
  display: block;
  flex: 0 0 auto;
  margin: auto 0 1px;
  font-size: 7.5px;
  font-weight: 500;
  text-align: center;
}

.wid .la-progress {
  flex: 0 0 auto;
  margin-top: 2px;
  margin-bottom: 5px;
}

.wid-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex: 0 0 auto;
}

.wid-foot .wid-counts { margin-top: 0; }

.mock.mock-home {
  display: flex;
  flex-direction: column;
  padding: 6px 10px 10px;
  background:
    radial-gradient(ellipse at 18% 8%, #6a4e86 0%, transparent 46%),
    radial-gradient(ellipse at 92% 18%, #2f4a78 0%, transparent 42%),
    radial-gradient(ellipse at 48% 88%, #6a3844 0%, transparent 48%),
    linear-gradient(180deg, #241c2c 0%, #121018 100%);
  color: #fff;
}

.home-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 20px;
  padding: 0 2px;
  margin-bottom: 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.home-time { padding-left: 10px; }

.home-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

.home-bars {
  display: flex;
  align-items: flex-end;
  gap: 1.2px;
  height: 8px;
}

.home-bars i {
  width: 2.4px;
  border-radius: 0.4px;
  background: #fff;
}

.home-bars i:nth-child(1) { height: 3px; }
.home-bars i:nth-child(2) { height: 4.5px; }
.home-bars i:nth-child(3) { height: 6.5px; }
.home-bars i:nth-child(4) { height: 8px; }

.home-batt {
  width: 15px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 2.2px;
  position: relative;
}

.home-batt::before {
  content: "";
  position: absolute;
  inset: 1px 3.5px 1px 1px;
  border-radius: 0.6px;
  background: #fff;
}

.home-batt::after {
  content: "";
  position: absolute;
  right: -2.2px;
  top: 2px;
  width: 1.4px;
  height: 3.6px;
  border-radius: 0 1px 1px 0;
  background: rgba(255, 255, 255, 0.95);
}

.home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 10px;
  width: 100%;
}

.home-cell {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-cell-wide { grid-column: 1 / -1; }

.wid-label {
  display: block;
  margin-top: 4px;
  font-size: 7px;
  font-weight: 510;
  letter-spacing: -0.01em;
  text-align: center;
  color: rgba(255, 255, 255, 0.94);
}

.home-apps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-content: start;
  justify-items: center;
  gap: 8px 6px;
  padding: 1px 0 0;
}

.home-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-items: center;
  gap: 6px 4px;
  margin-top: 2px;
}

.home-app-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.home-app-wrap small {
  font-size: 6px;
  font-weight: 510;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.92);
}

.home-app {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
}

img.home-app.ontour {
  display: block;
  object-fit: cover;
  padding: 0;
  border: 0;
}

.home-app.phone {
  background: linear-gradient(180deg, #3adf63, #24c44e);
}

.home-app.safari {
  background:
    radial-gradient(circle at 50% 50%, #fff 0 6px, transparent 7px),
    conic-gradient(from 20deg, #1d8fff, #e8eef8, #1d8fff, #c23b2e, #1d8fff);
}

.home-app.messages {
  background: linear-gradient(180deg, #67f070, #32c759);
}

.home-app.photos {
  background: conic-gradient(from 210deg, #f2c94c, #eb6b4a, #c44bdc, #4d8dff, #47d16c, #f2c94c);
}

.home-app.music {
  background: linear-gradient(180deg, #fc5c7e, #c31432);
}

.home-app.calendar {
  background:
    linear-gradient(#d94841 0 28%, #fff 28%);
  position: relative;
}

.home-app.maps {
  background:
    radial-gradient(circle at 50% 58%, #3d7dff 0 7px, transparent 8px),
    linear-gradient(160deg, #6ad06a 0 42%, #f0d36c 42% 68%, #5bc8f5 68%);
}

.home-app.mail {
  background: linear-gradient(180deg, #5ac8fa, #007aff);
}

.home-app.camera {
  background: linear-gradient(180deg, #6e6e73, #3a3a3c);
}

.home-dock {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  justify-items: center;
  margin-top: auto;
  padding: 8px 8px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.home-dock .home-app {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  flex: 0 0 auto;
}

.marquee {
  margin: 1rem 0 3rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 2.4rem;
  animation: ticker 36s linear infinite;
  color: var(--cream-mute);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-section,
.tools,
.lock,
.split {
  scroll-margin-top: 120px;
}

.gallery-section,
.tools,
.lock {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 5rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.8rem;
}

.section-head h2,
.split-copy h2,
.cta-card h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
}

.section-head p,
.split-copy > p {
  margin: 0;
  color: var(--cream-dim);
}

.section-head .fine-print {
  margin-top: 0.65rem;
  font-size: 0.82rem;
  line-height: 1.4;
  opacity: 0.78;
}

.rail-wrap {
  position: relative;
}

.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 300px);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 8px;
  scrollbar-width: none;
  padding: 0.4rem 8px 1.2rem;
}

.rail::-webkit-scrollbar { display: none; }

.slide {
  scroll-snap-align: start;
  padding: 1.2rem 1.2rem 1rem;
  display: grid;
  justify-items: center;
  min-height: 460px;
  overflow: visible;
}

.slide-copy {
  width: 100%;
  text-align: left;
  margin-bottom: 1rem;
}

.slide-copy h3 { margin: 0 0 0.3rem; font-size: 1.2rem; }
.slide-copy p { margin: 0; color: var(--cream-dim); font-size: 0.95rem; }

.rail-btn {
  position: absolute;
  top: 46%;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: rgba(20, 18, 18, 0.55);
  color: var(--cream);
  backdrop-filter: blur(16px);
  font-size: 1.5rem;
  cursor: pointer;
}

.rail-btn.prev { left: -8px; }
.rail-btn.next { right: -8px; }

.rail-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.rail-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(243, 230, 208, 0.28);
  cursor: pointer;
}

.rail-dots button.is-on {
  width: 22px;
  background: var(--cream);
}

.split {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 5.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.ticks {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.ticks li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.4rem;
  color: var(--cream-dim);
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.media-frame {
  display: grid;
  justify-items: center;
  padding: 2rem 1.5rem 1.1rem;
}

.shot-hint {
  margin: 0.85rem 0 0;
  color: var(--cream-mute);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.bento article {
  padding: 1.3rem 1.25rem 1.25rem;
}

.bento-lg {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.shot-tile {
  grid-column: span 2;
  display: grid;
  justify-items: center;
}

.bento h3 { margin: 0.2rem 0 0.4rem; font-size: 1.15rem; }
.bento p { margin: 0; color: var(--cream-dim); font-size: 0.95rem; }

.icon-blob {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(196, 58, 50, 0.22);
  margin-bottom: 0.7rem;
}

.lock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.lock-card {
  padding: 1.4rem 1.3rem 1.1rem;
  text-align: center;
}

.lock-card h3 { margin: 0 0 0.4rem; }
.lock-card > p { color: var(--cream-dim); margin: 0 0 1.2rem; }
.lock-card .phone { margin: 0 auto; }

.cta-band {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 4rem;
}

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.2rem 1.5rem;
}

.app-icon {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  margin-bottom: 1.1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.site-footer {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 2.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  color: var(--cream-mute);
  font-size: 0.82rem;
}

.site-footer a {
  color: var(--cream-mute);
  text-decoration: none;
}

.site-footer a:hover { color: var(--cream); }

.hero .reveal {
  animation: rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
}

.reveal.in {
  animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.tilt {
  transform-style: preserve-3d;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .hero-phones { grid-template-columns: 1fr; }
  .hero-phones .phone:first-child,
  .hero-phones .phone:last-child { display: none; }
  .hero-phones .phone-hero { transform: none; }
  .hero-stage { min-height: 480px; }
  .split, .split.reverse, .lock-grid, .bento { grid-template-columns: 1fr; }
  .bento-lg, .shot-tile { grid-column: span 1; }
  .bento-lg { grid-template-columns: 1fr; justify-items: center; }
  .float-chips { display: none; }
  .rail { grid-auto-columns: minmax(240px, 78%); }
}

@media (max-width: 560px) {
  .hero { padding-top: 2.6rem; }
  .phone { width: 220px; }
  .rail-btn { display: none; }
}

.legal-hero {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 3.4rem 0 1.5rem;
  text-align: center;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 720;
  line-height: 0.98;
}

.legal-hero .lede {
  margin: 0.85rem auto 0;
  max-width: 28rem;
  font-size: 1.05rem;
}

.legal-doc {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto 4rem;
  padding: 2.15rem 2rem 2.5rem;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(22, 18, 18, 0.62) 36%, rgba(16, 14, 14, 0.7));
}

.legal-doc > p:first-child {
  margin-top: 0;
  font-size: 1.05rem;
  color: var(--cream);
}

.legal-doc h2 {
  margin: 1.85rem 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.legal-doc p,
.legal-doc li {
  color: var(--cream-dim);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-doc ul {
  margin: 0.4rem 0 0.8rem;
  padding-left: 1.15rem;
}

.legal-doc li {
  margin: 0.28rem 0;
}

.legal-doc li::marker { color: var(--red); }

.legal-doc a {
  color: var(--cream);
  text-underline-offset: 0.18em;
}

.legal-doc a:hover { color: #fff; }

.legal-doc strong {
  color: var(--cream);
  font-weight: 650;
}

.legal-hero .reveal,
.legal-doc.reveal {
  animation: rise 1.05s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.legal-doc.reveal {
  animation-delay: 0.12s;
}

@media (max-width: 960px) {
  body.legal .nav-links {
    display: flex;
    margin-left: auto;
    font-size: 0.82rem;
    gap: 0.85rem;
  }
}

@media (max-width: 560px) {
  .legal-doc { padding: 1.4rem 1.15rem 1.8rem; border-radius: 28px; }
  .legal-hero { padding-top: 2.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb, .chip, .marquee-track, .island.live, .pin, .mock-duty .ring, .reveal, .la-track i, .wid-track i, .island-la, .island-slide {
    animation: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
