:root {
  color-scheme: dark;
  --bg: #050506;
  --bg-soft: #0c0c0e;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.1);
  --text: #f7f7f7;
  --muted: rgba(247, 247, 247, 0.68);
  --dim: rgba(247, 247, 247, 0.42);
  --red: #ff303a;
  --red-deep: #9e0b16;
  --red-dark: #4d050b;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 72% 8%, rgba(255, 48, 58, 0.19), transparent 34rem),
    radial-gradient(circle at 18% 16%, rgba(158, 11, 22, 0.18), transparent 30rem),
    linear-gradient(180deg, #030304 0%, #09090a 48%, #050506 100%);
  color: var(--text);
  font-family: "Geist", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 74%);
}

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

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

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 12px 12px 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 7, 8, 0.74);
  box-shadow: 0 18px 60px var(--shadow);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 18%, #ff6a70, var(--red) 38%, var(--red-deep));
  box-shadow: 0 0 28px rgba(255, 48, 58, 0.46);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a,
.nav-cta,
.primary-button,
.secondary-button {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid rgba(255, 48, 58, 0.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 48, 58, 0.12);
  font-size: 13px;
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 68px);
  grid-template-columns: minmax(0, 0.83fr) minmax(420px, 1.17fr);
  align-items: center;
  gap: 42px;
  padding: 86px 0 70px;
}

.hero-bg {
  position: absolute;
  inset: -84px calc(50% - 50vw) 0;
  z-index: -1;
  overflow: hidden;
}

.radial {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.75;
}

.radial-one {
  right: 6%;
  top: 8%;
  background: radial-gradient(circle, rgba(255, 48, 58, 0.35), rgba(158, 11, 22, 0.1) 45%, transparent 70%);
  animation: drift 9s ease-in-out infinite alternate;
}

.radial-two {
  left: -8%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(255, 48, 58, 0.18), transparent 68%);
  animation: drift 12s ease-in-out infinite alternate-reverse;
}

.scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0,
    transparent 8px,
    rgba(255, 255, 255, 0.018) 9px
  );
  opacity: 0.52;
  animation: scan 8s linear infinite;
}

.hero-copy {
  max-width: 600px;
  padding-bottom: 44px;
}

.hero h1 {
  max-width: 9.2em;
  margin: 0;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.93;
  letter-spacing: 0;
}

.hero p {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  font-weight: 500;
  line-height: 1.55;
}

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

.primary-button,
.secondary-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 15px;
  font-weight: 850;
}

.primary-button {
  border: 1px solid rgba(255, 116, 122, 0.45);
  background: linear-gradient(135deg, var(--red), var(--red-deep));
  box-shadow: 0 18px 46px rgba(255, 48, 58, 0.28);
  color: #fff;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.primary-button:hover,
.secondary-button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: relative;
  align-self: center;
  perspective: 1000px;
}

.hero-visual img {
  display: block;
  width: min(100%, 760px);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  box-shadow:
    0 38px 110px rgba(0, 0, 0, 0.72),
    0 0 110px rgba(255, 48, 58, 0.22);
  transform: rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
  transform-origin: center;
  transition: transform 220ms ease;
}

.hero-visual::before {
  position: absolute;
  inset: -7% -4%;
  z-index: -1;
  border-radius: 40px;
  content: "";
  background: conic-gradient(from 180deg, transparent, rgba(255, 48, 58, 0.42), transparent, rgba(255, 48, 58, 0.2), transparent);
  filter: blur(34px);
  opacity: 0.82;
  animation: pulseGlow 3.8s ease-in-out infinite;
}

.hero-reflection {
  width: 86%;
  height: 60px;
  margin: 18px 0 0 auto;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 48, 58, 0.24), transparent 68%);
  filter: blur(8px);
}

.signal-strip {
  position: absolute;
  right: 3%;
  bottom: 52px;
  left: 42%;
  display: flex;
  height: 54px;
  align-items: end;
  justify-content: center;
  gap: 9px;
  opacity: 0.8;
}

.signal-strip span,
.equalizer i {
  display: block;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff757b, var(--red));
  box-shadow: 0 0 18px rgba(255, 48, 58, 0.56);
  animation: bars 1.1s ease-in-out infinite alternate;
  animation-delay: calc(var(--i, 0) * -90ms);
}

.signal-strip span {
  height: calc(14px + (var(--i) % 7) * 7px);
}

.section-pad {
  padding: 96px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.showcase-copy h2,
.download-card h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.showcase-copy p,
.download-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.feature-panel {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 18% 0%, rgba(255, 48, 58, 0.16), transparent 44%);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.25);
}

.feature-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 48, 58, 0.14);
  color: var(--red);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.feature-panel h3 {
  margin: 42px 0 0;
  font-size: 25px;
  line-height: 1.05;
}

.feature-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.showcase {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
}

.phone-stage {
  position: relative;
  display: grid;
  min-height: 610px;
  place-items: center;
}

.phone-stage::before {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 48, 58, 0.24), transparent 68%);
  filter: blur(20px);
  animation: pulseGlow 4s ease-in-out infinite;
}

