:root {
  color-scheme: light;
  --ink: #10242a;
  --muted: #617279;
  --line: #d7e7ea;
  --surface: #ffffff;
  --soft: #f3fbfc;
  --mint: #79e0c8;
  --blue: #7dcde0;
  --teal: #137c8e;
  --gold: #f2b441;
  --coral: #ff8066;
  --shadow: 0 24px 70px rgba(16, 36, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: #f7fbfc;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

#people,
#story,
#features,
#launch {
  scroll-margin-top: 96px;
}

.site-header,
.site-footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.site-header {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(215, 231, 234, 0.86);
  background: rgba(247, 251, 252, 0.88);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.site-header nav a,
.site-footer nav a {
  text-decoration: none;
}

.nav-cta,
.primary-link,
.secondary-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
}

.nav-cta,
.primary-link {
  background: linear-gradient(135deg, var(--blue), var(--mint));
  color: #082a31;
}

.secondary-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.hero {
  width: min(100%, 1440px);
  min-height: min(760px, calc(100svh - 76px));
  margin: 0 auto;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 46px clamp(18px, calc((100vw - 1160px) / 2), 140px) 62px;
  background:
    radial-gradient(circle at 78% 18%, rgba(121, 224, 200, 0.42), transparent 30%),
    radial-gradient(circle at 90% 88%, rgba(255, 128, 102, 0.18), transparent 26%),
    linear-gradient(135deg, #e8fbff 0%, #f7fbfc 45%, #e8fbf5 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 42% 0 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(247, 251, 252, 0.98) 0%, rgba(247, 251, 252, 0.84) 58%, rgba(247, 251, 252, 0) 100%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--line);
}

.hero-content {
  width: min(560px, 100%);
  position: relative;
  z-index: 3;
}

.hero-scene {
  position: absolute;
  inset: 0 0 0 44%;
  pointer-events: none;
  z-index: 2;
}

.scene-phone {
  position: absolute;
  display: block;
  width: 292px;
  opacity: 0.96;
  border-radius: 30px;
  border: 1px solid rgba(16, 36, 42, 0.1);
  box-shadow: var(--shadow);
}

.scene-phone-primary {
  right: min(15%, 130px);
  top: 7%;
  width: min(28vw, 340px);
  transform: rotate(0deg);
  animation: heroPhoneOne 8s ease-in-out infinite;
  z-index: 2;
}

.scene-phone-secondary {
  right: min(46%, 430px);
  bottom: -3%;
  width: min(24vw, 292px);
  transform: rotate(-6deg);
  animation: heroPhoneTwo 9s ease-in-out infinite;
  z-index: 1;
}

.scene-phone-tertiary {
  right: max(-24px, 2%);
  bottom: 10%;
  width: min(23vw, 282px);
  transform: rotate(7deg);
  animation: heroPhoneThree 7.5s ease-in-out infinite;
  z-index: 3;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p {
  font-size: 16px;
  line-height: 1.6;
}

h1 {
  margin-bottom: 18px;
  max-width: 740px;
  font-size: 76px;
  font-weight: 820;
  line-height: 1.02;
}

h2 {
  margin-bottom: 16px;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.lead {
  max-width: 560px;
  color: #233e46;
  font-size: 19px;
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 38px;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.hero-metrics strong {
  color: var(--ink);
}

.cinematic-reel {
  --cinematic-progress: 0;
  height: 520vh;
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 14% 12%, rgba(242, 180, 65, 0.28), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(125, 205, 224, 0.34), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(121, 224, 200, 0.28), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #edf9fb 48%, #f7fbfc 100%);
}

.reel-sticky {
  min-height: 100svh;
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(360px, 1.16fr) minmax(260px, 0.86fr);
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0;
}

.reel-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.reel-meter {
  width: min(280px, 100%);
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 36, 42, 0.1);
}

.reel-meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--gold));
  transition: width 140ms linear;
}

.reel-visual {
  position: relative;
  min-height: min(78svh, 720px);
}

.desk-scene {
  height: min(78svh, 720px);
  min-height: 580px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 26% 12%, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 80% 18%, rgba(121, 224, 200, 0.34), transparent 32%),
    linear-gradient(145deg, #e7fbfc 0%, #fff8ef 52%, #d8f3ef 100%);
  box-shadow: 0 28px 90px rgba(16, 36, 42, 0.14);
  isolation: isolate;
  transform: translateZ(0);
  transition:
    background 420ms ease,
    box-shadow 420ms ease;
}

.desk-scene::before {
  content: "";
  position: absolute;
  inset: auto -12% -14% -12%;
  height: 38%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(16, 36, 42, 0.15)),
    linear-gradient(90deg, rgba(19, 124, 142, 0.08), rgba(242, 180, 65, 0.08));
  transform: skewY(-4deg);
  z-index: 0;
}

