:root {
  color-scheme: dark;
  --ink: #f8f4ea;
  --muted: #c9c7bd;
  --paper: #151612;
  --panel: #20221b;
  --line: rgba(248, 244, 234, 0.16);
  --red: #ff3b5f;
  --cyan: #21d6d0;
  --gold: #f4c04f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(90deg, rgba(33, 214, 208, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 59, 95, 0.1) 0 1px, transparent 1px 100%),
    var(--paper);
  background-size: 84px 84px;
  color: var(--ink);
}

.site-shell {
  min-height: 100vh;
}

.video-stage {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0;
}

.brand-panel {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  max-width: 10ch;
  font-size: 4.75rem;
  line-height: 0.95;
  font-weight: 900;
}

.lede {
  margin: 28px 0 0;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.phone-frame {
  position: relative;
  width: min(100%, 390px);
  justify-self: end;
  aspect-ratio: 9 / 16;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 59, 95, 0.35), transparent 36%),
    linear-gradient(315deg, rgba(33, 214, 208, 0.24), transparent 42%),
    #080908;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 78px;
  height: 6px;
  border-radius: 999px;
  background: rgba(248, 244, 234, 0.18);
  transform: translateX(-50%);
}

.phone-frame::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: 18%;
  width: 28px;
  height: 96px;
  border-radius: 999px;
  background: var(--gold);
}

.preview-video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
  background: #050505;
  object-fit: cover;
}

@media (max-width: 860px) {
  .video-stage {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
    padding: 32px 0;
  }

  h1 {
    max-width: 12ch;
    font-size: 3.25rem;
  }

  .phone-frame {
    justify-self: center;
    max-height: 72vh;
  }
}

@media (max-width: 480px) {
  .video-stage {
    width: min(100% - 28px, 1120px);
    padding: 24px 0;
  }

  h1 {
    font-size: 2.45rem;
  }

  .lede {
    font-size: 1rem;
  }

  .phone-frame {
    border-radius: 26px;
    padding: 10px;
  }

  .preview-video {
    border-radius: 18px;
  }
}
