:root {
  --canvas: #fbfbfd;
  --soft: #f5f5f7;
  --surface: #ffffff;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(29, 29, 31, 0.1);
  --line-dark: rgba(255, 255, 255, 0.16);
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --night: #08090b;
  --amber: #f0a45d;
  --shell: 1200px;
  --shell-wide: 1440px;
  --gutter: clamp(20px, 4.5vw, 72px);
  --section-space: clamp(96px, 12vw, 180px);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

.top-sentinel {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { color: inherit; font: inherit; }
button { border: 0; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

::selection { background: #d8eafd; color: var(--ink); }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  transform: translateY(-160%);
  border-radius: 6px;
  background: var(--ink);
  color: white;
  font-weight: 600;
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 80;
  inset: 0 0 auto;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  background: var(--blue);
  pointer-events: none;
}

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

.shell-wide { width: min(calc(100% - (var(--gutter) * 2)), var(--shell-wide)); }
.section-light { background: var(--canvas); }
.section-soft { background: var(--soft); }
.section-dark { background: var(--night); color: #f5f5f7; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.095em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-dark .eyebrow { color: #a1a1a6; }

.display-title {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  transition: background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.button:hover { border-color: var(--blue-hover); background: var(--blue-hover); }
.button:active { transform: scale(0.98); }
.button-small { min-height: 34px; padding: 8px 15px; font-size: 0.78rem; }
.button-light { border-color: white; background: white; color: var(--ink); }
.button-light:hover { border-color: #f5f5f7; background: #f5f5f7; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-size: 0.98rem;
  font-weight: 600;
}

.text-link span { transition: transform 220ms var(--ease-out); }
.text-link:hover span { transform: translate(3px, -2px); }

:focus-visible {
  outline: 3px solid rgba(0, 113, 227, 0.55);
  outline-offset: 4px;
}

/* Navigation */
.site-header {
  position: fixed;
  z-index: 70;
  inset: 0 0 auto;
  min-height: 52px;
  border-bottom: 1px solid transparent;
  background: rgba(251, 251, 253, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  backdrop-filter: saturate(180%) blur(18px);
  transition: background-color 260ms ease, border-color 260ms ease;
}

.site-header.has-scrolled,
.site-header.menu-active {
  border-bottom-color: var(--line);
  background: rgba(251, 251, 253, 0.9);
}

.nav-shell {
  display: grid;
  width: min(calc(100% - 40px), 1080px);
  min-height: 52px;
  margin-inline: auto;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 9px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 0.68rem;
  letter-spacing: -0.03em;
}

.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a { color: #3b3b3d; font-size: 0.75rem; transition: color 180ms ease; }
.desktop-nav a:hover { color: var(--ink); }
.nav-actions { display: flex; justify-self: end; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  right: 10px;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 240ms var(--ease-out);
}

.menu-toggle span:first-child { transform: translateY(-3px); }
.menu-toggle span:last-child { transform: translateY(3px); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: rotate(-45deg); }

.mobile-menu {
  min-height: calc(100svh - 52px);
  max-height: calc(100svh - 52px);
  padding: 44px var(--gutter) 60px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: rgba(251, 251, 253, 0.98);
}

.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.7rem, 8vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.035em;
}

.mobile-menu a:last-child { margin-top: 26px; border-bottom: 0; color: var(--blue); font-size: 1rem; letter-spacing: -0.01em; }

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  padding: clamp(116px, 13vh, 160px) 0 clamp(118px, 13vh, 150px);
  overflow: clip;
  place-items: center;
  isolation: isolate;
}

.hero-video-layer {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  background: #10141a url("assets/stay-blue-hour.jpg") center / cover no-repeat;
}

.hero-background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
}

.hero-video-shade {
  position: absolute;
  inset: 0;
  background: rgba(4, 6, 9, 0.53);
}

.hero-copy { position: relative; z-index: 2; max-width: 1080px; text-align: center; }
.hero-eyebrow { margin-bottom: 26px; }
.video-hero .hero-eyebrow { color: rgba(255,255,255,.72); }

.hero h1 {
  margin: 0;
  color: white;
  font-size: clamp(3.35rem, 7.8vw, 7.6rem);
  font-weight: 650;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap: balance;
}

.hero-line { display: block; overflow: hidden; padding: 0.04em 0.04em 0.08em; }
.hero-line-inner { display: block; }
.hero-line-accent { color: rgba(255,255,255,.67); }

.hero-intro {
  max-width: 680px;
  margin: 32px auto 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  letter-spacing: -0.015em;
  line-height: 1.45;
  text-wrap: balance;
}

.hero-actions { display: flex; justify-content: center; align-items: center; gap: 25px; margin-top: 32px; }
.hero-actions .text-link { color: white; }
.hero-note { margin: 17px 0 0; color: rgba(255,255,255,.62); font-size: 0.76rem; }

.hero-reel-meta {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.58);
  font-size: .63rem;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-video-toggle {
  position: absolute;
  z-index: 3;
  right: max(var(--gutter), calc((100vw - var(--shell)) / 2));
  bottom: 54px;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  background: rgba(5,7,10,.42);
  color: white;
  cursor: pointer;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: background-color 180ms ease, transform 180ms ease;
}
.hero-video-toggle:hover { background: rgba(5,7,10,.66); }
.hero-video-toggle:active { transform: scale(.94); }
.video-toggle-pause { display: flex; gap: 3px; }
.video-toggle-pause i { display: block; width: 2px; height: 10px; border-radius: 1px; background: currentColor; }
.video-toggle-play { display: none; width: 0; height: 0; margin-left: 2px; border-top: 5px solid transparent; border-bottom: 5px solid transparent; border-left: 8px solid currentColor; }
.hero-video-toggle.is-paused .video-toggle-pause { display: none; }
.hero-video-toggle.is-paused .video-toggle-play { display: block; }

.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 50%;
  display: flex;
  width: max-content;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.7);
  font-size: 0.68rem;
  font-weight: 600;
  transform: translateX(-50%);
}

.scroll-cue-line { display: block; width: 1px; height: 28px; background: rgba(255,255,255,.66); transform-origin: top; animation: cue 2s var(--ease-out) infinite; }
@keyframes cue { 0% { transform: scaleY(0); } 45% { transform: scaleY(1); transform-origin: top; } 55% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* Proof */
.proof { padding: clamp(78px, 9vw, 126px) 0; }
.proof-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(50px, 8vw, 112px); align-items: end; }
.proof-lead h2 { margin: 0; }
.stat-value { display: block; font-size: clamp(5.6rem, 12vw, 11rem); font-weight: 650; letter-spacing: -0.085em; line-height: 0.78; font-variant-numeric: tabular-nums; }
.stat-label { display: block; max-width: 20ch; margin-top: 24px; color: var(--muted); font-size: 1rem; font-weight: 500; letter-spacing: -0.01em; }
.proof-stats { border-top: 1px solid var(--line); }
.proof-stats article { display: grid; grid-template-columns: minmax(110px, .65fr) 1fr; gap: 10px 22px; padding: 21px 0; border-bottom: 1px solid var(--line); align-items: baseline; }
.proof-stats strong { font-size: clamp(1.85rem, 3.2vw, 2.8rem); font-weight: 620; letter-spacing: -0.045em; font-variant-numeric: tabular-nums; }
.proof-stats span { color: var(--muted); font-size: 0.88rem; }
.proof-stats small { grid-column: 2; color: #86868b; font-size: 0.72rem; }
.proof-note { max-width: 820px; margin-top: 52px; margin-bottom: 0; color: var(--muted); font-size: 0.87rem; line-height: 1.55; }

/* Difference */
.difference { padding: var(--section-space) 0; }
.difference-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(4rem, 8.8vw, 8.8rem);
  font-weight: 650;
  letter-spacing: -.075em;
  line-height: .91;
  text-wrap: balance;
}
.manifesto-lines { margin-top: clamp(82px, 11vw, 150px); border-bottom: 1px solid var(--line); }
.manifesto-line {
  display: grid;
  margin: 0;
  padding: clamp(25px, 3.5vw, 44px) 0;
  border-top: 1px solid var(--line);
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(30px, 6vw, 100px);
  align-items: baseline;
}
.manifesto-line span { color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.22rem); }
.manifesto-line strong { font-size: clamp(2rem, 4.5vw, 4.7rem); font-weight: 610; letter-spacing: -.055em; line-height: 1; }
.difference-quote {
  max-width: 18ch;
  margin: clamp(96px, 13vw, 180px) auto 0;
  color: var(--ink);
  font-size: clamp(2.65rem, 6.5vw, 6.7rem);
  font-weight: 620;
  letter-spacing: -.066em;
  line-height: .98;
  text-align: center;
  text-wrap: balance;
}
.difference-closing { margin: clamp(52px, 7vw, 86px) auto 0; color: var(--blue); font-size: clamp(1.35rem, 2.6vw, 2.4rem); font-weight: 620; letter-spacing: -.035em; text-align: center; }

/* Work */
.work { padding: var(--section-space) 0; overflow: clip; }
.work-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 60px; align-items: end; }
.work-heading > p { max-width: 34ch; margin: 0 0 6px; color: #a1a1a6; font-size: 1rem; }
.work-story {
  display: grid;
  margin-top: clamp(70px, 10vw, 130px);
  grid-template-columns: minmax(0, 1fr) minmax(310px, .72fr);
  column-gap: clamp(64px, 10vw, 150px);
  align-items: start;
}
.phone-stage {
  position: sticky;
  top: 58px;
  display: grid;
  height: calc(100svh - 58px);
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  place-items: center;
}
.iphone-device {
  position: relative;
  width: min(26vw, 356px, calc((100svh - 76px) * .4615));
  aspect-ratio: 9 / 19.5;
  padding: 8px;
  border: 3px solid #85858a;
  border-radius: 49px;
  background: #050505;
  box-shadow: 0 24px 52px rgba(0,0,0,.3), inset 0 0 0 1px rgba(255,255,255,.17);
}
.iphone-device::after { position: absolute; inset: 3px; border: 1px solid rgba(255,255,255,.09); border-radius: 43px; content: ""; pointer-events: none; }
.iphone-side { position: absolute; width: 3px; border-radius: 2px; background: #77777c; }
.iphone-side-left { top: 22%; left: -5px; height: 15%; }
.iphone-side-right { top: 29%; right: -5px; height: 10%; }
.iphone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 39px;
  background: #000;
  color: #fff;
  container-type: inline-size;
  isolation: isolate;
}
.iphone-island { position: absolute; z-index: 20; top: 3.1cqi; left: 50%; width: 37%; height: 8.3cqi; border-radius: 999px; background: #050505; transform: translateX(-50%); }
.tiktok-profile-view,
.tiktok-post-view { position: absolute; inset: 0; overflow: hidden; background: #000; color: #fff; }
.tiktok-profile-view { z-index: 2; opacity: 0; visibility: hidden; }
.tiktok-profile-view.is-active { opacity: 1; visibility: visible; }
.tiktok-post-view { z-index: 3; opacity: 0; visibility: hidden; transform: translateY(10%) scale(.94); }
.tiktok-post-view.is-active { opacity: 1; visibility: visible; transform: none; }
.tiktok-statusbar {
  position: absolute;
  z-index: 12;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 12.5cqi;
  align-items: flex-start;
  justify-content: space-between;
  padding: 4.1cqi 6.2cqi 0;
  color: #fff;
  font-size: 3.2cqi;
  font-weight: 690;
  letter-spacing: .01em;
  line-height: 1;
}
.tiktok-ios-icons { display: flex; align-items: center; gap: 1.15cqi; }
.tiktok-ios-icons i { position: relative; display: block; flex: 0 0 auto; }
.tiktok-ios-icons i:first-child { width: 4.2cqi; height: 2.7cqi; background: #fff; clip-path: polygon(0 100%,0 68%,18% 68%,18% 48%,42% 48%,42% 29%,68% 29%,68% 0,100% 0,100% 100%); }
.tiktok-ios-icons i:nth-child(2) { width: 4cqi; height: 2.7cqi; border-top: .7cqi solid #fff; border-radius: 50%; }
.tiktok-ios-icons i:last-child { width: 5.2cqi; height: 2.7cqi; border: .55cqi solid #fff; border-radius: .7cqi; }
.tiktok-ios-icons i:last-child::after { position: absolute; top: .35cqi; right: -.95cqi; width: .55cqi; height: 1.1cqi; border-radius: 0 .3cqi .3cqi 0; background: #fff; content: ""; }
.tiktok-profile-toolbar {
  position: absolute;
  z-index: 3;
  top: 12.4cqi;
  right: 0;
  left: 0;
  display: grid;
  height: 13cqi;
  align-items: center;
  padding: 0 5cqi;
  border-bottom: 1px solid #1d1d1f;
  grid-template-columns: 1fr auto 1fr;
}
.tiktok-profile-toolbar svg { width: 5.7cqi; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.tiktok-profile-toolbar svg:last-child { justify-self: end; }
.tiktok-profile-toolbar strong { font-size: 4.2cqi; font-weight: 690; letter-spacing: -.02em; }
.tiktok-profile-toolbar strong span { display: inline-block; margin-left: .7cqi; color: #a5a5a9; font-size: 3.5cqi; transform: translateY(-.5cqi); }
.tiktok-profile-main { position: absolute; z-index: 2; top: 28cqi; right: 4cqi; left: 4cqi; text-align: center; }
.tiktok-profile-avatar {
  display: grid;
  width: 19cqi;
  aspect-ratio: 1;
  margin: 0 auto;
  place-items: center;
  border: .7cqi solid #fff;
  border-radius: 50%;
  background: #0b1828;
  overflow: hidden;
  font-size: 6.5cqi;
  font-weight: 730;
  letter-spacing: -.1em;
  line-height: 1;
}
.tiktok-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tiktok-profile-main h3 { margin: 2.4cqi 0 0; font-size: 4.2cqi; font-weight: 700; letter-spacing: -.02em; line-height: 1; }
.tiktok-profile-handle { margin: 1.5cqi 0 0; color: #d5d5d7; font-size: 3cqi; line-height: 1; }
.tiktok-profile-stats { display: flex; justify-content: center; margin-top: 3.6cqi; }
.tiktok-profile-stats > span { display: grid; min-width: 23cqi; gap: .7cqi; padding: 0 3.4cqi; }
.tiktok-profile-stats > span + span { border-left: 1px solid #29292c; }
.tiktok-profile-stats strong { font-size: 4.2cqi; font-weight: 720; line-height: 1; }
.tiktok-profile-stats small { color: #9c9ca1; font-size: 2.75cqi; line-height: 1; }
.tiktok-profile-actions { display: flex; height: 9.8cqi; justify-content: center; gap: 1.5cqi; margin-top: 3.6cqi; font-size: 3.3cqi; font-weight: 680; }
.tiktok-profile-actions > span { display: grid; min-width: 30cqi; padding: 0 4cqi; place-items: center; border: 1px solid #333338; border-radius: 1.6cqi; }
.tiktok-profile-actions .tiktok-profile-follow { border-color: #fe2c55; background: #fe2c55; }
.tiktok-profile-actions .tiktok-profile-share { min-width: 9.8cqi; padding: 0; }
.tiktok-profile-share svg { width: 4.7cqi; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.9; }
.tiktok-profile-bio { margin: 3.1cqi 0 0; font-size: 3cqi; line-height: 1.35; }
.tiktok-profile-bio span { color: #c9c9cc; }
.tiktok-profile-link { margin: 1.2cqi 0 0; color: #89a7c4; font-size: 2.8cqi; font-weight: 670; line-height: 1; }
.tiktok-profile-tabs {
  position: absolute;
  z-index: 3;
  top: 105.5cqi;
  right: 0;
  left: 0;
  display: grid;
  height: 12cqi;
  border-top: 1px solid #1b1b1e;
  border-bottom: 1px solid #1b1b1e;
  grid-template-columns: repeat(3, 1fr);
}
.tiktok-profile-tabs span { position: relative; display: grid; place-items: center; color: #66666b; }
.tiktok-profile-tabs span.is-active { color: #fff; }
.tiktok-profile-tabs span.is-active::after { position: absolute; right: 15%; bottom: -1px; left: 15%; height: 2px; background: #fff; content: ""; }
.tiktok-profile-tabs svg { width: 5.5cqi; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.tiktok-profile-grid {
  position: absolute;
  z-index: 2;
  top: 117.5cqi;
  right: 0;
  left: 0;
  display: grid;
  height: 82cqi;
  overflow: hidden;
  gap: .55cqi;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 41cqi);
}
.tiktok-grid-tile { position: relative; display: block; overflow: hidden; background: #161618; }
.tiktok-grid-tile img { width: 100%; height: 100%; object-fit: cover; }
.tiktok-grid-tile small { position: absolute; z-index: 2; right: 2cqi; bottom: 1.8cqi; left: 2cqi; color: #fff; font-size: 2.5cqi; font-weight: 690; line-height: 1; text-align: left; text-shadow: 0 1px 3px #000; }
.tiktok-grid-tile.is-selected::after { position: absolute; inset: 0; border: .8cqi solid #fe2c55; content: ""; }
.tiktok-grid-crop img { transform: scale(1.24); }
.tiktok-post-deck,
.tiktok-post,
.phone-video { position: absolute; inset: 0; width: 100%; height: 100%; }
.tiktok-post { overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(100%); }
.tiktok-post.is-active { opacity: 1; visibility: visible; transform: none; }
.phone-video { display: block; object-fit: cover; }
.tiktok-post-copy { position: absolute; z-index: 4; right: 20cqi; bottom: 19cqi; left: 4.5cqi; color: #fff; text-align: left; text-shadow: 0 1px 4px rgba(0,0,0,.9); }
.tiktok-post-copy strong { font-size: 3.9cqi; font-weight: 740; letter-spacing: -.01em; }
.tiktok-post-copy p { margin: 2cqi 0 0; font-size: 3.35cqi; line-height: 1.28; }
.tiktok-post-copy p b { font-weight: 700; }
.tiktok-post-copy > span { display: block; max-width: 30ch; margin-top: 2.7cqi; overflow: hidden; font-size: 3cqi; font-weight: 590; line-height: 1.2; text-overflow: ellipsis; white-space: nowrap; }
.tiktok-action-rail { position: absolute; z-index: 5; right: 2.8cqi; bottom: 19cqi; display: grid; justify-items: center; gap: 2.8cqi; color: #fff; }
.tiktok-action-rail > span { display: grid; justify-items: center; gap: .7cqi; }
.tiktok-action-rail svg { width: 8.3cqi; fill: none; stroke: currentColor; stroke-linejoin: round; stroke-width: 1.7; filter: drop-shadow(0 1px 2px rgba(0,0,0,.7)); }
.tiktok-action-rail svg.is-filled { fill: #fff; stroke: #fff; }
.tiktok-action-rail > span > small { font-size: 2.7cqi; font-weight: 680; line-height: 1; text-shadow: 0 1px 3px #000; }
.tiktok-action-rail .tiktok-rail-avatar {
  position: relative;
  display: grid;
  width: 10.7cqi;
  aspect-ratio: 1;
  place-items: center;
  border: .6cqi solid #fff;
  border-radius: 50%;
  background: #0b1828;
  overflow: visible;
  font-size: 4cqi;
  font-weight: 750;
}
.tiktok-rail-avatar > img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.tiktok-rail-avatar > small { position: absolute; right: 2.4cqi; bottom: -2.4cqi; display: grid; width: 5cqi; aspect-ratio: 1; place-items: center; border-radius: 50%; background: #fe2c55; font-size: 3.7cqi; font-weight: 500; line-height: 1; }
.tiktok-action-rail .tiktok-music-disc { width: 10.7cqi; aspect-ratio: 1; margin-top: 1cqi; place-items: center; border: 1.2cqi solid #262629; border-radius: 50%; background: #111114; animation: tiktok-disc-spin 5s linear infinite; }
.tiktok-music-disc i { display: grid; width: 5.5cqi; aspect-ratio: 1; place-items: center; border-radius: 50%; background: #e8e8ea; color: #111; font-size: 1.8cqi; font-style: normal; font-weight: 800; letter-spacing: -.08em; }
.tiktok-music-disc i { overflow: hidden; }
.tiktok-music-disc img { width: 100%; height: 100%; object-fit: cover; }
.tiktok-feed-statusbar { color: #fff; text-shadow: 0 1px 3px rgba(0,0,0,.7); }
.tiktok-feed-tabs { position: absolute; z-index: 10; top: 13.1cqi; right: 0; left: 0; display: flex; align-items: center; justify-content: center; gap: 5cqi; color: rgba(255,255,255,.72); font-size: 3.7cqi; text-shadow: 0 1px 3px rgba(0,0,0,.72); }
.tiktok-feed-tabs strong { position: relative; color: #fff; font-weight: 740; }
.tiktok-feed-tabs strong::after { position: absolute; right: 24%; bottom: -2.2cqi; left: 24%; height: .7cqi; border-radius: 999px; background: #fff; content: ""; }
.tiktok-feed-tabs svg { position: absolute; right: 4.7cqi; width: 6.3cqi; fill: none; stroke: #fff; stroke-linecap: round; stroke-width: 1.8; }
.tiktok-bottom-nav {
  position: absolute;
  z-index: 11;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: 17cqi;
  align-items: center;
  padding: 1.8cqi 3cqi 2.6cqi;
  border-top: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.9);
  grid-template-columns: repeat(5, 1fr);
}
.tiktok-bottom-nav > span { display: grid; min-width: 0; justify-items: center; gap: .7cqi; color: rgba(255,255,255,.84); }
.tiktok-bottom-nav > span.is-active { color: #fff; }
.tiktok-bottom-nav svg { width: 5.8cqi; height: 5.8cqi; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.tiktok-bottom-nav svg.is-filled { fill: currentColor; }
.tiktok-bottom-nav small { font-size: 2.35cqi; line-height: 1; }
.tiktok-create-item { align-self: start; padding-top: .6cqi; }
.tiktok-create { position: relative; display: grid; width: 10.5cqi; height: 6.8cqi; place-items: center; border-radius: 1.7cqi; background: #fff; box-shadow: -1.5cqi 0 0 #25f4ee, 1.5cqi 0 0 #fe2c55; color: #000; font-size: 5.3cqi; font-style: normal; font-weight: 400; line-height: 1; }
.tiktok-nav-avatar { display: grid; width: 5.8cqi; aspect-ratio: 1; place-items: center; overflow: hidden; border: .5cqi solid currentColor; border-radius: 50%; background: #0b1828; color: #fff; font-size: 2.6cqi; font-style: normal; font-weight: 750; line-height: 1; }
.tiktok-nav-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tiktok-profile-nav { background: #000; }
@keyframes tiktok-disc-spin { to { transform: rotate(1turn); } }
.story-video-toggle {
  position: absolute;
  top: 50%;
  right: 8px;
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: #1d1d20;
  color: white;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 180ms ease;
}
.story-video-toggle:hover { background: #303034; }
.story-video-toggle[hidden] { display: none; }
.story-video-toggle.is-paused .video-toggle-pause { display: none; }
.story-video-toggle.is-paused .video-toggle-play { display: block; }
.work-steps { grid-column: 1; grid-row: 1; }
.work-step { display: flex; min-height: 84svh; flex-direction: column; justify-content: center; padding: 9vh 0; border-top: 1px solid rgba(255,255,255,.16); }
.work-step:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.motion-enhanced .work-step { transform: translateY(14px); transition: transform 550ms var(--ease-out); }
.motion-enhanced .work-step > * { opacity: .48; transition: opacity 420ms ease; }
.motion-enhanced .work-step.is-active { transform: translateY(0); }
.motion-enhanced .work-step.is-active > * { opacity: 1; }
.work-meta { display: flex; max-width: 530px; justify-content: space-between; margin: 0 0 40px; color: #86868b; font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.work-meta strong { color: #d2d2d7; font-weight: inherit; }
.work-step h3 { max-width: 13ch; margin: 0; font-size: clamp(3rem, 6vw, 6.2rem); font-weight: 620; letter-spacing: -.065em; line-height: .94; text-wrap: balance; }
.profile-step h3 { max-width: 14ch; font-size: clamp(2.8rem, 5.2vw, 5.3rem); }
.work-step > p:last-child { max-width: 40ch; margin: 27px 0 0; color: #a1a1a6; font-size: clamp(.98rem, 1.5vw, 1.15rem); }
.work-statement { max-width: 950px; margin-top: clamp(82px, 10vw, 150px); margin-bottom: 0; color: #f5f5f7; font-size: clamp(2.5rem, 5.2vw, 5rem); font-weight: 620; letter-spacing: -0.06em; line-height: 1; }

/* Pillars */
.pillars { padding: clamp(88px, 9vw, 130px) 0; }
.section-intro { margin-bottom: 62px; }
.section-intro.centered { max-width: 930px; text-align: center; }
.section-intro.centered .display-title { margin-inline: auto; }
.section-intro > p:last-child { max-width: 630px; margin: 24px 0 0; color: var(--muted); font-size: 1.08rem; }
.section-intro.centered > p:last-child { margin-inline: auto; }
.story-arc-heading { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: clamp(48px, 9vw, 130px); align-items: end; margin-bottom: clamp(42px, 5vw, 66px); }
.story-arc-heading .display-title { max-width: 12ch; }
.story-arc-heading > p { max-width: 34ch; margin: 0 0 7px; color: var(--muted); font-size: 1.05rem; line-height: 1.55; }
.story-arc { overflow: hidden; margin-top: 0; margin-bottom: 0; border: 1px solid #eaeaea; border-radius: 12px; background: #fff; }
.story-arc-visual { position: relative; height: clamp(360px, 41vw, 530px); overflow: hidden; background: #111; }
.story-arc-visual::after { position: absolute; inset: 0; background: rgba(7,8,10,.08); content: ""; }
.story-arc-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 58%; }
.story-arc-caption { position: absolute; z-index: 1; bottom: 28px; left: 28px; display: grid; max-width: 460px; gap: 9px; padding: 20px 22px; border-radius: 8px; background: rgba(12,12,14,.76); color: white; }
.story-arc-caption span { font-size: .68rem; font-weight: 720; letter-spacing: .08em; text-transform: uppercase; }
.story-arc-caption strong { font-size: clamp(1.6rem, 2.7vw, 2.75rem); font-weight: 590; letter-spacing: -.045em; line-height: 1.02; }
.story-arc-track { display: grid; margin: 0; padding: 0; list-style: none; grid-template-columns: repeat(5, 1fr); }
.story-arc-track li { position: relative; display: grid; min-width: 0; min-height: 148px; align-content: center; padding: 24px clamp(16px, 2.2vw, 30px); border-left: 1px solid #eaeaea; }
.story-arc-track li:first-child { border-left: 0; }
.story-arc-track li::before { position: absolute; top: 0; right: 0; left: 0; height: 2px; background: #111; content: ""; transform: scaleX(0); transform-origin: left; transition: transform 420ms var(--ease-out); }
.story-arc-track li:hover::before { transform: scaleX(1); }
.story-arc-track span { color: var(--blue); font-size: .66rem; font-weight: 720; letter-spacing: .07em; }
.story-arc-track strong { margin-top: 17px; color: #111; font-size: clamp(1.35rem, 2vw, 1.95rem); font-weight: 610; letter-spacing: -.04em; line-height: 1; }
.story-arc-track small { margin-top: 8px; color: var(--muted); font-size: .78rem; line-height: 1.35; }

/* Deliverables */
.deliverables { padding: var(--section-space) 0; }
.deliverables-grid { display: grid; grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); gap: clamp(70px, 10vw, 150px); align-items: start; }
.deliverables-intro { position: sticky; top: 110px; }
.deliverables-intro > p:not(.eyebrow) { max-width: 36ch; margin: 28px 0; color: var(--muted); font-size: 1rem; }
.deliverable-list { border-top: 1px solid var(--line); }
.deliverable-list article { display: grid; grid-template-columns: 48px 1fr; gap: 24px; padding: 34px 0; border-bottom: 1px solid var(--line); }
.deliverable-list article > span { color: var(--blue); font-size: .72rem; font-weight: 700; }
.deliverable-list h3 { margin: 0; font-size: clamp(1.55rem, 2.6vw, 2.25rem); font-weight: 600; letter-spacing: -0.04em; }
.deliverable-list p { max-width: 39ch; margin: 10px 0 0; color: var(--muted); font-size: .92rem; }
.legal-note { margin-top: 28px; margin-bottom: 0; color: #86868b; font-size: .72rem; }

/* Formats */
.formats { padding: var(--section-space) 0; }
.formats .section-intro .display-title { max-width: 16ch; }
.format-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.format-card { display: flex; min-height: 500px; flex-direction: column; padding: clamp(26px, 3vw, 38px); border: 1px solid #e2e2e5; border-radius: 12px; background: white; }
.format-card.featured { background: #e8f2fc; }
.format-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.format-card h3 { margin: 70px 0 28px; font-size: clamp(1.75rem, 2.5vw, 2.5rem); font-weight: 600; letter-spacing: -0.045em; line-height: 1.05; }
.format-card ul { display: grid; gap: 11px; margin: 0 0 36px; padding: 0; color: var(--muted); font-size: .86rem; list-style: none; }
.format-card li { padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.format-card .text-link { margin-top: auto; }

/* Process */
.process { padding: var(--section-space) 0; }
.process-heading .display-title { max-width: 12ch; }
.process-track { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px; margin-top: 92px; }
.process-line { position: absolute; top: 14px; right: 0; left: 0; height: 1px; overflow: hidden; background: #333337; }
.process-line span { display: block; width: 100%; height: 100%; transform: scaleX(0); transform-origin: left; background: #f5f5f7; }
.process-step { position: relative; padding-top: 52px; }
.process-step::before { position: absolute; top: 9px; left: 0; width: 10px; height: 10px; border: 3px solid var(--night); border-radius: 50%; background: #f5f5f7; content: ""; }
.process-step > span { color: #86868b; font-size: .7rem; font-weight: 700; }
.process-step h3 { margin: 22px 0 14px; font-size: clamp(1.6rem, 2.5vw, 2.2rem); font-weight: 600; letter-spacing: -0.04em; }
.process-step p { max-width: 28ch; margin: 0; color: #a1a1a6; font-size: .9rem; }

/* About */
.about { padding: var(--section-space) 0; }
.about-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(64px, 10vw, 150px); align-items: center; }
.about-portrait { position: relative; display: flex; aspect-ratio: 4 / 5; flex-direction: column; justify-content: space-between; padding: 20px; overflow: hidden; border: 1px solid #252e39; border-radius: 14px; background: #0b1828; color: white; }
.about-portrait::after { position: absolute; top: 20%; right: -24%; width: 72%; aspect-ratio: 1; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; content: ""; }
.portrait-monogram { position: relative; z-index: 1; margin: auto; font-size: clamp(6rem, 14vw, 12rem); font-weight: 650; letter-spacing: -0.11em; line-height: .8; }
.portrait-monogram span { color: var(--amber); font-size: .55em; font-weight: 400; }
.about-portrait p { position: relative; z-index: 1; display: flex; justify-content: space-between; margin: 0; color: #d2d2d7; font-size: .62rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.about-copy > p:not(.eyebrow) { max-width: 46ch; margin: 26px 0 0; color: var(--muted); font-size: 1.03rem; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 38px; }
.about-points span { padding: 13px 14px; border: 1px solid var(--line); border-radius: 7px; color: #4a4a4e; font-size: .78rem; font-weight: 550; }

/* Contact */
.contact { padding: var(--section-space) 0; }
.contact-heading { display: grid; grid-template-columns: 1.25fr .75fr; gap: 64px; align-items: end; }
.contact-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -28px; }
.contact-heading .display-title { max-width: 12ch; }
.contact-heading > p:last-child { max-width: 34ch; margin: 0 0 5px; color: #a1a1a6; }
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px 22px; margin-top: 80px; padding: clamp(28px, 5vw, 64px); border-radius: 12px; background: #f5f5f7; color: var(--ink); }
.field { position: relative; }
.field-full { grid-column: 1 / -1; }
.field label { display: block; margin-bottom: 8px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; border: 0; border-bottom: 1px solid #c7c7cb; border-radius: 0; outline: 0; background: transparent; font-size: 1rem; transition: border-color 180ms ease; }
.field input, .field select { height: 45px; }
.field textarea { min-height: 120px; padding: 12px 0; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); }
.field input:focus-visible, .field select:focus-visible, .field textarea:focus-visible { border-radius: 3px; outline: 2px solid rgba(0, 113, 227, .7); outline-offset: 4px; }
.form-footer { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 8px; }
.form-footer p { margin: 0; color: var(--muted); font-size: .75rem; }

/* Footer */
.footer { padding: 36px 0 48px; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr 1fr auto; gap: 34px; align-items: center; color: #86868b; font-size: .72rem; }
.footer-brand { color: white; }
.footer-brand .brand-mark { background: white; color: var(--ink); }
.footer-grid p { max-width: 35ch; margin: 0; }
.socials { display: flex; gap: 16px; }
.socials span { color: #d2d2d7; }

/* Responsive */
@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .nav-shell { grid-template-columns: 1fr auto; }
  .menu-toggle { position: relative; display: block; }
  .proof-grid,
  .deliverables-grid,
  .about-grid { grid-template-columns: 1fr; }
  .proof-grid { align-items: start; }
  .proof-stats { max-width: 620px; }
  .work-heading,
  .contact-heading { grid-template-columns: 1fr; gap: 25px; }
  .contact-heading .eyebrow { grid-column: auto; margin-bottom: -2px; }
  .work-heading > p,
  .contact-heading > p:last-child { margin: 0; }
  .work-story { grid-template-columns: minmax(0, 1fr) minmax(245px, .66fr); column-gap: clamp(40px, 7vw, 70px); }
  .iphone-device { width: min(29vw, 275px, calc((100svh - 152px) * .4615)); }
  .work-step h3 { font-size: clamp(2.8rem, 6vw, 5rem); }
  .story-arc-heading { grid-template-columns: 1fr; gap: 24px; }
  .story-arc-heading > p { max-width: 48ch; }
  .story-arc-track li { min-height: 132px; padding-inline: 16px; }
  .deliverables-intro { position: static; }
  .deliverables-intro > p:not(.eyebrow) { max-width: 52ch; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 410px; }
  .format-card h3 { max-width: 24ch; }
  .process-track { grid-template-columns: 1fr 1fr; row-gap: 58px; }
  .process-line { display: none; }
  .process-step { padding: 26px 0 0; border-top: 1px solid #333337; }
  .process-step::before { top: -5px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; --section-space: 94px; }
  .display-title { font-size: clamp(2.65rem, 13vw, 4.35rem); }
  .nav-shell { width: calc(100% - 24px); }
  .nav-actions .button { display: none; }
  .hero { min-height: 100svh; padding: 104px 0 112px; }
  .hero h1 { font-size: clamp(3.05rem, 14.5vw, 5rem); }
  .hero-intro { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-actions .button { width: 100%; }
  .hero-note { max-width: 34ch; margin-inline: auto; }
  .hero-background-video { object-position: 48% center; }
  .hero-reel-meta { bottom: 24px; justify-content: flex-start; }
  .hero-reel-meta span:last-child { display: none; }
  .hero-video-toggle { right: var(--gutter); bottom: 56px; }
  .scroll-cue { display: none; }
  .proof-grid { gap: 58px; }
  .stat-value { font-size: clamp(5rem, 28vw, 8.5rem); }
  .proof-stats article { grid-template-columns: 1fr 1fr; }
  .difference-title { font-size: clamp(3.6rem, 16vw, 5.8rem); }
  .manifesto-lines { margin-top: 72px; }
  .manifesto-line { grid-template-columns: 1fr; gap: 12px; }
  .manifesto-line strong { font-size: clamp(2rem, 10vw, 3.4rem); }
  .difference-quote { text-align: left; font-size: clamp(2.8rem, 13vw, 4.7rem); }
  .difference-closing { text-align: left; }
  .work-heading { gap: 20px; }
  .work-heading > p { max-width: 31ch; font-size: .94rem; line-height: 1.55; }
  .work-story { display: block; margin-top: 44px; }
  .phone-stage { z-index: 4; top: 52px; height: 50svh; border-bottom: 1px solid rgba(255,255,255,.1); background: var(--night); }
  .iphone-device { width: min(48vw, 202px, calc((50svh - 20px) * .4615)); padding: 6px; border-width: 2px; border-radius: 38px; }
  .iphone-device::after { inset: 2px; border-radius: 33px; }
  .iphone-screen { border-radius: 29px; }
  .story-video-toggle { right: 4px; width: 30px; height: 30px; }
  .work-steps { position: relative; z-index: 3; }
  .work-step { min-height: 44svh; justify-content: center; padding: 30px 0 42px; }
  .work-meta { margin-bottom: 16px; font-size: .64rem; }
  .work-step h3,
  .profile-step h3 { max-width: 15ch; font-size: clamp(2.05rem, 9vw, 2.65rem); letter-spacing: -.05em; line-height: 1; }
  .work-step > p:last-child { max-width: 34ch; margin-top: 15px; font-size: .94rem; line-height: 1.5; }
  .work-statement { margin-top: 72px; font-size: clamp(2.25rem, 10.5vw, 3.25rem); line-height: 1.02; }
  .story-arc-heading { margin-bottom: 34px; }
  .story-arc-visual { height: 360px; }
  .story-arc-caption { right: 16px; bottom: 16px; left: 16px; padding: 16px; }
  .story-arc-track { grid-template-columns: repeat(2, 1fr); }
  .story-arc-track li { min-height: 118px; padding: 18px; border-top: 1px solid #eaeaea; border-left: 0; }
  .story-arc-track li:nth-child(even) { border-left: 1px solid #eaeaea; }
  .story-arc-track li:last-child { grid-column: 1 / -1; }
  .story-arc-track strong { margin-top: 12px; }
  .deliverable-list article { grid-template-columns: 34px 1fr; gap: 15px; }
  .format-card { min-height: 455px; }
  .format-card h3 { margin-top: 58px; }
  .process-track { grid-template-columns: 1fr; margin-top: 66px; }
  .about-points { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; margin-top: 56px; }
  .field-full { grid-column: auto; }
  .form-footer { align-items: stretch; flex-direction: column; }
  .form-footer .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-height: 650px) and (min-width: 681px) {
  .iphone-device { width: min(25vw, 248px, calc((100svh - 70px) * .4615)); }
}

@media (max-height: 650px) and (max-width: 680px) {
  .phone-stage { height: 48svh; }
  .iphone-device { width: min(44vw, 168px, calc((48svh - 12px) * .4615)); }
  .work-step { min-height: 48svh; padding-block: 26px 34px; }
  .work-step h3,
  .profile-step h3 { font-size: clamp(1.9rem, 8.5vw, 2.4rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .scroll-progress,
  .scroll-cue,
  .hero-video-toggle,
  .story-video-toggle { display: none; }
  .hero-background-video { display: none; }
  .work-story { display: block; }
  .phone-stage { position: relative; top: auto; height: auto; padding: 58px 0; }
  .iphone-device { width: min(58vw, 260px); }
  .tiktok-profile-view { opacity: 1 !important; visibility: visible !important; transform: none !important; }
  .tiktok-post-view { display: none; }
  .work-step,
  .motion-enhanced .work-step { min-height: auto; padding: 45px 0; opacity: 1; transform: none; }
}
