:root {
  color-scheme: dark;
  --navy: #122b45;
  --navy-2: #162f4d;
  --deep: #0b2037;
  --cream: #fff0df;
  --aqua: #6ff7f6;
  --pink: #f078d7;
  --orange: #ff9b64;
  --yellow: #ffe36c;
  --muted: #b9c4e6;
  --line: rgba(185, 196, 230, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--deep);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(180deg, rgba(12, 31, 54, 0.58), rgba(12, 31, 54, 0.95)),
    url("/assets/shot-6.jpg") center 38% / cover;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(10, 28, 49, 0.76);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: min(156px, 42vw);
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 800;
}

.nav-cta {
  color: var(--aqua);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(28px, 6vw, 86px);
  min-height: calc(100vh - 76px);
  padding: clamp(54px, 7vw, 88px) clamp(18px, 5vw, 72px) clamp(54px, 7vw, 96px);
  overflow: hidden;
}

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

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

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

h1 {
  margin-bottom: 22px;
  font-size: clamp(4rem, 9vw, 8.4rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h1 span,
.section-heading h2 span {
  color: var(--aqua);
}

.lede {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 240, 223, 0.86);
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  font-weight: 600;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-button {
  display: grid;
  min-width: 174px;
  min-height: 58px;
  justify-content: start;
  padding: 10px 18px;
  border: 1px solid rgba(111, 247, 246, 0.42);
  border-radius: 8px;
  background: rgba(8, 24, 42, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.store-button small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.store-button strong {
  color: #fff;
  font-size: 1.22rem;
  line-height: 1.05;
}

.hero-stage {
  position: relative;
  min-height: min(76vw, 760px);
}

.shot {
  width: 100%;
  border-radius: 28px;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.34));
}

.hero-shot {
  position: absolute;
  width: min(64vw, 390px);
}

.hero-shot-main {
  right: 21%;
  top: 0;
  z-index: 2;
}

.hero-shot-side {
  right: -4%;
  top: 96px;
  z-index: 1;
  opacity: 0.9;
  transform: rotate(5deg) scale(0.9);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 28, 49, 0.78);
  backdrop-filter: blur(16px);
}

.stats div {
  padding: 28px clamp(18px, 5vw, 72px);
  border-right: 1px solid var(--line);
}

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

.stats strong {
  display: block;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3.3rem);
  line-height: 1;
}

.stats span {
  color: var(--muted);
  font-weight: 800;
}

.feature-band,
.screens-section,
.rest-section {
  padding: clamp(68px, 10vw, 120px) clamp(18px, 5vw, 72px);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 80px);
  background: linear-gradient(180deg, rgba(19, 44, 70, 0.96), rgba(14, 34, 58, 0.96));
}

.band-copy {
  max-width: 680px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.band-copy p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 650;
}

.feature-grid {
  display: grid;
  gap: 14px;
}

.feature-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(8, 26, 45, 0.72);
}

.feature-grid h3 {
  margin-bottom: 8px;
  color: var(--aqua);
  font-size: 1.2rem;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 600;
}

.screens-section {
  background: rgba(9, 28, 49, 0.9);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

.screens-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(190px, 1fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.screens-rail .shot:nth-child(even) {
  margin-top: 44px;
}

.rest-section {
  display: grid;
  grid-template-columns: minmax(240px, 440px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 100px);
  background: linear-gradient(90deg, rgba(14, 34, 58, 0.96), rgba(18, 43, 69, 0.82));
}

.rest-section img {
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.32);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  background: var(--aqua);
  color: var(--deep);
  font-weight: 900;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #081a2f;
  color: var(--muted);
  font-weight: 800;
}

footer img {
  width: 128px;
}

@media (max-width: 1020px) {
  .hero,
  .feature-band,
  .rest-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 680px;
  }

  .hero-shot-main {
    left: 6%;
    right: auto;
  }

  .hero-shot-side {
    right: 5%;
  }

  .screens-rail {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }
}

@media (max-width: 700px) {
  nav a:not(.nav-cta) {
    display: none;
  }

  .site-header {
    min-height: 68px;
  }

  .hero {
    min-height: 0;
    padding-top: 42px;
  }

  h1 {
    font-size: clamp(3.55rem, 18vw, 5.2rem);
  }

  .store-button {
    width: 100%;
  }

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

  .hero-shot {
    width: min(74vw, 340px);
  }

  .hero-shot-side {
    right: -18%;
    top: 86px;
  }

  .stats,
  .screens-rail {
    grid-template-columns: 1fr;
  }

  .stats div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats div:last-child {
    border-bottom: 0;
  }

  .screens-rail .shot:nth-child(even) {
    margin-top: 0;
  }

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