.phone-frame {
  position: relative;
  width: min(320px, 82vw);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 46px;
  background: linear-gradient(145deg, #19191c, #060607);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.6);
}

.phone-screen {
  min-height: 560px;
  overflow: hidden;
  border-radius: 36px;
  padding: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 48, 58, 0.18), transparent 42%),
    linear-gradient(180deg, #111113, #070708);
}

.mini-header,
.station-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-header {
  font-size: 18px;
  font-weight: 850;
}

.live-dot {
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 48, 58, 0.16);
  color: #ff7379;
  font-size: 12px;
}

.station-hero {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 76% 12%, rgba(255, 48, 58, 0.24), transparent 44%);
}

.station-hero span,
.station-hero small,
.station-row span {
  color: var(--muted);
}

.station-hero span {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.station-hero strong {
  display: block;
  margin-top: 48px;
  font-size: 31px;
  line-height: 1;
}

.station-hero small {
  display: block;
  margin-top: 10px;
}

.equalizer {
  display: flex;
  height: 62px;
  align-items: end;
  gap: 7px;
  margin-top: 24px;
}

.equalizer i {
  width: 8px;
  height: 18px;
}

.equalizer i:nth-child(2) { --i: 2; height: 42px; }
.equalizer i:nth-child(3) { --i: 4; height: 28px; }
.equalizer i:nth-child(4) { --i: 6; height: 52px; }
.equalizer i:nth-child(5) { --i: 8; height: 34px; }
.equalizer i:nth-child(6) { --i: 10; height: 48px; }
.equalizer i:nth-child(7) { --i: 12; height: 24px; }
.equalizer i:nth-child(8) { --i: 14; height: 38px; }

.station-row {
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.station-row b {
  display: block;
  font-size: 17px;
}

.station-row span {
  font-size: 13px;
}

.showcase-copy {
  max-width: 610px;
}

.showcase-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.showcase-copy li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  font-weight: 650;
}

.showcase-copy li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: var(--red);
  box-shadow: 0 0 22px rgba(255, 48, 58, 0.7);
}

.download {
  padding-bottom: 126px;
}

.download-card {
  position: relative;
  overflow: hidden;
  padding: clamp(32px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(255, 48, 58, 0.18), rgba(255, 255, 255, 0.045)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
}

.download-card::after {
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 48, 58, 0.35), transparent 68%);
  filter: blur(14px);
}

.download-card p {
  max-width: 620px;
  margin-bottom: 28px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--text);
  font-size: 16px;
}

.site-footer p {
  margin: 6px 0 0;
  font-size: 14px;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 14px;
  font-weight: 650;
}

.site-footer a:hover,
.legal-card a:hover {
  color: #fff;
}

.legal-shell {
  width: min(960px, calc(100% - 40px));
}

.legal-page {
  padding: 88px 0 96px;
}

.legal-hero {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.legal-date {
  margin: 0 0 14px;
  color: #ff7379;
  font-size: 14px;
  font-weight: 800;
}

.legal-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 78px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 700px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.legal-card {
  padding: clamp(26px, 5vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 0%, rgba(255, 48, 58, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035));
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.legal-card h2 {
  margin: 34px 0 0;
  font-size: 24px;
  line-height: 1.15;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.75;
}

.legal-card a {
  color: #ff7379;
  font-weight: 750;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms ease,
    transform 720ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  from { transform: translate3d(-22px, 10px, 0) scale(0.96); }
  to { transform: translate3d(24px, -14px, 0) scale(1.05); }
}

@keyframes scan {
  from { transform: translateY(-48px); }
  to { transform: translateY(48px); }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.62; transform: scale(0.98); }
  50% { opacity: 1; transform: scale(1.03); }
}

@keyframes bars {
  from { transform: scaleY(0.42); opacity: 0.62; }
  to { transform: scaleY(1); opacity: 1; }
}

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

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 28px, 720px);
  }

  .topbar {
    top: 10px;
  }

  .nav-links {
    display: none;
  }

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

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 10em;
  }

  .signal-strip {
    right: 12%;
    bottom: 20px;
    left: 12%;
  }

  .experience-grid,
  .showcase {
    grid-template-columns: 1fr;
  }

  .feature-panel {
    min-height: 220px;
  }

  .phone-stage {
    min-height: 560px;
    order: 2;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: calc(100% - 24px);
  }

  .topbar {
    padding: 10px;
  }

  .brand span:last-child {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-cta {
    min-height: 34px;
    padding: 0 14px;
  }

  .hero {
    padding-top: 46px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .hero-visual img {
    border-radius: 22px;
  }

  .section-pad {
    padding: 72px 0;
  }

  .feature-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .phone-frame {
    width: min(304px, 92vw);
  }

  .phone-screen {
    min-height: 520px;
    padding: 18px;
  }

  .download {
    padding-bottom: 84px;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-shell {
    width: calc(100% - 24px);
  }

  .legal-page {
    padding: 62px 0 72px;
  }
}
