:root {
  color-scheme: dark;
  --bg: #070707;
  --panel: #101010;
  --panel-2: #171717;
  --line: #2a2a2a;
  --line-strong: #3a3a3a;
  --text: #ededed;
  --muted: #8a8a8a;
  --quiet: #505050;
  --accent: #1de9b6;
  --accent-soft: rgba(29, 233, 182, 0.13);
  --accent-line: rgba(29, 233, 182, 0.34);
  --warm: #ffb74d;
  --rose: #ff6b6b;
  --signal-green: var(--accent);
  --danger: #ff5252;
  --font-sans: "DM Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  --font-mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent 22rem),
    radial-gradient(circle at 72% 12%, rgba(29, 233, 182, 0.05), transparent 22rem),
    var(--bg);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body.intro-lock {
  overflow: hidden;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 48%, rgba(29, 233, 182, 0.16), transparent 28%),
    radial-gradient(circle at 50% 50%, #101010, #050606 68%);
  animation: intro-exit 650ms ease forwards;
  animation-delay: 2550ms;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle, black 22%, transparent 64%);
  opacity: 0;
  animation: intro-grid 1800ms ease forwards;
}

.intro-radar {
  position: relative;
  width: 190px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: scale(0.74);
  opacity: 0;
  animation: intro-radar-in 760ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.intro-radar span {
  position: absolute;
  border: 1px solid rgba(29, 233, 182, 0.34);
  border-radius: 50%;
  animation: intro-ring 1800ms ease-out infinite;
}

.intro-radar span:nth-child(1) {
  inset: 0;
}

.intro-radar span:nth-child(2) {
  inset: 34px;
  animation-delay: -600ms;
}

.intro-radar span:nth-child(3) {
  inset: 68px;
  animation-delay: -1200ms;
}

.intro-radar i {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 34px rgba(29, 233, 182, 0.7),
    0 0 90px rgba(29, 233, 182, 0.28);
  animation: intro-dot 1500ms ease-in-out infinite;
}

.intro p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  animation: intro-copy-in 640ms ease forwards;
  animation-delay: 620ms;
}

.intro h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 92px;
  font-weight: 500;
  line-height: 0.9;
  opacity: 0;
  transform: translateY(18px) scale(0.96);
  animation: intro-title-in 780ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 820ms;
}

.intro.is-hidden {
  display: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 10;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--warm), var(--rose));
  box-shadow: 0 0 24px rgba(29, 233, 182, 0.45);
  pointer-events: none;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 14px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 64px;
  margin-top: 14px;
  padding: 8px 8px 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), transparent 38%),
    rgba(8, 8, 8, 0.68);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(29, 233, 182, 0.05) inset;
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 500;
  min-width: 0;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.3);
}

.brand small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 26px;
  margin-left: 4px;
  padding: 0 9px;
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(29, 233, 182, 0.07);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
}

.brand small::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  position: relative;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 6px;
  color: #d9d9d9;
  font-family: var(--font-mono);
  font-size: 14px;
  transition:
    color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  color: var(--signal-green);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 6px;
  height: 1px;
  background: var(--signal-green);
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  padding: 0 16px;
  color: #d9d9d9;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 16px 42px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.24) inset;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.nav-cta:hover {
  color: var(--signal-green);
  transform: translateY(-1px);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.28) inset;
}

.hero {
  min-height: calc(100vh - 94px);
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(380px, 1.18fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  padding: 42px 0 68px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin: 0 0 42px;
  font-family: var(--font-mono);
  font-size: clamp(86px, 12vw, 172px);
  font-weight: 500;
  line-height: 0.86;
  letter-spacing: 0;
  color: #f4f4f4;
  text-shadow: 0 0 42px rgba(29, 233, 182, 0.14);
}

.lede {
  max-width: 520px;
  color: #b8b8b8;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  line-height: 1.18;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 22px;
}

.button,
.signup button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
}

.primary,
.signup button {
  color: #04130f;
  background: var(--accent);
  box-shadow: 0 18px 50px rgba(29, 233, 182, 0.22);
}

.ghost {
  color: var(--text);
  background: var(--panel);
  border-color: var(--line-strong);
}

.product-hunt-card {
  width: fit-content;
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(29, 233, 182, 0.04) inset;
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-hunt-card:hover {
  border-color: rgba(29, 233, 182, 0.28);
  box-shadow:
    0 22px 72px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(29, 233, 182, 0.08);
  transform: translateY(-2px);
}

.product-hunt-card span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.product-hunt-card img {
  width: min(250px, calc(100vw - 76px));
  height: auto;
  display: block;
  border-radius: 6px;
}

.signal-row,
.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.signal-row span,
.spec-row span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 17, 17, 0.64);
}

.signal-row strong,
.spec-row strong {
  margin-right: 6px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
}

.hero-person {
  position: relative;
  min-height: min(760px, calc(100vh - 130px));
  display: grid;
  place-items: center;
  margin: 0;
  isolation: isolate;
  transform: translateY(var(--hero-y, 0));
  transition: transform 120ms linear;
  will-change: transform;
}

.hero-person::before {
  content: "";
  position: absolute;
  width: min(86%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(29, 233, 182, 0.18), transparent 56%),
    linear-gradient(90deg, transparent 0 49%, rgba(29, 233, 182, 0.18) 50%, transparent 51%),
    linear-gradient(transparent 0 49%, rgba(29, 233, 182, 0.12) 50%, transparent 51%);
  filter: blur(0.2px);
  transform: rotateX(68deg) translateY(18%);
  bottom: 2%;
  z-index: -2;
}

.hero-person::after {
  content: "";
  position: absolute;
  inset: 8% 4%;
  z-index: -3;
  background-image:
    linear-gradient(rgba(29, 233, 182, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 233, 182, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle, black 30%, transparent 72%);
  opacity: 0.72;
}

.hero-person img {
  position: relative;
  z-index: 1;
  width: min(78%, 540px);
  max-height: min(720px, calc(100vh - 150px));
  display: block;
  object-fit: contain;
  filter:
    drop-shadow(0 0 24px rgba(29, 233, 182, 0.28))
    drop-shadow(0 28px 70px rgba(0, 0, 0, 0.62));
  transform: scale(var(--hero-scale, 1));
  transition: transform 120ms linear;
  will-change: transform;
}

.hero-person figcaption {
  position: absolute;
  right: 6%;
  bottom: 10%;
  z-index: 3;
  width: min(260px, 48%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 16px;
  background: rgba(8, 10, 10, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
  color: #dadada;
  font-family: var(--font-mono);
  transform: translateY(var(--caption-y, 0));
  transition: transform 120ms linear;
  will-change: transform;
}

.hero-person figcaption span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 12px;
  text-transform: uppercase;
}

.hero-person figcaption strong {
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.1;
}

.person-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(29, 233, 182, 0.24);
  border-radius: 50%;
  animation: radar-rotate 18s linear infinite;
}

.orbit-a {
  width: min(72%, 520px);
  aspect-ratio: 1;
}

.orbit-b {
  width: min(52%, 380px);
  aspect-ratio: 1;
  animation-duration: 13s;
  animation-direction: reverse;
}

.orbit-c {
  width: min(94%, 680px);
  height: min(28%, 190px);
  bottom: 8%;
  transform: rotateX(64deg);
  animation: none;
}

.person-node {
  position: absolute;
  z-index: 2;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 24px var(--accent);
  animation: node-pulse 1800ms ease-in-out infinite;
}

.node-a {
  left: 22%;
  top: 34%;
}

.node-b {
  right: 22%;
  top: 28%;
  background: var(--warm);
  box-shadow: 0 0 24px var(--warm);
  animation-delay: -600ms;
}

.node-c {
  right: 28%;
  bottom: 30%;
  background: var(--rose);
  box-shadow: 0 0 24px var(--rose);
  animation-delay: -1100ms;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.hero-actions .button {
  min-height: 42px;
  padding-inline: 14px;
}

.detail-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 18px 0 64px;
}

.detail-strip article {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 44%),
    rgba(15, 15, 15, 0.82);
  transform: translateY(var(--scroll-lift, 0));
  transition:
    border-color 180ms ease,
    transform 120ms linear,
    background 180ms ease;
}

.detail-strip article:hover {
  border-color: rgba(29, 233, 182, 0.28);
  background:
    linear-gradient(145deg, rgba(29, 233, 182, 0.08), transparent 44%),
    rgba(15, 15, 15, 0.88);
}

.detail-strip small {
  margin-bottom: auto;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.detail-strip strong {
  margin-bottom: 10px;
  color: var(--text);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.08;
}

.detail-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.product-stage {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  overflow: visible;
  perspective: 1100px;
  isolation: isolate;
}

.tech-label {
  position: absolute;
  z-index: 2;
  margin: 0;
  color: #9f9f9f;
  font-family: var(--font-mono);
  font-size: clamp(13px, 1.45vw, 21px);
  line-height: 1.45;
  letter-spacing: 0;
}

.tech-label::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--signal-green);
  box-shadow: 0 0 18px rgba(29, 233, 182, 0.34);
}

.tech-label::after {
  content: "";
  position: absolute;
  top: 14px;
  height: 1px;
  border-top: 1px dashed rgba(255, 255, 255, 0.32);
}

.label-left {
  left: -20px;
  top: 22%;
}

.label-left::before {
  right: -28px;
  top: 4px;
}

.label-left::after {
  left: calc(100% + 30px);
  width: 210px;
  transform: rotate(23deg);
  transform-origin: left center;
}

.label-right {
  right: -14px;
  top: 34%;
}

.label-right::before {
  left: -28px;
  top: 4px;
}

.label-right::after {
  right: calc(100% + 30px);
  width: 190px;
  transform: rotate(-10deg);
  transform-origin: right center;
}

.label-bottom {
  left: 8px;
  bottom: 16%;
}

.label-bottom::before {
  right: -28px;
  top: 4px;
}

