:root {
  color-scheme: dark;
  --ink: #fbf7ef;
  --muted: #c7c1b8;
  --soft: rgba(255, 255, 255, 0.12);
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --yellow: #ffd166;
  --pink: #ff4d8d;
  --green: #5dffb8;
  --blue: #8ee3ef;
  --black: #06070d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(rgba(6, 7, 13, 0.48), rgba(6, 7, 13, 0.88)),
    url("./assets/splash-icon.png") center 12% / min(92vw, 860px) no-repeat,
    #06070d;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(120deg, rgba(255, 77, 141, 0.24), transparent 34%),
    linear-gradient(300deg, rgba(93, 255, 184, 0.16), transparent 38%),
    linear-gradient(180deg, transparent, #06070d 72%);
  pointer-events: none;
}

a {
  color: inherit;
}

.hero {
  min-height: 92svh;
  padding: 22px clamp(18px, 4vw, 58px) 56px;
  display: grid;
  align-content: start;
  gap: clamp(46px, 8vh, 84px);
}

.topnav {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.platform-card {
  text-decoration: none;
}

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

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 7vw, 96px);
}

.hero-copy {
  display: grid;
  gap: 24px;
}

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

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

h1 {
  max-width: 790px;
  font-size: clamp(48px, 8.2vw, 112px);
  line-height: 0.9;
  font-weight: 900;
}

.summary {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
}

.platform-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  max-width: 780px;
}

.platform-card {
  min-height: 128px;
  display: grid;
  align-content: space-between;
  gap: 12px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.platform-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.platform-card strong {
  font-size: 24px;
  font-weight: 900;
}

.platform-card small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.platform-card.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--yellow), var(--pink));
  color: #070811;
}

.platform-card.primary span,
.platform-card.primary small {
  color: rgba(7, 8, 17, 0.72);
}

.partner-link {
  background:
    linear-gradient(135deg, rgba(142, 227, 239, 0.16), rgba(93, 255, 184, 0.12)),
    rgba(255, 255, 255, 0.08);
}

.platform-card:hover,
.platform-card:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-2px);
}

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

.phone {
  width: min(360px, 100%);
  min-height: 640px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 42px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(10, 11, 20, 0.76);
  box-shadow: 0 38px 100px rgba(0, 0, 0, 0.44);
  backdrop-filter: blur(22px);
}

.phone-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.phone-top img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.live-card {
  min-height: 260px;
  border-radius: 30px;
  padding: 22px;
  display: grid;
  align-content: end;
  gap: 10px;
  background:
    linear-gradient(180deg, transparent 12%, rgba(0, 0, 0, 0.72)),
    linear-gradient(135deg, rgba(255, 77, 141, 0.88), rgba(255, 209, 102, 0.84));
}

.live-card h2 {
  max-width: 260px;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.live-card p,
.event-row p,
.moment span,
.feature-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.live-card p {
  color: rgba(255, 255, 255, 0.82);
}

.live-badge {
  width: fit-content;
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(6, 7, 13, 0.82);
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.event-row {
  min-height: 76px;
  margin-top: 12px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--soft);
  border-radius: 22px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.event-row > span {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.event-row.hot > span {
  background: linear-gradient(135deg, var(--yellow), var(--pink));
}

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

.event-row p {
  font-size: 13px;
}

.mini-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.mini-actions b {
  min-height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--panel);
  font-size: 13px;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--soft);
  background: rgba(255, 255, 255, 0.07);
}

.ticker span {
  min-height: 76px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--soft);
  padding: 0 18px;
  text-align: center;
  font-weight: 900;
}

.ticker span:last-child {
  border-right: 0;
}

.section,
.partner-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) 0;
}

.section-heading {
  max-width: 720px;
  display: grid;
  gap: 14px;
  margin-bottom: 30px;
}

.section h2,
.partner-section h2 {
  font-size: clamp(34px, 5vw, 70px);
  line-height: 0.98;
  font-weight: 900;
}

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

.feature-grid article {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.feature-grid span {
  color: var(--yellow);
  font-weight: 900;
}

.feature-grid h3 {
  font-size: 23px;
  line-height: 1.08;
  font-weight: 900;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
}

.partner-section > div:first-child {
  display: grid;
  gap: 14px;
}

.partner-panel {
  border: 1px solid var(--soft);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  display: grid;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(255, 209, 102, 0.12), rgba(255, 77, 141, 0.12)),
    rgba(255, 255, 255, 0.08);
}

.partner-panel p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.62;
}

.partner-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.partner-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--soft);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.partner-links a:hover,
.partner-links a:focus-visible {
  outline: none;
  border-color: rgba(255, 255, 255, 0.32);
  background: linear-gradient(135deg, rgba(255, 209, 102, 0.92), rgba(255, 77, 141, 0.92));
  color: #070811;
}

@media (max-width: 980px) {
  .hero-grid,
  .partner-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-stage {
    min-height: 0;
  }

  .phone {
    min-height: 580px;
  }

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

@media (max-width: 640px) {
  .hero {
    padding: 18px 14px 36px;
    gap: 44px;
  }

  .topnav {
    align-items: flex-start;
  }

  .brand {
    font-size: 18px;
  }

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

  h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .summary {
    font-size: 17px;
  }

  .platform-links,
  .ticker,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .platform-card {
    min-height: 116px;
  }

  .phone {
    width: min(100%, 340px);
    min-height: 560px;
    border-radius: 34px;
  }

  .live-card {
    min-height: 230px;
  }

  .live-card h2 {
    font-size: 30px;
  }

  .ticker span {
    min-height: 58px;
    border-right: 0;
    border-bottom: 1px solid var(--soft);
  }

  .ticker span:last-child {
    border-bottom: 0;
  }

  .section,
  .partner-section {
    width: min(100% - 28px, 520px);
    padding-block: 70px;
  }

  .feature-grid article {
    min-height: 210px;
  }

  .partner-links {
    grid-template-columns: 1fr;
  }
}
