:root {
  color-scheme: dark;
  --ink: #050606;
  --ink-2: #0a0b0b;
  --panel: #101112;
  --raised: #202124;
  --line: rgba(243, 243, 234, 0.14);
  --paper: #f3f3ea;
  --quiet: #9ea39b;
  --lime: #b8fa6a;
  --cyan: #6bd3ea;
  --coral: #ff7462;
  --amber: #fac255;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 76% 0%, rgba(107, 211, 234, 0.08), transparent 34rem),
    radial-gradient(circle at 4% 62%, rgba(184, 250, 106, 0.07), transparent 28rem),
    var(--ink);
  color: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 10;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0;
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--paper);
}

.header-cta,
.primary-cta,
.secondary-cta,
.app-store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  background: var(--paper);
  color: var(--ink);
  font-size: 14px;
}

.section-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  align-items: center;
  gap: 62px;
  padding: 70px 0 108px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 740px;
  margin-bottom: 18px;
  font-size: clamp(70px, 9vw, 132px);
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h3 {
  font-size: 26px;
  line-height: 1.04;
}

.lede {
  max-width: 640px;
  color: var(--quiet);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.22;
}

.truth-snapshot {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 610px;
  margin-top: 28px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(184, 250, 106, 0.11), rgba(107, 211, 234, 0.055)),
    rgba(16, 17, 18, 0.74);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.25);
}

.truth-snapshot div {
  min-width: 0;
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.truth-snapshot span {
  display: block;
  margin-bottom: 8px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 900;
}

.truth-snapshot strong {
  display: block;
  color: var(--paper);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1;
}

.truth-snapshot div:nth-child(2) strong {
  color: var(--lime);
}

.truth-snapshot div:nth-child(3) strong {
  color: var(--coral);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-cta,
.secondary-cta {
  min-height: 58px;
  padding: 0 25px;
}

.primary-cta {
  background: var(--paper);
  color: var(--ink);
}

.secondary-cta {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: var(--paper);
}

.quick-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.quick-proof span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
}

.hero-stage {
  position: relative;
  min-height: 640px;
}

.mascot-orbit {
  position: absolute;
  inset: 30px -60px auto auto;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(184, 250, 106, 0.18), transparent 58%),
    radial-gradient(circle at 42% 40%, rgba(107, 211, 234, 0.13), transparent 42%);
  filter: blur(4px);
  animation: breathe 5s ease-in-out infinite alternate;
}

.hero-phone {
  position: relative;
  width: min(430px, 88vw);
  height: min(585px, 120vw);
  margin: 10px auto 0;
  border: 1px solid var(--line);
  border-radius: 72px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    #151616;
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.54),
    0 0 0 8px rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  transform: rotate(-3deg);
}

.hero-phone::before {
  content: "";
  position: absolute;
  inset: 38px;
  border-radius: 50px;
  background: #010101;
}

.speaker {
  position: absolute;
  top: 55px;
  width: 78px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  z-index: 1;
}

.mascot {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 144px;
  height: 144px;
  font-size: 76px;
}

.face {
  grid-area: 1 / 1;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.48));
}

.face-sleep {
  animation: sleepToWatch 4.6s ease-in-out infinite;
}

.face-watch {
  opacity: 0;
  animation: watchReveal 4.6s ease-in-out infinite;
}

.hero-card {
  position: absolute;
  min-width: 210px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(16, 17, 18, 0.86);
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.hero-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 800;
}

.hero-card strong {
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-size: 26px;
}

.focus-card {
  left: 4%;
  bottom: 104px;
}

.focus-card strong {
  color: var(--lime);
}

.pickup-card {
  right: 0;
  top: 104px;
}

.pickup-card strong {
  color: var(--coral);
}

.section-title {
  max-width: 780px;
  margin-bottom: 34px;
}

.how,
.truth,
.people,
.download,
.screens {
  padding: 110px 0;
}

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

.step-card,
.audience-grid article,
.timeline-card,
.download,
.screen-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(16, 17, 18, 0.78);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
}

.step-card,
.audience-grid article {
  padding: 28px;
}

.step-icon {
  width: 58px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 42px;
  border-radius: 999px;
  background: var(--raised);
  color: var(--lime);
  font-family: "SF Mono", ui-monospace, Menlo, monospace;
  font-weight: 900;
}

.step-card p,
.audience-grid p,
.truth-copy p,
.download p,
.screen-card p {
  color: var(--quiet);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
}

.truth {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: 32px;
}

.timeline-card {
  padding: 18px;
}

.timeline-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 18px;
  font-weight: 850;
  animation: rise 0.75s ease both;
}

.timeline-row:nth-child(2) {
  animation-delay: 0.12s;
}

.timeline-row:nth-child(3) {
  animation-delay: 0.24s;
}

.timeline-row:nth-child(4) {
  animation-delay: 0.36s;
}

.timeline-row:nth-child(5) {
  animation-delay: 0.48s;
}

.timeline-row:nth-child(6) {
  animation-delay: 0.60s;
}

.timeline-row + .timeline-row {
  margin-top: 8px;
}

.timeline-row.clean {
  color: var(--paper);
  background: rgba(184, 250, 106, 0.07);
}

.timeline-row.clean strong {
  color: var(--lime);
}

.timeline-row.bad {
  color: var(--coral);
  background: rgba(255, 116, 98, 0.09);
}

.truth-punch {
  margin: 20px 18px 6px;
  color: var(--paper);
  font-size: 28px;
  font-weight: 950;
}

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

.screen-card {
  overflow: hidden;
}

.screen-card img {
  width: 100%;
  aspect-ratio: 0.72;
  object-fit: cover;
  object-position: top center;
}

.screen-card div {
  padding: 22px;
}

.screen-card h3 {
  margin-bottom: 8px;
}

.audience-grid span {
  display: inline-flex;
  margin-bottom: 42px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--raised);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  margin-bottom: 80px;
}

.download h2 {
  max-width: 760px;
  margin-bottom: 10px;
}

.app-store-button {
  flex: 0 0 auto;
  min-width: 230px;
  min-height: 78px;
  flex-direction: column;
  gap: 2px;
  background: var(--paper);
  color: var(--ink);
}

.app-store-button span {
  font-size: 13px;
  font-weight: 800;
}

.app-store-button strong {
  font-size: 27px;
  line-height: 1;
}

.site-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  padding: 36px 18px 50px;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 750;
}

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

.policy {
  max-width: 860px;
  padding: 88px 0 120px;
}

.policy h1 {
  font-size: clamp(56px, 9vw, 96px);
}

.policy section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.policy h2 {
  font-size: 30px;
}

.policy p {
  color: var(--quiet);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.55;
}

@keyframes breathe {
  from {
    transform: scale(0.96) translateY(0);
  }
  to {
    transform: scale(1.05) translateY(18px);
  }
}

@keyframes sleepToWatch {
  0%,
  42% {
    opacity: 1;
    transform: translateY(8px) scale(1);
  }
  54%,
  100% {
    opacity: 0;
    transform: translateY(-8px) scale(0.94);
  }
}

@keyframes watchReveal {
  0%,
  42% {
    opacity: 0;
    transform: translateY(10px) scale(1.06);
  }
  54%,
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .site-header {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .hero,
  .truth {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

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

  .steps,
  .audience-grid,
  .screens {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .header-cta {
    display: none;
  }

  h1 {
    font-size: 72px;
  }

  .hero-phone {
    height: 530px;
  }

  .hero-card {
    position: relative;
    inset: auto;
    width: 100%;
    margin-top: 12px;
  }

  .truth-snapshot {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .quick-proof {
    display: none;
  }
}
