:root {
  --bg: #070403;
  --text: #f7efe6;
  --muted: #cdbdae;
  --muted-strong: #ead9c7;
  --orange: #c9823a;
  --orange-bright: #e7bd78;
  --orange-soft: rgba(231, 189, 120, 0.14);
  --line: rgba(255, 255, 255, 0.14);
  --container-pad: 20px;
  --container-max: 1240px;
  color-scheme: dark;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: clip;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--orange-bright);
  color: #160802;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

::selection {
  background: var(--orange);
  color: #130602;
}

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

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

.container {
  width: min(100% - var(--container-pad) * 2, var(--container-max));
  margin-inline: auto;
}

main {
  background:
    radial-gradient(circle at 12% 0%, rgba(231, 189, 120, 0.12), transparent 32rem),
    radial-gradient(circle at 100% 44%, rgba(128, 68, 24, 0.14), transparent 34rem),
    var(--bg);
}

/* Hero */

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  overflow: hidden;
}

.video-wrap {
  position: absolute;
  inset: 0;
  z-index: -4;
  background: #000;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}

.hero-glow,
.hero-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  z-index: -3;
  background:
    radial-gradient(circle at 17% 30%, rgba(231, 189, 120, 0.22), transparent 28rem),
    radial-gradient(circle at 72% 74%, rgba(255, 247, 237, 0.12), transparent 18rem);
  mix-blend-mode: screen;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 4, 3, 0.96) 0%, rgba(7, 4, 3, 0.78) 43%, rgba(7, 4, 3, 0.28) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 26%, transparent 100%);
}

.hero-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 24px;
}

.hero-header nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

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

.brand-lockup {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  flex-shrink: 0;
}

.brand-lockup img {
  width: clamp(56px, 5.5vw, 72px);
  height: clamp(56px, 5.5vw, 72px);
  flex-shrink: 0;
  border-radius: clamp(14px, 1.4vw, 18px);
  object-fit: cover;
  filter:
    drop-shadow(0 12px 24px rgba(0, 0, 0, 0.34))
    drop-shadow(0 0 20px rgba(231, 189, 120, 0.2));
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 0.06em;
}

.brand-name strong {
  display: block;
  background: linear-gradient(180deg, #fff7eb 0%, var(--orange-bright) 52%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Arial Black", Gadget, sans-serif;
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-transform: uppercase;
}

.button,
.chips li {
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.play-badge {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.play-badge img {
  display: block;
  width: auto;
  height: clamp(80px, 8.4vw, 96px);
}

.play-badge:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.hero-grid {
  display: grid;
  align-items: center;
  min-height: calc(100svh - 120px);
  padding-block: 28px 64px;
}

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

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.chips li {
  display: inline-block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  padding: 0 15px;
  color: #ffedd5;
  font-size: 15px;
  font-weight: 720;
  line-height: 36px;
}

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

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

h1 {
  margin-bottom: 22px;
  max-width: 980px;
  font-size: clamp(54px, 8.2vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 18px;
  font-size: 26px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 660px;
  margin-bottom: 28px;
  color: var(--muted-strong);
  font-size: clamp(18px, 1.8vw, 23px);
  line-height: 1.42;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  border-radius: 999px;
  padding: 16px 26px;
  font-weight: 900;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

.button-primary {
  background: var(--orange-bright);
  color: #160802;
  box-shadow: 0 16px 44px rgba(231, 189, 120, 0.22);
}

.button-primary:hover {
  background: #fed7aa;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.12);
}

.button-ghost:hover,
.button-light:hover {
  background: var(--orange-bright);
  color: #160802;
}

.button-light {
  margin-top: 38px;
  background: #fff7ed;
  color: #160802;
}

/* Sections */

.section {
  width: 100%;
  padding-block: 100px;
}

.scenes-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1.28fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  margin-bottom: clamp(84px, 10vw, 132px);
}

.scenes-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.scenes-preview {
  margin: 0;
  position: relative;
}

.scenes-preview-main {
  overflow: hidden;
  border-radius: clamp(14px, 1.6vw, 20px) clamp(14px, 1.6vw, 20px) 0 0;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.scenes-preview-main img {
  display: block;
  width: 100%;
  height: auto;
}

.scenes-preview-reflection {
  position: absolute;
  top: calc(100% + 32px);
  width: 100%;
  height: 32px;
  filter: blur(16px);
}

.scenes-preview-reflection::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("reflection-glow.png") center / 80% 50% no-repeat;
}

.scenes-preview-reflection::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, transparent, #000);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 56px;
  align-items: end;
  padding-top: 28px;
  border-top: 1px solid rgba(253, 186, 116, 0.26);
}

.section-head > p,
.feature-card p,
.safety-panel p,
.download-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.feature-card {
  min-height: 280px;
  border-top: 1px solid var(--line);
  padding: 28px 0 0;
}

.feature-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 32px;
}

.feature-icon img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.brands-block {
  margin-top: clamp(72px, 9vw, 108px);
}

.brands-head {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.brand-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.brand-logo-wrap {
  display: flex;
  flex: 0 0 clamp(120px, 14vw, 160px);
  align-items: center;
  justify-content: center;
  height: clamp(120px, 14vw, 160px);
}

.brand-body {
  display: grid;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 220px);
  max-height: 100%;
  object-fit: contain;
  opacity: 0.96;
}

.brand-screen {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.brand-models {
  margin: 0;
  padding-left: 1.1em;
  color: rgba(247, 239, 230, 0.82);
  font-size: 12px;
  line-height: 1.5;
}

.brand-models li + li {
  margin-top: 0.3em;
}

/* Moments */

.moments {
  position: relative;
  overflow: hidden;
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 72px, transparent 160px),
    radial-gradient(circle at 0% 78%, rgba(253, 186, 116, 0.1), transparent 32rem),
    radial-gradient(circle at 100% 78%, rgba(128, 68, 24, 0.08), transparent 28rem);
}

.moments-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: auto auto 1fr;
  column-gap: 22px;
}

.moment-panel,
.safety-panel {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  border-top: 1px solid var(--line);
  padding: clamp(30px, 4vw, 48px) 0 0;
}

.moment-panel .chips,
.safety-panel > p:not(.eyebrow) {
  margin-top: 42px;
}

.chips {
  margin-top: 0;
}

/* Download */

.download {
  position: relative;
  border-block: 1px solid var(--line);
  padding-block: clamp(72px, 9vw, 128px);
  isolation: isolate;
  overflow: hidden;
}

.download-video {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #000;
}

.download-video video {
  width: 100%;
  height: 100%;
  opacity: 0.9;
  object-fit: cover;
  object-position: center;
}

.download-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7, 4, 3, 0.94), rgba(7, 4, 3, 0.7) 48%, rgba(7, 4, 3, 0.5)),
    linear-gradient(0deg, rgba(7, 4, 3, 0.86), rgba(7, 4, 3, 0.24) 46%, rgba(7, 4, 3, 0.82));
}

