:root {
  --bg: #0c0c0e;
  --bg-deep: #08080a;
  --surface: #121215;
  --surface-raised: #1a1a1e;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  --text: #e9e7e1;
  --text-secondary: #9a978e;
  --text-tertiary: #6b6862;

  --accent: #d9b96c;
  --accent-ink: #0c0c0e;
  --accent-dim: rgba(217, 185, 108, 0.14);

  --font-sans: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text',
    'Segoe UI', Inter, Helvetica, Arial, sans-serif;

  --max: 1240px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --shadow-screen: 0 40px 100px rgba(0, 0, 0, 0.45), 0 10px 28px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  letter-spacing: -0.006em;
}

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

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

/* Screenshot frames: image must always fill its frame, never sit
   smaller than the container just because its intrinsic size is less
   than the column width. */
.app-window img,
.tour-screen img,
.prep-screen img,
.format-image img,
.rail-shot img,
.feature-preview img,
.feature-preview video,
.closing-screen img,
.present-shot img {
  width: 100%;
  height: auto;
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

section {
  position: relative;
}

/* ---------- Nav ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(8, 8, 10, 0.86), rgba(8, 8, 10, 0.4) 70%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  gap: 11px;
  align-items: center;
  font-weight: 560;
  font-size: 13px;
  letter-spacing: 0.17em;
}

.brand-mark {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  position: relative;
  flex: none;
}

.brand-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: skewX(-10deg);
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
  font-size: 14px;
  color: #b7b6bd;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font: inherit;
  font-weight: 560;
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
}

.btn.primary {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

.btn.primary:hover {
  background: #e5c680;
}

/* ---------- Hero ---------- */

.hero {
  min-height: 62svh;
  padding: 0;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  background: var(--bg-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 2%;
  filter: saturate(0.95) contrast(1.03) brightness(1.12);
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
      rgba(8, 8, 10, 0.06) 0%,
      rgba(8, 8, 10, 0.04) 30%,
      rgba(8, 8, 10, 0.22) 52%,
      rgba(8, 8, 10, 0.58) 74%,
      rgba(8, 8, 10, 0.86) 92%,
      var(--bg-deep) 100%);
}

.hero .wrap {
  position: relative;
  z-index: 2;
}

.hero-copy {
  text-align: center;
  width: min(880px, 84vw);
  margin: 0 auto;
  padding: 168px 0 56px;
}

/* Split hero: left-aligned copy, small screenshot on the right */
.hero-split {
  align-items: center;
}

.hero-split .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 140px 0 90px;
}

.hero-split .hero-copy {
  text-align: left;
  width: auto;
  max-width: 620px;
  margin: 0;
  padding: 0;
}

.hero-split .hero-copy h1 {
  font-size: clamp(36px, 3.6vw, 58px);
}

.hero-split .hero-copy .lead-copy {
  margin: 22px 0 0;
  max-width: 520px;
}

.hero-split .hero-copy .notify {
  justify-content: flex-start;
  margin: 30px 0 0;
}

.hero-split .hero-copy .micro {
  text-align: left;
}

.hero-shot {
  position: relative;
}

.app-window.small {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-screen);
  transform: rotate(-1deg);
}

@media (max-width: 900px) {
  .hero-split .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 130px 0 60px;
  }

  .hero-split .hero-copy {
    max-width: none;
  }

  .hero-shot {
    display: none;
  }
}

.eyebrow,
.kicker {
  font-size: 11px;
  font-weight: 560;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(46px, 6.6vw, 88px);
  font-weight: 420;
  line-height: 0.98;
  letter-spacing: -0.05em;
  margin: 0;
}

.hero p.lead-copy {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--text-secondary);
  font-size: clamp(17px, 1.7vw, 20px);
  line-height: 1.55;
}

.hero p.lead-copy strong {
  color: #ece9e2;
  font-weight: 560;
}

.notify {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 500px;
  margin: 32px auto 0;
}

.notify input {
  flex: 1;
  min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 14px 18px;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s ease;
}