.label-bottom::after {
  left: calc(100% + 30px);
  width: 180px;
  transform: rotate(-24deg);
  transform-origin: left center;
}

.ambient-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle, black 42%, transparent 76%);
  transform: rotateX(64deg) translateY(calc(108px + var(--stage-depth, 0px))) translateZ(-120px);
  transform-origin: center bottom;
  animation: grid-drift 10s linear infinite;
  z-index: -3;
}

.depth-floor {
  position: absolute;
  width: min(680px, 116%);
  height: 360px;
  bottom: 44px;
  border: 1px solid rgba(29, 233, 182, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(29, 233, 182, 0.17), transparent 58%),
    linear-gradient(90deg, transparent 0 48%, rgba(29, 233, 182, 0.2) 49% 51%, transparent 52%),
    linear-gradient(transparent 0 48%, rgba(29, 233, 182, 0.16) 49% 51%, transparent 52%);
  filter: blur(0.2px);
  transform: translateY(var(--floor-depth, 0px)) rotateX(74deg) translateZ(-160px);
  z-index: -2;
}

.signal-orbit {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: translateY(var(--orbit-depth, 0px));
  pointer-events: none;
  z-index: -1;
}

.beacon,
.beam {
  position: absolute;
  display: block;
}

.beacon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 20px var(--accent),
    0 0 54px rgba(29, 233, 182, 0.5);
  animation: beacon-float 5s ease-in-out infinite;
}

.beacon::after {
  content: "";
  position: absolute;
  inset: -18px;
  border: 1px solid rgba(29, 233, 182, 0.24);
  border-radius: 50%;
  animation: beacon-pulse 2.4s ease-out infinite;
}

.beacon-a {
  left: 10%;
  top: 24%;
}

.beacon-b {
  right: 12%;
  top: 20%;
  width: 10px;
  height: 10px;
  background: var(--warm);
  box-shadow:
    0 0 18px var(--warm),
    0 0 42px rgba(255, 183, 77, 0.42);
  animation-delay: -1.7s;
}

.beacon-c {
  right: 20%;
  bottom: 21%;
  width: 11px;
  height: 11px;
  background: var(--rose);
  box-shadow:
    0 0 18px var(--rose),
    0 0 42px rgba(255, 107, 107, 0.38);
  animation-delay: -3s;
}

.beam {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(29, 233, 182, 0.52), transparent);
  transform-origin: left center;
  opacity: 0.7;
  animation: beam-scan 4.4s ease-in-out infinite;
}

.beam-a {
  width: 340px;
  left: 18%;
  top: 37%;
  transform: rotateZ(-18deg) rotateY(46deg);
}

.beam-b {
  width: 300px;
  right: 12%;
  bottom: 32%;
  transform: rotateZ(28deg) rotateY(-34deg);
  animation-delay: -2s;
}

.scene {
  position: relative;
  width: min(560px, 100%);
  min-height: 610px;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  transform: rotateX(8deg) rotateY(-16deg);
  transition: transform 180ms ease-out;
  will-change: transform;
}

.phone {
  position: relative;
  width: min(390px, 100%);
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent),
    #0a0a0a;
  box-shadow:
    18px 28px 0 rgba(255, 255, 255, 0.035),
    42px 52px 88px rgba(0, 0, 0, 0.72),
    0 0 94px rgba(29, 233, 182, 0.2);
  transform-style: preserve-3d;
  transform: translateZ(68px);
  animation: phone-hover 6.6s ease-in-out infinite;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 10px 36%;
  height: 4px;
  border-radius: 999px;
  background: var(--line-strong);
}

.phone::after {
  content: "";
  position: absolute;
  inset: 20px -24px -26px 34px;
  border-radius: 36px;
  background: rgba(0, 0, 0, 0.42);
  filter: blur(24px);
  transform: translateZ(-80px);
  z-index: -1;
}

.phone-glare {
  position: absolute;
  inset: 1px;
  border-radius: 35px;
  background:
    linear-gradient(126deg, rgba(255, 255, 255, 0.16), transparent 28%),
    radial-gradient(circle at 28% 0%, rgba(29, 233, 182, 0.12), transparent 34%);
  pointer-events: none;
  mix-blend-mode: screen;
}

.glass-card {
  position: absolute;
  width: 178px;
  min-height: 116px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(26, 26, 26, 0.84), rgba(11, 11, 11, 0.46));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}

.card-left {
  left: -4px;
  top: 112px;
  transform: translateZ(160px) rotateY(22deg) rotateX(4deg);
  animation: card-drift-left 7s ease-in-out infinite;
}

.card-right {
  right: 6px;
  bottom: 120px;
  transform: translateZ(130px) rotateY(-24deg) rotateX(8deg);
  animation: card-drift-right 7.4s ease-in-out infinite;
}

.card-kicker {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.glass-card strong {
  font-size: 21px;
  font-weight: 600;
}

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

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px 24px;
  font-family: var(--font-mono);
  font-size: 15px;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 12px;
}

.status i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}

.radar {
  position: relative;
  width: 236px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 12px auto 28px;
  transform-style: preserve-3d;
  transform: translateZ(42px);
}

.ring {
  position: absolute;
  inset: 0;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  animation: pulse 3.2s infinite ease-out;
  transform-style: preserve-3d;
}

.ring-two {
  inset: 28px;
  animation-delay: -1s;
}

.ring-three {
  inset: 56px;
  animation-delay: -2s;
}

.radar-core {
  position: relative;
  z-index: 1;
  width: 126px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  background: var(--panel);
  box-shadow:
    inset 0 0 24px rgba(29, 233, 182, 0.05),
    0 0 54px rgba(29, 233, 182, 0.14);
  transform: translateZ(34px);
}

.radar-dot {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  z-index: 2;
}

.dot-one {
  left: 38px;
  top: 78px;
  animation: dot-orbit-one 5.5s linear infinite;
}

.dot-two {
  right: 46px;
  top: 68px;
  background: var(--warm);
  box-shadow: 0 0 18px var(--warm);
  animation: dot-orbit-two 6.2s linear infinite;
}

.dot-three {
  right: 70px;
  bottom: 48px;
  background: var(--rose);
  box-shadow: 0 0 18px var(--rose);
  animation: dot-orbit-three 5.8s linear infinite;
}

.radar-core strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 46px;
  font-weight: 400;
  line-height: 1;
}

.radar-core span {
  color: var(--quiet);
  font-size: 11px;
  text-transform: uppercase;
}

.phone h2 {
  margin-bottom: 8px;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  transform: translateZ(26px);
}

.phone p {
  color: var(--quiet);
  font-size: 14px;
  transform: translateZ(26px);
}

.friend-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  transform-style: preserve-3d;
  transform: translateZ(34px);
}

.friend-list article {
  min-height: 68px;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.92), rgba(13, 13, 13, 0.92));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  transform: translateZ(0);
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.friend-list article:hover {
  border-color: var(--accent-line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  transform: translateZ(18px);
}

.friend-list img,
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.avatar {
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #07110f;
}

.mint {
  background: #95e1d3;
}

.amber {
  background: var(--warm);
}

.coral {
  border: 1px solid var(--line-strong);
  color: var(--accent);
  background: #050606;
  box-shadow: inset 0 0 18px rgba(29, 233, 182, 0.08);
}

.friend-list strong {
  display: block;
  margin-bottom: 2px;
  font-size: 15px;
}

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

.friend-list button {
  min-height: 34px;
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--accent);
  background: var(--accent-soft);
  cursor: pointer;
}

.video-showcase {
  padding: 48px 0 56px;
}

.video-frame {
  --video-inset: 24px;
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 40%, rgba(29, 233, 182, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 46%),
    #050606;
  box-shadow:
    0 34px 120px rgba(0, 0, 0, 0.38),
    0 0 90px rgba(29, 233, 182, 0.08);
  overflow: hidden;
  isolation: isolate;
  scale: var(--video-scale, 0.92);
  translate: 0 var(--video-lift, 18px);
  transition:
    scale 120ms linear,
    translate 120ms linear,
    box-shadow 180ms ease;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: -22%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle, black 24%, transparent 62%);
  transform: rotateX(62deg);
  animation: grid-drift 12s linear infinite;
  opacity: 0.62;
}

.video-frame iframe {
  position: absolute;
  inset: var(--video-inset);
  z-index: 2;
  width: calc(100% - var(--video-inset) - var(--video-inset));
  height: calc(100% - var(--video-inset) - var(--video-inset));
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #020303;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

.video-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(29, 233, 182, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  width: 72%;
  aspect-ratio: 1;
  animation: radar-rotate 18s linear infinite;
}

.orbit-two {
  width: 42%;
  aspect-ratio: 1;
  animation: radar-rotate 12s linear infinite reverse;
}

.download-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(24px, 6vw, 78px);
  margin: 18px 0 64px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 56px);
  background:
    radial-gradient(circle at 76% 44%, rgba(29, 233, 182, 0.22), transparent 30%),
    radial-gradient(circle at 16% 22%, rgba(255, 183, 77, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%),
    #0a0a0a;
  overflow: hidden;
  isolation: isolate;
}

.download-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(90deg, transparent, black 18%, black 84%, transparent);
  opacity: 0.28;
  z-index: -1;
}

.download-section::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(29, 233, 182, 0.09);
  border-radius: 8px;
  pointer-events: none;
}

.download-scan {
  position: absolute;
  width: 1px;
  height: 160%;
  top: -30%;
  background: linear-gradient(transparent, rgba(29, 233, 182, 0.46), transparent);
  opacity: 0.32;
  filter: blur(0.4px);
  pointer-events: none;
}

.scan-a {
  left: 62%;
  animation: download-scan-a 7s ease-in-out infinite;
}

.scan-b {
  left: 82%;
  animation: download-scan-b 8.5s ease-in-out infinite;
}

.download-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.download-kicker .eyebrow {
  margin: 0;
}