.desk-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 46%, rgba(16, 36, 42, 0.14) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(16, 36, 42, 0.05));
  pointer-events: none;
  z-index: 10;
}

.social-script {
  position: absolute;
  left: 50%;
  top: 22px;
  z-index: 12;
  display: grid;
  width: min(88%, 430px);
  justify-items: center;
  gap: 10px;
  transform: translateX(-50%);
  pointer-events: none;
}

.social-script span,
.social-script strong {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ffffff;
  color: #10242a;
  padding: 8px 14px;
  font-size: 15px;
  line-height: 1.18;
  text-align: center;
  box-shadow:
    0 18px 42px rgba(16, 36, 42, 0.16),
    inset 0 0 0 1px rgba(16, 36, 42, 0.08);
  animation: captionFloat 4.6s ease-in-out infinite;
}

.social-script strong {
  color: var(--teal);
  animation-delay: 420ms;
}

.cinema-depth {
  position: absolute;
  left: 50%;
  top: 55%;
  border: 1px solid rgba(19, 124, 142, 0.16);
  border-radius: 999px;
  opacity: calc(0.26 + (var(--cinematic-progress) * 0.28));
  transform: translate(-50%, -50%) scale(calc(0.82 + (var(--cinematic-progress) * 0.34)));
  transition: opacity 260ms ease;
  z-index: 1;
}

.cinema-depth-one {
  width: min(76vw, 520px);
  height: min(76vw, 520px);
  background: radial-gradient(circle, rgba(121, 224, 200, 0.08), transparent 64%);
  animation: depthPulse 7s ease-in-out infinite;
}

.cinema-depth-two {
  width: min(96vw, 680px);
  height: min(96vw, 680px);
  background: radial-gradient(circle, rgba(125, 205, 224, 0.08), transparent 66%);
  animation: depthPulse 9s ease-in-out infinite reverse;
}

.ambient-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.9;
  z-index: 1;
}

.ambient-light-one {
  width: 170px;
  height: 170px;
  left: -34px;
  top: 42px;
  background: rgba(255, 128, 102, 0.2);
  animation: glowDrift 9s ease-in-out infinite;
}

.ambient-light-two {
  width: 220px;
  height: 220px;
  right: -62px;
  bottom: 70px;
  background: rgba(121, 224, 200, 0.32);
  animation: glowDrift 11s ease-in-out infinite reverse;
}

.reel-caption {
  position: absolute;
  top: 120px;
  left: 50%;
  z-index: 8;
  display: inline-flex;
  width: fit-content;
  max-width: min(78%, 460px);
  min-height: 44px;
  align-items: center;
  border-radius: 8px;
  background: rgba(16, 36, 42, 0.92);
  color: #ffffff;
  padding: 10px 14px;
  font-weight: 900;
  line-height: 1.25;
  box-shadow: 0 18px 44px rgba(16, 36, 42, 0.18);
  text-align: center;
  transform: translateX(-50%);
  transition:
    opacity 260ms ease,
    transform 320ms ease;
}

.table-line {
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: 25%;
  height: 1px;
  background: rgba(16, 36, 42, 0.12);
  transform: rotate(-3deg);
  z-index: 1;
}

.hand-shape {
  position: absolute;
  left: 9%;
  bottom: 8%;
  width: 245px;
  height: 150px;
  border-radius: 96px 86px 26px 52px;
  background:
    radial-gradient(circle at 72% 16%, rgba(255, 255, 255, 0.34), transparent 24%),
    linear-gradient(135deg, #e5ae86, #bd7655 58%, #96533e);
  transform: rotate(-10deg);
  box-shadow: 0 26px 48px rgba(85, 47, 33, 0.2);
  transform-origin: 60% 60%;
  transition:
    opacity 260ms ease,
    transform 360ms ease;
  z-index: 4;
}

.hand-shape::before,
.hand-shape::after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #eab790, #bc7655);
  box-shadow: inset 0 -8px 14px rgba(88, 45, 29, 0.08);
}