.notify input::placeholder {
  color: var(--text-tertiary);
}

.notify input:focus {
  border-color: rgba(217, 185, 108, 0.6);
}

.micro {
  min-height: 18px;
  margin-top: 12px;
  color: var(--text-tertiary);
  font-size: 12.5px;
}

.platform-note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  color: var(--text-secondary);
  font-size: 13px;
  letter-spacing: 0.01em;
}

.platform-note span {
  font-size: 15px;
  line-height: 1;
}

.form-success {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid rgba(217, 185, 108, 0.4);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(217, 185, 108, 0.07);
  font-size: 15px;
}

.form-error {
  width: 100%;
  padding: 13px 20px;
  border: 1px solid rgba(229, 72, 77, 0.35);
  border-radius: 999px;
  color: #f0989b;
  background: rgba(229, 72, 77, 0.06);
  font-size: 14px;
}

.stage {
  padding: 40px 0 110px;
  position: relative;
  background: var(--bg-deep);
}

.app-window {
  width: min(1180px, 92vw);
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-screen);
  transform: perspective(1600px) rotateX(3deg) scale(0.98);
  transform-origin: center top;
}

/* ---------- Marquee ---------- */

.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
  background: rgba(255, 255, 255, 0.012);
}

.marquee {
  display: flex;
  width: max-content;
  gap: 56px;
  animation: marq 30s linear infinite;
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.marquee strong {
  color: #c7c5be;
  font-weight: 560;
}

@keyframes marq {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Section heads (shared) ---------- */

.section-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 420;
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 0;
}

.section-head p {
  margin: 0;
  max-width: 620px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
}

/* ---------- Principles (photo section) ---------- */

.principles {
  position: relative;
  overflow: hidden;
  padding: 130px 0;
  background: #0b0b0d;
}

.principles-bg {
  position: absolute;
  inset: -4%;
  z-index: 0;
}

.principles-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) saturate(0.85);
}

.principles-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 11, 14, 0.92) 0%, rgba(10, 11, 14, 0.5) 30%, rgba(10, 11, 14, 0.55) 68%, rgba(10, 11, 14, 0.94) 100%);
}

.principles .wrap {
  position: relative;
  z-index: 2;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.principle {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.principle .num {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 34px;
}

.principle h3 {
  font-size: clamp(23px, 2.3vw, 30px);
  font-weight: 460;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.principle p {
  margin: 0;
  max-width: 340px;
  color: rgba(233, 231, 225, 0.7);
  font-size: 16px;
  line-height: 1.55;
}

/* ---------- Import section ---------- */

.import-section {
  padding: 130px 0;
  border-bottom: 1px solid var(--border);
}

.import-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
}

.import-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.015);
  min-height: 220px;
}

.import-card .small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}

.import-card h3 {
  font-size: 25px;
  font-weight: 460;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}

.import-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.55;
}

.import-arrow {
  font-size: 28px;
  color: var(--text-tertiary);
}

/* ---------- Product tour ---------- */

.product-tour {
  position: relative;
  height: 360vh;
  background: linear-gradient(180deg, var(--bg), #0e0e11 50%, var(--bg));
}

.tour-grid {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: center;
}

.tour-copy {
  min-height: 260px;
}

.tour-index {
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 22px;
}

.tour-copy h2 {
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 460;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 0 16px;
  min-height: 2.2em;
}

.tour-copy p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
  max-width: 440px;
  min-height: 5em;
}

.tour-dots {
  display: flex;
  gap: 8px;
  margin-top: 28px;
}

.tour-dots button {
  width: 30px;
  height: 3px;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease;
}

.tour-dots button.active {
  background: var(--accent);
}

.tour-stack {
  position: relative;
  height: min(560px, 62vh);
  perspective: 1600px;
}

.tour-screen {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-screen);
  opacity: 0;
  transition: opacity 0.15s linear, transform 0.15s linear;
  pointer-events: none;
  will-change: transform, opacity;
}