.download-kicker span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 999px;
  padding: 0 10px;
  color: #95e1d3;
  background: rgba(29, 233, 182, 0.08);
  font-size: 12px;
  font-weight: 700;
}

.download-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 400;
  line-height: 0.98;
}

.download-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: #c8c8c8;
  font-size: 18px;
  line-height: 1.45;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.download-apk {
  position: relative;
  min-width: 190px;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  isolation: isolate;
  font: inherit;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.download-apk span,
.download-apk small {
  position: relative;
  z-index: 1;
}

.download-apk small {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.62;
}

.download-section.is-downloading .download-apk {
  color: #04100d;
  background: linear-gradient(90deg, var(--accent), #a4f8ff 58%, var(--warm));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34) inset,
    0 0 32px rgba(29, 233, 182, 0.3),
    0 18px 46px rgba(0, 0, 0, 0.28);
  transform: translateY(-1px);
}

.download-section.is-downloading .download-phone {
  animation: phone-burn-away 5.2s cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.download-section.is-downloading .download-phone-art {
  filter:
    drop-shadow(0 34px 110px rgba(0, 0, 0, 0.56))
    drop-shadow(0 0 70px rgba(29, 233, 182, 0.34));
  transform: rotateY(-4deg) rotateX(2deg) scale(1.035);
}

.download-section.is-downloading .download-float {
  animation: float-burn-away 5.2s cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.download-section.is-downloading .burn-download {
  animation: burn-stage 5.2s ease-out both;
}

.download-section.is-downloading .flame {
  animation: heat-wisp-rise 5.2s ease-out both, heat-wisp-flicker 0.72s ease-in-out infinite alternate;
}

.download-section.is-downloading .flame-b {
  animation-delay: 0.06s, -0.18s;
}

.download-section.is-downloading .flame-c {
  animation-delay: 0.12s, -0.32s;
}

.download-section.is-downloading .flame-d {
  animation-delay: 0.18s, -0.08s;
}

.download-section.is-downloading .flame-e {
  animation-delay: 0.24s, -0.28s;
}

.download-section.is-downloading .flame-f {
  animation-delay: 0.3s, -0.42s;
}

.download-section.is-downloading .smoke {
  animation: smoke-rise 5.2s ease-out both;
}

.download-section.is-downloading .smoke-b {
  animation-delay: 0.2s;
}

.download-section.is-downloading .smoke-c {
  animation-delay: 0.34s;
}

.download-section.is-downloading .spark {
  animation: spark-burst 5.2s ease-out both;
}

.download-section.is-downloading .spark-b {
  animation-delay: 0.08s;
}

.download-section.is-downloading .spark-c {
  animation-delay: 0.14s;
}

.download-section.is-downloading .spark-d {
  animation-delay: 0.22s;
}

.download-section.is-downloading .spark-e {
  animation-delay: 0.28s;
}

.download-section.is-downloading .spark-f {
  animation-delay: 0.36s;
}

.download-section.is-downloading .ash {
  animation: ash-float 5.2s ease-out both;
}

.download-section.is-downloading .ash-b {
  animation-delay: 0.1s;
}

.download-section.is-downloading .ash-c {
  animation-delay: 0.2s;
}

.download-section.is-downloading .ash-d {
  animation-delay: 0.32s;
}

.download-section.is-downloading .ash-bed {
  display: none;
}

.download-section.is-downloading .apk-output {
  animation: apk-from-ashes 5.2s cubic-bezier(0.18, 0.9, 0.2, 1) both;
}

.download-section.is-download-ready .download-phone {
  border-color: rgba(29, 233, 182, 0.34);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.48),
    0 0 110px rgba(29, 233, 182, 0.22);
}

.download-section.is-download-ready .download-phone-art {
  filter:
    drop-shadow(0 34px 110px rgba(0, 0, 0, 0.52))
    drop-shadow(0 0 80px rgba(29, 233, 182, 0.28));
}

.download-section.is-download-ready .download-float {
  opacity: 0;
}

.download-section.is-downloading .download-apk small {
  display: none;
}

.download-section.is-download-ready .download-apk {
  background: #ffffff;
  box-shadow:
    0 0 0 1px rgba(29, 233, 182, 0.42) inset,
    0 0 28px rgba(29, 233, 182, 0.22);
}

.download-section.is-download-ready .download-apk small {
  display: none;
}

.download-meter {
  position: relative;
  max-width: 460px;
  min-height: 46px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
  overflow: hidden;
}

.download-meter i {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.download-meter i::before {
  content: "";
  position: absolute;
  inset: 0 22% 0 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--warm));
  box-shadow: 0 0 22px rgba(29, 233, 182, 0.34);
  animation: download-meter 2.8s ease-in-out infinite;
}

.download-meter strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
}

.tutorial-dialog {
  width: min(520px, calc(100% - 28px));
  border: 1px solid rgba(29, 233, 182, 0.28);
  border-radius: 8px;
  padding: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(29, 233, 182, 0.18), transparent 38%),
    #080908;
  box-shadow:
    0 32px 120px rgba(0, 0, 0, 0.62),
    0 0 80px rgba(29, 233, 182, 0.12);
  overflow: hidden;
}

.tutorial-dialog::backdrop {
  background:
    radial-gradient(circle at 50% 42%, rgba(29, 233, 182, 0.12), transparent 34%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}

.tutorial-shell {
  display: grid;
  gap: 16px;
  padding: 18px;
}

.tutorial-head,
.tutorial-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tutorial-head .eyebrow {
  margin-bottom: 7px;
}

.tutorial-head strong {
  font-size: 22px;
  font-weight: 600;
}

.tutorial-close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  font-size: 24px;
  cursor: pointer;
}

.tutorial-video {
  position: relative;
  aspect-ratio: 9 / 16;
  width: min(300px, 100%);
  justify-self: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #020303;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
}

.tutorial-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tutorial-actions {
  flex-wrap: wrap;
}

.tutorial-actions .button {
  flex: 1 1 190px;
}

.download-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.download-trust span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.035);
  font-size: 13px;
}

.download-trust strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-weight: 500;
}

.download-device {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1200px;
}

.download-phone-art {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  display: block;
  border-radius: 8px;
  filter:
    drop-shadow(0 34px 100px rgba(0, 0, 0, 0.54))
    drop-shadow(0 0 44px rgba(29, 233, 182, 0.16));
  transform: rotateY(-8deg) rotateX(4deg);
  animation: download-phone-float 6.6s ease-in-out infinite;
  will-change: transform;
}

.burn-download {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 4;
  width: min(330px, 82%);
  height: 520px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.92);
  transform-style: preserve-3d;
}

.burn-download::before,
.burn-download::after {
  content: "";
  position: absolute;
  left: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-50%);
}

.burn-download::before {
  display: none;
}

.burn-download::after {
  display: none;
}

.download-section.is-downloading .burn-download::before {
  animation: none;
}

.download-section.is-downloading .burn-download::after {
  animation: none;
}

.download-section.is-downloading .ember-glow {
  animation: none;
}

.ember-glow,
.flame,
.smoke,
.spark,
.ash,
.ash-bed {
  position: absolute;
}

.ember-glow {
  display: none;
}

.flame {
  --flame-sway: 6deg;
  left: 50%;
  bottom: 32px;
  width: var(--flame-w, 44px);
  height: var(--flame-h, 92px);
  border-radius: 50%;
  clip-path: none;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(255, 246, 190, 0.34), transparent 18%),
    radial-gradient(ellipse at 50% 68%, rgba(255, 132, 39, 0.34), transparent 36%),
    radial-gradient(ellipse at 50% 88%, rgba(184, 38, 14, 0.38), transparent 54%);
  filter: blur(12px) contrast(1.12) saturate(1.05);
  opacity: 0;
  mix-blend-mode: screen;
  transform: translateX(-50%) scaleY(0.24) rotate(var(--flame-rot, -7deg));
  transform-origin: 50% 100%;
}

.flame::before,
.flame::after {
  content: none;
}

.flame-b {
  --flame-w: 36px;
  --flame-h: 74px;
  --flame-rot: 9deg;
  --flame-sway: -7deg;
  left: 30%;
  bottom: 30px;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(255, 255, 255, 0.78), transparent 9%),
    radial-gradient(ellipse at 52% 72%, rgba(255, 229, 138, 0.84), transparent 21%),
    linear-gradient(180deg, transparent, rgba(255, 212, 91, 0.16) 16%, rgba(255, 125, 33, 0.72) 56%, rgba(214, 43, 21, 0.74) 82%, transparent);
}

.flame-c {
  --flame-w: 40px;
  --flame-h: 82px;
  --flame-rot: -11deg;
  --flame-sway: 8deg;
  left: 70%;
  bottom: 32px;
  background:
    radial-gradient(ellipse at 50% 82%, rgba(255, 255, 255, 0.72), transparent 9%),
    radial-gradient(ellipse at 46% 72%, rgba(255, 226, 128, 0.82), transparent 19%),
    linear-gradient(180deg, transparent, rgba(255, 213, 88, 0.14) 18%, rgba(255, 139, 31, 0.78) 54%, rgba(230, 54, 20, 0.74) 82%, transparent);
}

.flame-d {
  --flame-w: 30px;
  --flame-h: 66px;
  --flame-rot: 15deg;
  --flame-sway: -10deg;
  left: 43%;
  bottom: 26px;
}

.flame-e {
  --flame-w: 34px;
  --flame-h: 72px;
  --flame-rot: -16deg;
  --flame-sway: 12deg;
  left: 57%;
  bottom: 28px;
}

.flame-f {
  --flame-w: 28px;
  --flame-h: 58px;
  --flame-rot: 19deg;
  --flame-sway: -12deg;
  left: 20%;
  bottom: 24px;
}

