:root {
  --ink: #090a10;
  --ink-soft: #30313c;
  --muted: #716d71;
  --paper: #f7f7f4;
  --white: #ffffff;
  --mint: #4ef1d2;
  --mint-soft: #c9f9df;
  --blue: #8caeff;
  --blue-deep: #596df0;
  --pink: #ff5cbd;
  --purple: #805cf3;
  --orange: #ffac32;
  --red: #f14a64;
  --line: rgba(9, 10, 16, 0.12);
  --content: min(1180px, calc(100% - 48px));
  --radius-xl: 48px;
  --radius-lg: 34px;
  --radius-md: 24px;
  --shadow: 0 30px 90px rgba(28, 31, 72, 0.15);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

main > section[id] {
  scroll-margin-top: 82px;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  width: 100%;
  height: 88px;
  padding: 0 max(12px, calc((100vw - 1180px) / 4));
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid transparent;
  transition:
    height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(248, 248, 245, 0.82);
  border-color: var(--line);
  backdrop-filter: blur(20px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 11px;
  box-shadow:
    0 0 0 1px rgba(78, 241, 210, 0.34),
    0 8px 20px rgba(37, 69, 65, 0.12);
}

.brand span {
  font-family: "Arial Rounded MT Bold", "Avenir Next", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.07em;
  text-shadow:
    1.5px 1.5px 0 var(--pink),
    -1px -1px 0 var(--mint);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.86rem;
  font-weight: 750;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-download)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:not(.nav-download):hover::after,
.site-nav a:not(.nav-download):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-download {
  padding: 11px 17px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.nav-download:hover,
.nav-download:focus-visible {
  color: var(--ink);
  background: var(--mint);
  transform: translateY(-2px);
}

.header-trailer {
  display: none;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 820px;
  padding: 142px max(24px, calc((100vw - 1180px) / 2)) 88px;
  align-items: center;
  grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr);
  gap: 118px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(202, 255, 216, 0.97), rgba(141, 177, 255, 0.97)),
    var(--mint-soft);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  opacity: 0.35;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.hero-glow--mint {
  top: -180px;
  left: -160px;
  width: 550px;
  height: 550px;
  background: rgba(78, 241, 210, 0.16);
  filter: blur(70px);
}

.hero-glow--blue {
  right: -160px;
  bottom: -230px;
  width: 620px;
  height: 620px;
  background: rgba(100, 79, 239, 0.28);
}

.hero-copy,
.hero-devices {
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--purple);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--ink);
}

.hero h1 {
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  margin: 0;
}

.hero-title {
  position: relative;
  isolation: isolate;
}

.hero-title::before {
  position: absolute;
  inset: -72px -98px -54px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 5% 34%, rgba(255, 255, 255, 0.95) 0 3px, transparent 4.5px),
    radial-gradient(circle at 17% 78%, rgba(78, 241, 210, 0.9) 0 3px, transparent 4.5px),
    radial-gradient(circle at 30% 14%, rgba(255, 255, 255, 0.82) 0 2px, transparent 4px),
    radial-gradient(circle at 70% 10%, rgba(78, 241, 210, 0.82) 0 2.5px, transparent 4.5px),
    radial-gradient(circle at 84% 25%, rgba(255, 92, 189, 0.82) 0 3px, transparent 5px),
    radial-gradient(circle at 94% 64%, rgba(255, 255, 255, 0.9) 0 2.5px, transparent 4.5px),
    radial-gradient(circle at 51% 88%, rgba(255, 92, 189, 0.72) 0 2px, transparent 4px);
  content: "";
  filter:
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.75))
    drop-shadow(0 0 14px rgba(78, 241, 210, 0.58));
  opacity: 0.96;
  animation: title-particles 6.2s ease-in-out infinite;
}

.hero-title::after {
  position: absolute;
  inset: -32px -50px -18px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, rgba(78, 241, 210, 0.2), transparent 58%),
    radial-gradient(circle at 64% 38%, rgba(255, 92, 189, 0.14), transparent 52%);
  border-radius: 50%;
  content: "";
  filter: blur(12px);
  opacity: 0.78;
  animation: title-aura 5.6s ease-in-out infinite;
}

.wordmark {
  position: relative;
  z-index: 1;
  display: block;
  font-family: "Arial Rounded MT Bold", "Avenir Next", sans-serif;
  font-size: clamp(4.5rem, 8.2vw, 7.8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.08em;
  text-shadow:
    4px 4px 0 rgba(255, 92, 189, 0.95),
    -2px -2px 0 rgba(78, 241, 210, 0.95),
    0 18px 34px rgba(9, 10, 16, 0.16);
}

.hero h1 small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 44px;
  text-align: center;
  color: var(--pink);
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.035em;
  text-shadow:
    2px 2px 0 rgba(9, 10, 16, 0.9),
    -1px -1px 0 rgba(78, 241, 210, 0.9);
}

.store-links {
  display: flex;
  margin-top: 62px;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-copy .store-links {
  width: max-content;
}

.store-link {
  display: flex;
  height: 54px;
  align-items: center;
  border-radius: 10px;
  transition:
    filter 180ms ease,
    transform 180ms ease;
}

.store-link:first-child {
  width: 150px;
}

.store-link:last-child {
  width: 175px;
}

.store-link img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.store-link:hover,
.store-link:focus-visible {
  filter: drop-shadow(0 12px 17px rgba(20, 24, 55, 0.22));
  transform: translateY(-3px);
}

.launch-note {
  display: flex;
  margin: 16px 0 0;
  align-items: center;
  gap: 9px;
  justify-content: center;
  color: rgba(9, 10, 16, 0.58);
  font-size: 0.8rem;
  font-weight: 750;
}

.launch-note i {
  width: 8px;
  height: 8px;
  background: var(--mint);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(78, 241, 210, 0.25);
}

.hero-devices {
  min-height: 610px;
}

.hero-phone {
  position: absolute;
  z-index: 3;
  filter: drop-shadow(0 30px 36px rgba(21, 25, 58, 0.28));
}

.hero-phone--profile {
  top: 56%;
  left: 34%;
  width: 286px;
  transform: translate(-50%, -50%) rotate(-2deg);
  animation: hero-phone-front 6s ease-in-out infinite;
}

.hero-phone--timeline {
  top: 48%;
  left: 74%;
  z-index: 2;
  width: 270px;
  opacity: 0.96;
  transform: translate(-50%, -50%) rotate(4deg);
  animation: hero-phone-back 6.5s 0.5s ease-in-out infinite;
}

.device-orbit {
  position: absolute;
  top: 50%;
  left: 52%;
  border: 1px solid rgba(9, 10, 16, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.device-orbit::after {
  position: absolute;
  top: 8%;
  right: 22%;
  width: 12px;
  height: 12px;
  background: var(--pink);
  border: 3px solid rgba(255, 255, 255, 0.82);
  border-radius: 50%;
  box-shadow: 0 7px 20px rgba(255, 92, 189, 0.55);
  content: "";
}

.device-orbit--one {
  width: 560px;
  height: 560px;
}

.device-orbit--two {
  width: 450px;
  height: 450px;
  transform: translate(-50%, -50%) rotate(46deg);
}

.device-orbit--two::after {
  background: var(--mint);
  box-shadow: 0 7px 20px rgba(78, 241, 210, 0.55);
}

.hero-note {
  position: absolute;
  z-index: 5;
  display: flex;
  min-width: 160px;
  padding: 12px 15px;
  align-items: center;
  gap: 11px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28)),
    rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 16px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 18px 42px rgba(35, 42, 84, 0.18);
  backdrop-filter: blur(22px) saturate(150%);
}

.hero-note::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.42), transparent 38%),
    radial-gradient(circle at 16% 12%, rgba(78, 241, 210, 0.22), transparent 36%);
  content: "";
  opacity: 0.78;
}

.hero-note > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--mint);
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 900;
}

.hero-note p {
  display: grid;
  margin: 0;
  gap: 2px;
  color: rgba(9, 10, 16, 0.58);
  font-size: 0.65rem;
}

.hero-note b {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 0.84rem;
  line-height: 1;
  white-space: nowrap;
}

.hero-note--now {
  top: 25%;
  left: -1%;
  animation: note-float 5.2s ease-in-out infinite;
}

.hero-note--forever {
  right: 2%;
  bottom: 20%;
  animation: note-float 5.6s 1.1s ease-in-out infinite reverse;
}

.hero-note--forever > span {
  color: var(--white);
  background: var(--purple);
  font-size: 1.35rem;
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  animation: cue-bounce 1.8s ease-in-out infinite;
}

@media (min-width: 1180px) {
  .hero-devices {
    left: 56px;
  }
}

@media (min-width: 1440px) {
  .hero-devices {
    left: clamp(96px, 7vw, 150px);
  }
}

.signal {
  position: relative;
  padding: 28px 0;
  color: var(--mint);
  background: var(--ink);
  overflow: hidden;
}

.signal::before,
.signal::after {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 22px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.signal::before {
  bottom: -105px;
  left: -70px;
}

.signal::after {
  top: -105px;
  right: -70px;
}

.signal--alt {
  color: var(--pink);
}

.signal-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  animation: signal-slide 24s linear infinite;
}

.signal-track--reverse {
  animation-direction: reverse;
}

.signal-track span {
  min-width: max-content;
  font-size: clamp(1.45rem, 3vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.signal-track i {
  width: 10px;
  height: 10px;
  background: currentColor;
  border-radius: 50%;
}

.concept-signal {
  display: grid;
  min-height: 265px;
  padding: 0 28px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 46%, rgba(78, 241, 210, 0.18), transparent 36%),
    radial-gradient(circle at 18% 76%, rgba(255, 92, 189, 0.16), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(128, 92, 243, 0.18), transparent 30%),
    linear-gradient(135deg, #030506 0%, #071210 48%, #030407 100%);
  isolation: isolate;
  text-align: center;
}

.concept-signal::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(rgba(78, 241, 210, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 241, 210, 0.06) 1px, transparent 1px);
  background-size: 54px 54px;
  border: 0;
  border-radius: 0;
  opacity: 0.42;
  animation: concept-grid-drift 22s linear infinite;
}

.concept-signal::after {
  top: 50%;
  left: 50%;
  width: min(960px, calc(100% - 72px));
  height: 132px;
  background:
    linear-gradient(90deg, transparent, rgba(78, 241, 210, 0.22), rgba(255, 92, 189, 0.16), transparent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow:
    inset 0 0 34px rgba(78, 241, 210, 0.06),
    0 0 48px rgba(78, 241, 210, 0.1);
  opacity: 0.72;
  transform: translate(-50%, -50%);
}

.concept-signal__field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.concept-signal__field::before,
.concept-signal__field::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(720px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 241, 210, 0.34), transparent);
  content: "";
  opacity: 0.42;
  transform-origin: center;
}

.concept-signal__field::before {
  transform: translate(-50%, -50%) rotate(7deg);
}

.concept-signal__field::after {
  background: linear-gradient(90deg, transparent, rgba(255, 92, 189, 0.22), transparent);
  transform: translate(-50%, -50%) rotate(-8deg);
}

.concept-signal__node {
  --node-x: 8px;
  --node-y: -8px;
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(78, 241, 210, 0.08),
    0 0 28px rgba(78, 241, 210, 0.42);
  opacity: 0.7;
  animation: concept-node-float 9s ease-in-out infinite;
}

.concept-signal__node--one {
  top: 29%;
  left: 18%;
}

.concept-signal__node--two {
  top: 24%;
  right: 22%;
  --node-x: -10px;
  --node-y: 9px;
  background: var(--pink);
  box-shadow:
    0 0 0 8px rgba(255, 92, 189, 0.08),
    0 0 28px rgba(255, 92, 189, 0.34);
  animation-delay: -2.4s;
}

.concept-signal__node--three {
  bottom: 24%;
  left: 29%;
  --node-x: 12px;
  --node-y: 10px;
  animation-delay: -4.8s;
}

.concept-signal__node--four {
  right: 31%;
  bottom: 27%;
  --node-x: -12px;
  --node-y: -8px;
  background: rgba(160, 185, 255, 0.95);
  box-shadow:
    0 0 0 8px rgba(128, 92, 243, 0.08),
    0 0 28px rgba(128, 92, 243, 0.36);
  animation-delay: -6.3s;
}

.concept-signal__title {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(246, 255, 253, 0.95);
  font-size: clamp(2.2rem, 4.8vw, 5.25rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.96;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(78, 241, 210, 0.22),
    0 18px 34px rgba(0, 0, 0, 0.38);
}

.concept-signal__title strong {
  color: transparent;
  background: linear-gradient(105deg, var(--mint), #f7fff9 42%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 950;
}

.concept-signal__title-desktop {
  display: inline;
}

.concept-signal__title-mobile {
  display: none;
}

.concept-signal__title::after {
  position: absolute;
  right: 8%;
  bottom: -24px;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(78, 241, 210, 0.74), rgba(255, 92, 189, 0.5), transparent);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(78, 241, 210, 0.26);
  content: "";
  opacity: 0.72;
}

.signal--light-on {
  --signal-light-duration: 1.85s;
  display: grid;
  min-height: 184px;
  place-items: center;
  color: rgba(78, 241, 210, 0.28);
  background:
    radial-gradient(circle at 50% 50%, rgba(78, 241, 210, 0), transparent 46%),
    linear-gradient(180deg, #020306 0%, #05070c 52%, #020306 100%);
  text-align: center;
}

.signal--light-on::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    radial-gradient(circle, rgba(78, 241, 210, 0.38) 0 1.4px, transparent 2.6px) 8% 34% / 180px 138px repeat,
    radial-gradient(circle, rgba(255, 84, 214, 0.18) 0 1.2px, transparent 2.4px) 78% 42% / 238px 176px repeat,
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 1px, transparent 2.1px) 36% 16% / 286px 214px repeat;
  border: 0;
  opacity: 0.2;
  animation: signal-particles-float 18s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.signal--light-on::after {
  top: 50%;
  right: max(52px, calc((100vw - 1180px) / 2));
  left: max(52px, calc((100vw - 1180px) / 2));
  width: auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 241, 210, 0.26), transparent);
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  opacity: 0.22;
  transform: translateY(-50%);
}

.signal--light-on.is-lit {
  animation: signal-light-panel var(--signal-light-duration) steps(1, end) forwards;
}

.signal--light-on.is-lit::before {
  animation:
    signal-light-glow var(--signal-light-duration) steps(1, end) forwards,
    signal-particles-float 18s ease-in-out infinite;
}

.signal--light-on.is-lit::after {
  animation: signal-light-line var(--signal-light-duration) steps(1, end) forwards;
}

.light-signal__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(78, 241, 210, 0.32);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 950;
  letter-spacing: -0.055em;
  line-height: 1;
  text-shadow: none;
}

.light-signal__title-desktop {
  display: inline;
}

.light-signal__title-mobile {
  display: none;
}

.signal--light-on.is-lit .light-signal__title {
  animation: signal-light-title var(--signal-light-duration) steps(1, end) forwards;
}

.time-travel-signal {
  display: grid;
  min-height: 300px;
  padding: 0;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(2, 4, 8, 0.82), rgba(2, 4, 8, 0.18) 50%, rgba(2, 4, 8, 0.76)),
    url("assets/time-travel-warp.gif") center / cover no-repeat,
    #020307;
  color: var(--white);
  isolation: isolate;
  text-align: center;
}

.time-travel-signal::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.14) 0 10%, rgba(0, 0, 0, 0.34) 35%, rgba(0, 0, 0, 0.72) 100%),
    linear-gradient(90deg, rgba(78, 241, 210, 0.13), transparent 28%, transparent 72%, rgba(255, 92, 189, 0.12));
  border: 0;
  border-radius: 0;
  opacity: 0.98;
  animation: warp-field-pulse 8s ease-in-out infinite;
  mix-blend-mode: normal;
  pointer-events: none;
}

.time-travel-signal::after {
  inset: 0;
  width: auto;
  height: auto;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 0 43%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%, transparent 74%, rgba(0, 0, 0, 0.28));
  border: 0;
  border-radius: 0;
  opacity: 0.82;
  animation: warp-horizon-drift 11s ease-in-out infinite;
  pointer-events: none;
}

.time-travel-signal__years {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.time-travel-signal__years span {
  --year-duration: 30s;
  --year-delay: 0s;
  --year-float-delay: 0s;
  --year-opacity: 0.42;
  --year-top: 30%;
  position: absolute;
  top: var(--year-top);
  left: 0;
  color: rgba(234, 252, 255, 0.54);
  font-size: clamp(0.72rem, 1vw, 0.95rem);
  font-weight: 850;
  letter-spacing: 0.05em;
  opacity: var(--year-opacity);
  text-shadow:
    0 0 12px rgba(78, 241, 210, 0.32),
    0 0 24px rgba(255, 92, 189, 0.16);
  white-space: nowrap;
  will-change: transform;
  animation: year-marker-drift var(--year-duration) linear infinite;
  animation-delay: var(--year-delay);
}

.time-travel-signal__title {
  position: relative;
  z-index: 2;
  width: calc(100% - 64px);
  max-width: 1180px;
  margin: 0;
  padding: 0 32px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2.15rem, 4.2vw, 4.35rem);
  font-weight: 950;
  letter-spacing: -0.052em;
  line-height: 0.98;
  white-space: nowrap;
  text-shadow:
    0 0 18px rgba(78, 241, 210, 0.26),
    0 0 42px rgba(255, 92, 189, 0.18),
    0 12px 30px rgba(0, 0, 0, 0.48);
}