.hand-shape::before {
  width: 142px;
  height: 46px;
  right: -72px;
  top: 28px;
  border-radius: 999px;
  transform: rotate(15deg);
}

.hand-shape::after {
  width: 118px;
  height: 42px;
  right: -58px;
  top: 78px;
  border-radius: 999px;
  transform: rotate(8deg);
}

.phone-shadow {
  position: absolute;
  left: 50%;
  bottom: 12%;
  width: 260px;
  height: 70px;
  border-radius: 50%;
  background: rgba(16, 36, 42, 0.2);
  filter: blur(16px);
  transform: translateX(-50%) rotate(-8deg);
  z-index: 2;
  animation: softPulse 4s ease-in-out infinite;
  transition:
    opacity 360ms ease,
    transform 420ms ease,
    width 420ms ease;
}

.laptop-base {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 4%;
  height: 96px;
  border-radius: 16px 16px 42px 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(16, 36, 42, 0.16)),
    linear-gradient(90deg, rgba(19, 124, 142, 0.16), rgba(242, 180, 65, 0.16));
  box-shadow: 0 28px 54px rgba(16, 36, 42, 0.16);
  transform: perspective(460px) rotateX(62deg);
  transform-origin: center bottom;
  transition:
    opacity 360ms ease,
    transform 420ms ease;
  z-index: 2;
}

.reel-phone {
  position: absolute;
  left: 52%;
  top: 52%;
  width: min(38vw, 276px);
  overflow: hidden;
  border: 10px solid #10242a;
  border-radius: 40px;
  background: #10242a;
  box-shadow:
    0 34px 80px rgba(16, 36, 42, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transform: translate(-50%, -48%) rotate(-8deg) scale(0.9);
  transition:
    left 420ms ease,
    top 420ms ease,
    transform 420ms ease,
    width 420ms ease;
  z-index: 5;
  will-change: transform, left, top;
}

.reel-phone img {
  display: block;
  width: 100%;
  border-radius: 28px;
  background: #f4fbfc;
  transform-origin: 50% 52%;
}

.reel-phone img.frame-swapping {
  animation: screenSwap 430ms ease both;
}

.phone-speaker {
  position: absolute;
  top: 9px;
  left: 50%;
  width: 68px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(-50%);
  z-index: 2;
}

.app-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transition:
    opacity 260ms ease,
    transform 420ms ease;
  z-index: 3;
}

.app-glow-one {
  width: 330px;
  height: 330px;
  right: 8%;
  top: 24%;
  background: radial-gradient(circle, rgba(125, 205, 224, 0.34), transparent 64%);
  animation: glowDrift 8s ease-in-out infinite;
}

.app-glow-two {
  width: 300px;
  height: 300px;
  left: 20%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(242, 180, 65, 0.22), transparent 66%);
  animation: glowDrift 10s ease-in-out infinite reverse;
}

.screen-flash {
  position: absolute;
  inset: 0;
  z-index: 11;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(90deg, transparent, rgba(121, 224, 200, 0.22), transparent);
  opacity: 0;
  pointer-events: none;
}

.desk-scene.frame-swapping .screen-flash {
  animation: screenFlash 430ms ease;
}

.floating-pill {
  position: absolute;
  z-index: 7;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #163239;
  padding: 0 13px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(16, 36, 42, 0.12);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.floating-pill-one {
  right: 7%;
  top: 28%;
}

.floating-pill-two {
  left: 8%;
  top: 48%;
}

.floating-pill-three {
  right: 11%;
  bottom: 22%;
}

.reel-brand-lockup {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  padding: 5px 14px 5px 6px;
  color: #10242a;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(16, 36, 42, 0.1);
}

.reel-brand-lockup img {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.reel-shots {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reel-shots li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  padding: 14px;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.reel-shots li.active {
  border-color: rgba(19, 124, 142, 0.42);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 36, 42, 0.08);
  transform: translateX(-4px);
}

.reel-shots span {
  grid-row: span 2;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.reel-shots strong {
  font-size: 16px;
}

.reel-shots p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.cinematic-reel[data-cinematic-index="1"] .reel-phone {
  left: 52%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-2deg) scale(1.08);
}

.cinematic-reel[data-cinematic-index="2"] .reel-phone {
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) rotate(1deg) scale(1.24);
}

.cinematic-reel[data-cinematic-index="3"] .reel-phone {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg) scale(1.38);
}