.smoke {
  left: 50%;
  bottom: 86px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 42%, rgba(198, 199, 184, 0.32), transparent 22%),
    radial-gradient(circle at 63% 58%, rgba(91, 86, 76, 0.24), transparent 34%),
    radial-gradient(circle, rgba(52, 48, 39, 0.22), rgba(17, 15, 12, 0.13) 58%, transparent 78%);
  filter: blur(17px);
  opacity: 0;
  transform: translateX(-50%) scale(0.5);
}

.smoke-b {
  left: 32%;
  width: 112px;
  height: 112px;
}

.smoke-c {
  left: 68%;
  width: 104px;
  height: 104px;
}

.spark {
  width: 2px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #fff8c5, #ffd166 42%, #ff6a1f 76%, rgba(255, 72, 24, 0));
  box-shadow:
    0 0 8px rgba(255, 226, 126, 0.88),
    0 0 18px rgba(255, 91, 33, 0.5);
  opacity: 0;
  transform-origin: 50% 100%;
}

.spark-a {
  left: 31%;
  bottom: 82px;
  --spark-x: -62px;
  --spark-y: -210px;
  --spark-r: -28deg;
}

.spark-b {
  left: 45%;
  bottom: 92px;
  --spark-x: -24px;
  --spark-y: -246px;
  --spark-r: 18deg;
}

.spark-c {
  left: 58%;
  bottom: 84px;
  --spark-x: 38px;
  --spark-y: -226px;
  --spark-r: 34deg;
}

.spark-d {
  left: 68%;
  bottom: 78px;
  --spark-x: 72px;
  --spark-y: -194px;
  --spark-r: 44deg;
}

.spark-e {
  left: 39%;
  bottom: 72px;
  --spark-x: -46px;
  --spark-y: -164px;
  --spark-r: -12deg;
}

.spark-f {
  left: 52%;
  bottom: 76px;
  --spark-x: 16px;
  --spark-y: -184px;
  --spark-r: 8deg;
}

.ash {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d8d1bd;
  box-shadow: 0 0 12px rgba(255, 183, 77, 0.32);
  opacity: 0;
}

.ash-a {
  left: 31%;
  bottom: 96px;
}

.ash-b {
  left: 45%;
  bottom: 118px;
}

.ash-c {
  right: 34%;
  bottom: 88px;
}

.ash-d {
  right: 24%;
  bottom: 126px;
}

.ash-bed {
  display: none;
}

.apk-output {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 92px;
  min-height: 110px;
  display: grid;
  place-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 20px;
  padding: 12px;
  color: #f9fffd;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 38%),
    rgba(8, 12, 14, 0.92);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.46),
    0 0 60px rgba(29, 233, 182, 0.28);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 76px) scale(0.36) rotate(10deg);
  backdrop-filter: blur(18px);
}

.apk-output img {
  width: 52px;
  height: 52px;
}

.apk-output span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
}

.download-device::before {
  background:
    radial-gradient(circle, rgba(29, 233, 182, 0.12), transparent 48%),
    conic-gradient(from 120deg, transparent, rgba(29, 233, 182, 0.12), transparent 34%);
}

.download-device::before,
.download-device::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(29, 233, 182, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.download-device::before {
  width: 82%;
  aspect-ratio: 1;
  animation: radar-rotate 22s linear infinite;
}

.download-device::after {
  width: 52%;
  aspect-ratio: 1;
  animation: radar-rotate 14s linear infinite reverse;
}

.download-float {
  position: absolute;
  z-index: 2;
  min-width: 156px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(10, 10, 10, 0.78);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.38),
    0 0 40px rgba(29, 233, 182, 0.1);
  backdrop-filter: blur(18px);
}

.download-float small {
  display: block;
  margin-bottom: 5px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
}

.download-float strong {
  font-size: 16px;
}

.float-one {
  left: 2%;
  top: 18%;
  animation: download-float-left 5.8s ease-in-out infinite;
}

.float-two {
  right: 1%;
  bottom: 18%;
  animation: download-float-right 6.4s ease-in-out infinite;
}

.download-phone {
  position: relative;
  z-index: 1;
  width: min(330px, 100%);
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 34px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 34%),
    #070707;
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.48),
    0 0 90px rgba(29, 233, 182, 0.13);
  transform: rotateY(-12deg) rotateX(5deg);
  animation: download-phone-float 6.6s ease-in-out infinite;
  overflow: hidden;
  isolation: isolate;
}

.download-phone::before,
.download-phone::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
}

.download-phone::before {
  z-index: 6;
  background:
    radial-gradient(circle at 18% 91%, rgba(255, 195, 82, 0.72), transparent 7%),
    radial-gradient(circle at 42% 86%, rgba(255, 244, 179, 0.78), transparent 9%),
    radial-gradient(circle at 70% 88%, rgba(255, 119, 38, 0.58), transparent 11%),
    repeating-linear-gradient(102deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 11px),
    linear-gradient(0deg, rgba(4, 4, 4, 0.99), rgba(26, 17, 12, 0.98) 28%, rgba(109, 38, 14, 0.92) 35%, rgba(240, 84, 25, 0.86) 39%, rgba(255, 239, 157, 0.76) 42%, transparent 52%);
  mix-blend-mode: screen;
  clip-path: inset(100% 0 0 0 round 34px);
  filter: contrast(1.18);
}

.download-phone::after {
  z-index: 7;
  background:
    radial-gradient(circle at 26% 72%, rgba(0, 0, 0, 0.72), transparent 11%),
    radial-gradient(circle at 66% 81%, rgba(0, 0, 0, 0.76), transparent 13%),
    radial-gradient(circle at 44% 92%, rgba(55, 35, 20, 0.7), transparent 16%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.9), rgba(10, 9, 8, 0.76) 42%, transparent 64%),
    repeating-linear-gradient(82deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 13px);
  mix-blend-mode: multiply;
  clip-path: inset(100% 0 0 0 round 34px);
}

.download-section.is-downloading .download-phone::before {
  animation: phone-char-overlay 5.2s cubic-bezier(0.16, 0.82, 0.22, 1) both;
}

.download-section.is-downloading .download-phone::after {
  animation: phone-soot-overlay 5.2s cubic-bezier(0.16, 0.82, 0.22, 1) both;
}

.download-top,
.download-status,
.download-list span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.download-top {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  font-family: var(--font-mono);
}

.download-top small {
  color: var(--accent);
}

.download-radar {
  position: relative;
  width: 220px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 28px auto;
}

.download-radar::before {
  content: "";
  position: absolute;
  inset: 21%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(29, 233, 182, 0.34), transparent 36%);
  animation: radar-sweep 3.2s linear infinite;
}

.download-radar i,
.download-radar strong {
  position: absolute;
  border-radius: 50%;
}

.download-radar i {
  border: 1px solid rgba(29, 233, 182, 0.28);
  animation: pulse 3.4s ease-out infinite;
}

.download-radar i:nth-child(1) {
  inset: 0;
}

.download-radar i:nth-child(2) {
  inset: 38px;
  animation-delay: -1.1s;
}

.download-radar i:nth-child(3) {
  inset: 76px;
  animation-delay: -2.2s;
}

.download-radar strong {
  width: 22px;
  height: 22px;
  background: var(--accent);
  box-shadow: 0 0 42px var(--accent);
  animation: beacon-pulse 1.8s ease-in-out infinite;
}

.download-status {
  position: relative;
  padding: 15px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.download-status::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(29, 233, 182, 0.12), transparent);
  transform: translateX(-120%);
  animation: download-status-scan 4.2s ease-in-out infinite;
}

.download-status small {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.download-status strong {
  display: block;
  margin: 7px 0 5px;
  font-size: 21px;
  line-height: 1.08;
}

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

.download-pulse-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
  margin-top: 12px;
}

.download-pulse-row i {
  height: 24px;
  border: 1px solid rgba(29, 233, 182, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(29, 233, 182, 0.22), rgba(29, 233, 182, 0.04));
  transform-origin: center bottom;
  animation: download-bars 1.4s ease-in-out infinite;
}

.download-pulse-row i:nth-child(2) {
  animation-delay: -0.25s;
}

.download-pulse-row i:nth-child(3) {
  animation-delay: -0.5s;
}

.download-pulse-row i:nth-child(4) {
  animation-delay: -0.75s;
}

.download-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.download-list span {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.download-list i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.download-section.is-downloading {
  box-shadow:
    0 0 0 1px rgba(29, 233, 182, 0.18) inset,
    0 0 48px rgba(29, 233, 182, 0.12),
    0 34px 100px rgba(0, 0, 0, 0.42);
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 10px 0 72px;
}

.strip article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(17, 17, 17, 0.72);
  transform-style: preserve-3d;
  transform: perspective(900px) rotateX(0deg) translateZ(0);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.strip article:hover {
  border-color: rgba(29, 233, 182, 0.32);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
  transform: perspective(900px) rotateX(4deg) translateY(-6px);
}

.strip span {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
}

.strip h2,
.closing h2 {
  margin: 34px 0 10px;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.05;
}

.strip p,
.closing p,
.control-room p {
  color: var(--muted);
  line-height: 1.45;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.control-room h2 {
  margin: 0;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.03;
}

.experience,
.control-room,
.use-cases {
  padding: 76px 0;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(220px, auto));
  gap: 14px;
  perspective: 1200px;
}

.moment-card {
  position: relative;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 42%),
    #101010;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform-style: preserve-3d;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.moment-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -38% 12%;
  height: 190px;
  border: 1px solid rgba(29, 233, 182, 0.2);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.moment-card:hover {
  border-color: rgba(29, 233, 182, 0.34);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.34),
    0 0 80px rgba(29, 233, 182, 0.08);
  transform: rotateX(4deg) translateY(-8px);
}

.moment-card.tall {
  grid-row: 1 / 3;
  min-height: 454px;
}

.moment-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--accent-line);
  border-radius: 8px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--accent-soft);
}

.moment-card h3 {
  max-width: 420px;
  margin: 84px 0 10px;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.04;
}