.time-travel-signal__title-desktop {
  display: inline;
}

.time-travel-signal__title-mobile {
  display: none;
}

.privacy-signal {
  display: grid;
  min-height: 240px;
  padding: 0;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 50%, rgba(78, 241, 210, 0.17), transparent 34%),
    linear-gradient(180deg, #020306 0%, #06100f 54%, #020306 100%);
  isolation: isolate;
  text-align: center;
}

.privacy-signal::before {
  inset: 0;
  width: auto;
  height: auto;
  background:
    linear-gradient(rgba(78, 241, 210, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(78, 241, 210, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 18% 36%, rgba(255, 92, 189, 0.18), transparent 24%),
    radial-gradient(circle at 82% 54%, rgba(78, 241, 210, 0.2), transparent 26%);
  background-size:
    52px 52px,
    52px 52px,
    100% 100%,
    100% 100%;
  border: 0;
  border-radius: 0;
  opacity: 0.56;
  animation: privacy-grid-drift 18s linear infinite;
  pointer-events: none;
}

.privacy-signal::after {
  top: 50%;
  left: 50%;
  width: min(780px, calc(100% - 80px));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 241, 210, 0.7), rgba(255, 92, 189, 0.48), transparent);
  border: 0;
  border-radius: 999px;
  box-shadow:
    0 0 22px rgba(78, 241, 210, 0.34),
    0 0 36px rgba(255, 92, 189, 0.14);
  opacity: 0.68;
  transform: translate(-50%, -50%);
  animation: privacy-scan-line 5.8s ease-in-out infinite;
  pointer-events: none;
}

.privacy-signal__icons {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.privacy-signal__icon {
  --icon-rotate: 0deg;
  --icon-x: 10px;
  --icon-y: -10px;
  position: absolute;
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: rgba(235, 255, 251, 0.2);
  opacity: 0.42;
  filter: drop-shadow(0 0 16px rgba(78, 241, 210, 0.18));
  transform: rotate(var(--icon-rotate));
  animation: privacy-icon-float 13s ease-in-out infinite;
}

.privacy-signal__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.15;
}

.privacy-signal__icon--lock {
  top: 28px;
  left: 13%;
  --icon-rotate: -7deg;
  --icon-x: 15px;
  --icon-y: 8px;
}

.privacy-signal__icon--shield {
  top: 35px;
  right: 14%;
  width: 88px;
  height: 88px;
  --icon-rotate: 8deg;
  --icon-x: -12px;
  --icon-y: 10px;
  animation-delay: -3.2s;
}

.privacy-signal__icon--check {
  bottom: 25px;
  left: 28%;
  width: 62px;
  height: 62px;
  color: rgba(78, 241, 210, 0.22);
  --icon-rotate: 6deg;
  --icon-x: 11px;
  --icon-y: -12px;
  animation-delay: -6.1s;
}

.privacy-signal__icon--heart {
  right: 27%;
  bottom: 22px;
  width: 70px;
  height: 70px;
  color: rgba(255, 92, 189, 0.19);
  --icon-rotate: -9deg;
  --icon-x: -13px;
  --icon-y: -10px;
  animation-delay: -8.4s;
}

.privacy-signal__title {
  position: relative;
  z-index: 3;
  width: calc(100% - 56px);
  margin: 0;
  color: rgba(245, 255, 252, 0.96);
  font-size: clamp(2.05rem, 4.2vw, 4.35rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
  text-shadow:
    0 0 16px rgba(78, 241, 210, 0.34),
    0 18px 34px rgba(0, 0, 0, 0.38);
}

.privacy-signal__title-desktop {
  display: inline;
}

.privacy-signal__title-mobile {
  display: none;
}

.section-shell {
  width: var(--content);
  padding: 130px 0;
  margin: 0 auto;
}

.section-heading--center,
.privacy-intro,
.community-copy,
.contact-heading {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.section-heading h2,
.timeline-copy h2,
.privacy-intro h2,
.circle-copy h2,
.community-copy h2,
.about-card h2,
.founder-copy h2,
.contact-heading h2,
.download h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.5vw, 5.4rem);
  line-height: 1.01;
  letter-spacing: -0.065em;
}

.section-heading > p:not(.section-label),
.timeline-copy > p:not(.section-label),
.privacy-intro > p:not(.section-label),
.circle-copy > p:not(.section-label),
.community-copy > p:not(.section-label),
.about-card > p:not(.section-label),
.founder-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.section-heading > p:not(.section-label) {
  max-width: 820px;
  margin: 27px auto 0;
}

.section-heading strong,
.timeline-copy strong,
.privacy-intro strong,
.circle-copy strong,
.about-card strong {
  display: block;
  color: var(--pink);
  font-size: clamp(1.3rem, 2.7vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.section-heading strong {
  margin-top: 36px;
}

.updates {
  position: relative;
  padding-bottom: 83px;
  isolation: isolate;
}

.updates::before {
  position: absolute;
  top: 44px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: calc(100% - 70px);
  background:
    radial-gradient(circle at 22% 18%, rgba(78, 241, 210, 0.18), transparent 32%),
    radial-gradient(circle at 78% 45%, rgba(140, 174, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.updates .section-heading > p:not(.section-label) {
  max-width: 900px;
  color: rgba(9, 10, 16, 0.74);
  font-size: clamp(1.22rem, 1.55vw, 1.48rem);
  font-weight: 520;
  letter-spacing: -0.026em;
  line-height: 1.48;
}

.updates .section-heading {
  padding-bottom: 0;
}

.updates .section-heading strong {
  margin-top: 58px;
  padding-bottom: 76px;
}

.phone-carousel {
  position: relative;
  width: 100vw;
  margin: 0 0 0 calc(50% - 50vw);
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.phone-carousel__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: inherit;
  scroll-behavior: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-y;
}

.phone-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.phone-carousel.is-dragging {
  cursor: grabbing;
}

.phone-carousel__track {
  display: flex;
  width: max-content;
  padding: 54px 0 76px;
  gap: 22px;
}

.phone-carousel.is-in-view .phone-card {
  animation-play-state: running;
}

.phone-carousel.is-dragging .phone-card,
.phone-carousel.is-user-control .phone-card {
  animation-play-state: paused;
}

.phone-carousel__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 4;
  width: min(10vw, 150px);
  pointer-events: none;
}

.phone-carousel__fade--left {
  left: 0;
  background: linear-gradient(90deg, var(--paper), transparent);
}

.phone-carousel__fade--right {
  right: 0;
  background: linear-gradient(-90deg, var(--paper), transparent);
}

.phone-card {
  --phone-lift: 22px;
  --phone-rotate: 0deg;
  position: relative;
  width: 238px;
  flex: 0 0 238px;
  transform-origin: center bottom;
  transform: translateY(var(--phone-lift)) rotate(var(--phone-rotate));
  animation: phone-bob 6.8s ease-in-out infinite;
  animation-play-state: paused;
}

.phone-card--2,
.phone-card--4,
.phone-card--6,
.phone-card--8 {
  --phone-lift: -20px;
}

.phone-card--1,
.phone-card--3,
.phone-card--5,
.phone-card--7,
.phone-card--9 {
  --phone-lift: 22px;
}

.phone-card:nth-child(3n + 2) {
  animation-delay: -1.6s;
}

.phone-card:nth-child(3n) {
  animation-delay: -3.1s;
}

.phone-card img {
  width: 100%;
  pointer-events: none;
  filter: drop-shadow(0 24px 28px rgba(12, 14, 30, 0.16));
}

.phone-card--1,
.phone-card--6 {
  --phone-rotate: -2deg;
}

.phone-card--3,
.phone-card--8 {
  --phone-rotate: 2deg;
}

.timeline {
  position: relative;
  width: var(--content);
  padding-top: 130px;
  padding-bottom: 118px;
  isolation: isolate;
}

.timeline::before {
  position: absolute;
  top: 50px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: calc(100% - 80px);
  background:
    radial-gradient(circle at 24% 28%, rgba(255, 92, 189, 0.13), transparent 30%),
    radial-gradient(circle at 72% 48%, rgba(78, 241, 210, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.timeline-copy {
  position: relative;
  z-index: 1;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.timeline-copy > p:not(.section-label) {
  max-width: 900px;
  margin: 27px auto 0;
  color: rgba(9, 10, 16, 0.74);
  font-size: clamp(1.22rem, 1.55vw, 1.48rem);
  font-weight: 520;
  letter-spacing: -0.026em;
  line-height: 1.48;
}

.timeline-copy strong {
  margin-top: 58px;
  padding-bottom: 72px;
}

.timeline-stage {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 920px);
  min-height: 560px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: center;
  gap: 32px;
  isolation: isolate;
}

.timeline-preview {
  position: relative;
  z-index: 2;
  display: block;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: default;
  line-height: 0;
}

.timeline-preview:focus-visible {
  outline: none;
}

.timeline-stage::before {
  position: absolute;
  inset: 45px 18px 32px;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 22%, rgba(78, 241, 210, 0.26), transparent 30%),
    radial-gradient(circle at 80% 28%, rgba(255, 92, 189, 0.2), transparent 34%),
    radial-gradient(circle at 44% 84%, rgba(140, 174, 255, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 240, 255, 0.28));
  background-size:
    180% 180%,
    170% 170%,
    190% 190%,
    100% 100%;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 38px;
  box-shadow: 0 26px 70px rgba(25, 28, 66, 0.08);
  content: "";
  animation: timeline-gradient-flow 12s ease-in-out infinite;
}

.timeline-phone {
  position: relative;
  z-index: 2;
  width: 250px;
  display: block;
  pointer-events: none;
  filter: drop-shadow(0 26px 30px rgba(20, 22, 50, 0.18));
}

.timeline-phone--left {
  margin-top: 52px;
  animation: timeline-preview-left-float 6.6s ease-in-out infinite;
}

.timeline-phone--center {
  z-index: 4;
  animation: timeline-preview-center-float 7s -1.4s ease-in-out infinite;
}

.timeline-phone--right {
  margin-top: 52px;
  animation: timeline-preview-right-float 6.9s -2.2s ease-in-out infinite;
}

.privacy {
  position: relative;
  width: min(1240px, calc(100% - 48px));
  isolation: isolate;
}

.privacy::before {
  position: absolute;
  top: 88px;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: calc(100% - 130px);
  background:
    radial-gradient(circle at 19% 18%, rgba(78, 241, 210, 0.12), transparent 31%),
    radial-gradient(circle at 82% 39%, rgba(128, 92, 243, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(248, 252, 255, 0), rgba(245, 249, 255, 0.68) 42%, rgba(248, 252, 255, 0));
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.privacy-intro > p:not(.section-label) {
  max-width: 810px;
  margin: 28px auto 0;
  color: rgba(9, 10, 16, 0.72);
  font-size: clamp(1.12rem, 1.35vw, 1.34rem);
  font-weight: 520;
  letter-spacing: -0.023em;
  line-height: 1.54;
}

.privacy-intro strong {
  display: block;
  max-width: 800px;
  padding: 0;
  margin: 34px auto 0;
  color: var(--pink);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: clamp(1.3rem, 2.7vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.privacy-layout {
  display: grid;
  margin-top: 68px;
  align-items: center;
  grid-template-columns: minmax(330px, 0.82fr) minmax(0, 1.28fr);
  gap: 36px;
}

.privacy-key-art {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.privacy-key-art::before {
  position: absolute;
  inset: 12% 4%;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 48%, rgba(78, 241, 210, 0.18), transparent 48%),
    radial-gradient(circle at 45% 52%, rgba(255, 92, 189, 0.1), transparent 55%);
  border-radius: 999px;
  filter: blur(8px);
  content: "";
  pointer-events: none;
}

.privacy-key-art__image {
  display: block;
  width: min(420px, 92%);
  height: auto;
  filter:
    drop-shadow(0 30px 45px rgba(20, 24, 52, 0.16))
    drop-shadow(0 0 30px rgba(78, 241, 210, 0.16));
  transform: rotate(-2deg);
}

.privacy-list {
  display: grid;
  padding: 0;
  margin: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.privacy-list li {
  position: relative;
  display: grid;
  min-height: 146px;
  padding: 22px;
  align-items: start;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.78));
  border: 1px solid rgba(10, 14, 27, 0.07);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(24, 27, 58, 0.065);
  grid-template-columns: 32px 1fr;
  gap: 12px;
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.privacy-list li::before {
  position: absolute;
  top: -52px;
  right: -58px;
  width: 122px;
  height: 122px;
  background: radial-gradient(circle, rgba(78, 241, 210, 0.18), transparent 66%);
  content: "";
  pointer-events: none;
}

.privacy-list li:hover {
  border-color: rgba(78, 241, 210, 0.75);
  box-shadow: 0 22px 55px rgba(24, 27, 58, 0.095);
  transform: translateY(-3px);
}

.privacy-list li > span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: rgba(3, 13, 12, 0.88);
  background: linear-gradient(135deg, var(--mint), rgba(153, 255, 236, 0.96));
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(78, 241, 210, 0.25);
  font-weight: 950;
}

.privacy-list p {
  margin: 1px 0 0;
  color: rgba(35, 38, 49, 0.74);
  font-size: 0.92rem;
  font-weight: 560;
  letter-spacing: -0.012em;
  line-height: 1.56;
}

.privacy-list b {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.96rem;
}

.circle-copy {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.circle-copy h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.6rem);
}

.circle-copy > p:not(.section-label) {
  max-width: 900px;
  margin: 26px auto 0;
  color: rgba(9, 10, 16, 0.74);
  font-size: clamp(1.12rem, 1.4vw, 1.32rem);
  font-weight: 520;
  letter-spacing: -0.022em;
  line-height: 1.55;
}

.circle-copy strong {
  max-width: 800px;
  margin: 29px auto 0;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
}

.comparison-carousel {
  position: relative;
  display: grid;
  padding: 0;
  margin-top: 70px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  gap: 8px;
  overflow: visible;
  isolation: auto;
}

.comparison-carousel::before {
  content: none;
}

.comparison-carousel__header {
  display: grid;
  padding: 0 96px;
  box-sizing: border-box;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.comparison-carousel__header > div {
  display: flex;
  min-width: 0;
  padding: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
  backdrop-filter: none;
}

.comparison-carousel__header h3 {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.35;
}

.comparison-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.comparison-dot--safe {
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(78, 241, 210, 0.2);
}

.comparison-dot--exposed {
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(241, 74, 100, 0.17);
}

.comparison-carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 18px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.comparison-carousel__viewport::-webkit-scrollbar {
  display: none;
}

.comparison-carousel__track {
  position: relative;
  left: 0;
  display: flex;
  transition: left 760ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: left;
}

.comparison-set {
  position: relative;
  display: grid;
  min-width: 100%;
  padding: 12px 96px 6px;
  background: transparent;
  border: 0;
  border-radius: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.comparison-set::before {
  position: absolute;
  top: 12%;
  bottom: 18%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(10, 14, 27, 0.16), transparent);
  content: "";
  transform: translateX(-50%);
}

.comparison-set::after {
  position: absolute;
  top: calc(50% + 3px);
  left: 50%;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: rgba(9, 10, 16, 0.7);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 14, 27, 0.08);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(24, 27, 58, 0.1);
  content: "vs";
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.comparison-card {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 4;
  padding: 0;
  margin: 0;
  align-content: start;
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

.comparison-card--safe {
  background: transparent;
}

.comparison-card--exposed {
  background: transparent;
}

.comparison-card img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: none;
}

.comparison-carousel__controls,
.comparison-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.comparison-carousel__controls {
  gap: 12px;
  margin-top: -2px;
}

.comparison-carousel__dots {
  gap: 8px;
}

.comparison-carousel__arrow {
  position: absolute;
  top: calc(50% + 12px);
  z-index: 4;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  color: rgba(9, 10, 16, 0.72);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(10, 14, 27, 0.08);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(24, 27, 58, 0.08);
  cursor: pointer;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  transform: translateY(-50%);
}

.comparison-carousel__arrow[data-comparison-prev] {
  left: 10px;
}

.comparison-carousel__arrow[data-comparison-next] {
  right: 10px;
}

.comparison-carousel__arrow:hover {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 40px rgba(24, 27, 58, 0.12);
  transform: translateY(-50%) scale(1.04);
}

.comparison-carousel__dots button {
  width: 34px;
  height: 6px;
  padding: 0;
  background: rgba(10, 14, 27, 0.14);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 180ms ease,
    transform 180ms ease,
    width 180ms ease;
}

.comparison-carousel__dots button.is-active {
  width: 52px;
  background: linear-gradient(90deg, var(--mint), var(--pink));
  box-shadow: 0 0 18px rgba(78, 241, 210, 0.22);
}

.comparison-carousel__dots button:focus-visible {
  outline: 3px solid rgba(78, 241, 210, 0.46);
  outline-offset: 4px;
}

.comparison-carousel__arrow:focus-visible {
  outline: 3px solid rgba(78, 241, 210, 0.46);
  outline-offset: 4px;
}

.living-room-signal {
  display: grid;
  min-height: 260px;
  padding: 0 28px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 50%, rgba(78, 241, 210, 0.18), transparent 26%),
    radial-gradient(circle at 82% 42%, rgba(255, 92, 189, 0.16), transparent 30%),
    linear-gradient(180deg, #080a12 0%, #101522 52%, #07080f 100%);
}

.living-room-signal::before,
.living-room-signal::after {
  content: none;
}

.living-room-signal__room {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.living-room-signal__room::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
  animation: living-room-strip-grid 18s linear infinite;
}

.living-room-signal__lamp {
  position: absolute;
  top: 48px;
  left: 10%;
  width: 116px;
  height: 80px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 205, 122, 0.44), transparent 56%),
    linear-gradient(180deg, rgba(255, 218, 149, 0.78), rgba(255, 172, 50, 0.34));
  border-radius: 999px 999px 24px 24px;
  filter: drop-shadow(0 0 34px rgba(255, 172, 50, 0.28));
  opacity: 0.76;
  animation: living-room-strip-lamp 4.8s ease-in-out infinite;
}

.living-room-signal__lamp::after {
  position: absolute;
  top: 78px;
  left: 50%;
  width: 3px;
  height: 78px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  content: "";
}

.living-room-signal__window {
  position: absolute;
  top: 36px;
  right: 9%;
  width: 210px;
  height: 126px;
  background:
    radial-gradient(circle at 18% 24%, rgba(78, 241, 210, 0.72) 0 2px, transparent 4px),
    radial-gradient(circle at 62% 18%, rgba(255, 255, 255, 0.62) 0 2px, transparent 4px),
    radial-gradient(circle at 84% 64%, rgba(255, 92, 189, 0.52) 0 2px, transparent 4px),
    linear-gradient(145deg, rgba(22, 32, 55, 0.84), rgba(4, 7, 16, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.72;
  animation: living-room-strip-float 9s ease-in-out infinite;
}

.living-room-signal__window::before,
.living-room-signal__window::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  content: "";
}

.living-room-signal__window::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.living-room-signal__window::after {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.living-room-signal__sofa {
  position: absolute;
  right: 28%;
  bottom: 27px;
  width: 270px;
  height: 74px;
  background: linear-gradient(180deg, rgba(84, 106, 246, 0.55), rgba(80, 55, 174, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px 32px 22px 22px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.15);
  opacity: 0.66;
}

.living-room-signal__sofa::before,
.living-room-signal__sofa::after {
  position: absolute;
  top: -28px;
  width: 36%;
  height: 46px;
  background: rgba(119, 142, 255, 0.46);
  border-radius: 22px;
  content: "";
}

.living-room-signal__sofa::before {
  left: 8%;
}

.living-room-signal__sofa::after {
  right: 8%;
}

.living-room-signal__bubble {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(78, 241, 210, 0.72);
  opacity: 0.7;
  animation: living-room-strip-float 7.5s ease-in-out infinite;
}

.living-room-signal__bubble--one {
  top: 70px;
  left: 32%;
}

.living-room-signal__bubble--two {
  right: 32%;
  bottom: 66px;
  background: var(--pink);
  box-shadow: 0 0 28px rgba(255, 92, 189, 0.62);
  animation-delay: -2.8s;
}

.living-room-signal__title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 6.6rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.075em;
  text-align: center;
  text-shadow:
    0 0 26px rgba(78, 241, 210, 0.24),
    0 0 54px rgba(255, 92, 189, 0.16);
}

.living-room-signal__title-desktop {
  display: inline;
}

.living-room-signal__title-mobile {
  display: none;
}

.farewell-signal {
  display: grid;
  min-height: 270px;
  padding: 0 28px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(ellipse at 50% 100%, rgba(78, 241, 210, 0.17), transparent 46%),
    radial-gradient(circle at 84% 28%, rgba(255, 92, 189, 0.13), transparent 27%),
    linear-gradient(180deg, #06070d 0%, #0d1020 58%, #05060b 100%);
  isolation: isolate;
}

.farewell-signal::before,
.farewell-signal::after {
  content: none;
}

.farewell-signal__field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.farewell-signal__field::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 0 1px, transparent 1.8px) 12% 28% / 128px 96px,
    radial-gradient(circle, rgba(140, 174, 255, 0.18) 0 1px, transparent 2px) 58% 16% / 176px 134px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
  opacity: 0.42;
}

.farewell-signal__field::after {
  position: absolute;
  right: 0;
  bottom: -130px;
  left: 0;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(78, 241, 210, 0.14), transparent 64%);
  content: "";
  filter: blur(18px);
}

.farewell-signal__path {
  position: absolute;
  right: 8%;
  bottom: 49px;
  left: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(140, 174, 255, 0.28) 15%,
    rgba(78, 241, 210, 0.7) 50%,
    rgba(255, 92, 189, 0.34) 84%,
    transparent
  );
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(78, 241, 210, 0.24);
  opacity: 0.8;
}

.farewell-signal__moment {
  position: absolute;
  bottom: 44px;
  width: 11px;
  height: 11px;
  background: var(--mint);
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  box-shadow:
    0 0 0 6px rgba(78, 241, 210, 0.08),
    0 0 25px rgba(78, 241, 210, 0.56);
  opacity: 0.76;
  animation: farewell-moment-pulse 5.8s ease-in-out infinite;
}

.farewell-signal__moment--one {
  left: 23%;
  animation-delay: -1.4s;
}

.farewell-signal__moment--two {
  left: 50%;
  transform: translateX(-50%);
}

.farewell-signal__moment--three {
  right: 22%;
  background: var(--pink);
  box-shadow:
    0 0 0 6px rgba(255, 92, 189, 0.08),
    0 0 25px rgba(255, 92, 189, 0.48);
  animation-delay: -3.7s;
}

.farewell-signal__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(760px, 66vw);
  height: 110px;
  background: radial-gradient(ellipse, rgba(78, 241, 210, 0.11), transparent 68%);
  filter: blur(14px);
  transform: translate(-50%, -50%);
}

.farewell-signal__title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(249, 251, 255, 0.97);
  font-size: clamp(2.45rem, 5.8vw, 6.2rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.078em;
  text-align: center;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.38);
}

.farewell-signal__title-desktop {
  display: inline;
}

.farewell-signal__title-mobile {
  display: none;
}

.farewell-signal__word {
  color: transparent;
  background: linear-gradient(105deg, var(--mint), #effffb 46%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: none;
}

.dream-machine-signal {
  display: grid;
  min-height: 270px;
  padding: 0 28px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 22% 38%, rgba(128, 92, 243, 0.22), transparent 30%),
    radial-gradient(circle at 78% 64%, rgba(78, 241, 210, 0.15), transparent 28%),
    linear-gradient(135deg, #050610 0%, #111327 50%, #060710 100%);
  isolation: isolate;
}

.dream-machine-signal::before,
.dream-machine-signal::after {
  content: none;
}

.dream-machine-signal__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.dream-machine-signal__scene::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.8px) 0 0 / 92px 78px,
    radial-gradient(circle, rgba(78, 241, 210, 0.16) 0 1px, transparent 2px) 38px 26px / 138px 112px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
  opacity: 0.36;
}

.dream-machine-signal__laptop {
  position: absolute;
  right: clamp(38px, 8vw, 130px);
  bottom: -18px;
  width: 260px;
  height: 170px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px 18px 7px 7px;
  box-shadow:
    inset 0 0 40px rgba(78, 241, 210, 0.04),
    0 0 46px rgba(128, 92, 243, 0.08);
  opacity: 0.65;
  transform: perspective(600px) rotateY(-9deg) rotateX(2deg);
}

.dream-machine-signal__laptop::before {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  background:
    linear-gradient(90deg, rgba(78, 241, 210, 0.14), transparent 42%),
    linear-gradient(145deg, rgba(16, 22, 43, 0.72), rgba(5, 7, 15, 0.88));
  border-radius: 9px;
  content: "";
}

.dream-machine-signal__laptop::after {
  position: absolute;
  right: -25px;
  bottom: -12px;
  left: -25px;
  height: 11px;
  background: linear-gradient(90deg, transparent, rgba(220, 229, 255, 0.25) 12%, rgba(255, 255, 255, 0.38) 50%, rgba(220, 229, 255, 0.25) 88%, transparent);
  border-radius: 0 0 60px 60px;
  content: "";
}

.dream-machine-signal__laptop span {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 30px;
  height: 37px;
  border: 1.5px solid rgba(255, 255, 255, 0.16);
  border-radius: 52% 48% 48% 52% / 58% 58% 42% 42%;
  transform: translate(-50%, -50%);
}

.dream-machine-signal__idea {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(78, 241, 210, 0.62);
  opacity: 0.58;
  animation: dream-machine-float 8s ease-in-out infinite;
}

.dream-machine-signal__idea--one {
  top: 25%;
  left: 16%;
}

.dream-machine-signal__idea--two {
  bottom: 24%;
  left: 29%;
  width: 6px;
  height: 6px;
  background: var(--pink);
  box-shadow: 0 0 22px rgba(255, 92, 189, 0.58);
  animation-delay: -3.2s;
}

.dream-machine-signal__idea--three {
  top: 22%;
  right: 34%;
  width: 5px;
  height: 5px;
  background: var(--blue);
  box-shadow: 0 0 20px rgba(140, 174, 255, 0.58);
  animation-delay: -5.4s;
}

.dream-machine-signal__line {
  position: absolute;
  bottom: 24%;
  left: 8%;
  width: 26%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(78, 241, 210, 0.34), transparent);
  opacity: 0.5;
}

.dream-machine-signal__title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(249, 251, 255, 0.97);
  font-size: clamp(2.35rem, 5.7vw, 6rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.075em;
  text-align: center;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.36);
}

.dream-machine-signal__title-desktop {
  display: inline;
}

.dream-machine-signal__title-mobile {
  display: none;
}

.dream-machine-signal__highlight {
  color: transparent;
  background: linear-gradient(105deg, var(--mint), #effffb 48%, var(--pink));
  background-clip: text;
  -webkit-background-clip: text;
  text-shadow: none;
}

.cheese-signal {
  display: grid;
  min-height: 260px;
  padding: 0 34px;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 36%, rgba(78, 241, 210, 0.12), transparent 27%),
    radial-gradient(circle at 82% 64%, rgba(255, 92, 189, 0.13), transparent 28%),
    linear-gradient(135deg, #05060a 0%, #101321 50%, #05060a 100%);
  isolation: isolate;
}

.cheese-signal::before,
.cheese-signal::after {
  content: none;
}

.cheese-signal__field {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.cheese-signal__field::before {
  position: absolute;
  top: -40%;
  bottom: -40%;
  left: -42%;
  width: 34%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.03),
    rgba(78, 241, 210, 0.13),
    rgba(255, 255, 255, 0.04),
    transparent
  );
  content: "";
  filter: blur(16px);
  transform: skewX(-16deg);
  opacity: 0;
}

.cheese-signal__field::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: radial-gradient(ellipse at center, #000, transparent 74%);
  opacity: 0.55;
}

.cheese-signal__corner {
  position: absolute;
  width: 70px;
  height: 42px;
  opacity: 0.34;
}

.cheese-signal__corner--top-left {
  top: 34px;
  left: clamp(34px, 7vw, 110px);
  border-top: 2px solid rgba(78, 241, 210, 0.72);
  border-left: 2px solid rgba(78, 241, 210, 0.72);
}

.cheese-signal__corner--top-right {
  top: 34px;
  right: clamp(34px, 7vw, 110px);
  border-top: 2px solid rgba(255, 92, 189, 0.7);
  border-right: 2px solid rgba(255, 92, 189, 0.7);
}

.cheese-signal__corner--bottom-left {
  bottom: 34px;
  left: clamp(34px, 7vw, 110px);
  border-bottom: 2px solid rgba(255, 92, 189, 0.7);
  border-left: 2px solid rgba(255, 92, 189, 0.7);
}

.cheese-signal__corner--bottom-right {
  right: clamp(34px, 7vw, 110px);
  bottom: 34px;
  border-right: 2px solid rgba(78, 241, 210, 0.72);
  border-bottom: 2px solid rgba(78, 241, 210, 0.72);
}

.cheese-signal__flash {
  position: absolute;
  top: 29%;
  left: 17%;
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(255, 255, 255, 0.8),
    0 0 46px rgba(78, 241, 210, 0.54);
  opacity: 0.22;
}

.cheese-signal__flash::before,
.cheese-signal__flash::after {
  position: absolute;
  top: 50%;
  left: 50%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.76), transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.cheese-signal__flash::before {
  width: 82px;
  height: 1px;
}

.cheese-signal__flash::after {
  width: 1px;
  height: 82px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.7), transparent);
}