.cinematic-reel[data-cinematic-index="2"] .hand-shape,
.cinematic-reel[data-cinematic-index="3"] .hand-shape {
  opacity: 0.08;
  transform: translateY(48px) rotate(-12deg) scale(0.94);
}

.cinematic-reel[data-cinematic-index="2"] .laptop-base,
.cinematic-reel[data-cinematic-index="3"] .laptop-base {
  opacity: 0.16;
  transform: perspective(460px) rotateX(68deg) translateY(34px) scale(0.92);
}

.cinematic-reel[data-cinematic-index="2"] .phone-shadow,
.cinematic-reel[data-cinematic-index="3"] .phone-shadow {
  opacity: 0.12;
  width: 340px;
  transform: translateX(-50%) rotate(0deg) scale(1.2);
}

.cinematic-reel[data-cinematic-index="2"] .reel-caption,
.cinematic-reel[data-cinematic-index="3"] .reel-caption {
  transform: translateX(-50%) translateY(-8px);
}

.cinematic-reel[data-cinematic-index="3"] .desk-scene {
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.78), transparent 28%),
    radial-gradient(circle at 24% 78%, rgba(242, 180, 65, 0.2), transparent 26%),
    radial-gradient(circle at 76% 70%, rgba(121, 224, 200, 0.34), transparent 34%),
    linear-gradient(145deg, #e9fbfc 0%, #ffffff 52%, #d9f4f0 100%);
  box-shadow: 0 34px 110px rgba(16, 36, 42, 0.18);
}

.cinematic-reel[data-cinematic-index="1"] .floating-pill-two,
.cinematic-reel[data-cinematic-index="2"] .floating-pill-one,
.cinematic-reel[data-cinematic-index="2"] .floating-pill-three,
.cinematic-reel[data-cinematic-index="3"] .floating-pill-one,
.cinematic-reel[data-cinematic-index="3"] .floating-pill-two {
  opacity: 1;
  transform: translateY(0);
}

.cinematic-reel[data-cinematic-index="3"] .app-glow-one {
  transform: scale(1.16);
}

.people-pulse {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(420px, 1.22fr);
  align-items: center;
  gap: 34px;
  padding: 64px 0;
}

.people-copy {
  max-width: 520px;
}

.people-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.people-stage {
  min-height: 620px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 128, 102, 0.18), transparent 25%),
    radial-gradient(circle at 80% 18%, rgba(242, 180, 65, 0.22), transparent 24%),
    radial-gradient(circle at 68% 78%, rgba(121, 224, 200, 0.34), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #effbfc 52%, #fff8ed 100%);
  box-shadow: 0 26px 80px rgba(16, 36, 42, 0.12);
}

.people-stage::before {
  content: "";
  position: absolute;
  inset: 9%;
  border: 1px solid rgba(19, 124, 142, 0.14);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.pulse-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(19, 124, 142, 0.18);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  animation: pulseRing 5.5s ease-in-out infinite;
}

.pulse-ring-one {
  width: 430px;
  height: 430px;
}

.pulse-ring-two {
  width: 560px;
  height: 560px;
  animation-delay: 1.2s;
}

.people-phone {
  position: absolute;
  left: 50%;
  top: 51%;
  width: 258px;
  overflow: hidden;
  border: 10px solid #10242a;
  border-radius: 40px;
  background: #10242a;
  box-shadow: 0 32px 82px rgba(16, 36, 42, 0.28);
  transform: translate(-50%, -50%) rotate(-2deg);
  animation: phoneHover 6s ease-in-out infinite;
  z-index: 6;
}

.people-phone img {
  display: block;
  width: 100%;
  border-radius: 28px;
}

.person-bubble {
  position: absolute;
  z-index: 8;
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #10242a;
  font-weight: 900;
  animation: crowdFloat 5.8s ease-in-out infinite;
}

.person-bubble img {
  width: 78px;
  height: 78px;
  border: 4px solid #ffffff;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(16, 36, 42, 0.18);
}

.person-bubble figcaption {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  padding: 0 11px;
  color: #18383f;
  font-size: 12px;
  box-shadow: 0 12px 28px rgba(16, 36, 42, 0.1);
}

.person-one {
  left: 6%;
  top: 8%;
}