.moment-card:not(.tall) h3 {
  margin-top: 46px;
}

.moment-card p {
  max-width: 430px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.mini-radar {
  position: absolute;
  right: 26px;
  bottom: 30px;
  width: 210px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  transform: rotateX(62deg) rotateZ(-16deg);
  transform-style: preserve-3d;
}

.mini-radar i,
.mini-radar strong {
  position: absolute;
  border-radius: 50%;
}

.mini-radar i {
  border: 1px solid rgba(29, 233, 182, 0.28);
  animation: pulse 3.6s infinite ease-out;
}

.mini-radar i:nth-child(1) {
  inset: 0;
}

.mini-radar i:nth-child(2) {
  inset: 40px;
  animation-delay: -1s;
}

.mini-radar i:nth-child(3) {
  inset: 78px;
  animation-delay: -2s;
}

.mini-radar strong {
  width: 18px;
  height: 18px;
  background: var(--accent);
  box-shadow: 0 0 34px var(--accent);
}

.control-room {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1.12fr);
  align-items: center;
  gap: 54px;
}

.control-room > div:first-child {
  max-width: 560px;
}

.control-room > div:first-child p:last-child {
  margin-top: 20px;
  font-size: 18px;
}

.control-stack {
  display: grid;
  gap: 14px;
  perspective: 1000px;
}

.control-stack article {
  min-height: 104px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(29, 233, 182, 0.08), transparent 34%),
    #101010;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.22);
  transform: rotateY(-10deg) translateZ(0);
}

.control-stack article:nth-child(2) {
  transform: rotateY(-4deg) translateX(28px) translateZ(22px);
}

.control-stack article:nth-child(3) {
  transform: rotateY(3deg) translateX(58px) translateZ(48px);
}

.control-stack span {
  grid-column: 1 / -1;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.control-stack strong {
  font-size: 22px;
  font-weight: 500;
}

.toggle {
  position: relative;
  width: 56px;
  height: 32px;
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  background: var(--accent-soft);
}

.toggle::after {
  content: "";
  position: absolute;
  right: 5px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
}

.range {
  width: 160px;
  height: 8px;
  border-radius: 999px;
  background: #252525;
  overflow: hidden;
}

.range i {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--warm));
}

.control-stack em {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  min-width: 58px;
  border: 1px solid rgba(255, 183, 77, 0.28);
  border-radius: 8px;
  color: var(--warm);
  font-style: normal;
  background: rgba(255, 183, 77, 0.1);
}

.use-cases {
  padding-top: 66px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  grid-auto-rows: minmax(310px, auto);
  gap: 12px;
}

.scenario-card {
  position: relative;
  min-height: 310px;
  display: grid;
  align-items: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #050606;
  isolation: isolate;
  transform: translateY(0);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.scenario-card:hover {
  border-color: var(--accent-line);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.34);
  transform: translateY(-8px);
}

.scenario-feature {
  grid-row: span 2;
  min-height: 632px;
}

.scenario-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transform: scale(1.02);
  transition:
    opacity 180ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.scenario-card:hover img {
  opacity: 0.96;
  transform: scale(1.06);
}

.scenario-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.82)),
    radial-gradient(circle at 18% 18%, rgba(29, 233, 182, 0.14), transparent 32%);
}

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

.scenario-card small {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(29, 233, 182, 0.22);
  border-radius: 999px;
  padding: 0 10px;
  color: var(--accent);
  background: rgba(29, 233, 182, 0.08);
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
}

.scenario-card strong {
  display: block;
  max-width: 330px;
  margin-top: 12px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.scenario-feature strong {
  max-width: 560px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
}

.scenario-card span {
  display: block;
  max-width: 520px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.38;
}

.scenario-feature span {
  font-size: 18px;
}

.closing {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(24px, 6vw, 84px);
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 4vw, 42px);
  background:
    radial-gradient(circle at 12% 38%, rgba(29, 233, 182, 0.12), transparent 32%),
    linear-gradient(145deg, #101010, #090909);
  overflow: hidden;
  transform-style: preserve-3d;
}

.reveal {
  opacity: 0;
  translate: 0 34px;
  scale: 0.98;
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    translate 700ms cubic-bezier(0.22, 1, 0.36, 1),
    scale 700ms cubic-bezier(0.22, 1, 0.36, 1),
    rotate 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
  filter: blur(0);
}

.reveal-3d {
  translate: 0 42px;
  rotate: x 10deg;
  scale: 0.96;
  transform-origin: center top;
}

.reveal-3d.is-visible {
  translate: 0 0;
  rotate: x 0deg;
  scale: 1;
}

.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .lede,
.actions,
.signal-row {
  animation: hero-rise 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-copy h1 {
  animation-delay: 90ms;
}

.hero-copy .lede {
  animation-delay: 180ms;
}

.actions {
  animation-delay: 270ms;
}

.signal-row {
  animation-delay: 360ms;
}

.closing-radar {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    radial-gradient(circle, rgba(29, 233, 182, 0.12), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 42%),
    #050606;
  box-shadow:
    24px 28px 70px rgba(0, 0, 0, 0.42),
    0 0 90px rgba(29, 233, 182, 0.12);
  overflow: hidden;
  transform: perspective(900px) rotateY(18deg) rotateX(4deg);
}

.closing-radar::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(29, 233, 182, 0.16) 50%, transparent 51%),
    linear-gradient(transparent 49%, rgba(29, 233, 182, 0.14) 50%, transparent 51%);
  opacity: 0.42;
  animation: radar-rotate 12s linear infinite;
}

.closing-radar::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 48%;
  border-radius: 50%;
  background: conic-gradient(from 0deg, rgba(29, 233, 182, 0.32), transparent 42%);
  filter: blur(1px);
  animation: radar-sweep 3.8s linear infinite;
}

.closing-ring {
  position: absolute;
  border: 1px solid rgba(29, 233, 182, 0.26);
  border-radius: 50%;
  animation: closing-ripple 3.4s ease-out infinite;
}

.ring-a {
  inset: 17%;
}

.ring-b {
  inset: 27%;
  animation-delay: -1.1s;
}

.ring-c {
  inset: 37%;
  animation-delay: -2.2s;
}

.closing-orbit {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 22px var(--accent);
  z-index: 2;
}

.orbit-a {
  animation: closing-orbit-a 5.4s linear infinite;
}

.orbit-b {
  width: 9px;
  height: 9px;
  background: var(--warm);
  box-shadow: 0 0 20px var(--warm);
  animation: closing-orbit-b 6.2s linear infinite;
}

.orbit-c {
  width: 9px;
  height: 9px;
  background: var(--rose);
  box-shadow: 0 0 20px var(--rose);
  animation: closing-orbit-c 5.8s linear infinite;
}

.closing-core {
  position: relative;
  z-index: 3;
  width: 112px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.9);
  box-shadow:
    inset 0 0 30px rgba(29, 233, 182, 0.06),
    0 0 48px rgba(29, 233, 182, 0.16);
}

.closing-core strong {
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.closing-core span {
  color: var(--quiet);
  font-size: 11px;
  text-transform: uppercase;
}

.closing h2 {
  max-width: 560px;
  margin-top: 0;
  font-size: 68px;
}

.signup {
  display: flex;
  gap: 10px;
  max-width: 560px;
  margin-top: 28px;
}

.signup button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.signup button:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 60px rgba(29, 233, 182, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.14) inset;
}

.signup button:disabled {
  cursor: wait;
  opacity: 0.82;
}

.signup button.is-sent {
  background: linear-gradient(90deg, var(--accent), #95e1d3);
}

.signup input {
  min-width: 0;
  min-height: 48px;
  flex: 1;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--text);
  background: #090909;
}

.signup input:focus {
  outline: 2px solid var(--accent-line);
  outline-offset: 2px;
}

.creator-link {
  position: relative;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(29, 233, 182, 0.3);
  border-radius: 8px;
  padding: 0 14px 0 18px;
  color: var(--text);
  background: rgba(29, 233, 182, 0.08);
  overflow: hidden;
  isolation: isolate;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.creator-link:hover {
  border-color: rgba(29, 233, 182, 0.52);
  background: rgba(29, 233, 182, 0.13);
  box-shadow: 0 16px 48px rgba(29, 233, 182, 0.12);
  transform: translateY(-2px);
}

.creator-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(29, 233, 182, 0.24), transparent);
  transform: translateX(-120%);
  z-index: -1;
}

.creator-link::after {
  content: "";
  position: absolute;
  right: 52px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
  opacity: 0;
}