.cheese-signal__shutter-flash {
  position: absolute;
  z-index: 6;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  pointer-events: none;
}

.cheese-signal__title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.97);
  font-size: clamp(2.35rem, 5.8vw, 6.1rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: -0.075em;
  text-align: center;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.32);
  transform: scale(1);
  transform-origin: center;
  will-change: filter, transform;
}

.cheese-signal__title-desktop {
  display: inline;
}

.cheese-signal__title-mobile {
  display: none;
}

.cheese-signal__word {
  position: relative;
  display: inline-block;
  color: var(--mint);
  text-shadow:
    0 0 22px rgba(78, 241, 210, 0.28),
    3px 3px 0 rgba(255, 92, 189, 0.72);
}

.cheese-signal__camera {
  position: absolute;
  top: -0.43em;
  right: 0.03em;
  width: 0.34em;
  height: auto;
  fill: rgba(10, 12, 19, 0.72);
  stroke: rgba(255, 255, 255, 0.82);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  filter:
    drop-shadow(0 0 7px rgba(78, 241, 210, 0.38))
    drop-shadow(2px 2px 0 rgba(255, 92, 189, 0.34));
  transform: rotate(7deg);
}

.cheese-signal.is-visible .cheese-signal__shutter-flash {
  animation: cheese-shutter-flash 820ms ease-out both;
}

.cheese-signal.is-visible .cheese-signal__title {
  animation: cheese-title-exposure 820ms cubic-bezier(0.2, 0.78, 0.25, 1) both;
}

.community {
  padding-top: 118px;
  padding-bottom: 145px;
}

.community-copy {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.community-copy > p:not(.section-label) {
  max-width: 880px;
  margin: 28px auto 0;
  color: rgba(9, 10, 16, 0.74);
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  font-weight: 520;
  letter-spacing: -0.024em;
  line-height: 1.52;
}

.community-copy__title-desktop {
  display: inline;
}

.community-copy__title-mobile {
  display: none;
}

.community-image {
  position: relative;
  margin-top: 65px;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.community-image::after {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.16), transparent 52%),
    linear-gradient(180deg, transparent 42%, rgba(9, 10, 16, 0.22));
  content: "";
  pointer-events: none;
}