.person-two {
  right: 8%;
  top: 8%;
  animation-delay: 0.6s;
}

.person-three {
  left: 7%;
  bottom: 11%;
  animation-delay: 1.2s;
}

.person-four {
  right: 7%;
  bottom: 16%;
  animation-delay: 1.8s;
}

.person-five {
  left: 6%;
  top: 34%;
  animation-delay: 2.4s;
}

.person-six {
  right: 5%;
  top: 28%;
  z-index: 7;
  animation-delay: 3s;
}

.person-seven {
  left: 13%;
  bottom: 1%;
  z-index: 7;
  animation-delay: 3.6s;
}

.person-six img,
.person-seven img {
  width: 62px;
  height: 62px;
}

.social-card {
  position: absolute;
  z-index: 9;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  padding: 13px 15px;
  box-shadow: 0 18px 42px rgba(16, 36, 42, 0.12);
  animation: cardFloat 6.5s ease-in-out infinite;
}

.social-card strong {
  font-size: 14px;
}

.social-card span {
  color: var(--muted);
  font-size: 13px;
}

.social-card-one {
  left: 4%;
  top: 58%;
}

.social-card-two {
  right: 3%;
  top: 47%;
  animation-delay: 0.9s;
}

.social-card-three {
  right: 3%;
  bottom: 5%;
  width: 180px;
  animation-delay: 1.7s;
}

.story-scroller {
  height: 360vh;
  border-top: 1px solid rgba(215, 231, 234, 0.82);
  border-bottom: 1px solid rgba(215, 231, 234, 0.82);
  background:
    radial-gradient(circle at 12% 16%, rgba(125, 205, 224, 0.24), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(121, 224, 200, 0.28), transparent 28%),
    radial-gradient(circle at 50% 92%, rgba(242, 180, 65, 0.12), transparent 34%),
    linear-gradient(180deg, #f7fbfc 0%, #edf9fb 54%, #f7fbfc 100%);
  color: var(--ink);
}

.story-sticky {
  min-height: calc(100svh - 76px);
  position: sticky;
  top: 76px;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(250px, 360px) minmax(260px, 0.9fr);
  align-items: center;
  gap: 32px;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.story-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.story-copy .eyebrow {
  color: var(--teal);
}

.story-progress {
  height: 5px;
  width: min(280px, 100%);
  overflow: hidden;
  border-radius: 999px;
  background: rgba(16, 36, 42, 0.1);
}

.story-progress span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--mint), var(--gold));
  transition: width 120ms linear;
}

.phone-stage {
  justify-self: center;
  width: min(100%, 350px);
}

.phone-frame {
  overflow: hidden;
  border: 10px solid #10242a;
  border-radius: 42px;
  background: #10242a;
  box-shadow: var(--shadow);
}

.phone-frame img {
  display: block;
  width: 100%;
  border-radius: 30px;
}

.phone-frame img.frame-swapping {
  animation: screenSwap 430ms ease both;
}

.story-steps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.story-steps li {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  border: 1px solid rgba(16, 36, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.story-steps li:focus-visible {
  outline: 3px solid rgba(19, 124, 142, 0.28);
  outline-offset: 3px;
}

.story-steps li.active {
  border-color: rgba(19, 124, 142, 0.42);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(16, 36, 42, 0.08);
  transform: translateX(-4px);
}

.story-steps span {
  grid-row: span 2;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.story-steps strong {
  font-size: 16px;
}

.story-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.feature-band,
.preview-section {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto 22px;
  padding: 58px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 24px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.feature-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.feature-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

figure {
  margin: 0;
}

.preview-grid img {
  display: block;
  width: 100%;
  border-radius: 30px;
  border: 1px solid rgba(16, 36, 42, 0.1);
  box-shadow: var(--shadow);
}

figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 28px 0 36px;
}

.site-footer p {
  margin: 4px 0 0;
  color: var(--muted);
}

.legal-page {
  background: #ffffff;
}

.legal-document {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 52px 0 80px;
}

.legal-document h1 {
  font-size: 48px;
  line-height: 1.08;
}

.legal-document h2 {
  margin-top: 34px;
  font-size: 22px;
  line-height: 1.2;
}

.legal-document p,
.legal-document li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.legal-date {
  font-weight: 800;
}

.legal-notice {
  border-left: 4px solid var(--teal);
  background: var(--soft);
  padding: 12px 14px;
}

@keyframes heroPhoneOne {
  0%,
  100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-12px) rotate(2.5deg);
  }
}

@keyframes heroPhoneTwo {
  0%,
  100% {
    transform: translateY(0) rotate(-5deg);
  }

  50% {
    transform: translateY(10px) rotate(-3.5deg);
  }
}

@keyframes heroPhoneThree {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }

  50% {
    transform: translateY(-9px) rotate(5deg);
  }
}