.tour-screen.active {
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .tour-screen {
    transition: opacity 0.3s ease;
  }
}

/* ---------- Cinematic bleed (prep) ---------- */

.prep {
  padding: 130px 0 0;
}

.prep .section-head {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.prep-bleed {
  position: relative;
  height: 88vh;
  min-height: 620px;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.prep-bg {
  position: absolute;
  inset: -4%;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.prep-bg.active {
  opacity: 1;
}

.prep-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) brightness(0.66);
}

.prep-bleed::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.05) 55%, rgba(0, 0, 0, 0.2)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.45), transparent 42%);
}

.prep-message {
  position: absolute;
  z-index: 3;
  left: max(20px, calc((100vw - var(--max)) / 2));
  top: 10%;
  max-width: 500px;
}

.prep-message .small {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.prep-message p {
  font-size: clamp(26px, 3.4vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0;
  font-weight: 440;
}

.prep-screen {
  position: absolute;
  z-index: 3;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 7%;
  width: min(640px, 50vw);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-screen);
  transform: rotate(-0.6deg);
}

/* ---------- Quote ---------- */

.quote-section {
  height: 76vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.quote-section img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.9);
}

.quote-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3)), linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 45%);
}

.quote-copy {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 48px));
  margin-left: max(20px, calc((100vw - var(--max)) / 2));
}

.quote-copy p {
  font-size: clamp(23px, 2.9vw, 38px);
  line-height: 1.22;
  letter-spacing: -0.032em;
  font-weight: 420;
  margin: 0;
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.35);
}

.quote-copy p span {
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- BTS marquee strip ---------- */

.bts-strip {
  padding: 44px 0 116px;
  overflow: hidden;
}

.bts-caption {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto 26px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.bts-caption p {
  max-width: 600px;
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 15.5px;
}

.bts-caption .kicker {
  margin: 0;
}

.bts-row {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: btsmove 42s linear infinite;
}

.bts-card {
  width: 300px;
  height: 190px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border);
  flex: none;
  opacity: 0.82;
}

.bts-card:nth-child(3n) {
  width: 360px;
}

.bts-card:nth-child(4n) {
  width: 230px;
}

.bts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes btsmove {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Format split ---------- */

.format-section {
  padding: 130px 0;
  border-top: 1px solid var(--border);
}

.format-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

.format-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-screen);
  margin-bottom: 22px;
}