.creator-link.is-launching {
  border-color: rgba(29, 233, 182, 0.62);
  background: rgba(29, 233, 182, 0.16);
  box-shadow:
    0 20px 58px rgba(29, 233, 182, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.creator-link.is-launching::before {
  animation: linkedin-scan 620ms ease-out forwards;
}

.creator-link.is-launching::after {
  animation: linkedin-dot 620ms ease-out forwards;
}

.creator-link.is-launching strong {
  animation: linkedin-badge-pop 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.creator-link span {
  font-weight: 700;
}

.creator-link strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #07110f;
  background: var(--accent);
  font-size: 16px;
  line-height: 1;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-policy {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 0 16px;
  color: #d8d8d8;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 700;
  transition:
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease,
    background 160ms ease;
}

.footer-policy:hover {
  color: var(--accent);
  border-color: rgba(29, 233, 182, 0.34);
  background: rgba(29, 233, 182, 0.08);
  transform: translateY(-2px);
}

.brand-footer {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: start;
  margin: 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background:
    radial-gradient(circle at 25% 18%, rgba(29, 233, 182, 0.13), transparent 28%),
    linear-gradient(180deg, #111, #242424);
  overflow: hidden;
}

.brand-footer::before {
  content: "";
  position: absolute;
  inset: auto -8% -36%;
  height: 70%;
  background:
    radial-gradient(circle at 24% 44%, rgba(29, 233, 182, 0.2), transparent 34%),
    linear-gradient(180deg, transparent, rgba(29, 233, 182, 0.12));
  filter: blur(18px);
}

.brand-footer::after {
  content: "";
  position: absolute;
  inset: 96px 0 auto;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  mix-blend-mode: screen;
}

.footer-meta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 96px;
  padding: 18px 44px;
}

.footer-meta p {
  margin: 0;
  color: #d8d8d8;
  font-size: 15px;
}

.footer-wordmark {
  position: absolute;
  left: 50%;
  bottom: -28px;
  z-index: 2;
  color: rgba(237, 237, 237, 0.2);
  background: linear-gradient(180deg, rgba(237, 237, 237, 0.78), rgba(29, 233, 182, 0.2));
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 250px;
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: 0;
  text-shadow: 0 38px 110px rgba(0, 0, 0, 0.35);
}

.privacy-shell {
  min-height: 100vh;
  padding-bottom: 48px;
}

.privacy-nav {
  margin-bottom: 54px;
}

.privacy-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: center;
  gap: clamp(28px, 7vw, 92px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 66px);
  background:
    radial-gradient(circle at 78% 42%, rgba(29, 233, 182, 0.14), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), transparent 42%),
    rgba(12, 12, 12, 0.82);
  overflow: hidden;
  isolation: isolate;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 74% 48%, black 20%, transparent 70%);
}

.privacy-hero h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: 0.92;
}

.privacy-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: #b8b8b8;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  line-height: 1.28;
}

.privacy-signal {
  position: relative;
  width: min(100%, 360px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: center;
}

.privacy-signal span {
  position: absolute;
  border: 1px solid rgba(29, 233, 182, 0.28);
  border-radius: 50%;
  animation: intro-ring 2200ms ease-out infinite;
}

.privacy-signal span:nth-child(1) {
  inset: 0;
}

.privacy-signal span:nth-child(2) {
  inset: 54px;
  animation-delay: -720ms;
}

.privacy-signal span:nth-child(3) {
  inset: 108px;
  animation-delay: -1440ms;
}

.privacy-signal i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow:
    0 0 36px rgba(29, 233, 182, 0.7),
    0 0 110px rgba(29, 233, 182, 0.25);
}

.policy-panel {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 44%),
    rgba(12, 12, 12, 0.86);
  overflow: hidden;
}

.policy-updated {
  margin: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 13px;
}

.policy-panel article {
  padding: clamp(22px, 3.6vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-panel article:last-child {
  border-bottom: 0;
}

.policy-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.policy-panel p {
  max-width: 900px;
  margin: 0;
  color: #b9b9b9;
  font-size: 17px;
  line-height: 1.7;
}

.policy-panel p + p {
  margin-top: 14px;
}

.policy-panel a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(29, 233, 182, 0.42);
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

.privacy-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.closing.signal-sent {
  animation: section-ping 920ms ease-out both;
}

.closing.signal-sent::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(29, 233, 182, 0.44);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: success-wave 1100ms ease-out forwards;
  pointer-events: none;
}

.subscribe-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 20;
  width: min(420px, calc(100% - 28px));
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(29, 233, 182, 0.34);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 30%, rgba(29, 233, 182, 0.18), transparent 36%),
    rgba(10, 10, 10, 0.88);
  box-shadow:
    0 22px 80px rgba(0, 0, 0, 0.48),
    0 0 64px rgba(29, 233, 182, 0.16);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 28px) scale(0.96);
  opacity: 0;
  pointer-events: none;
}

.subscribe-toast.is-visible {
  animation: toast-in 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.subscribe-toast.is-leaving {
  animation: toast-out 280ms ease forwards;
}

.subscribe-toast.is-error {
  border-color: rgba(255, 82, 82, 0.38);
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 82, 82, 0.14), transparent 36%),
    rgba(10, 10, 10, 0.88);
}

.subscribe-toast.is-error .toast-mark {
  border-color: rgba(255, 82, 82, 0.34);
  background: rgba(255, 82, 82, 0.1);
}

.subscribe-toast.is-error .toast-mark::before {
  border-color: rgba(255, 82, 82, 0.22);
}

.subscribe-toast.is-error .toast-mark::after {
  width: 17px;
  height: 3px;
  border: 0;
  border-radius: 999px;
  background: var(--danger);
  transform: rotate(0deg);
}

.toast-mark {
  position: relative;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent-line);
  border-radius: 50%;
  background: var(--accent-soft);
}

.toast-mark::before,
.toast-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.toast-mark::before {
  inset: -8px;
  border: 1px solid rgba(29, 233, 182, 0.22);
  animation: toast-ring 1.6s ease-out infinite;
}

.toast-mark::after {
  width: 16px;
  height: 9px;
  border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  border-radius: 1px;
  transform: rotate(-45deg) translate(1px, -1px);
}

.subscribe-toast strong {
  display: block;
  margin-bottom: 3px;
  font-size: 16px;
}

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

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

@keyframes pulse {
  0% {
    opacity: 0;
    transform: translateZ(-20px) scale(0.82);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateZ(34px) scale(1.16);
  }
}

@keyframes intro-radar-in {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes intro-ring {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.18);
  }
}

@keyframes intro-dot {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.82);
  }
}

@keyframes intro-copy-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes intro-title-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes intro-grid {
  to {
    opacity: 1;
  }
}

@keyframes intro-exit {
  to {
    opacity: 0;
    transform: scale(1.02);
    visibility: hidden;
  }
}

@keyframes grid-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 44px 44px;
  }
}

@keyframes phone-hover {
  0%,
  100% {
    transform: translateZ(68px) translateY(0);
  }
  50% {
    transform: translateZ(82px) translateY(-10px);
  }
}

@keyframes phone-hover-tablet {
  0%,
  100% {
    transform: translateZ(42px) translateY(0);
  }
  50% {
    transform: translateZ(52px) translateY(-7px);
  }
}

@keyframes phone-hover-mobile {
  0%,
  100% {
    transform: translateZ(24px) translateY(0);
  }
  50% {
    transform: translateZ(30px) translateY(-5px);
  }
}

@keyframes card-drift-left {
  0%,
  100% {
    transform: translateZ(160px) translateY(0) rotateY(22deg) rotateX(4deg);
  }
  50% {
    transform: translateZ(176px) translateY(-14px) rotateY(18deg) rotateX(8deg);
  }
}

@keyframes card-drift-right {
  0%,
  100% {
    transform: translateZ(130px) translateY(0) rotateY(-24deg) rotateX(8deg);
  }
  50% {
    transform: translateZ(148px) translateY(12px) rotateY(-20deg) rotateX(3deg);
  }
}

@keyframes beacon-float {
  0%,
  100% {
    transform: translate3d(0, 0, 20px);
  }
  50% {
    transform: translate3d(16px, -18px, 80px);
  }
}

@keyframes beacon-pulse {
  from {
    opacity: 0.7;
    transform: scale(0.52);
  }
  to {
    opacity: 0;
    transform: scale(1.45);
  }
}

@keyframes download-phone-float {
  0%,
  100% {
    transform: rotateY(-12deg) rotateX(5deg) translateY(0);
  }
  50% {
    transform: rotateY(-8deg) rotateX(7deg) translateY(-12px);
  }
}

@keyframes download-scan-a {
  0%,
  100% {
    transform: translateX(-120px) rotate(14deg);
  }
  50% {
    transform: translateX(120px) rotate(14deg);
  }
}

@keyframes download-scan-b {
  0%,
  100% {
    transform: translateX(90px) rotate(-11deg);
  }
  50% {
    transform: translateX(-120px) rotate(-11deg);
  }
}

@keyframes download-meter {
  0%,
  100% {
    transform: translateX(-4%);
  }
  50% {
    transform: translateX(12%);
  }
}

@keyframes download-float-left {
  0%,
  100% {
    transform: translate3d(0, 0, 70px) rotate(-2deg);
  }
  50% {
    transform: translate3d(8px, -12px, 70px) rotate(2deg);
  }
}

@keyframes download-float-right {
  0%,
  100% {
    transform: translate3d(0, 0, 70px) rotate(2deg);
  }
  50% {
    transform: translate3d(-10px, 12px, 70px) rotate(-2deg);
  }
}

@keyframes download-status-scan {
  0%,
  44% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes burn-stage {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.76);
    filter: blur(8px);
  }
  12%,
  86% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.94);
    filter: blur(6px);
  }
}

@keyframes burn-front-rise {
  0%,
  8% {
    opacity: 0;
    transform: translateX(-50%) translateY(108px) scaleX(0.72) scaleY(0.42) skewX(-4deg);
    filter: blur(7px) brightness(0.7);
  }
  18% {
    opacity: 0.78;
    transform: translateX(-50%) translateY(58px) scaleX(0.94) scaleY(0.62) skewX(3deg);
    filter: blur(7px) brightness(0.98);
  }
  36% {
    opacity: 0.86;
    transform: translateX(-50%) translateY(-36px) scaleX(1.02) scaleY(0.72) skewX(-3deg);
    filter: blur(8px) brightness(1.08);
  }
  58% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(-174px) scaleX(0.82) scaleY(0.58) skewX(3deg);
    filter: blur(10px) brightness(0.9);
  }
  76% {
    opacity: 0.22;
    transform: translateX(-50%) translateY(-292px) scaleX(0.46) scaleY(0.38) skewX(-8deg);
    filter: blur(5px) brightness(0.7);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-326px) scaleX(0.36) scaleY(0.22);
    filter: blur(6px) brightness(0.6);
  }
}

