:root {
  --bg: #050506;
  --bg-soft: #0b0b0f;
  --panel: rgba(18, 18, 24, 0.78);
  --panel-strong: #111116;
  --red: #e50914;
  --ruby: #ff2430;
  --ruby-soft: rgba(229, 9, 20, 0.16);
  --text: #ffffff;
  --muted: #b7b7c4;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 80px rgba(229, 9, 20, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(229, 9, 20, 0.22), transparent 32rem),
    radial-gradient(circle at 88% 28%, rgba(255, 36, 48, 0.16), transparent 34rem),
    linear-gradient(180deg, #060607 0%, #030304 48%, #08080b 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  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.02) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

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

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

.page-glow {
  position: fixed;
  z-index: -2;
  width: 34rem;
  height: 34rem;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.42;
}

.page-glow-one {
  top: 6rem;
  left: -12rem;
  background: rgba(229, 9, 20, 0.34);
}

.page-glow-two {
  right: -12rem;
  bottom: 10rem;
  background: rgba(255, 36, 48, 0.24);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 4, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.24rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.brand img {
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 0.78rem;
  box-shadow: 0 0 24px rgba(229, 9, 20, 0.45);
}

.brand span span,
.logoTv {
  color: var(--ruby);
}

.nav {
  display: flex;
  gap: 1.4rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0 1rem;
  border: 1px solid rgba(255, 36, 48, 0.42);
  border-radius: 999px;
  background: rgba(229, 9, 20, 0.12);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 850;
  box-shadow: 0 0 22px rgba(229, 9, 20, 0.14);
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4.5rem, 8vw, 7.5rem) 0;
}

.hero {
  display: grid;
  min-height: calc(100svh - 5rem);
  align-items: center;
  grid-template-columns: minmax(0, 0.92fr) minmax(20rem, 1.08fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding-top: clamp(3.2rem, 7vw, 5.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #ff6870;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--ruby);
  box-shadow: 0 0 22px var(--ruby);
  content: "";
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.75rem, 6vw, 5.9rem);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.hero-copy p {
  max-width: 42rem;
  font-size: 1.09rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(135deg, var(--red), #ff4b57);
  color: white;
  box-shadow: 0 14px 38px rgba(229, 9, 20, 0.36);
}

.btn.secondary {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
}

.btn.ghost {
  border: 1px solid rgba(255,36,48,0.34);
  background: rgba(229,9,20,0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.trust-row span,
.mini-list span,
.admin-points span {
  padding: 0.55rem 0.72rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
  color: #dedee8;
  font-size: 0.78rem;
  font-weight: 750;
}

.hero-visual {
  position: relative;
  min-height: 38rem;
}

.tv-frame,
.phone-frame,
.app-card,
.feature-card,
.admin-card,
.brand-system,
.step,
.cta-section,
.showcase-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.025));
  box-shadow: 0 24px 80px rgba(0,0,0,0.34);
  backdrop-filter: blur(18px);
}

.tv-frame {
  position: absolute;
  top: 1rem;
  right: 0;
  width: min(100%, 38rem);
  overflow: hidden;
  border-radius: 2rem;
  box-shadow: var(--shadow);
}

.tv-topbar {
  display: flex;
  gap: 0.42rem;
  padding: 0.78rem 1rem;
  border-bottom: 1px solid var(--line);
}

.tv-topbar span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.25);
}

.tv-screen {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0d;
}

.tv-screen img,
.showcase-panel img,
.admin-card img,
.mock img,
.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(0,0,0,0.72), rgba(229,9,20,0.18));
}

.screen-overlay strong,
.screen-overlay small {
  display: block;
}

.screen-overlay small {
  margin-top: 0.25rem;
  color: var(--muted);
}

.phone-frame {
  position: absolute;
  bottom: 0.6rem;
  left: 0;
  width: min(43vw, 15.7rem);
  aspect-ratio: 9 / 18.8;
  overflow: hidden;
  padding: 0.58rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 2.35rem;
  background: #08080b;
  box-shadow: 0 22px 70px rgba(229,9,20,0.24);
}

.phone-frame img {
  border-radius: 1.75rem;
}

.phone-notch {
  position: absolute;
  top: 0.7rem;
  left: 50%;
  z-index: 2;
  width: 4.6rem;
  height: 0.9rem;
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 2rem;
  background: rgba(12,12,17,0.76);
}