.format-copy .small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.format-copy h3 {
  font-size: 24px;
  font-weight: 460;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.format-copy p {
  margin: 0;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 480px;
}

/* ---------- Present section ---------- */

.present-section {
  padding: 130px 0;
  border-top: 1px solid var(--border);
}

.present-grid {
  margin-bottom: 20px;
}

/* ---------- Studio Display frame ---------- */

.studio-display {
  position: relative;
  width: min(1300px, 94vw);
  margin: 40px auto 56px;
  padding-top: 20px;
}

.studio-display-glow {
  position: absolute;
  inset: -10% -6% auto -6%;
  height: 70%;
  background: radial-gradient(ellipse 60% 70% at 50% 30%, rgba(217, 185, 108, 0.16), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.studio-display-bezel {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #e4e5e7 0%, #c2c3c6 4%, #d6d7d9 8%, #aaacaf 100%);
  border-radius: 20px;
  padding: 18px;
  box-shadow:
    0 70px 150px rgba(0, 0, 0, 0.55),
    0 20px 50px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.studio-display-cam {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #55575a;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.35);
  z-index: 2;
}

.studio-display-screen {
  border-radius: 5px;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.studio-display-screen img {
  width: 100%;
  display: block;
}

.studio-display-stand {
  position: relative;
  z-index: 1;
  width: 84px;
  height: 64px;
  margin: 0 auto;
  background: linear-gradient(180deg, #d0d1d3 0%, #a6a8ab 100%);
  clip-path: polygon(40% 0%, 60% 0%, 76% 100%, 24% 100%);
}

.studio-display-base {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 12px;
  margin: 0 auto;
  border-radius: 7px;
  background: linear-gradient(180deg, #dcddde 0%, #a0a2a5 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

@media (max-width: 900px) {
  .studio-display {
    margin: 24px auto 40px;
  }

  .studio-display-stand {
    width: 60px;
    height: 44px;
  }

  .studio-display-base {
    width: 200px;
  }
}

.present-col {
  display: grid;
  gap: 22px;
  align-content: start;
}

.rail-shot {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-screen);
}

.present-caption {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.present-caption .small {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.present-caption p {
  margin: 0;
  color: #d8d8dc;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.present-caption p span {
  color: var(--text-secondary);
}

/* ---------- Features ---------- */

.features,
.feature-section {
  padding: 130px 0;
  border-top: 1px solid var(--border);
}

.feature-section.alt {
  background: rgba(255, 255, 255, 0.012);
}

.feature-preview {
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-screen);
}

.feature-preview-caption {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 18px 2px 54px;
  color: var(--text-secondary);
  font-size: 14px;
}

.feature-preview-caption strong {
  color: #d7d5cf;
  font-weight: 560;
}

.feature-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}

.feature-rail .rail-shot {
  margin: 0;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.feature-item {
  padding: 26px 24px;
  background: var(--bg);
  min-height: 88px;
  display: flex;
  align-items: flex-end;
  font-size: 17px;
  color: #d5d3cd;
}

.feature-item span {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-right: 12px;
}

/* ---------- Closing product ---------- */

.closing-product {
  padding: 130px 0 140px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.closing-copy {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}

.closing-copy h2 {
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 420;
  margin: 0;
}

.closing-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.6;
}

.closing-screen {
  width: min(1400px, 96vw);
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 55px 130px rgba(0, 0, 0, 0.45);
}

/* ---------- Final CTA ---------- */

.final-cta {
  height: 78vh;
  min-height: 560px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  text-align: center;
}

.final-cta img {
  position: absolute;
  inset: -5%;
  width: 110%;
  height: 110%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.85);
}

.final-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.78) 100%);
}

.final-cta .wrap {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 420;
  letter-spacing: -0.045em;
  margin: 0 auto 16px;
  max-width: 800px;
}

.final-cta .lead-copy {
  margin: 0 auto 28px;
  color: rgba(233, 231, 225, 0.78);
  font-size: 18px;
}

.final-cta .notify {
  margin-top: 0;
}

/* ---------- Footer ---------- */

footer {
  padding: 32px 0 42px;
  border-top: 1px solid var(--border);
  color: var(--text-tertiary);
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* ---------- Reveal on scroll ---------- */

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

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

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

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

  .marquee,
  .bts-row {
    animation: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero {
    min-height: 58svh;
  }

  .hero-media img {
    object-position: center 0%;
  }

  .hero-copy {
    padding: 140px 0 48px;
  }

  .notify {
    flex-direction: column;
  }

  .section-head,
  .tour-grid,
  .closing-copy,
  .import-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .import-flow {
    grid-template-columns: 1fr;
  }

  .import-arrow {
    transform: rotate(90deg);
    text-align: center;
  }

  .product-tour {
    height: auto;
    padding: 90px 0;
  }

  .tour-grid {
    position: static;
    height: auto;
  }

  .tour-stack {
    height: 300px;
    perspective: none;
  }

  .tour-screen {
    transition: opacity 0.3s ease;
  }

  .prep-bleed {
    height: 78vh;
    min-height: 540px;
  }

  .prep-message {
    left: 20px;
    right: 20px;
    max-width: none;
  }

  .prep-screen {
    right: 5%;
    bottom: 5%;
    width: 88%;
  }

  .quote-copy {
    margin-left: 20px;
    width: calc(100% - 40px);
  }

  .format-grid,
  .present-grid {
    grid-template-columns: 1fr;
  }

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

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

  .bts-card {
    width: 220px;
    height: 150px;
  }
}