@keyframes scorch-line-rise {
  0%,
  9% {
    opacity: 0;
    transform: translateX(-50%) translateY(96px) scaleX(0.56);
  }
  18% {
    opacity: 1;
    transform: translateX(-50%) translateY(46px) scaleX(0.9);
  }
  38% {
    opacity: 0.96;
    transform: translateX(-50%) translateY(-54px) scaleX(0.96);
  }
  58% {
    opacity: 0.86;
    transform: translateX(-50%) translateY(-176px) scaleX(0.74);
  }
  76% {
    opacity: 0.36;
    transform: translateX(-50%) translateY(-294px) scaleX(0.58);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-322px) scaleX(0.32);
  }
}

@keyframes ember-pulse {
  0%,
  12% {
    opacity: 0;
    transform: translateX(-50%) scale(0.54);
    filter: blur(8px) brightness(0.72);
  }
  24% {
    opacity: 0.96;
    transform: translateX(-50%) scale(0.94);
    filter: blur(1px) brightness(1.35);
  }
  50% {
    opacity: 0.78;
    transform: translateX(-50%) scale(1.06);
    filter: blur(2px) brightness(1.08);
  }
  76% {
    opacity: 0.36;
    transform: translateX(-50%) scale(0.84);
    filter: blur(8px) brightness(0.74);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) scale(0.62);
    filter: blur(12px) brightness(0.48);
  }
}

@keyframes heat-wisp-rise {
  0%,
  10% {
    opacity: 0;
    transform: translateX(-50%) translateY(98px) scale(0.36) rotate(var(--flame-rot, -7deg));
  }
  22% {
    opacity: 0.58;
    transform: translateX(-50%) translateY(54px) scale(0.78) rotate(var(--flame-sway, 6deg));
  }
  44% {
    opacity: 0.42;
    transform: translateX(-50%) translateY(-42px) scale(1.04) rotate(var(--flame-rot, -7deg));
  }
  66% {
    opacity: 0.18;
    transform: translateX(-50%) translateY(-142px) scale(0.86) rotate(var(--flame-sway, 6deg));
  }
  82% {
    opacity: 0.05;
    transform: translateX(-50%) translateY(-206px) scale(0.62) rotate(var(--flame-rot, -7deg));
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-248px) scale(0.38) rotate(0deg);
  }
}

@keyframes heat-wisp-flicker {
  from {
    filter: blur(11px) contrast(1.08) brightness(0.92);
  }
  to {
    filter: blur(16px) contrast(1.18) brightness(1.14);
  }
}

@keyframes spark-burst {
  0%,
  22% {
    opacity: 0;
    transform: translate(0, 0) scale(0.4) rotate(var(--spark-r, 0deg));
  }
  36% {
    opacity: 1;
    transform: translate(calc(var(--spark-x, 0px) * 0.24), calc(var(--spark-y, -180px) * 0.24)) scale(1) rotate(var(--spark-r, 0deg));
  }
  62% {
    opacity: 0.76;
    transform: translate(calc(var(--spark-x, 0px) * 0.72), calc(var(--spark-y, -180px) * 0.72)) scale(0.74) rotate(calc(var(--spark-r, 0deg) + 52deg));
  }
  100% {
    opacity: 0;
    transform: translate(var(--spark-x, 0px), var(--spark-y, -180px)) scale(0.16) rotate(calc(var(--spark-r, 0deg) + 118deg));
  }
}

@keyframes smoke-rise {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-50%) translateY(64px) scale(0.34);
  }
  44% {
    opacity: 0.56;
    transform: translateX(-58%) translateY(-58px) scale(0.9);
  }
  80% {
    opacity: 0.28;
    transform: translateX(-44%) translateY(-220px) scale(1.55);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(-294px) scale(1.95);
  }
}

@keyframes ash-float {
  0%,
  18% {
    opacity: 0;
    transform: translate(0, 0) scale(0.4) rotate(0deg);
  }
  36%,
  78% {
    opacity: 1;
    transform: translate(var(--ash-x, 24px), -78px) scale(1) rotate(140deg);
  }
  100% {
    opacity: 0;
    transform: translate(calc(var(--ash-x, 24px) * 1.5), -132px) scale(0.2) rotate(260deg);
  }
}

.ash-a {
  --ash-x: -52px;
}

.ash-b {
  --ash-x: 34px;
}

.ash-c {
  --ash-x: 72px;
}

.ash-d {
  --ash-x: -18px;
}

@keyframes ash-bed-form {
  0%,
  32% {
    opacity: 0;
    transform: translateX(-50%) scale(0.35);
    filter: blur(5px);
  }
  64%,
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
    filter: blur(0.4px);
  }
}

@keyframes phone-burn-away {
  0%,
  12% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 34px);
    transform: rotateY(-12deg) rotateX(5deg) translateY(0) scale(1);
    filter: brightness(1) contrast(1) saturate(1);
  }
  24% {
    opacity: 1;
    clip-path: inset(0 0 7% 0 round 34px);
    transform: rotateY(-10deg) rotateX(5deg) translateY(-4px) scale(0.99);
    filter: brightness(1.24) contrast(1.15) saturate(1.35);
  }
  42% {
    opacity: 0.92;
    clip-path: inset(0 0 36% 0 round 34px);
    transform: rotateY(-8deg) rotateX(4deg) translateY(6px) scale(0.94);
    filter: brightness(0.78) contrast(1.52) saturate(0.62) sepia(0.62) blur(0.25px);
  }
  60% {
    opacity: 0.58;
    clip-path: inset(0 0 68% 0 round 28px);
    transform: rotateY(-4deg) rotateX(2deg) translateY(18px) scale(0.72);
    filter: brightness(0.46) contrast(1.82) saturate(0.22) sepia(0.88) blur(1.4px);
  }
  75% {
    opacity: 0.18;
    clip-path: inset(0 0 91% 0 round 18px);
    transform: rotateY(0deg) rotateX(0deg) translateY(42px) scale(0.44);
    filter: brightness(0.2) contrast(2.2) saturate(0) blur(4px);
  }
  100% {
    opacity: 0;
    clip-path: inset(0 0 100% 0 round 10px);
    transform: rotateY(0deg) rotateX(0deg) translateY(52px) scale(0.34);
    filter: brightness(0.16) contrast(2.4) saturate(0) blur(6px);
  }
}

@keyframes phone-char-overlay {
  0%,
  10% {
    opacity: 0;
    clip-path: inset(100% 0 0 0 round 34px);
    filter: blur(2px) brightness(0.9);
  }
  22% {
    opacity: 0.78;
    clip-path: inset(72% 0 0 0 round 34px);
    filter: blur(0.8px) brightness(1.35);
  }
  42% {
    opacity: 0.95;
    clip-path: inset(42% 0 0 0 round 34px);
    filter: blur(0.3px) brightness(1.1);
  }
  62% {
    opacity: 0.78;
    clip-path: inset(13% 0 0 0 round 26px);
    filter: blur(0.8px) brightness(0.72);
  }
  78%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0 round 12px);
    filter: blur(5px) brightness(0.42);
  }
}

@keyframes phone-soot-overlay {
  0%,
  16% {
    opacity: 0;
    clip-path: inset(100% 0 0 0 round 34px);
  }
  36% {
    opacity: 0.52;
    clip-path: inset(58% 0 0 0 round 34px);
  }
  62% {
    opacity: 0.72;
    clip-path: inset(18% 0 0 0 round 24px);
  }
  78%,
  100% {
    opacity: 0;
    clip-path: inset(0 0 0 0 round 12px);
  }
}

@keyframes float-burn-away {
  0%,
  12% {
    opacity: 1;
    filter: brightness(1) contrast(1) saturate(1);
  }
  30% {
    opacity: 1;
    filter: brightness(1.45) contrast(1.18) saturate(1.5);
  }
  54% {
    opacity: 0.62;
    filter: brightness(0.62) contrast(1.7) saturate(0.45) sepia(0.8) blur(0.5px);
  }
  72%,
  100% {
    opacity: 0;
    filter: brightness(0.18) contrast(2) saturate(0) blur(5px);
  }
}

@keyframes apk-from-ashes {
  0%,
  56% {
    opacity: 0;
    transform: translate(-50%, 76px) scale(0.24) rotate(16deg);
    filter: blur(8px) brightness(1.8);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -22px) scale(1.16) rotate(-7deg);
    filter: blur(0) brightness(1.25);
  }
  84% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0) brightness(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    filter: blur(0) brightness(1);
  }
}