.community-image img {
  width: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about {
  padding-top: 118px;
  padding-bottom: 118px;
}

.about-card {
  position: relative;
  padding: clamp(42px, 7vw, 90px);
  background:
    radial-gradient(circle at 12% 14%, rgba(78, 241, 210, 0.2), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(255, 92, 189, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 238, 255, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 90px rgba(28, 31, 72, 0.13);
  overflow: hidden;
  text-align: center;
}

.about-card::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(9, 10, 16, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9, 10, 16, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 75%);
  opacity: 0.46;
}

.about-card::after {
  position: absolute;
  top: -120px;
  left: 50%;
  width: 520px;
  height: 520px;
  background: rgba(78, 241, 210, 0.17);
  border-radius: 50%;
  content: "";
  filter: blur(58px);
  transform: translateX(-50%);
}

.about-card > * {
  position: relative;
  z-index: 1;
}

.about-card .section-label {
  color: var(--purple);
}

.about-card h2 {
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.about-card > p:not(.section-label) {
  max-width: 980px;
  margin: 34px auto 0;
  color: rgba(9, 10, 16, 0.74);
  font-size: clamp(1.08rem, 1.45vw, 1.3rem);
  font-weight: 520;
  letter-spacing: -0.02em;
  line-height: 1.66;
}

.about-card strong {
  display: block;
  max-width: 880px;
  margin: 42px auto 0;
  padding: 0;
  color: var(--pink);
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.founder {
  position: relative;
  display: grid;
  align-items: center;
  padding-top: 145px;
  padding-bottom: 145px;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.82fr);
  column-gap: clamp(70px, 8vw, 112px);
  row-gap: 68px;
  isolation: isolate;
}

.founder::before {
  position: absolute;
  top: 74px;
  right: -140px;
  z-index: -1;
  width: 620px;
  height: 620px;
  background:
    radial-gradient(circle, rgba(78, 241, 210, 0.17), transparent 58%),
    radial-gradient(circle at 64% 36%, rgba(255, 92, 189, 0.14), transparent 40%);
  border-radius: 50%;
  content: "";
  filter: blur(18px);
  pointer-events: none;
}

.founder-copy {
  position: relative;
  z-index: 2;
}

.founder-copy h2 {
  max-width: 680px;
  font-size: clamp(3rem, 5.15vw, 5.35rem);
}

.founder-copy h2 span {
  display: block;
  color: transparent;
  background: linear-gradient(105deg, var(--purple), var(--pink) 56%, #ff8aca);
  background-clip: text;
  -webkit-background-clip: text;
}

.founder-copy > p:not(.section-label) {
  max-width: 690px;
  margin: 34px 0 0;
  color: rgba(9, 10, 16, 0.74);
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
  font-weight: 520;
  letter-spacing: -0.022em;
  line-height: 1.62;
}

.founder-portrait {
  position: relative;
  width: min(100%, 505px);
  margin: 0 auto;
  filter: drop-shadow(0 34px 38px rgba(18, 21, 55, 0.18));
  isolation: isolate;
}

.founder-portrait::before {
  position: absolute;
  inset: -15px;
  z-index: -1;
  background:
    linear-gradient(
      135deg,
      rgba(140, 174, 255, 0.72),
      rgba(78, 241, 210, 0.82) 38%,
      rgba(255, 255, 255, 0.9) 58%,
      rgba(255, 92, 189, 0.75)
    );
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.72),
    0 22px 70px rgba(89, 109, 240, 0.2);
  content: "";
}

.founder-portrait::after {
  position: absolute;
  right: -28px;
  bottom: 3%;
  z-index: -2;
  width: 72%;
  height: 28%;
  background: rgba(128, 92, 243, 0.2);
  border-radius: 50%;
  content: "";
  filter: blur(38px);
  transform: rotate(-8deg);
}

.founder-portrait > img:first-child {
  position: relative;
  z-index: 1;
  width: 100%;
  border: 10px solid rgba(247, 247, 244, 0.96);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(9, 10, 16, 0.06);
}

.sleep-z {
  position: absolute;
  top: 8%;
  left: 46.5%;
  z-index: 4;
  width: 123px;
  filter: drop-shadow(0 7px 12px rgba(9, 10, 16, 0.12));
  pointer-events: none;
}

.founder blockquote {
  position: relative;
  display: grid;
  padding: clamp(34px, 4.5vw, 56px);
  margin: 4px 0 0;
  align-items: center;
  grid-column: 1 / -1;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.35fr);
  gap: clamp(34px, 5vw, 70px);
  background:
    radial-gradient(circle at 10% 22%, rgba(78, 241, 210, 0.16), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(255, 92, 189, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 72px rgba(28, 31, 72, 0.11);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.founder blockquote::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 41%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(9, 10, 16, 0.12), transparent);
  content: "";
}

.founder blockquote strong {
  color: var(--pink);
  font-size: clamp(1.55rem, 2.6vw, 2.75rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.048em;
}

.founder blockquote p {
  margin: 0;
  color: rgba(9, 10, 16, 0.74);
  font-size: clamp(1rem, 1.28vw, 1.2rem);
  font-weight: 520;
  letter-spacing: -0.018em;
  line-height: 1.62;
}

.contact {
  position: relative;
  padding-top: 125px;
  padding-bottom: 125px;
  isolation: isolate;
}

.contact::before {
  position: absolute;
  top: -90px;
  left: 50%;
  z-index: -1;
  width: min(900px, 82vw);
  height: 420px;
  background:
    radial-gradient(circle at 28% 48%, rgba(78, 241, 210, 0.15), transparent 36%),
    radial-gradient(circle at 72% 44%, rgba(255, 92, 189, 0.13), transparent 38%);
  content: "";
  filter: blur(30px);
  transform: translateX(-50%);
  pointer-events: none;
}

.contact-heading h2 {
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.contact-grid {
  display: grid;
  margin-top: 68px;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  --contact-accent: var(--mint);
  --contact-accent-soft: rgba(78, 241, 210, 0.14);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 245px;
  padding: 30px;
  align-items: flex-start;
  flex-direction: column;
  background:
    radial-gradient(circle at 18% 12%, var(--contact-accent-soft), transparent 38%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 28px;
  box-shadow:
    0 22px 55px rgba(28, 31, 72, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow-wrap: anywhere;
  backdrop-filter: blur(18px);
  transition:
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 180ms ease;
}

.contact-card--support {
  --contact-accent: var(--purple);
  --contact-accent-soft: rgba(128, 92, 243, 0.14);
}

.contact-card--business {
  --contact-accent: var(--pink);
  --contact-accent-soft: rgba(255, 92, 189, 0.14);
}

.contact-card::before {
  position: absolute;
  top: 0;
  right: 28px;
  left: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--contact-accent), transparent);
  border-radius: 999px;
  content: "";
  opacity: 0.72;
}

.contact-card:hover,
.contact-card:focus-visible {
  border-color: color-mix(in srgb, var(--contact-accent), transparent 58%);
  box-shadow:
    0 30px 68px rgba(28, 31, 72, 0.14),
    0 0 32px var(--contact-accent-soft);
  transform: translateY(-7px);
}

.contact-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--contact-accent);
  background: var(--contact-accent-soft);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 17px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.contact-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-card__label {
  color: var(--ink);
  font-size: 1.32rem;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.contact-card__email {
  margin-top: 9px;
  color: rgba(9, 10, 16, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

.contact-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 25px;
  color: var(--contact-accent);
  font-size: 1.65rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease;
}

.contact-card:hover .contact-card__arrow,
.contact-card:focus-visible .contact-card__arrow {
  transform: translate(3px, -3px);
}

.social-links {
  display: flex;
  margin-top: 48px;
  justify-content: center;
  gap: 17px;
}

.social-links a {
  display: grid;
  width: 55px;
  height: 55px;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(22, 25, 52, 0.06);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  box-shadow: 0 16px 34px rgba(22, 25, 52, 0.14);
  transform: translateY(-5px) rotate(-2deg);
}

.social-links img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.download {
  position: relative;
  padding: 140px 24px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}

.download::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

.download-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 650px;
  height: 650px;
  background: rgba(92, 79, 239, 0.35);
  border-radius: 50%;
  filter: blur(80px);
  transform: translate(-50%, -50%);
}

.download-content {
  position: relative;
  z-index: 2;
  max-width: 930px;
  margin: 0 auto;
}

.download-icon {
  width: 86px;
  margin: 0 auto 25px;
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(78, 241, 210, 0.18);
}

.download .section-label {
  color: var(--mint);
}

.download h2 {
  font-size: clamp(3rem, 6vw, 6rem);
}

.download-content > p:not(.section-label) {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
}

.store-links--centered {
  justify-content: center;
}

.site-footer {
  display: flex;
  width: min(var(--content), 540px);
  padding: 44px 0 34px;
  margin: 0 auto;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

.brand--footer img {
  width: 42px;
  height: 42px;
}

.brand--footer span {
  font-size: 1.7rem;
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 0.8rem;
  font-weight: 800;
}

.site-footer__legal a,
.site-footer__legal span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__legal span {
  color: rgba(9, 10, 16, 0.64);
}

.site-footer__legal a:hover,
.site-footer__legal a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.copyright {
  margin: 0;
  color: rgba(9, 10, 16, 0.42);
  font-size: 0.74rem;
  text-align: center;
}

.image-missing {
  display: grid;
  min-height: 220px;
  place-items: center;
  color: rgba(9, 10, 16, 0.55);
  background:
    linear-gradient(135deg, rgba(78, 241, 210, 0.18), rgba(140, 174, 255, 0.2)),
    var(--white);
  border: 1px dashed rgba(9, 10, 16, 0.25);
  border-radius: inherit;
  font-weight: 850;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

[data-reveal][data-delay="1"] {
  transition-delay: 120ms;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-phone-front {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(-2deg);
  }
  50% {
    transform: translate(-50%, -53%) rotate(-0.5deg);
  }
}

@keyframes hero-phone-back {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(4deg);
  }
  50% {
    transform: translate(-50%, -47%) rotate(2.5deg);
  }
}

@keyframes timeline-preview-left-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-12px) rotate(-2.5deg);
  }
}

@keyframes timeline-preview-center-float {
  0%,
  100% {
    transform: translateY(-8px);
  }
  50% {
    transform: translateY(-22px);
  }
}

@keyframes timeline-preview-center-float-mobile {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes timeline-preview-right-float {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-12px) rotate(2.5deg);
  }
}

@keyframes note-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-11px) rotate(1deg);
  }
}

@keyframes title-particles {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(-4px, 2px, 0) rotate(-1deg) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate3d(11px, -10px, 0) rotate(1.4deg) scale(1.05);
  }
}

@keyframes title-aura {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.84;
    transform: scale(1.04);
  }
}

@keyframes cue-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

@keyframes living-room-strip-grid {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 54px 54px, 54px 54px;
  }
}

@keyframes living-room-strip-lamp {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.88;
    transform: scale(1.04);
  }
}

@keyframes living-room-strip-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes farewell-moment-pulse {
  0%,
  100% {
    opacity: 0.48;
    filter: brightness(0.92);
  }
  50% {
    opacity: 0.92;
    filter: brightness(1.18);
  }
}

@keyframes dream-machine-float {
  0%,
  100% {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  50% {
    opacity: 0.74;
    transform: translate3d(0, -11px, 0) scale(1.08);
  }
}

@keyframes cheese-shutter-flash {
  0%,
  18% {
    opacity: 0;
  }
  24% {
    opacity: 1;
  }
  36% {
    opacity: 0.82;
  }
  100% {
    opacity: 0;
  }
}

@keyframes cheese-title-exposure {
  0% {
    filter: brightness(1);
    transform: scale(1);
  }
  30% {
    filter: brightness(1.32);
    transform: scale(1.09);
  }
  100% {
    filter: brightness(1);
    transform: scale(1);
  }
}

@keyframes signal-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-33.333% - 11px));
  }
}

@keyframes concept-grid-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 54px 54px, 54px 54px;
  }
}

@keyframes concept-node-float {
  0%,
  100% {
    opacity: 0.52;
    transform: translate3d(0, 0, 0) scale(0.92);
  }
  50% {
    opacity: 0.82;
    transform: translate3d(var(--node-x), var(--node-y), 0) scale(1.08);
  }
}