.strip div {
  padding: 1rem;
  border-right: 1px solid var(--line);
}

.strip div:last-child {
  border-right: 0;
}

.strip strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ruby);
  font-size: clamp(1.65rem, 4vw, 2.8rem);
  font-weight: 950;
}

.strip span {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 750;
}

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

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.app-grid,
.feature-grid,
.steps {
  display: grid;
  gap: 1rem;
}

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

.app-card {
  overflow: hidden;
  padding: 1.2rem;
  border-radius: 2rem;
}

.app-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
  padding: 0;
  color: #dfdfe8;
  list-style: none;
}

.app-card li::before {
  margin-right: 0.5rem;
  color: var(--ruby);
  content: "✦";
}

.mock {
  display: grid;
  place-items: center;
  height: 24rem;
  margin-bottom: 1.3rem;
  overflow: hidden;
  border-radius: 1.55rem;
  background: radial-gradient(circle at center, rgba(229,9,20,0.22), transparent 65%), #09090c;
}

.phone-mock img {
  width: min(72%, 18rem);
  height: auto;
  border-radius: 1.8rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.48);
}

.tv-mock img {
  width: 95%;
  height: auto;
  border-radius: 1rem;
}

.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card {
  min-height: 15rem;
  padding: 1.35rem;
  border-radius: 1.5rem;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.feature-card:hover {
  border-color: rgba(255,36,48,0.42);
  background: linear-gradient(180deg, rgba(229,9,20,0.12), rgba(255,255,255,0.035));
  transform: translateY(-6px);
}

.icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(229,9,20,0.95), rgba(255,75,87,0.7));
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(229,9,20,0.28);
}

.showcase {
  display: grid;
  align-items: center;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
}

.mini-list,
.admin-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.showcase-panel {
  overflow: hidden;
  border-radius: 2rem;
  aspect-ratio: 16 / 9;
}

.admin-card {
  display: grid;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  overflow: hidden;
  padding: clamp(1.2rem, 3vw, 2rem);
  border-radius: 2.2rem;
}

.admin-card img {
  aspect-ratio: 16 / 10;
  border-radius: 1.4rem;
  box-shadow: 0 20px 58px rgba(0,0,0,0.44);
}

.brand-system {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: 2rem;
}

.brand-token {
  display: grid;
  min-height: 12rem;
  place-items: center;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  background: rgba(0,0,0,0.18);
  text-align: center;
}

.brand-token strong {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 950;
}

.brand-token span {
  color: var(--muted);
  font-weight: 750;
}

.logo-token img {
  width: 8rem;
  height: 8rem;
  border-radius: 1.8rem;
  box-shadow: 0 0 40px rgba(229,9,20,0.35);
}

.steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step {
  padding: 1.35rem;
  border-radius: 1.5rem;
}

.step b {
  color: var(--ruby);
  font-size: 0.86rem;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at 18% 0%, rgba(229,9,20,0.3), transparent 35%),
    linear-gradient(135deg, rgba(255,255,255,0.085), rgba(255,255,255,0.025));
}

.cta-section h2 {
  max-width: 760px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.footer p {
  margin: 0;
  font-size: inherit;
}

.footer a {
  color: var(--text);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

@media (max-width: 980px) {
  .nav {
    display: none;
  }

  .hero,
  .showcase,
  .admin-card {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 34rem;
  }

  .tv-frame {
    width: 100%;
  }

  .phone-frame {
    left: 1rem;
    width: 13rem;
  }

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

  .brand-system {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 0.85rem 1rem;
  }

  .brand span {
    display: none;
  }

  .header-cta {
    min-height: 2.45rem;
    padding: 0 0.8rem;
    font-size: 0.74rem;
  }

  .section {
    width: min(100% - 1rem, 1180px);
    padding: 4.2rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 29rem;
  }

  .phone-frame {
    width: 11.4rem;
  }

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

  .strip div {
    border-right: 0;
  }

  .app-grid,
  .feature-grid,
  .steps,
  .brand-system {
    grid-template-columns: 1fr;
  }

  .mock {
    height: 20rem;
  }

  .feature-card {
    min-height: auto;
  }

  .cta-section,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