@keyframes download-bars {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.44;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes beam-scan {
  0%,
  100% {
    opacity: 0.22;
    filter: blur(0);
  }
  50% {
    opacity: 0.82;
    filter: blur(0.5px);
  }
}

@keyframes dot-orbit-one {
  from {
    transform: rotate(0deg) translateX(12px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(12px) rotate(-360deg);
  }
}

@keyframes dot-orbit-two {
  from {
    transform: rotate(0deg) translateX(16px) rotate(0deg);
  }
  to {
    transform: rotate(-360deg) translateX(16px) rotate(360deg);
  }
}

@keyframes dot-orbit-three {
  from {
    transform: rotate(0deg) translateX(10px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(10px) rotate(-360deg);
  }
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes section-ping {
  0% {
    box-shadow:
      0 0 0 0 rgba(29, 233, 182, 0),
      0 0 0 0 rgba(29, 233, 182, 0);
  }
  35% {
    box-shadow:
      0 0 0 1px rgba(29, 233, 182, 0.26),
      0 0 92px rgba(29, 233, 182, 0.18);
  }
  100% {
    box-shadow:
      0 0 0 0 rgba(29, 233, 182, 0),
      0 0 0 rgba(29, 233, 182, 0);
  }
}

@keyframes node-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scale(0.84);
  }
  50% {
    opacity: 1;
    transform: scale(1.22);
  }
}

@keyframes success-wave {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(34);
  }
}

@keyframes toast-in {
  to {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

@keyframes toast-out {
  from {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(-50%, 18px) scale(0.97);
  }
}

@keyframes toast-ring {
  from {
    opacity: 0.8;
    transform: scale(0.72);
  }
  to {
    opacity: 0;
    transform: scale(1.38);
  }
}

@keyframes creator-pulse {
  0% {
    opacity: 0;
    transform: scale(0.66);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

@keyframes linkedin-scan {
  to {
    transform: translateX(120%);
  }
}

@keyframes linkedin-dot {
  0% {
    opacity: 0;
    transform: translateX(-24px) scale(0.5);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(34px) scale(1);
  }
}

@keyframes linkedin-badge-pop {
  0%,
  100% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.18) rotate(-4deg);
  }
}

@keyframes closing-ripple {
  0% {
    opacity: 0;
    transform: scale(0.78);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

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

@keyframes radar-sweep {
  to {
    transform: rotate(360deg);
  }
}

@keyframes closing-orbit-a {
  from {
    transform: rotate(0deg) translateX(108px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(108px) rotate(-360deg);
  }
}

@keyframes closing-orbit-b {
  from {
    transform: rotate(80deg) translateX(86px) rotate(-80deg);
  }
  to {
    transform: rotate(440deg) translateX(86px) rotate(-440deg);
  }
}

@keyframes closing-orbit-c {
  from {
    transform: rotate(220deg) translateX(132px) rotate(-220deg);
  }
  to {
    transform: rotate(580deg) translateX(132px) rotate(-580deg);
  }
}

@media (max-width: 840px) {
  .shell {
    width: min(100% - 24px, 680px);
  }

  .nav {
    top: 10px;
    align-items: center;
    margin-top: 10px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 34px;
  }

  h1 {
    font-size: 64px;
  }

  .lede {
    font-size: 18px;
  }

  .hero-person {
    min-height: 620px;
  }

  .hero-person figcaption {
    right: 4%;
    width: min(260px, 54%);
  }

  .hero-person img {
    width: min(72%, 430px);
  }

  .strip h2 {
    font-size: 32px;
  }

  .closing h2 {
    font-size: 46px;
  }

  .product-stage {
    min-height: 600px;
    padding: 28px 0 44px;
  }

  .tech-label {
    display: none;
  }

  .phone {
    width: min(340px, calc(100vw - 56px));
    transform: translateZ(42px);
    animation: phone-hover-tablet 6.6s ease-in-out infinite;
  }

  .scene {
    width: 100%;
    min-height: 548px;
    transform: rotateX(5deg) rotateY(-6deg) scale(0.94);
  }

  .glass-card {
    width: 138px;
    min-height: 92px;
    padding: 14px;
    animation: none;
  }

  .card-left {
    left: 6px;
    top: 96px;
    transform: translateZ(92px) rotateY(14deg) rotateX(3deg);
  }

  .card-right {
    right: 8px;
    bottom: 96px;
    transform: translateZ(88px) rotateY(-14deg) rotateX(4deg);
  }

  .glass-card strong {
    font-size: 17px;
  }

  .glass-card small {
    font-size: 12px;
  }

  .radar {
    width: 214px;
  }

  .strip,
  .closing,
  .control-room,
  .download-section {
    grid-template-columns: 1fr;
  }

  .detail-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading h2,
  .control-room h2 {
    font-size: 34px;
  }

  .experience,
  .control-room,
  .use-cases {
    padding: 46px 0;
  }

  .video-showcase {
    padding: 28px 0 44px;
  }

  .video-frame {
    --video-inset: 8px;
  }

  .video-frame {
    scale: 1;
    translate: 0 0;
  }

  .download-section {
    margin-bottom: 44px;
    padding: 24px;
  }

  .download-device {
    min-height: 440px;
  }

  .download-phone-art {
    width: min(430px, 100%);
    transform: none;
  }

  .download-phone {
    transform: none;
  }

  .burn-download {
    width: 260px;
    height: 380px;
  }

  .apk-output {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
  }

  .download-float {
    min-width: 132px;
  }

  .float-one {
    left: 0;
    top: 7%;
  }

  .float-two {
    right: 0;
    bottom: 8%;
  }

  .experience-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .moment-card.tall {
    grid-row: auto;
    min-height: 340px;
  }

  .moment-card h3 {
    margin-top: 54px;
    font-size: 30px;
  }

  .mini-radar {
    width: 160px;
    right: 18px;
    bottom: 18px;
  }

  .control-stack article,
  .control-stack article:nth-child(2),
  .control-stack article:nth-child(3) {
    transform: none;
  }

  .scenario-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .scenario-feature {
    grid-row: auto;
  }

  .scenario-card,
  .scenario-feature {
    min-height: 420px;
  }

  .strip {
    padding-bottom: 42px;
  }

  .closing {
    margin-bottom: 24px;
  }

  .creator-link {
    justify-content: space-between;
  }

  .privacy-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .privacy-signal {
    width: min(280px, 100%);
  }

  .brand-footer {
    min-height: 360px;
  }

  .footer-meta {
    padding-inline: 24px;
  }

  .footer-links {
    flex-wrap: wrap;
  }

  .footer-wordmark {
    bottom: -18px;
    font-size: 158px;
  }
}

@media (max-width: 520px) {
  .actions,
  .signup,
  .download-actions {
    flex-direction: column;
  }

  .brand small {
    display: none;
  }

  .brand {
    gap: 8px;
  }

  .nav {
    padding-left: 10px;
  }

  .nav-cta {
    min-width: 72px;
    padding: 0 12px;
    font-size: 13px;
  }

  .button,
  .signup button,
  .download-actions .button {
    width: 100%;
  }

  .hero {
    padding-bottom: 46px;
  }

  h1 {
    font-size: 48px;
  }

  .lede {
    font-size: 16px;
  }

  .spec-row span {
    width: 100%;
  }

  .hero-person {
    min-height: 540px;
  }

  .hero-person img {
    width: min(88%, 360px);
  }

  .hero-person figcaption {
    left: 14px;
    right: 14px;
    bottom: 8px;
    width: auto;
  }

  .person-node {
    width: 9px;
    height: 9px;
  }

  .detail-strip {
    grid-template-columns: 1fr;
  }

  .detail-strip article {
    min-height: 170px;
  }

  .strip h2 {
    font-size: 26px;
  }

  .closing h2 {
    font-size: 36px;
  }

  .download-copy h2 {
    font-size: 40px;
    line-height: 1.02;
  }

  .download-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .download-device {
    min-height: 390px;
  }

  .download-phone-art {
    width: min(330px, 100%);
    animation: none;
  }

  .download-phone {
    width: min(286px, 100%);
    min-height: 390px;
    border-radius: 28px;
    animation: none;
  }

  .burn-download {
    width: 224px;
    height: 330px;
  }

  .apk-output {
    left: 50%;
    top: 50%;
    right: auto;
    bottom: auto;
    width: 74px;
    min-height: 88px;
    border-radius: 16px;
    padding: 9px;
  }

  .apk-output img {
    width: 40px;
    height: 40px;
  }

  .download-radar {
    width: 156px;
    margin: 18px auto;
  }

  .download-meter {
    grid-template-columns: 1fr auto;
  }

  .download-meter i {
    grid-column: 1 / -1;
    order: 3;
    margin-bottom: 11px;
  }

  .download-trust span {
    width: 100%;
  }

  .download-float {
    display: none;
  }

  .download-status strong {
    font-size: 18px;
  }

  .download-list span {
    min-height: 36px;
  }

  .product-stage {
    min-height: 590px;
    padding: 18px 0 34px;
  }

  .phone {
    width: min(318px, calc(100vw - 42px));
    border-radius: 28px;
    padding: 14px;
    animation: phone-hover-mobile 6.6s ease-in-out infinite;
  }

  .scene {
    min-height: 520px;
    transform: rotateX(4deg) rotateY(-4deg) scale(0.9);
  }

  .glass-card {
    display: none;
  }

  .radar {
    width: 190px;
    margin-bottom: 22px;
  }

  .phone h2 {
    font-size: 24px;
  }

  .phone p {
    font-size: 13px;
  }

  .friend-list article {
    grid-template-columns: 38px 1fr;
  }

  .friend-list button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .section-heading h2,
  .control-room h2 {
    font-size: 29px;
  }

  .moment-card {
    min-height: 230px;
    padding: 18px;
  }

  .video-frame {
    aspect-ratio: 16 / 10;
    border-radius: 8px;
  }

  .moment-card.tall {
    min-height: 320px;
  }

  .moment-card h3,
  .moment-card:not(.tall) h3 {
    margin-top: 38px;
    font-size: 25px;
  }

  .mini-radar {
    width: 128px;
    opacity: 0.72;
  }

  .control-stack article {
    grid-template-columns: 1fr;
    min-height: 96px;
  }

  .range {
    width: 100%;
  }

  .scenario-card,
  .scenario-feature {
    min-height: 360px;
  }

  .scenario-card div {
    padding: 18px;
  }

  .scenario-feature strong,
  .scenario-card strong {
    font-size: 28px;
  }

  .brand-footer {
    min-height: 330px;
  }

  .brand-footer::after {
    display: none;
  }

  .footer-meta {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 24px 18px 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .footer-meta p {
    line-height: 1.35;
  }

  .creator-link {
    width: min(100%, 220px);
    min-height: 52px;
  }

  .footer-links {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .footer-policy {
    justify-content: center;
    width: min(100%, 220px);
  }

  .privacy-nav {
    margin-bottom: 24px;
  }

  .privacy-hero {
    padding: 24px 18px;
  }

  .privacy-hero h1 {
    font-size: 44px;
  }

  .privacy-hero p:not(.eyebrow) {
    font-size: 17px;
  }

  .policy-panel article {
    padding: 22px 18px;
  }

  .policy-panel p {
    font-size: 15px;
  }

  .footer-wordmark {
    bottom: 4px;
    font-size: 92px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .reveal-3d,
  .reveal.is-visible,
  .reveal-3d.is-visible {
    opacity: 1;
    translate: 0 0;
    rotate: none;
    scale: 1;
    filter: none;
  }
}