@keyframes signal-light-panel {
  0%,
  18%,
  36% {
    background:
      radial-gradient(circle at 50% 50%, rgba(78, 241, 210, 0), transparent 46%),
      linear-gradient(180deg, #020306 0%, #05070c 52%, #020306 100%);
  }
  10%,
  28% {
    background:
      radial-gradient(circle at 50% 50%, rgba(78, 241, 210, 0.36), transparent 46%),
      linear-gradient(180deg, #041311 0%, #071b17 52%, #041311 100%);
  }
  52%,
  100% {
    background:
      radial-gradient(circle at 50% 50%, rgba(78, 241, 210, 0.22), transparent 50%),
      linear-gradient(180deg, #04100f 0%, #061712 52%, #04100f 100%);
  }
}

@keyframes signal-light-glow {
  0%,
  18%,
  36% {
    opacity: 0.2;
    filter: drop-shadow(0 0 0 rgba(78, 241, 210, 0));
  }
  10%,
  28% {
    opacity: 0.62;
    filter: drop-shadow(0 0 12px rgba(78, 241, 210, 0.46));
  }
  52%,
  100% {
    opacity: 0.42;
    filter: drop-shadow(0 0 8px rgba(78, 241, 210, 0.24));
  }
}

@keyframes signal-light-line {
  0%,
  18%,
  36% {
    opacity: 0.16;
    box-shadow: none;
  }
  10%,
  28% {
    opacity: 1;
    box-shadow: 0 0 24px rgba(78, 241, 210, 0.72);
  }
  52%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 18px rgba(78, 241, 210, 0.32);
  }
}

@keyframes signal-light-title {
  0%,
  18%,
  36% {
    color: rgba(78, 241, 210, 0.32);
    text-shadow: none;
  }
  10%,
  28% {
    color: var(--mint);
    text-shadow:
      0 0 10px rgba(78, 241, 210, 0.86),
      0 0 32px rgba(78, 241, 210, 0.56),
      0 0 68px rgba(78, 241, 210, 0.28);
  }
  52%,
  100% {
    color: var(--mint);
    text-shadow:
      0 0 12px rgba(78, 241, 210, 0.44),
      0 0 42px rgba(78, 241, 210, 0.22);
  }
}

@keyframes signal-particles-float {
  0%,
  100% {
    background-position:
      8% 34%,
      78% 42%,
      36% 16%;
    transform: translate3d(0, 0, 0);
  }
  50% {
    background-position:
      13% 26%,
      72% 50%,
      42% 22%;
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes privacy-grid-drift {
  from {
    background-position:
      0 0,
      0 0,
      0 0,
      0 0;
  }
  to {
    background-position:
      52px 52px,
      52px 52px,
      0 0,
      0 0;
  }
}

@keyframes privacy-scan-line {
  0%,
  100% {
    opacity: 0.28;
    transform: translate(-50%, -50%) scaleX(0.82);
  }
  50% {
    opacity: 0.74;
    transform: translate(-50%, -50%) scaleX(1.03);
  }
}

@keyframes privacy-icon-float {
  0%,
  100% {
    opacity: 0.3;
    transform: translate3d(0, 0, 0) rotate(var(--icon-rotate));
  }
  50% {
    opacity: 0.5;
    transform: translate3d(var(--icon-x), var(--icon-y), 0) rotate(calc(var(--icon-rotate) + 4deg));
  }
}

@keyframes warp-field-pulse {
  0%,
  100% {
    opacity: 0.94;
  }
  50% {
    opacity: 0.82;
  }
}

@keyframes warp-horizon-drift {
  0%,
  100% {
    opacity: 0.82;
    transform: scale(1);
  }
  50% {
    opacity: 0.68;
    transform: scale(1.02);
  }
}

@keyframes year-marker-drift {
  0% {
    transform: translate3d(112vw, 0, 0);
  }
  50% {
    transform: translate3d(48vw, -10px, 0);
  }
  100% {
    transform: translate3d(-220px, 0, 0);
  }
}

@keyframes timeline-gradient-flow {
  0%,
  100% {
    background-position:
      0% 30%,
      95% 20%,
      46% 92%,
      0 0;
    filter: saturate(1);
  }
  50% {
    background-position:
      72% 8%,
      22% 68%,
      84% 36%,
      0 0;
    filter: saturate(1.12);
  }
}

@keyframes carousel-left-to-right {
  from {
    transform: translateX(calc(-50% - 9px));
  }
  to {
    transform: translateX(0);
  }
}

@keyframes phone-bob {
  0%,
  100% {
    translate: 0 3px;
  }
  50% {
    translate: 0 -5px;
  }
}

@media (max-width: 1080px) {
  :root {
    --content: min(900px, calc(100% - 36px));
  }

  .site-header {
    padding-right: 22px;
    padding-left: 22px;
  }

  .site-nav {
    gap: 20px;
  }

  .hero {
    min-height: auto;
    padding: 140px 24px 70px;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
  }

  .eyebrow,
  .store-links,
  .launch-note {
    justify-content: center;
  }

  .hero-devices {
    min-height: 670px;
    margin-top: -15px;
  }

  .hero-phone--profile {
    left: 43%;
  }

  .hero-phone--timeline {
    left: 61%;
  }

  .hero-note--now {
    left: 10%;
  }

  .hero-note--forever {
    right: 9%;
  }

  .scroll-cue {
    display: none;
  }

  .timeline-copy {
    max-width: 760px;
  }

  .timeline-stage {
    width: min(100%, 860px);
    gap: 24px;
  }

  .timeline-phone {
    width: 220px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-key-art {
    width: min(100%, 500px);
    margin: 0 auto;
  }

  .comparison-card img {
    height: 100%;
    object-fit: cover;
  }

  .living-room-signal__window {
    right: 5%;
  }

  .living-room-signal__sofa {
    right: 22%;
  }

}

@media (max-width: 760px) {
  :root {
    --content: calc(100% - 28px);
    --radius-xl: 30px;
    --radius-lg: 27px;
  }

  .site-header {
    height: 72px;
    padding: 0 16px;
  }

  .site-header.is-scrolled {
    height: 64px;
  }

  .brand img {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .brand span {
    font-size: 1.25rem;
  }

  .header-trailer {
    position: relative;
    z-index: 102;
    display: inline-flex;
    min-height: 40px;
    padding: 0;
    margin-right: 10px;
    margin-left: auto;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.78rem;
    font-weight: 820;
    letter-spacing: -0.02em;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
    white-space: nowrap;
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .header-trailer__play {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    color: var(--white);
    background: #ff5661;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 50%;
    box-shadow:
      0 5px 13px rgba(255, 86, 97, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.34);
  }

  .header-trailer__play svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  body.menu-open .header-trailer {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    visibility: hidden;
  }

  .menu-toggle {
    position: relative;
    z-index: 103;
    display: grid;
    width: 46px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: 13px;
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
    transition: transform 180ms ease;
  }

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

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    padding: 100px 24px 42px;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    background: rgba(201, 249, 223, 0.97);
    backdrop-filter: blur(18px);
    font-size: 1.55rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-download {
    margin-top: 6px;
    font-size: 0.95rem;
  }

  .hero {
    padding: 118px 16px 34px;
    gap: 0;
  }

  .hero h1 {
    width: 100%;
  }

  .wordmark {
    font-size: clamp(3.3rem, 15vw, 4.3rem);
    letter-spacing: -0.07em;
    text-shadow:
      3.5px 3.5px 0 var(--pink),
      -1.5px -1.5px 0 var(--mint);
  }

  .hero h1 small {
    margin-top: 18px;
    font-size: clamp(1.55rem, 8vw, 2.2rem);
  }

  .hero-copy .store-links {
    margin-top: 50px;
  }

  .store-link {
    height: 47px;
  }

  .store-link:first-child {
    width: 130px;
  }

  .store-link:last-child {
    width: 151px;
  }

  .hero-devices {
    min-height: 530px;
    margin: -2px -16px 0;
  }

  .hero-phone--profile {
    top: 56%;
    left: 38%;
    width: 220px;
  }

  .hero-phone--timeline {
    top: 46%;
    left: 70%;
    width: 208px;
  }

  .device-orbit--one {
    width: 350px;
    height: 350px;
  }

  .device-orbit--two {
    width: 286px;
    height: 286px;
  }

  .hero-note {
    display: flex;
    box-sizing: border-box;
    min-width: 0;
    width: 128px;
    padding: 7px 9px;
    gap: 7px;
    border-radius: 13px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.68),
      0 12px 28px rgba(35, 42, 84, 0.16);
    backdrop-filter: blur(16px) saturate(145%);
  }

  .hero-note > span {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    border-radius: 8px;
    font-size: 0.6rem;
  }

  .hero-note b {
    font-size: 0.58rem;
    line-height: 1.05;
  }

  .hero-note--now {
    top: 28%;
    left: 26px;
  }

  .hero-note--forever {
    right: 26px;
    bottom: 17%;
  }

  .hero-note--forever > span {
    font-size: 1rem;
  }

  .signal {
    padding: 21px 0;
  }

  .signal-track {
    gap: 25px;
  }

  .signal-track span {
    font-size: 1.45rem;
  }

  .farewell-signal {
    min-height: 230px;
    padding: 0 18px;
  }

  .dream-machine-signal {
    min-height: 224px;
    padding: 0 16px;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.06), transparent 15%),
      radial-gradient(circle at 18% 72%, rgba(128, 92, 243, 0.2), transparent 26%),
      radial-gradient(circle at 82% 24%, rgba(78, 241, 210, 0.18), transparent 22%),
      linear-gradient(145deg, #04050c 0%, #13162a 56%, #05060b 100%);
  }

  .dream-machine-signal::before {
    position: absolute;
    inset: 18px 16px 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(78, 241, 210, 0.04);
    content: "";
  }

  .dream-machine-signal::after {
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: min(274px, calc(100% - 42px));
    height: 60px;
    background: radial-gradient(circle, rgba(128, 92, 243, 0.24), rgba(128, 92, 243, 0) 72%);
    border-radius: 999px;
    content: "";
    opacity: 0.74;
    transform: translateX(-50%);
  }

  .dream-machine-signal__scene::before {
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 1px, transparent 1.7px) 0 0 / 64px 58px,
      radial-gradient(circle, rgba(78, 241, 210, 0.13) 0 1px, transparent 1.9px) 28px 18px / 102px 84px;
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    opacity: 0.32;
  }

  .dream-machine-signal__title {
    width: min(100%, 314px);
    font-size: clamp(1.76rem, 7.4vw, 2.26rem);
    line-height: 0.93;
    letter-spacing: -0.058em;
    white-space: normal;
  }

  .dream-machine-signal__title-desktop {
    display: none;
  }

  .dream-machine-signal__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .dream-machine-signal__laptop {
    right: 50%;
    bottom: 20px;
    width: 172px;
    height: 114px;
    opacity: 0.78;
    border-radius: 16px 16px 6px 6px;
    box-shadow:
      inset 0 0 30px rgba(78, 241, 210, 0.05),
      0 0 34px rgba(128, 92, 243, 0.12);
    transform: translateX(50%) perspective(480px) rotateY(-7deg) rotateX(4deg);
  }

  .dream-machine-signal__laptop::before {
    top: 10px;
    right: 10px;
    bottom: 10px;
    left: 10px;
    border-radius: 8px;
  }

  .dream-machine-signal__laptop::after {
    right: -18px;
    bottom: -10px;
    left: -18px;
    height: 10px;
  }

  .dream-machine-signal__laptop span {
    width: 22px;
    height: 28px;
  }

  .dream-machine-signal__idea {
    width: 7px;
    height: 7px;
    opacity: 0.62;
  }

  .dream-machine-signal__idea--one {
    top: 28%;
    left: 20%;
  }

  .dream-machine-signal__idea--two {
    bottom: 30%;
    left: 26%;
    width: 6px;
    height: 6px;
  }

  .dream-machine-signal__idea--three {
    top: 24%;
    right: 22%;
    width: 5px;
    height: 5px;
  }

  .dream-machine-signal__line {
    bottom: 32%;
    left: 14%;
    width: 30%;
    opacity: 0.56;
  }

  .dream-machine-signal__title {
    font-size: clamp(1.76rem, 7.4vw, 2.26rem);
  }

  .time-travel-signal {
    min-height: 208px;
    padding: 0 16px;
  }

  .time-travel-signal__title {
    width: min(100%, 320px);
    padding: 0 12px;
    font-size: clamp(1.76rem, 7.4vw, 2.3rem);
    line-height: 0.94;
    white-space: normal;
  }

  .time-travel-signal__title-desktop {
    display: none;
  }

  .time-travel-signal__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .privacy-signal {
    min-height: 208px;
    padding: 0 16px;
  }

  .privacy-signal::before {
    background-size:
      36px 36px,
      36px 36px,
      100% 100%,
      100% 100%;
    opacity: 0.46;
  }

  .privacy-signal::after {
    width: min(340px, calc(100% - 38px));
    opacity: 0.52;
  }

  .privacy-signal__icons {
    opacity: 0.92;
  }

  .privacy-signal__icon {
    width: 50px;
    height: 50px;
    opacity: 0.34;
    filter: drop-shadow(0 0 10px rgba(78, 241, 210, 0.14));
  }

  .privacy-signal__icon--lock {
    top: 18px;
    left: 8%;
  }

  .privacy-signal__icon--shield {
    top: 18px;
    right: 8%;
    width: 56px;
    height: 56px;
  }

  .privacy-signal__icon--check {
    bottom: 20px;
    left: 18%;
    width: 42px;
    height: 42px;
  }

  .privacy-signal__icon--heart {
    right: 18%;
    bottom: 18px;
    width: 46px;
    height: 46px;
  }

  .privacy-signal__title {
    width: min(100%, 320px);
    padding: 0 12px;
    font-size: clamp(1.84rem, 7.8vw, 2.4rem);
    line-height: 0.94;
    white-space: normal;
  }

  .privacy-signal__title-desktop {
    display: none;
  }

  .privacy-signal__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .concept-signal {
    min-height: 214px;
    padding: 0 16px;
    background:
      radial-gradient(circle at 50% 44%, rgba(78, 241, 210, 0.2), transparent 33%),
      radial-gradient(circle at 16% 76%, rgba(255, 92, 189, 0.14), transparent 24%),
      radial-gradient(circle at 85% 19%, rgba(128, 92, 243, 0.16), transparent 26%),
      linear-gradient(150deg, #030506 0%, #06100e 50%, #020306 100%);
  }

  .concept-signal::before {
    background-size: 34px 34px;
    opacity: 0.34;
  }

  .concept-signal::after {
    width: min(340px, calc(100% - 34px));
    height: 104px;
    opacity: 0.66;
    box-shadow:
      inset 0 0 28px rgba(78, 241, 210, 0.06),
      0 0 38px rgba(78, 241, 210, 0.1);
  }

  .concept-signal__field::before,
  .concept-signal__field::after {
    width: min(300px, 78vw);
    opacity: 0.32;
  }

  .concept-signal__node {
    width: 8px;
    height: 8px;
    box-shadow:
      0 0 0 6px rgba(78, 241, 210, 0.08),
      0 0 22px rgba(78, 241, 210, 0.38);
  }

  .concept-signal__node--one {
    top: 26%;
    left: 12%;
  }

  .concept-signal__node--two {
    top: 22%;
    right: 14%;
    box-shadow:
      0 0 0 6px rgba(255, 92, 189, 0.08),
      0 0 22px rgba(255, 92, 189, 0.32);
  }

  .concept-signal__node--three {
    bottom: 23%;
    left: 18%;
  }

  .concept-signal__node--four {
    right: 17%;
    bottom: 24%;
    box-shadow:
      0 0 0 6px rgba(128, 92, 243, 0.08),
      0 0 22px rgba(128, 92, 243, 0.34);
  }

  .concept-signal__title {
    width: min(100%, 320px);
    font-size: clamp(1.76rem, 7.4vw, 2.16rem);
    line-height: 0.94;
    white-space: normal;
    letter-spacing: -0.055em;
  }

  .concept-signal__title-desktop {
    display: none;
  }

  .concept-signal__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .concept-signal__title::after {
    right: 12%;
    bottom: -18px;
    left: 12%;
    opacity: 0.68;
  }

  .dream-machine-signal__laptop {
    right: -74px;
    width: 210px;
    height: 138px;
    opacity: 0.42;
  }

  .farewell-signal__title {
    width: min(100%, 308px);
    font-size: clamp(1.86rem, 7.8vw, 2.38rem);
    line-height: 0.93;
    white-space: normal;
  }

  .farewell-signal__title-desktop {
    display: none;
  }

  .farewell-signal__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
  }

  .farewell-signal__path {
    right: 3%;
    left: 3%;
  }

  .cheese-signal {
    min-height: 214px;
    padding: 0 16px;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 16%),
      radial-gradient(circle at 16% 74%, rgba(78, 241, 210, 0.16), transparent 25%),
      radial-gradient(circle at 84% 26%, rgba(255, 92, 189, 0.15), transparent 24%),
      linear-gradient(145deg, #04050a 0%, #111523 54%, #05060b 100%);
  }

  .cheese-signal::before {
    position: absolute;
    inset: 18px 16px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(78, 241, 210, 0.04);
    content: "";
  }

  .cheese-signal::after {
    position: absolute;
    left: 50%;
    bottom: 16px;
    width: min(264px, calc(100% - 44px));
    height: 58px;
    background: radial-gradient(circle, rgba(78, 241, 210, 0.18), rgba(78, 241, 210, 0) 72%);
    border-radius: 999px;
    content: "";
    opacity: 0.74;
    transform: translateX(-50%);
  }

  .cheese-signal__field::before {
    top: -30%;
    bottom: -30%;
    left: -38%;
    width: 42%;
    filter: blur(12px);
  }

  .cheese-signal__field::after {
    background-size: 34px 34px;
    mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
  }

  .cheese-signal__title {
    width: min(100%, 308px);
    font-size: clamp(1.82rem, 7.8vw, 2.34rem);
    line-height: 0.93;
    letter-spacing: -0.06em;
    white-space: normal;
  }

  .cheese-signal__title-desktop {
    display: none;
  }

  .cheese-signal__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
    position: relative;
  }

  .cheese-signal__title-mobile .cheese-signal__word {
    padding-right: 0;
    padding-bottom: 0.14em;
  }

  .cheese-signal__title-mobile .cheese-signal__camera {
    top: auto;
    right: -0.9em;
    bottom: -0.46em;
    width: 0.58em;
  }

  .cheese-signal__word {
    text-shadow:
      0 0 18px rgba(78, 241, 210, 0.24),
      2px 2px 0 rgba(255, 92, 189, 0.64);
  }

  .cheese-signal__camera {
    top: -0.38em;
    right: 0.04em;
    width: 0.32em;
  }

  .cheese-signal__corner {
    width: 42px;
    height: 26px;
    opacity: 0.42;
  }

  .cheese-signal__corner--top-left {
    top: 28px;
    left: 24px;
  }

  .cheese-signal__corner--top-right {
    top: 28px;
    right: 24px;
  }

  .cheese-signal__corner--bottom-left {
    bottom: 28px;
    left: 24px;
  }

  .cheese-signal__corner--bottom-right {
    right: 24px;
    bottom: 28px;
  }

  .cheese-signal__flash {
    top: 27%;
    left: 18%;
    width: 6px;
    height: 6px;
  }

  .cheese-signal__flash::before {
    width: 66px;
  }

  .cheese-signal__flash::after {
    height: 66px;
  }

  .section-shell {
    padding: 90px 0;
  }

  .section-heading h2,
  .timeline-copy h2,
  .privacy-intro h2,
  .community-copy h2,
  .about-card h2,
  .founder-copy h2,
  .contact-heading h2 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .circle-copy h2 {
    font-size: clamp(2.15rem, 10.5vw, 3.1rem);
  }

  .section-heading > p:not(.section-label),
  .timeline-copy > p:not(.section-label),
  .privacy-intro > p:not(.section-label),
  .circle-copy > p:not(.section-label),
  .community-copy > p:not(.section-label),
  .about-card > p:not(.section-label),
  .founder-copy > p:not(.section-label) {
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .section-heading strong,
  .timeline-copy strong,
  .privacy-intro strong,
  .circle-copy strong,
  .about-card strong {
    font-size: 1.35rem;
  }

  .signal--light-on {
    min-height: 138px;
    padding: 0 16px;
  }

  .light-signal__title {
    width: min(100%, 320px);
    font-size: clamp(1.24rem, 5vw, 1.46rem);
    line-height: 0.98;
    white-space: normal;
    letter-spacing: -0.05em;
  }

  .light-signal__title-desktop {
    display: none;
  }

  .light-signal__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3px;
  }

  .updates.section-shell {
    padding-top: 40px;
  }

  .updates {
    padding-bottom: 54px;
  }

  .updates .section-heading {
    max-width: 358px;
  }

  .updates .section-heading h2 {
    font-size: clamp(2rem, 8.3vw, 2.42rem);
    line-height: 1.05;
  }

  .updates .section-heading > p:not(.section-label) {
    max-width: 340px;
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .updates .section-heading strong {
    margin-top: 24px;
    padding-bottom: 22px;
    font-size: clamp(1.2rem, 5.2vw, 1.52rem);
  }

  .phone-carousel {
    margin-top: 2px;
  }

  .phone-carousel__track {
    padding: 18px 0 34px;
    gap: 8px;
  }

  .phone-carousel__fade {
    width: 30px;
  }

  .phone-card {
    --phone-lift: 12px;
    width: 122px;
    flex-basis: 122px;
  }

  .phone-card--2,
  .phone-card--4,
  .phone-card--6,
  .phone-card--8 {
    --phone-lift: -10px;
  }

  .phone-card--1,
  .phone-card--3,
  .phone-card--5,
  .phone-card--7,
  .phone-card--9 {
    --phone-lift: 12px;
  }

  .timeline.section-shell {
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .timeline-copy {
    max-width: 358px;
  }

  .timeline-copy h2 {
    font-size: clamp(2rem, 8.3vw, 2.42rem);
    line-height: 1.05;
  }

  .timeline-copy > p:not(.section-label) {
    max-width: 340px;
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .timeline-copy strong {
    margin-top: 24px;
    padding-bottom: 24px;
    font-size: clamp(1.2rem, 5.2vw, 1.52rem);
  }

  .circle.section-shell {
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .circle-copy {
    max-width: 358px;
  }

  .circle-copy h2 {
    font-size: clamp(2rem, 8.3vw, 2.42rem);
    line-height: 1.05;
  }

  .circle-copy > p:not(.section-label) {
    max-width: 340px;
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .circle-copy strong {
    max-width: 338px;
    margin-top: 24px;
    font-size: clamp(1.2rem, 5.2vw, 1.52rem);
    line-height: 1.22;
  }

  .privacy.section-shell {
    padding-top: 40px;
    padding-bottom: 58px;
  }

  .privacy-intro {
    max-width: 358px;
  }

  .privacy-intro h2 {
    font-size: clamp(2rem, 8.3vw, 2.42rem);
    line-height: 1.05;
  }

  .privacy-intro > p:not(.section-label) {
    max-width: 340px;
    margin-top: 18px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .privacy-intro strong {
    max-width: 338px;
    margin-top: 24px;
    font-size: clamp(1.2rem, 5.2vw, 1.52rem);
    line-height: 1.22;
  }

  .timeline-stage {
    --timeline-preview-width: 228px;
    --timeline-side-shift: calc(50vw + 32px);
    --timeline-side-drop: 82px;
    --timeline-side-balance: 8px;
    --timeline-center-top: 16px;
    --timeline-side-scale: 0.982;
    min-height: 584px;
    width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    gap: 0;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
    cursor: grab;
  }

  .timeline-stage::before {
    inset: 72px 0 26px;
    border-width: 0;
    border-radius: 0;
    box-shadow: none;
    background:
      radial-gradient(circle at 20% 38%, rgba(78, 241, 210, 0.14), transparent 28%),
      radial-gradient(circle at 80% 42%, rgba(255, 92, 189, 0.12), transparent 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  }

  .timeline-preview {
    position: absolute;
    top: var(--timeline-center-top);
    left: 50%;
    width: var(--timeline-preview-width);
    cursor: pointer;
    transition:
      transform 1120ms cubic-bezier(0.16, 1, 0.3, 1),
      opacity 980ms ease;
    will-change: transform, opacity;
  }

  .timeline-stage.is-dragging {
    cursor: grabbing;
  }

  .timeline-preview.is-left,
  .timeline-preview.is-right {
    z-index: 2;
    opacity: 0.95;
  }

  .timeline-preview.is-left {
    transform: translate3d(
        calc(
          -50% - var(--timeline-side-shift) - var(--timeline-side-balance)
        ),
        var(--timeline-side-drop),
        0
      )
      scale(var(--timeline-side-scale));
  }

  .timeline-preview.is-center {
    z-index: 5;
    opacity: 1;
    transform: translate3d(-50%, 0, 0) scale(1);
  }

  .timeline-preview.is-right {
    transform: translate3d(
        calc(
          -50% + var(--timeline-side-shift) + var(--timeline-side-balance)
        ),
        var(--timeline-side-drop),
        0
      )
      scale(var(--timeline-side-scale));
  }

  .timeline-phone,
  .timeline-preview .timeline-phone {
    width: 100%;
  }

  .timeline-phone--left,
  .timeline-phone--center,
  .timeline-phone--right {
    margin-top: 0;
    animation: none;
    transform-origin: center bottom;
  }

  .timeline-stage.is-in-view .timeline-preview.is-center .timeline-phone {
    animation: timeline-preview-center-float-mobile 8.4s ease-in-out infinite;
  }

  .timeline-stage.is-dragging .timeline-phone {
    animation-play-state: paused;
  }

  .privacy-layout {
    max-width: 358px;
    margin: 34px auto 0;
    gap: 26px;
  }

  .privacy-key-art {
    min-height: 286px;
  }

  .privacy-key-art__image {
    width: min(282px, 84%);
  }

  .privacy-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .privacy-list li {
    min-height: 0;
    padding: 16px 16px 15px;
    border-radius: 22px;
    grid-template-columns: 28px 1fr;
    gap: 10px;
  }

  .privacy-list li::before {
    top: -40px;
    right: -46px;
    width: 98px;
    height: 98px;
  }

  .privacy-list li > span {
    width: 24px;
    height: 24px;
    border-radius: 7px;
    font-size: 0.88rem;
  }

  .privacy-list p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .privacy-list b {
    margin-bottom: 3px;
    font-size: 0.91rem;
  }

  .comparison-carousel {
    max-width: 358px;
    padding: 14px;
    margin: 34px auto 0;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 249, 255, 0.82));
    border: 1px solid rgba(10, 14, 27, 0.08);
    border-radius: 26px;
    box-shadow: 0 20px 48px rgba(24, 27, 58, 0.08);
    gap: 12px;
    overflow: hidden;
    isolation: isolate;
  }

  .comparison-carousel::before {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 12% 18%, rgba(78, 241, 210, 0.16), transparent 28%),
      radial-gradient(circle at 88% 84%, rgba(255, 92, 189, 0.12), transparent 26%);
    content: "";
    pointer-events: none;
  }

  .comparison-carousel__header,
  .comparison-carousel__viewport,
  .comparison-carousel__controls {
    position: relative;
    z-index: 1;
  }

  .comparison-carousel__header {
    padding: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .comparison-carousel__header > div {
    padding: 12px 14px;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(10, 14, 27, 0.06);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(24, 27, 58, 0.06);
    text-align: left;
  }

  .comparison-carousel__header > div:first-child {
    border-color: rgba(78, 241, 210, 0.34);
    box-shadow:
      0 10px 24px rgba(24, 27, 58, 0.06),
      inset 3px 0 0 rgba(78, 241, 210, 0.9);
  }

  .comparison-carousel__header > div:last-child {
    border-color: rgba(241, 74, 100, 0.28);
    box-shadow:
      0 10px 24px rgba(24, 27, 58, 0.06),
      inset -3px 0 0 rgba(241, 74, 100, 0.88);
  }

  .comparison-carousel__header h3 {
    font-size: 0.82rem;
    line-height: 1.35;
    letter-spacing: -0.012em;
  }

  .comparison-dot {
    width: 10px;
    height: 10px;
    margin-top: 0.32rem;
  }

  .comparison-dot--safe {
    box-shadow: 0 0 0 4px rgba(78, 241, 210, 0.18);
  }

  .comparison-dot--exposed {
    box-shadow: 0 0 0 4px rgba(241, 74, 100, 0.14);
  }

  .comparison-carousel__viewport {
    border-radius: 22px;
  }

  .comparison-set {
    padding: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .comparison-set::before {
    top: 10%;
    bottom: 12%;
    background: linear-gradient(180deg, transparent, rgba(10, 14, 27, 0.14), transparent);
  }

  .comparison-set::after {
    width: 30px;
    height: 30px;
    font-size: 0.5rem;
    box-shadow: 0 10px 22px rgba(24, 27, 58, 0.09);
  }

  .comparison-card,
  .comparison-card img {
    border-radius: 18px;
  }

  .comparison-card--safe {
    padding: 2px;
    background: linear-gradient(145deg, rgba(78, 241, 210, 0.96), rgba(41, 197, 164, 0.8));
    box-shadow:
      0 12px 24px rgba(78, 241, 210, 0.16),
      0 0 0 1px rgba(255, 255, 255, 0.46);
  }

  .comparison-card--exposed {
    padding: 2px;
    background: linear-gradient(145deg, rgba(241, 74, 100, 0.92), rgba(183, 46, 77, 0.8));
    box-shadow:
      0 12px 24px rgba(241, 74, 100, 0.14),
      0 0 0 1px rgba(255, 255, 255, 0.42);
  }

  .comparison-card img {
    inset: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    object-fit: cover;
  }

  .comparison-carousel__controls {
    position: relative;
    z-index: 1;
    gap: 10px;
    margin-top: 2px;
  }

  .comparison-carousel__arrow {
    position: static;
    width: 34px;
    height: 34px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.84);
    box-shadow: 0 10px 22px rgba(24, 27, 58, 0.08);
    transform: none;
  }

  .comparison-carousel__arrow:hover {
    transform: scale(1.04);
  }

  .comparison-carousel__dots {
    gap: 6px;
  }

  .comparison-carousel__dots button {
    width: 22px;
    height: 5px;
  }

  .comparison-carousel__dots button.is-active {
    width: 34px;
  }

  .living-room-signal {
    min-height: 238px;
    padding: 0 16px;
    overflow: hidden;
    background:
      radial-gradient(circle at 50% 26%, rgba(255, 205, 122, 0.14), transparent 18%),
      radial-gradient(circle at 17% 26%, rgba(78, 241, 210, 0.16), transparent 22%),
      radial-gradient(circle at 84% 20%, rgba(255, 92, 189, 0.14), transparent 24%),
      linear-gradient(180deg, #070910 0%, #101522 52%, #08090f 100%);
  }

  .living-room-signal::before {
    position: absolute;
    inset: 20px 16px 16px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 0 1px rgba(78, 241, 210, 0.04);
    content: "";
  }

  .living-room-signal::after {
    position: absolute;
    left: 50%;
    bottom: 14px;
    width: min(280px, calc(100% - 42px));
    height: 58px;
    background: radial-gradient(circle, rgba(90, 106, 255, 0.32), rgba(90, 106, 255, 0) 70%);
    border-radius: 999px;
    content: "";
    opacity: 0.72;
    transform: translateX(-50%);
  }

  .living-room-signal__room::before {
    background-size: 38px 38px;
    mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
  }

  .living-room-signal__room::after {
    position: absolute;
    left: 50%;
    bottom: 78px;
    width: min(240px, 68vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    content: "";
    transform: translateX(-50%);
  }

  .living-room-signal__title {
    width: min(100%, 282px);
    font-size: clamp(1.78rem, 7.4vw, 2.28rem);
    line-height: 0.94;
    white-space: normal;
  }

  .living-room-signal__lamp {
    top: 34px;
    left: 18px;
    width: 86px;
    height: 58px;
    opacity: 0.82;
    transform: none;
  }

  .living-room-signal__lamp::after {
    top: 56px;
    height: 66px;
  }

  .living-room-signal__window {
    top: 28px;
    right: 16px;
    width: 130px;
    height: 86px;
    border-radius: 18px;
    opacity: 0.78;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 0 22px rgba(78, 241, 210, 0.08);
  }

  .living-room-signal__sofa {
    right: 50%;
    bottom: 32px;
    width: 184px;
    height: 58px;
    opacity: 0.78;
    border-radius: 28px 28px 18px 18px;
    transform: translateX(50%);
  }

  .living-room-signal__sofa::before,
  .living-room-signal__sofa::after {
    top: -20px;
    height: 34px;
    border-radius: 18px;
    background: rgba(119, 142, 255, 0.52);
  }

  .living-room-signal__bubble {
    width: 10px;
    height: 10px;
    opacity: 0.58;
  }

  .living-room-signal__bubble--one {
    top: 108px;
    left: 22%;
  }

  .living-room-signal__bubble--two {
    right: 22%;
    bottom: 86px;
  }

  .living-room-signal__title-desktop {
    display: none;
  }

  .living-room-signal__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .community {
    padding-top: 78px;
    padding-bottom: 95px;
  }

  .community-copy {
    max-width: 352px;
  }

  .community-copy h2 {
    font-size: clamp(2rem, 8.7vw, 2.5rem);
    line-height: 0.95;
    letter-spacing: -0.055em;
  }

  .community-copy > p:not(.section-label) {
    max-width: 336px;
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .community-copy__title-desktop {
    display: none;
  }

  .community-copy__title-mobile {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 4px;
  }

  .community-image {
    margin-top: 36px;
    border-radius: 28px;
    background-image:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(9, 10, 16, 0.14)),
      radial-gradient(circle at 50% 8%, rgba(78, 241, 210, 0.12), transparent 36%),
      url("assets/vertical_mill_poster.png"),
      url("assets/vertical_mill_poster.jpg"),
      url("assets/global-community.jpg");
    background-position: center, center, center 18%, center 18%, center;
    background-repeat: no-repeat;
    background-size: auto, auto, cover, cover, cover;
    box-shadow: 0 24px 58px rgba(28, 31, 72, 0.14);
  }

  .community-image img {
    min-height: clamp(460px, 135vw, 620px);
    opacity: 0;
  }

  .about.section-shell {
    padding-top: 82px;
    padding-bottom: 84px;
  }

  .about-card {
    max-width: 356px;
    padding: 40px 24px 38px;
    margin: 0 auto;
    background:
      radial-gradient(circle at 14% 15%, rgba(78, 241, 210, 0.18), transparent 28%),
      radial-gradient(circle at 86% 18%, rgba(255, 92, 189, 0.16), transparent 24%),
      linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(239, 243, 255, 0.93) 58%, rgba(233, 251, 245, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.88);
    border-radius: 30px;
    box-shadow:
      0 24px 56px rgba(28, 31, 72, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .about-card::before {
    background-size: 34px 34px;
    opacity: 0.34;
  }

  .about-card::after {
    top: -96px;
    width: 320px;
    height: 320px;
    opacity: 0.9;
    filter: blur(46px);
  }

  .about-card h2 {
    font-size: clamp(2.15rem, 9vw, 2.8rem);
    line-height: 0.94;
    letter-spacing: -0.06em;
  }

  .about-card > p:not(.section-label) {
    max-width: 304px;
    margin-top: 20px;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .about-card strong {
    max-width: 286px;
    margin-top: 24px;
    font-size: clamp(1.02rem, 4.4vw, 1.18rem);
    line-height: 1.42;
  }

  .founder {
    padding-top: 92px;
    padding-bottom: 96px;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .founder::before {
    top: 54px;
    right: 50%;
    width: 420px;
    height: 420px;
    opacity: 0.92;
    filter: blur(22px);
    transform: translateX(50%);
  }

  .founder-copy {
    max-width: 356px;
    margin: 0 auto;
    text-align: center;
  }

  .founder-copy h2 {
    max-width: 330px;
    margin: 0 auto;
    font-size: clamp(2.05rem, 8.8vw, 2.72rem);
    line-height: 0.95;
    letter-spacing: -0.06em;
  }

  .founder-copy h2 span {
    margin-top: 4px;
  }

  .founder-copy > p:not(.section-label) {
    max-width: 328px;
    margin: 20px auto 0;
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .founder-portrait {
    width: min(80vw, 316px);
  }

  .founder-portrait::before {
    inset: -10px;
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.74),
      0 18px 48px rgba(89, 109, 240, 0.18);
  }

  .founder-portrait::after {
    right: -18px;
    bottom: 4%;
    width: 68%;
    height: 24%;
    filter: blur(30px);
  }

  .founder-portrait > img:first-child {
    border-width: 8px;
  }

  .sleep-z {
    top: 3.5%;
    left: 47%;
    width: 92px;
  }

  .founder blockquote {
    max-width: 356px;
    padding: 26px 20px 24px;
    margin: 4px auto 0;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
    background:
      radial-gradient(circle at 14% 18%, rgba(78, 241, 210, 0.14), transparent 28%),
      radial-gradient(circle at 86% 82%, rgba(255, 92, 189, 0.12), transparent 24%),
      linear-gradient(155deg, rgba(255, 255, 255, 0.9), rgba(243, 246, 255, 0.84));
    border-radius: 28px;
    box-shadow:
      0 20px 54px rgba(28, 31, 72, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .founder blockquote::before {
    display: none;
  }

  .founder blockquote strong {
    font-size: clamp(1.16rem, 5vw, 1.46rem);
    line-height: 1.16;
  }

  .founder blockquote p {
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .contact.section-shell {
    padding-top: 88px;
    padding-bottom: 90px;
  }

  .contact::before {
    top: -24px;
    width: min(420px, 92vw);
    height: 340px;
    filter: blur(26px);
  }

  .contact-heading {
    max-width: 356px;
  }

  .contact-heading h2 {
    font-size: clamp(2.1rem, 8.9vw, 2.72rem);
    line-height: 0.95;
    letter-spacing: -0.058em;
  }

  .contact-grid {
    max-width: 356px;
    margin: 32px auto 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-card {
    min-height: 0;
    padding: 22px 58px 22px 20px;
    align-items: flex-start;
    text-align: left;
    border-radius: 26px;
  }

  .contact-card::before {
    right: 20px;
    left: 20px;
  }

  .contact-card__icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 14px;
  }

  .contact-card__icon svg {
    width: 24px;
    height: 24px;
  }

  .contact-card__label {
    font-size: 1.08rem;
    line-height: 1.04;
  }

  .contact-card__email {
    max-width: 232px;
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .contact-card__arrow {
    top: 20px;
    right: 18px;
    bottom: auto;
    font-size: 1.28rem;
  }

  .social-links {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 12px;
  }

  .social-links a {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

  .social-links img {
    width: 26px;
    height: 26px;
  }

  .download {
    padding: 96px 16px;
    background:
      radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.05), transparent 14%),
      radial-gradient(circle at 18% 30%, rgba(78, 241, 210, 0.12), transparent 24%),
      radial-gradient(circle at 82% 72%, rgba(128, 92, 243, 0.18), transparent 28%),
      linear-gradient(180deg, #090c15 0%, #11162a 54%, #06070d 100%);
  }

  .download::before {
    background-size: 15px 15px;
    mask-image: radial-gradient(circle at center, black, transparent 76%);
    opacity: 0.7;
  }

  .download-glow {
    width: 420px;
    height: 420px;
    background: rgba(92, 79, 239, 0.26);
    filter: blur(68px);
  }

  .download-content {
    max-width: 356px;
    padding: 0;
    background: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .download-icon {
    width: 72px;
    margin-bottom: 20px;
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(78, 241, 210, 0.14);
  }

  .download h2 {
    max-width: 300px;
    margin: 0 auto;
    font-size: clamp(2.1rem, 9vw, 2.72rem);
    line-height: 0.97;
    letter-spacing: -0.06em;
  }

  .download-content > p:not(.section-label) {
    max-width: 286px;
    margin: 18px auto 0;
    font-size: 0.9rem;
    line-height: 1.54;
  }

  .download .store-links--centered {
    width: 100%;
    margin-top: 28px;
    flex-direction: column;
    gap: 12px;
  }

  .download .store-link {
    height: 52px;
  }

  .download .store-link:first-child {
    width: 166px;
  }

  .download .store-link:last-child {
    width: 166px;
  }

  .site-footer {
    position: relative;
    display: flex;
    width: min(calc(100% - 32px), 356px);
    padding: 24px 18px 22px;
    margin: 0 auto 18px;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    background:
      radial-gradient(circle at 16% 18%, rgba(78, 241, 210, 0.14), transparent 28%),
      radial-gradient(circle at 84% 82%, rgba(255, 92, 189, 0.12), transparent 24%),
      linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(243, 246, 255, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 26px;
    box-shadow:
      0 18px 46px rgba(28, 31, 72, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.72);
  }

  .site-footer__legal,
  .copyright {
    text-align: center;
  }

  .site-footer .brand--footer {
    width: 100%;
    justify-content: center;
  }

  .site-footer .brand--footer img {
    width: 40px;
    height: 40px;
  }

  .site-footer .brand--footer span {
    font-size: 1.56rem;
  }

  .site-footer__legal {
    display: grid;
    width: 100%;
    max-width: 270px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .site-footer__legal a,
  .site-footer__legal span {
    display: flex;
    padding: 10px 12px;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(9, 10, 16, 0.08);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    transition:
      box-shadow 180ms ease,
      transform 180ms ease;
  }

  .site-footer__legal span {
    color: rgba(9, 10, 16, 0.62);
  }

  .site-footer__legal a:hover,
  .site-footer__legal a:focus-visible {
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(22, 25, 52, 0.1);
    transform: translateY(-1px);
  }

  .copyright {
    width: 100%;
    font-size: 0.72rem;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .header-trailer {
    margin-right: 8px;
    gap: 6px;
    font-size: 0.71rem;
  }

  .header-trailer__play {
    width: 27px;
    height: 27px;
  }

  .site-footer {
    width: min(calc(100% - 24px), 320px);
    padding: 22px 16px 20px;
    gap: 12px;
    border-radius: 24px;
  }

  .site-footer .brand--footer img {
    width: 38px;
    height: 38px;
  }

  .site-footer .brand--footer span {
    font-size: 1.42rem;
  }

  .site-footer__legal {
    max-width: 252px;
    gap: 8px;
  }

  .site-footer__legal a,
  .site-footer__legal span {
    padding: 9px 10px;
    font-size: 0.72rem;
  }

  .copyright {
    font-size: 0.68rem;
  }

  .signal--light-on {
    min-height: 118px;
    padding: 0 12px;
  }

  .light-signal__title {
    width: min(100%, 302px);
    font-size: clamp(1.02rem, 4.2vw, 1.14rem);
    line-height: 0.96;
  }

  .dream-machine-signal {
    min-height: 202px;
    padding: 0 12px;
  }

  .dream-machine-signal::before {
    inset: 16px 12px 12px;
    border-radius: 24px;
  }

  .dream-machine-signal::after {
    width: min(244px, calc(100% - 34px));
    height: 50px;
    bottom: 11px;
  }

  .dream-machine-signal__scene::before {
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.14) 0 1px, transparent 1.6px) 0 0 / 58px 52px,
      radial-gradient(circle, rgba(78, 241, 210, 0.12) 0 1px, transparent 1.8px) 24px 16px / 92px 76px;
  }

  .dream-machine-signal__title {
    width: min(100%, 278px);
    font-size: clamp(1.5rem, 6.6vw, 1.88rem);
    line-height: 0.92;
  }

  .dream-machine-signal__title-mobile {
    gap: 2px;
  }

  .farewell-signal__title {
    width: min(100%, 274px);
    font-size: clamp(1.56rem, 6.7vw, 1.94rem);
    line-height: 0.92;
  }

  .farewell-signal__title-mobile {
    gap: 2px;
  }

  .dream-machine-signal__laptop {
    bottom: 18px;
    width: 154px;
    height: 102px;
  }

  .dream-machine-signal__laptop::after {
    right: -16px;
    left: -16px;
    height: 9px;
  }

  .dream-machine-signal__laptop span {
    width: 20px;
    height: 25px;
  }

  .dream-machine-signal__idea--one {
    top: 30%;
    left: 18%;
  }

  .dream-machine-signal__idea--two {
    bottom: 32%;
    left: 24%;
  }

  .dream-machine-signal__idea--three {
    top: 25%;
    right: 19%;
  }

  .dream-machine-signal__line {
    bottom: 33%;
    left: 12%;
    width: 28%;
  }

  .cheese-signal {
    min-height: 194px;
    padding: 0 12px;
  }

  .cheese-signal::before {
    inset: 16px 12px 12px;
    border-radius: 24px;
  }

  .cheese-signal::after {
    width: min(238px, calc(100% - 32px));
    height: 48px;
    bottom: 12px;
  }

  .cheese-signal__field::after {
    background-size: 30px 30px;
  }

  .cheese-signal__title {
    width: min(100%, 274px);
    font-size: clamp(1.54rem, 6.7vw, 1.92rem);
    line-height: 0.92;
  }

  .cheese-signal__title-mobile {
    gap: 2px;
  }

  .cheese-signal__title-mobile .cheese-signal__word {
    padding-right: 0;
    padding-bottom: 0.12em;
  }

  .cheese-signal__title-mobile .cheese-signal__camera {
    top: auto;
    right: -0.8em;
    bottom: -0.42em;
    width: 0.56em;
  }

  .cheese-signal__corner {
    width: 38px;
    height: 24px;
  }

  .cheese-signal__corner--top-left {
    top: 24px;
    left: 18px;
  }

  .cheese-signal__corner--top-right {
    top: 24px;
    right: 18px;
  }

  .cheese-signal__corner--bottom-left {
    bottom: 24px;
    left: 18px;
  }

  .cheese-signal__corner--bottom-right {
    right: 18px;
    bottom: 24px;
  }

  .cheese-signal__flash {
    top: 28%;
    left: 17%;
  }

  .cheese-signal__flash::before {
    width: 58px;
  }

  .cheese-signal__flash::after {
    height: 58px;
  }

  .time-travel-signal {
    min-height: 180px;
    padding: 0 12px;
  }

  .time-travel-signal__title {
    width: min(100%, 286px);
    padding: 0 6px;
    font-size: clamp(1.46rem, 6.3vw, 1.72rem);
    line-height: 0.93;
  }

  .time-travel-signal__title-mobile {
    gap: 2px;
  }

  .privacy-signal {
    min-height: 180px;
    padding: 0 12px;
  }

  .privacy-signal::before {
    background-size:
      32px 32px,
      32px 32px,
      100% 100%,
      100% 100%;
    opacity: 0.42;
  }

  .privacy-signal::after {
    width: min(304px, calc(100% - 30px));
    opacity: 0.48;
  }

  .privacy-signal__icon {
    width: 44px;
    height: 44px;
    opacity: 0.3;
  }

  .privacy-signal__icon--lock {
    top: 17px;
    left: 6%;
  }

  .privacy-signal__icon--shield {
    top: 16px;
    right: 6%;
    width: 50px;
    height: 50px;
  }

  .privacy-signal__icon--check {
    left: 14%;
    bottom: 17px;
    width: 38px;
    height: 38px;
  }

  .privacy-signal__icon--heart {
    right: 14%;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }

  .privacy-signal__title {
    width: min(100%, 286px);
    padding: 0 6px;
    font-size: clamp(1.56rem, 6.85vw, 1.84rem);
    line-height: 0.93;
  }

  .privacy-signal__title-mobile {
    gap: 2px;
  }

  .concept-signal {
    min-height: 188px;
    padding: 0 12px;
  }

  .concept-signal::before {
    background-size: 30px 30px;
    opacity: 0.3;
  }

  .concept-signal::after {
    width: min(304px, calc(100% - 28px));
    height: 94px;
    opacity: 0.62;
  }

  .concept-signal__field::before,
  .concept-signal__field::after {
    width: min(276px, 76vw);
    opacity: 0.28;
  }

  .concept-signal__node {
    width: 7px;
    height: 7px;
    box-shadow:
      0 0 0 5px rgba(78, 241, 210, 0.08),
      0 0 18px rgba(78, 241, 210, 0.34);
  }

  .concept-signal__title {
    width: min(100%, 286px);
    font-size: clamp(1.5rem, 6.45vw, 1.82rem);
    line-height: 0.93;
  }

  .concept-signal__title-mobile {
    gap: 2px;
  }

  .concept-signal__title::after {
    right: 13%;
    bottom: -16px;
    left: 13%;
  }

  .living-room-signal {
    min-height: 214px;
    padding: 0 12px;
  }

  .living-room-signal::before {
    inset: 18px 12px 14px;
    border-radius: 24px;
  }

  .living-room-signal::after {
    width: min(248px, calc(100% - 34px));
    height: 50px;
    bottom: 12px;
  }

  .living-room-signal__room::before {
    background-size: 34px 34px;
  }

  .living-room-signal__lamp {
    top: 30px;
    left: 12px;
    width: 76px;
    height: 52px;
  }

  .living-room-signal__lamp::after {
    top: 50px;
    height: 58px;
  }

  .living-room-signal__window {
    top: 26px;
    right: 12px;
    width: 118px;
    height: 78px;
    border-radius: 16px;
  }

  .living-room-signal__sofa {
    bottom: 28px;
    width: 170px;
    height: 52px;
    border-radius: 26px 26px 16px 16px;
  }

  .living-room-signal__sofa::before,
  .living-room-signal__sofa::after {
    top: -18px;
    height: 30px;
  }

  .living-room-signal__bubble {
    width: 9px;
    height: 9px;
  }

  .living-room-signal__bubble--one {
    top: 102px;
    left: 20%;
  }

  .living-room-signal__bubble--two {
    right: 20%;
    bottom: 78px;
  }

  .living-room-signal__title {
    width: min(100%, 252px);
    font-size: clamp(1.52rem, 6.5vw, 1.86rem);
    line-height: 0.93;
  }

  .living-room-signal__title-mobile {
    gap: 2px;
  }

  .community {
    padding-top: 72px;
    padding-bottom: 88px;
  }

  .community-copy {
    max-width: 320px;
  }

  .community-copy h2 {
    font-size: clamp(1.82rem, 8vw, 2.1rem);
  }

  .community-copy > p:not(.section-label) {
    max-width: 304px;
    margin-top: 18px;
    font-size: 0.88rem;
    line-height: 1.54;
  }

  .community-copy__title-mobile {
    gap: 2px;
  }

  .community-image {
    margin-top: 30px;
    border-radius: 24px;
    background-position: center, center, center 16%, center 16%, center;
  }

  .community-image img {
    min-height: clamp(430px, 132vw, 560px);
  }

  .about.section-shell {
    padding-top: 72px;
    padding-bottom: 76px;
  }

  .about-card {
    max-width: 324px;
    padding: 36px 20px 34px;
    border-radius: 26px;
  }

  .about-card::before {
    background-size: 30px 30px;
    opacity: 0.3;
  }

  .about-card::after {
    top: -82px;
    width: 280px;
    height: 280px;
    filter: blur(40px);
  }

  .about-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.24rem);
    line-height: 0.94;
  }

  .about-card > p:not(.section-label) {
    max-width: 286px;
    margin-top: 18px;
    font-size: 0.88rem;
    line-height: 1.54;
  }

  .about-card strong {
    max-width: 272px;
    margin-top: 22px;
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .founder {
    padding-top: 82px;
    padding-bottom: 86px;
    gap: 32px;
  }

  .founder::before {
    top: 48px;
    width: 360px;
    height: 360px;
    filter: blur(18px);
  }

  .founder-copy {
    max-width: 324px;
  }

  .founder-copy h2 {
    max-width: 302px;
    font-size: clamp(1.86rem, 7.9vw, 2.18rem);
    line-height: 0.94;
  }

  .founder-copy > p:not(.section-label) {
    max-width: 294px;
    margin-top: 18px;
    font-size: 0.88rem;
    line-height: 1.54;
  }

  .founder-portrait {
    width: min(79vw, 286px);
  }

  .founder-portrait::before {
    inset: -9px;
  }

  .founder-portrait::after {
    right: -14px;
    filter: blur(26px);
  }

  .founder-portrait > img:first-child {
    border-width: 7px;
  }

  .sleep-z {
    width: 82px;
  }

  .founder blockquote {
    max-width: 324px;
    padding: 22px 18px 22px;
    gap: 16px;
    border-radius: 24px;
  }

  .founder blockquote strong {
    font-size: 1.06rem;
    line-height: 1.14;
  }

  .founder blockquote p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .contact.section-shell {
    padding-top: 80px;
    padding-bottom: 82px;
  }

  .contact::before {
    top: -14px;
    width: min(360px, calc(100vw - 18px));
    height: 292px;
    filter: blur(22px);
  }

  .contact-heading {
    max-width: 320px;
  }

  .contact-heading h2 {
    font-size: clamp(1.88rem, 8vw, 2.16rem);
    line-height: 0.94;
  }

  .contact-grid {
    max-width: 320px;
    margin-top: 28px;
    gap: 12px;
  }

  .contact-card {
    padding: 20px 52px 20px 18px;
    border-radius: 22px;
  }

  .contact-card::before {
    right: 18px;
    left: 18px;
  }

  .contact-card__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 13px;
  }

  .contact-card__icon svg {
    width: 22px;
    height: 22px;
  }

  .contact-card__label {
    font-size: 1rem;
  }

  .contact-card__email {
    max-width: 214px;
    font-size: 0.78rem;
  }

  .contact-card__arrow {
    top: 18px;
    right: 16px;
    font-size: 1.18rem;
  }

  .social-links {
    margin-top: 24px;
    gap: 10px;
  }

  .social-links a {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .social-links img {
    width: 24px;
    height: 24px;
  }

  .download {
    padding: 86px 12px;
  }

  .download::before {
    background-size: 14px 14px;
  }

  .download-glow {
    width: 360px;
    height: 360px;
    filter: blur(60px);
  }

  .download-content {
    max-width: 320px;
    padding: 0;
    border-radius: 0;
  }

  .download-icon {
    width: 64px;
    margin-bottom: 18px;
    border-radius: 16px;
  }

  .download h2 {
    max-width: 270px;
    font-size: clamp(1.86rem, 8vw, 2.16rem);
    line-height: 0.96;
  }

  .download-content > p:not(.section-label) {
    max-width: 256px;
    margin-top: 16px;
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .download .store-links--centered {
    margin-top: 24px;
    gap: 10px;
  }

  .download .store-link {
    height: 48px;
  }

  .download .store-link:first-child {
    width: 154px;
  }

  .download .store-link:last-child {
    width: 154px;
  }

  .updates .section-heading {
    max-width: 342px;
  }

  .updates.section-shell {
    padding-top: 34px;
  }

  .updates .section-heading h2 {
    font-size: clamp(1.82rem, 7.8vw, 2.14rem);
  }

  .updates .section-heading > p:not(.section-label) {
    max-width: 332px;
    font-size: 0.89rem;
    line-height: 1.5;
  }

  .updates .section-heading strong {
    margin-top: 22px;
    padding-bottom: 17px;
    font-size: clamp(1.06rem, 4.6vw, 1.3rem);
  }

  .timeline.section-shell {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .timeline-copy {
    max-width: 342px;
  }

  .timeline-copy h2 {
    font-size: clamp(1.82rem, 7.8vw, 2.14rem);
  }

  .timeline-copy > p:not(.section-label) {
    max-width: 332px;
    font-size: 0.89rem;
    line-height: 1.5;
  }

  .timeline-copy strong {
    margin-top: 22px;
    padding-bottom: 18px;
    font-size: clamp(1.06rem, 4.6vw, 1.3rem);
  }

  .circle.section-shell {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .circle-copy {
    max-width: 342px;
  }

  .circle-copy h2 {
    font-size: clamp(1.82rem, 7.8vw, 2.14rem);
  }

  .circle-copy > p:not(.section-label) {
    max-width: 332px;
    font-size: 0.89rem;
    line-height: 1.5;
  }

  .circle-copy strong {
    max-width: 326px;
    margin-top: 22px;
    font-size: clamp(1.06rem, 4.6vw, 1.3rem);
  }

  .privacy.section-shell {
    padding-top: 34px;
    padding-bottom: 52px;
  }

  .privacy-intro {
    max-width: 342px;
  }

  .privacy-intro h2 {
    font-size: clamp(1.82rem, 7.8vw, 2.14rem);
  }

  .privacy-intro > p:not(.section-label) {
    max-width: 332px;
    font-size: 0.89rem;
    line-height: 1.5;
  }

  .privacy-intro strong {
    max-width: 326px;
    margin-top: 22px;
    font-size: clamp(1.06rem, 4.6vw, 1.3rem);
  }

  .phone-carousel {
    margin-top: 0;
  }

  .comparison-carousel {
    max-width: 342px;
    padding: 12px;
    margin-top: 30px;
    gap: 10px;
    border-radius: 24px;
  }

  .comparison-carousel__header {
    gap: 8px;
  }

  .comparison-carousel__header > div {
    padding: 10px 12px;
    gap: 9px;
    border-radius: 15px;
  }

  .comparison-carousel__header > div:first-child {
    box-shadow:
      0 10px 24px rgba(24, 27, 58, 0.06),
      inset 2.5px 0 0 rgba(78, 241, 210, 0.9);
  }

  .comparison-carousel__header > div:last-child {
    box-shadow:
      0 10px 24px rgba(24, 27, 58, 0.06),
      inset -2.5px 0 0 rgba(241, 74, 100, 0.88);
  }

  .comparison-carousel__header h3 {
    font-size: 0.76rem;
    line-height: 1.32;
  }

  .comparison-dot {
    width: 9px;
    height: 9px;
  }

  .comparison-dot--safe {
    box-shadow: 0 0 0 3px rgba(78, 241, 210, 0.18);
  }

  .comparison-dot--exposed {
    box-shadow: 0 0 0 3px rgba(241, 74, 100, 0.14);
  }

  .comparison-set {
    gap: 8px;
  }

  .comparison-set::after {
    width: 28px;
    height: 28px;
    font-size: 0.48rem;
  }

  .comparison-card,
  .comparison-card img {
    border-radius: 16px;
  }

  .comparison-carousel__controls {
    gap: 8px;
  }

  .comparison-carousel__arrow {
    width: 32px;
    height: 32px;
    font-size: 0.92rem;
  }

  .comparison-carousel__dots button {
    width: 20px;
    height: 4px;
  }

  .comparison-carousel__dots button.is-active {
    width: 30px;
  }

  .privacy-layout {
    max-width: 342px;
    margin-top: 30px;
    gap: 22px;
  }

  .privacy-key-art {
    min-height: 258px;
  }

  .privacy-key-art__image {
    width: min(258px, 82%);
  }

  .privacy-list {
    gap: 9px;
  }

  .privacy-list li {
    padding: 15px 14px 14px;
    border-radius: 20px;
    grid-template-columns: 26px 1fr;
    gap: 9px;
  }

  .privacy-list li > span {
    width: 22px;
    height: 22px;
    font-size: 0.8rem;
  }

  .privacy-list p {
    font-size: 0.84rem;
    line-height: 1.46;
  }

  .privacy-list b {
    font-size: 0.88rem;
  }

  .phone-carousel__fade {
    width: 24px;
  }

  .phone-carousel__track {
    padding: 14px 0 32px;
    gap: 7px;
  }

  .phone-card {
    width: 116px;
    flex-basis: 116px;
  }

  .hero-phone--profile {
    left: 36%;
    width: 210px;
  }

  .hero-phone--timeline {
    left: 72%;
    width: 196px;
  }

  .hero-note {
    width: 120px;
    padding: 6px 8px;
    gap: 6px;
  }

  .hero-note > span {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
    font-size: 0.56rem;
  }

  .hero-note b {
    font-size: 0.54rem;
  }

  .hero-note--now {
    left: 24px;
  }

  .hero-note--forever {
    right: 24px;
  }

  .timeline-stage {
    --timeline-preview-width: 212px;
    --timeline-side-shift: calc(50vw + 30px);
    --timeline-side-drop: 76px;
    --timeline-side-balance: 7px;
    --timeline-center-top: 14px;
    --timeline-side-scale: 0.978;
    min-height: 552px;
  }

  .timeline-stage::before {
    inset: 66px 0 22px;
  }

  .social-links {
    gap: 11px;
  }
}

@media (max-width: 340px) {
  .header-trailer {
    margin-right: 7px;
    gap: 5px;
    font-size: 0.65rem;
  }

  .header-trailer__play {
    width: 25px;
    height: 25px;
  }

  .site-footer {
    width: min(calc(100% - 16px), 286px);
    padding: 20px 14px 18px;
    gap: 11px;
    border-radius: 22px;
  }

  .site-footer .brand--footer img {
    width: 36px;
    height: 36px;
  }

  .site-footer .brand--footer span {
    font-size: 1.28rem;
  }

  .site-footer__legal {
    max-width: 228px;
    gap: 7px;
  }

  .site-footer__legal a,
  .site-footer__legal span {
    padding: 8px 9px;
    font-size: 0.68rem;
  }

  .copyright {
    font-size: 0.66rem;
  }

  .store-links {
    gap: 9px;
  }

  .store-link:first-child {
    width: 116px;
  }

  .store-link:last-child {
    width: 135px;
  }

  .light-signal__title {
    width: min(100%, 268px);
    font-size: clamp(0.9rem, 4vw, 0.98rem);
    line-height: 0.96;
  }

  .dream-machine-signal {
    min-height: 186px;
    padding: 0 8px;
  }

  .dream-machine-signal::before {
    inset: 14px 8px 10px;
    border-radius: 20px;
  }

  .dream-machine-signal::after {
    width: min(214px, calc(100% - 24px));
    height: 42px;
    bottom: 10px;
  }

  .dream-machine-signal__scene::before {
    background:
      radial-gradient(circle, rgba(255, 255, 255, 0.13) 0 1px, transparent 1.5px) 0 0 / 52px 46px,
      radial-gradient(circle, rgba(78, 241, 210, 0.11) 0 1px, transparent 1.7px) 20px 14px / 82px 68px;
  }

  .dream-machine-signal__title {
    width: min(100%, 242px);
    font-size: clamp(1.28rem, 5.9vw, 1.56rem);
    line-height: 0.91;
  }

  .farewell-signal__title {
    width: min(100%, 238px);
    font-size: clamp(1.34rem, 6vw, 1.62rem);
    line-height: 0.91;
  }

  .dream-machine-signal__laptop {
    bottom: 16px;
    width: 138px;
    height: 92px;
    border-radius: 14px 14px 5px 5px;
  }

  .dream-machine-signal__laptop::before {
    top: 9px;
    right: 9px;
    bottom: 9px;
    left: 9px;
  }

  .dream-machine-signal__laptop::after {
    right: -14px;
    left: -14px;
    height: 8px;
  }

  .dream-machine-signal__laptop span {
    width: 18px;
    height: 22px;
  }

  .dream-machine-signal__idea {
    width: 6px;
    height: 6px;
  }

  .dream-machine-signal__idea--two {
    width: 5px;
    height: 5px;
  }

  .dream-machine-signal__idea--three {
    width: 4px;
    height: 4px;
  }

  .dream-machine-signal__line {
    bottom: 34%;
    left: 11%;
    width: 26%;
  }

  .cheese-signal {
    min-height: 178px;
    padding: 0 8px;
  }

  .cheese-signal::before {
    inset: 14px 8px 10px;
    border-radius: 20px;
  }

  .cheese-signal::after {
    width: min(210px, calc(100% - 22px));
    height: 42px;
    bottom: 10px;
  }

  .cheese-signal__field::after {
    background-size: 26px 26px;
  }

  .cheese-signal__title {
    width: min(100%, 238px);
    font-size: clamp(1.3rem, 6vw, 1.6rem);
    line-height: 0.91;
  }

  .cheese-signal__title-mobile .cheese-signal__word {
    padding-right: 0;
    padding-bottom: 0.1em;
  }

  .cheese-signal__title-mobile .cheese-signal__camera {
    top: auto;
    right: -0.72em;
    bottom: -0.38em;
    width: 0.54em;
  }

  .cheese-signal__corner {
    width: 34px;
    height: 22px;
  }

  .cheese-signal__corner--top-left {
    top: 20px;
    left: 14px;
  }

  .cheese-signal__corner--top-right {
    top: 20px;
    right: 14px;
  }

  .cheese-signal__corner--bottom-left {
    bottom: 20px;
    left: 14px;
  }

  .cheese-signal__corner--bottom-right {
    right: 14px;
    bottom: 20px;
  }

  .cheese-signal__flash {
    width: 5px;
    height: 5px;
  }

  .cheese-signal__flash::before {
    width: 48px;
  }

  .cheese-signal__flash::after {
    height: 48px;
  }

  .time-travel-signal {
    min-height: 166px;
    padding: 0 8px;
  }

  .time-travel-signal__title {
    width: min(100%, 252px);
    padding: 0 2px;
    font-size: clamp(1.24rem, 5.6vw, 1.4rem);
    line-height: 0.92;
  }

  .privacy-signal {
    min-height: 166px;
    padding: 0 8px;
  }

  .privacy-signal::before {
    background-size:
      28px 28px,
      28px 28px,
      100% 100%,
      100% 100%;
    opacity: 0.38;
  }

  .privacy-signal::after {
    width: min(268px, calc(100% - 24px));
    opacity: 0.44;
  }

  .privacy-signal__icon {
    width: 36px;
    height: 36px;
  }

  .privacy-signal__icon--shield {
    width: 42px;
    height: 42px;
  }

  .privacy-signal__icon--check {
    width: 32px;
    height: 32px;
  }

  .privacy-signal__icon--heart {
    width: 34px;
    height: 34px;
  }

  .privacy-signal__title {
    width: min(100%, 252px);
    padding: 0 2px;
    font-size: clamp(1.32rem, 6vw, 1.5rem);
    line-height: 0.92;
  }

  .concept-signal {
    min-height: 170px;
    padding: 0 8px;
  }

  .concept-signal::before {
    background-size: 26px 26px;
    opacity: 0.26;
  }

  .concept-signal::after {
    width: min(268px, calc(100% - 20px));
    height: 84px;
    opacity: 0.58;
  }

  .concept-signal__field::before,
  .concept-signal__field::after {
    width: min(244px, 74vw);
    opacity: 0.24;
  }

  .concept-signal__node {
    width: 6px;
    height: 6px;
    box-shadow:
      0 0 0 4px rgba(78, 241, 210, 0.08),
      0 0 15px rgba(78, 241, 210, 0.3);
  }

  .concept-signal__title {
    width: min(100%, 252px);
    font-size: clamp(1.28rem, 5.8vw, 1.5rem);
    line-height: 0.92;
  }

  .concept-signal__title::after {
    right: 14%;
    bottom: -14px;
    left: 14%;
  }

  .living-room-signal {
    min-height: 192px;
    padding: 0 8px;
  }

  .living-room-signal::before {
    inset: 16px 8px 12px;
    border-radius: 22px;
  }

  .living-room-signal::after {
    width: min(224px, calc(100% - 24px));
    height: 44px;
    bottom: 10px;
  }

  .living-room-signal__room::before {
    background-size: 30px 30px;
  }

  .living-room-signal__lamp {
    top: 28px;
    left: 10px;
    width: 68px;
    height: 46px;
  }

  .living-room-signal__lamp::after {
    top: 44px;
    height: 52px;
  }

  .living-room-signal__window {
    top: 24px;
    right: 10px;
    width: 104px;
    height: 70px;
  }

  .living-room-signal__sofa {
    bottom: 24px;
    width: 150px;
    height: 48px;
  }

  .living-room-signal__sofa::before,
  .living-room-signal__sofa::after {
    top: -16px;
    height: 26px;
  }

  .living-room-signal__bubble {
    width: 8px;
    height: 8px;
  }

  .living-room-signal__bubble--one {
    top: 94px;
    left: 18%;
  }

  .living-room-signal__bubble--two {
    right: 18%;
    bottom: 70px;
  }

  .living-room-signal__title {
    width: min(100%, 224px);
    font-size: clamp(1.32rem, 5.8vw, 1.56rem);
    line-height: 0.92;
  }

  .community-copy {
    max-width: 284px;
  }

  .community-copy h2 {
    font-size: clamp(1.58rem, 7.4vw, 1.82rem);
    line-height: 0.94;
  }

  .community-copy > p:not(.section-label) {
    max-width: 272px;
    font-size: 0.84rem;
    line-height: 1.5;
  }

  .community-image {
    margin-top: 26px;
    border-radius: 22px;
    background-position: center, center, center 14%, center 14%, center;
  }

  .community-image img {
    min-height: clamp(390px, 128vw, 510px);
  }

  .about.section-shell {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .about-card {
    max-width: 286px;
    padding: 32px 18px 30px;
    border-radius: 23px;
  }

  .about-card::before {
    background-size: 26px 26px;
    opacity: 0.27;
  }

  .about-card::after {
    top: -72px;
    width: 238px;
    height: 238px;
    filter: blur(34px);
  }

  .about-card h2 {
    font-size: clamp(1.68rem, 7.2vw, 1.92rem);
    line-height: 0.93;
  }

  .about-card > p:not(.section-label) {
    max-width: 250px;
    margin-top: 16px;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .about-card strong {
    max-width: 236px;
    margin-top: 20px;
    font-size: 0.9rem;
    line-height: 1.34;
  }

  .founder {
    padding-top: 74px;
    padding-bottom: 78px;
    gap: 28px;
  }

  .founder::before {
    top: 44px;
    width: 300px;
    height: 300px;
    filter: blur(16px);
  }

  .founder-copy {
    max-width: 286px;
  }

  .founder-copy h2 {
    max-width: 266px;
    font-size: clamp(1.62rem, 7vw, 1.88rem);
    line-height: 0.93;
  }

  .founder-copy > p:not(.section-label) {
    max-width: 252px;
    margin-top: 16px;
    font-size: 0.82rem;
    line-height: 1.48;
  }

  .founder-portrait {
    width: min(78vw, 248px);
  }

  .founder-portrait::before {
    inset: -8px;
  }

  .founder-portrait::after {
    right: -10px;
    filter: blur(22px);
  }

  .founder-portrait > img:first-child {
    border-width: 6px;
  }

  .sleep-z {
    width: 72px;
  }

  .founder blockquote {
    max-width: 286px;
    padding: 20px 16px 20px;
    gap: 14px;
    border-radius: 22px;
  }

  .founder blockquote strong {
    font-size: 0.96rem;
    line-height: 1.12;
  }

  .founder blockquote p {
    font-size: 0.79rem;
    line-height: 1.44;
  }

  .contact.section-shell {
    padding-top: 72px;
    padding-bottom: 74px;
  }

  .contact::before {
    top: -10px;
    width: min(308px, calc(100vw - 16px));
    height: 250px;
    filter: blur(18px);
  }

  .contact-heading {
    max-width: 286px;
  }

  .contact-heading h2 {
    font-size: clamp(1.68rem, 7.2vw, 1.9rem);
    line-height: 0.93;
  }

  .contact-grid {
    max-width: 286px;
    margin-top: 24px;
    gap: 10px;
  }

  .contact-card {
    padding: 18px 48px 18px 16px;
    border-radius: 20px;
  }

  .contact-card::before {
    right: 16px;
    left: 16px;
  }

  .contact-card__icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    border-radius: 12px;
  }

  .contact-card__icon svg {
    width: 20px;
    height: 20px;
  }

  .contact-card__label {
    font-size: 0.92rem;
  }

  .contact-card__email {
    max-width: 192px;
    font-size: 0.74rem;
    line-height: 1.38;
  }

  .contact-card__arrow {
    top: 16px;
    right: 14px;
    font-size: 1.08rem;
  }

  .social-links {
    margin-top: 22px;
    gap: 8px;
  }

  .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .social-links img {
    width: 22px;
    height: 22px;
  }

  .download {
    padding: 76px 8px;
  }

  .download::before {
    background-size: 13px 13px;
  }

  .download-glow {
    width: 300px;
    height: 300px;
    filter: blur(50px);
  }

  .download-content {
    max-width: 286px;
    padding: 0;
    border-radius: 0;
  }

  .download-icon {
    width: 58px;
    margin-bottom: 16px;
    border-radius: 14px;
  }

  .download h2 {
    max-width: 238px;
    font-size: clamp(1.64rem, 7vw, 1.9rem);
    line-height: 0.95;
  }

  .download-content > p:not(.section-label) {
    max-width: 224px;
    margin-top: 14px;
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .download .store-links--centered {
    margin-top: 22px;
    gap: 9px;
  }

  .download .store-link {
    height: 44px;
  }

  .download .store-link:first-child {
    width: 140px;
  }

  .download .store-link:last-child {
    width: 140px;
  }

  .updates.section-shell {
    padding-top: 30px;
  }

  .updates .section-heading h2 {
    font-size: clamp(1.62rem, 6.9vw, 1.9rem);
  }

  .updates .section-heading > p:not(.section-label) {
    font-size: 0.82rem;
    line-height: 1.44;
  }

  .updates .section-heading strong {
    padding-bottom: 14px;
    font-size: 0.96rem;
  }

  .timeline.section-shell {
    padding-top: 30px;
    padding-bottom: 48px;
  }

  .timeline-copy h2 {
    font-size: clamp(1.62rem, 6.9vw, 1.9rem);
  }

  .timeline-copy > p:not(.section-label) {
    font-size: 0.82rem;
    line-height: 1.44;
  }

  .timeline-copy strong {
    padding-bottom: 16px;
    font-size: 0.96rem;
  }

  .circle.section-shell {
    padding-top: 30px;
    padding-bottom: 48px;
  }

  .circle-copy h2 {
    font-size: clamp(1.62rem, 6.9vw, 1.9rem);
  }

  .circle-copy > p:not(.section-label) {
    font-size: 0.82rem;
    line-height: 1.44;
  }

  .circle-copy strong {
    margin-top: 20px;
    font-size: 0.96rem;
  }

  .privacy.section-shell {
    padding-top: 30px;
    padding-bottom: 48px;
  }

  .privacy-intro h2 {
    font-size: clamp(1.62rem, 6.9vw, 1.9rem);
  }

  .privacy-intro > p:not(.section-label) {
    font-size: 0.82rem;
    line-height: 1.44;
  }

  .privacy-intro strong {
    margin-top: 20px;
    font-size: 0.96rem;
  }

  .phone-carousel__track {
    padding: 12px 0 28px;
    gap: 6px;
  }

  .comparison-carousel {
    margin-top: 26px;
    padding: 10px;
    gap: 9px;
    border-radius: 22px;
  }

  .comparison-carousel__header > div {
    padding: 9px 10px;
    gap: 8px;
    border-radius: 14px;
  }

  .comparison-carousel__header > div:first-child {
    box-shadow:
      0 10px 24px rgba(24, 27, 58, 0.06),
      inset 2px 0 0 rgba(78, 241, 210, 0.9);
  }

  .comparison-carousel__header > div:last-child {
    box-shadow:
      0 10px 24px rgba(24, 27, 58, 0.06),
      inset -2px 0 0 rgba(241, 74, 100, 0.88);
  }

  .comparison-carousel__header h3 {
    font-size: 0.69rem;
    line-height: 1.28;
  }

  .comparison-set {
    gap: 7px;
  }

  .comparison-set::after {
    width: 24px;
    height: 24px;
    font-size: 0.42rem;
  }

  .comparison-card,
  .comparison-card img {
    border-radius: 14px;
  }

  .comparison-carousel__arrow {
    width: 30px;
    height: 30px;
    font-size: 0.86rem;
  }

  .comparison-carousel__dots button {
    width: 18px;
  }

  .comparison-carousel__dots button.is-active {
    width: 28px;
  }

  .privacy-layout {
    margin-top: 26px;
    gap: 18px;
  }

  .privacy-key-art {
    min-height: 224px;
  }

  .privacy-key-art__image {
    width: min(232px, 80%);
  }

  .privacy-list {
    gap: 8px;
  }

  .privacy-list li {
    padding: 13px 13px 12px;
    border-radius: 18px;
    grid-template-columns: 24px 1fr;
    gap: 8px;
  }

  .privacy-list li > span {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    font-size: 0.74rem;
  }

  .privacy-list p {
    font-size: 0.78rem;
    line-height: 1.42;
  }

  .privacy-list b {
    font-size: 0.84rem;
  }

  .phone-card {
    width: 106px;
    flex-basis: 106px;
  }

  .timeline-stage {
    --timeline-preview-width: 192px;
    --timeline-side-shift: calc(50vw + 26px);
    --timeline-side-drop: 68px;
    --timeline-side-balance: 6px;
    --timeline-center-top: 12px;
    --timeline-side-scale: 0.972;
    min-height: 506px;
  }

  .timeline-stage::before {
    inset: 58px 0 18px;
  }

  .hero-phone--profile {
    left: 35%;
    width: 200px;
  }

  .hero-phone--timeline {
    left: 68%;
    width: 188px;
  }

  .hero-note {
    width: 114px;
  }

  .hero-note b {
    font-size: 0.5rem;
  }

  .hero-note--now {
    left: 22px;
  }

  .hero-note--forever {
    right: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .phone-carousel__viewport {
    overflow-x: auto;
  }

  .phone-carousel__track {
    transform: none !important;
  }
}