@keyframes glowDrift {
  0%,
  100% {
    opacity: 0.8;
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate3d(12px, -10px, 0) scale(1.08);
  }
}

@keyframes softPulse {
  0%,
  100% {
    opacity: 0.78;
    transform: translateX(-50%) rotate(-8deg) scale(1);
  }

  50% {
    opacity: 0.52;
    transform: translateX(-50%) rotate(-8deg) scale(0.9);
  }
}

@keyframes pulseRing {
  0%,
  100% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.96);
  }

  50% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes phoneHover {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }

  50% {
    transform: translate(-50%, calc(-50% - 12px)) rotate(1deg);
  }
}

@keyframes crowdFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes captionFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes depthPulse {
  0%,
  100% {
    filter: blur(0);
  }

  50% {
    filter: blur(2px);
  }
}

@keyframes screenSwap {
  0% {
    opacity: 0.72;
    transform: scale(1.035) translateY(10px);
  }

  62% {
    opacity: 1;
    transform: scale(0.992) translateY(0);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes screenFlash {
  0% {
    opacity: 0;
    transform: translateX(-18%);
  }

  34% {
    opacity: 0.72;
  }

  100% {
    opacity: 0;
    transform: translateX(18%);
  }
}

@media (max-width: 1040px) {
  .hero {
    min-height: 700px;
  }

  .hero::before {
    inset: 0 36% 0 0;
  }

  .hero-scene {
    left: 42%;
  }

  .scene-phone-primary {
    right: 4%;
    width: 285px;
  }

  .scene-phone-secondary {
    right: 44%;
    width: 220px;
  }

  .scene-phone-tertiary {
    display: none;
  }

  .reel-sticky {
    grid-template-columns: minmax(250px, 0.88fr) minmax(320px, 1.12fr);
  }

  .reel-shots {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reel-phone {
    width: min(42vw, 250px);
  }

  .reel-caption {
    top: 126px;
    max-width: min(82%, 430px);
  }

  .people-pulse {
    grid-template-columns: 1fr;
  }

  .people-copy {
    max-width: 720px;
  }

  .story-sticky {
    grid-template-columns: minmax(240px, 0.9fr) minmax(230px, 320px);
  }

  .story-steps {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  #people,
  #story,
  #features,
  #launch {
    scroll-margin-top: 176px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .site-header nav,
  .site-footer nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .hero::before {
    inset: 0;
    background: linear-gradient(180deg, rgba(247, 251, 252, 0.96) 0%, rgba(247, 251, 252, 0.9) 56%, rgba(247, 251, 252, 0) 100%);
  }

  .hero-content {
    padding-bottom: 300px;
  }

  .hero-scene {
    inset: auto 0 0 0;
    height: 350px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 34px;
  }

  .lead {
    font-size: 19px;
  }

  .scene-phone-primary {
    right: 16px;
    bottom: -42px;
    top: auto;
    width: 245px;
  }

  .scene-phone-secondary {
    right: 210px;
    bottom: -64px;
    width: 190px;
  }

  .cinematic-reel {
    height: auto;
  }

  .reel-sticky {
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 58px 0;
  }

  .reel-copy {
    max-width: 620px;
  }

  .reel-visual {
    min-height: 560px;
  }

  .desk-scene {
    height: 560px;
    min-height: 560px;
  }

  .reel-phone {
    left: 54%;
    width: min(64vw, 250px);
  }

  .social-script {
    top: 20px;
    width: min(90%, 390px);
  }

  .reel-caption {
    top: 118px;
    max-width: min(86%, 410px);
  }

  .laptop-base {
    left: 6%;
    right: 6%;
  }

  .reel-shots {
    grid-template-columns: 1fr;
  }

  .reel-shots li.active {
    transform: none;
  }

  .people-pulse {
    padding: 46px 0;
  }

  .people-stage {
    min-height: 590px;
  }

  .person-bubble img {
    width: 66px;
    height: 66px;
  }

  .person-six img,
  .person-seven img {
    width: 54px;
    height: 54px;
  }

  .people-phone {
    width: min(58vw, 230px);
  }

  .story-scroller {
    height: auto;
  }

  .story-sticky {
    position: relative;
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 46px 0;
  }

  .story-copy {
    max-width: 620px;
  }

  .phone-stage {
    width: min(100%, 310px);
  }

  .story-steps,
  .reel-shots,
  .feature-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .story-steps li.active {
    transform: none;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  .people-pulse,
  .feature-band,
  .preview-section,
  .legal-document {
    width: min(100% - 28px, 1160px);
  }

  .site-header nav a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-content {
    padding-bottom: 360px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-actions a {
    width: 100%;
  }

  .scene-phone-primary {
    right: 12px;
    width: 210px;
  }

  .scene-phone-secondary {
    right: 178px;
    width: 160px;
  }

  .reel-sticky {
    width: min(100% - 28px, 1160px);
  }

  .reel-visual {
    min-height: 520px;
  }

  .desk-scene {
    height: 520px;
    min-height: 520px;
  }

  .reel-caption {
    top: 112px;
    max-width: calc(100% - 28px);
    font-size: 14px;
  }

  .social-script {
    top: 16px;
    width: calc(100% - 28px);
  }

  .social-script span,
  .social-script strong {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 13px;
  }

  .hand-shape {
    left: -10px;
    bottom: 6%;
    width: 205px;
    height: 130px;
  }

  .reel-phone {
    left: 58%;
    width: min(68vw, 220px);
    border-width: 8px;
    border-radius: 34px;
  }

  .cinematic-reel[data-cinematic-index="1"] .reel-phone,
  .cinematic-reel[data-cinematic-index="2"] .reel-phone,
  .cinematic-reel[data-cinematic-index="3"] .reel-phone {
    left: 58%;
    transform: translate(-50%, -50%) rotate(-4deg) scale(0.96);
  }

  .laptop-base {
    height: 76px;
    left: 3%;
    right: 3%;
  }

  .reel-phone img {
    border-radius: 24px;
  }

  .floating-pill {
    font-size: 12px;
  }

  .floating-pill-two {
    left: 10px;
  }

  .floating-pill-three {
    right: 10px;
  }

  .people-stage {
    min-height: 560px;
  }

  .pulse-ring-one {
    width: 310px;
    height: 310px;
  }

  .pulse-ring-two {
    width: 430px;
    height: 430px;
  }

  .people-phone {
    width: min(63vw, 210px);
  }

  .person-bubble img {
    width: 58px;
    height: 58px;
    border-width: 3px;
  }

  .person-bubble figcaption {
    min-height: 27px;
    padding: 0 8px;
    font-size: 11px;
  }

  .person-one {
    left: 5%;
    top: 10%;
  }

  .person-two {
    right: 4%;
    top: 11%;
  }

  .person-three {
    left: 4%;
    bottom: 18%;
  }

  .person-four {
    right: 4%;
    bottom: 18%;
  }

  .person-five {
    left: 37%;
    top: 3%;
  }

  .person-six {
    left: 24%;
    right: auto;
    top: 23%;
  }

  .person-seven {
    left: auto;
    right: 22%;
    bottom: 4%;
  }

  .social-card {
    padding: 10px 12px;
  }

  .social-card-one {
    left: 4%;
    top: 37%;
  }

  .social-card-two {
    right: 4%;
    top: 50%;
  }

  .social-card-three {
    left: 10%;
    right: 10%;
    bottom: 6%;
    width: auto;
  }

  .feature-band,
  .preview-section {
    padding: 38px 0;
  }

  .story-sticky {
    width: min(100% - 28px, 1160px);
  }

  .story-steps li {
    grid-template-columns: 32px minmax(0, 1fr);
  }
}

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

  .story-progress span,
  .story-steps li,
  .reel-meter span,
  .reel-shots li,
  .reel-phone,
  .hand-shape,
  .app-glow,
  .floating-pill,
  .scene-phone,
  .ambient-light,
  .phone-shadow,
  .pulse-ring,
  .people-phone,
  .person-bubble,
  .social-card,
  .social-script span,
  .social-script strong,
  .cinema-depth,
  .screen-flash,
  .reel-phone img {
    animation: none;
    transition: none;
  }
}