.download-inner {
  position: relative;
  z-index: 1;
}

.download-copy {
  max-width: 980px;
}

.download-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 48px);
  max-width: 980px;
}

.download-head h2 {
  flex: 1;
  min-width: 0;
  max-width: 920px;
  margin: 0;
}

.download-copy p {
  max-width: 820px;
  margin-top: 26px;
}

.download-icon {
  width: 108px;
  height: 108px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.34),
    0 0 58px rgba(231, 189, 120, 0.18);
}

.download-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.download-meta li {
  color: #f8e7d6;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.download-meta li:not(:last-child)::after {
  content: "/";
  margin-left: 10px;
  color: rgba(253, 186, 116, 0.58);
}

.download-actions {
  margin-top: 34px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 28px 36px;
}

.site-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.site-footer-brand {
  margin: 0;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  transition: color 180ms ease;
}

.site-footer-links a:hover {
  color: var(--orange-bright);
}

.site-footer-copy {
  margin: 0;
  width: 100%;
  color: rgba(205, 189, 174, 0.72);
  font-size: 13px;
}

/* Reveal */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

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

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .hero-grid,
  .section-head,
  .feature-grid,
  .moments-grid,
  .scenes-showcase {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 40px 56px;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 88px;
  }

  .scenes-showcase {
    gap: 40px;
    margin-bottom: 56px;
  }

  .moments-grid {
    grid-template-rows: none;
    row-gap: 48px;
  }

  .moment-panel,
  .safety-panel {
    display: block;
    grid-row: auto;
    padding-bottom: 12px;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container-pad: 14px;
  }

  .section {
    padding-bottom: 72px;
  }

  .hero-grid {
    padding-bottom: 48px;
  }

  .moment-panel,
  .safety-panel {
    padding-bottom: 0;
  }

  .moments-grid {
    row-gap: 40px;
  }

  .download {
    padding-bottom: clamp(64px, 12vw, 88px);
  }

  .play-badge img {
    height: 80px;
  }

  .brand-lockup img {
    width: 52px;
    height: 52px;
    border-radius: 14px;
  }

  .brand-name strong {
    font-size: clamp(18px, 5.5vw, 26px);
  }

  h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .hero-text,
  .section-head > p,
  .scenes-copy p:not(.eyebrow),
  .feature-card p,
  .safety-panel p,
  .download-copy p {
    font-size: 16px;
  }

  .button {
    width: 100%;
  }

  .download-icon {
    width: 78px;
    height: 78px;
    border-radius: 18px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
