/* BuyLater — editorial / cinematic (no phone column, no hero grid) */

:root {
  --bg: #0c0b0a;
  --paper: #f0ece6;
  --ink: #0c0b0a;
  --muted: #7a746c;
  --accent: #ff3d5a;
  --accent-dim: #c42d44;
  --display: "Syne", system-ui, sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }

.skip {
  position: absolute;
  left: -9999px;
  z-index: 999;
}

.skip:focus {
  left: 16px;
  top: 16px;
  padding: 8px 16px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
}

/* ── Header ── */

.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px clamp(20px, 4vw, 40px);
  pointer-events: none;
}

.site-head > * { pointer-events: auto; }

.site-head__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-head__brand img { border-radius: 6px; }

.site-head__dl {
  padding: 8px 18px;
  border: 1px solid rgba(240, 236, 230, 0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
  transition: background 0.2s, color 0.2s;
}

.site-head__dl:hover {
  background: var(--paper);
  color: var(--ink);
}

/* ── Store buttons ── */

.stores {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border: 1.5px solid rgba(240, 236, 230, 0.5);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 0.25s var(--ease), background 0.2s, border-color 0.2s;
}

.store svg { width: 18px; height: 18px; }

.store:hover {
  transform: translateY(-3px);
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.store--solid {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.store--solid:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.stores--light .store--solid:hover {
  background: #fff;
  border-color: #fff;
  color: var(--accent-dim);
}

/* ── 01 Gate ── */

.gate {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 100px 24px 80px;
  text-align: center;
  background:
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(255, 61, 90, 0.12), transparent),
    var(--bg);
}

.gate__eyebrow {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) 0.1s forwards;
}

.gate__title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.gate__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 0.9s var(--ease) forwards;
}

.gate__line:nth-child(1) { animation-delay: 0.15s; }
.gate__line:nth-child(2) { animation-delay: 0.28s; }
.gate__line:nth-child(3) { animation-delay: 0.41s; }

.gate__line--accent {
  color: var(--accent);
  -webkit-text-stroke: 1px var(--accent);
}

.gate__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.gate__sub {
  margin: 28px auto 0;
  max-width: 36ch;
  text-align: center;
  color: var(--muted);
  font-size: 1.0625rem;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.55s forwards;
}

.gate .stores {
  margin-top: 36px;
  opacity: 0;
  animation: rise 0.8s var(--ease) 0.65s forwards;
}

.gate__scroll {
  position: absolute;
  bottom: 32px;
  left: 0;
  right: 0;
  width: max-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: rise-fade 0.8s var(--ease) 1s forwards;
}

.gate__scroll i {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: pulse-line 2s ease infinite;
}

@keyframes rise {
  to { opacity: 1; transform: none; }
}

@keyframes rise-fade {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-line {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ── 02 Cinema ── */

.cinema {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: clamp(64px, 10vh, 120px) clamp(16px, 4vw, 48px) 64px;
  background: var(--bg);
  perspective: 1200px;
}

.cinema__frame {
  width: 100%;
  max-width: 312px;
  margin-inline: auto;
  padding-inline: 6px;
  box-sizing: border-box;
  transform: scale(0.88) translateY(48px);
  transform-origin: center center;
  opacity: 0;
  transition: transform 1.1s var(--ease), opacity 1.1s var(--ease);
}

.cinema__frame.is-visible {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.phone-motion {
  will-change: transform;
}

.cinema__frame.is-visible .phone-motion {
  animation: phone-float 5.5s ease-in-out 0.6s infinite;
}

@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* Phone mockup */
.phone {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.phone__shell {
  position: relative;
  padding: 10px;
  border-radius: 44px;
  background: linear-gradient(160deg, #454340 0%, #1e1c1a 45%, #121110 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 48px 100px rgba(0, 0, 0, 0.55);
}

.cinema__frame.is-visible .phone__shell {
  animation: phone-glow 4s ease-in-out 0.6s infinite;
}

@keyframes phone-glow {
  0%, 100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.06),
      0 48px 100px rgba(0, 0, 0, 0.55);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 0 -1px 0 rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(255, 255, 255, 0.08),
      0 52px 110px rgba(255, 61, 90, 0.12),
      0 48px 100px rgba(0, 0, 0, 0.55);
  }
}

.phone__btn {
  position: absolute;
  background: #2a2826;
  border-radius: 2px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.phone__btn--silent {
  left: -2px;
  top: 88px;
  width: 3px;
  height: 28px;
}

.phone__btn--vol-up {
  left: -2px;
  top: 132px;
  width: 3px;
  height: 44px;
}

.phone__btn--vol-down {
  left: -2px;
  top: 186px;
  width: 3px;
  height: 44px;
}

.phone__btn--power {
  right: -2px;
  top: 148px;
  width: 3px;
  height: 64px;
}

.phone__screen {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  background: #000;
  line-height: 0;
}

.phone__island {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 84px;
  height: 24px;
  border-radius: 20px;
  background: #0c0b0a;
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.phone__screen img {
  width: 100%;
  height: auto;
  display: block;
}

.cinema__tag {
  width: 100%;
  margin-top: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ── 03 Marquee ── */

.marquee {
  padding: 20px 0;
  background: var(--accent);
  color: #fff;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  font-family: var(--display);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee__track span:nth-child(even) { opacity: 0.5; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── 04 Lanes (full-bleed typographic rows) ── */

.lanes {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lanes__tag {
  padding: clamp(32px, 5vh, 48px) clamp(24px, 6vw, 80px) clamp(16px, 3vh, 24px);
  font-family: var(--display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--bg);
}

.lane {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px clamp(32px, 6vw, 80px);
  padding: clamp(40px, 7vh, 72px) clamp(24px, 6vw, 80px);
}

.lane--dark {
  background: var(--bg);
  color: var(--paper);
}

.lane--accent {
  background: var(--accent);
  color: #fff;
}

.lane__word {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.25rem, 14vw, 9rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.lane__idx {
  display: block;
  margin-bottom: 0.35em;
  font-size: 0.125em;
  font-weight: 700;
  letter-spacing: 0.2em;
  opacity: 0.55;
}

.lane__em {
  display: inline-block;
  margin-left: 0.12em;
  font-style: normal;
  font-size: 0.55em;
  font-weight: 800;
  letter-spacing: -0.03em;
  vertical-align: baseline;
  opacity: 0.85;
}

.lane__copy {
  max-width: 30ch;
  margin: 0;
  padding-bottom: 0.35em;
  font-size: clamp(0.9375rem, 2vw, 1.125rem);
  line-height: 1.55;
  align-self: center;
}

.lane--dark .lane__copy { color: var(--muted); }

.lane--accent .lane__copy {
  color: rgba(255, 255, 255, 0.85);
}

.lanes .lane:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── 05 Offset shot ── */

.offset-shot {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 70vh;
  background: var(--paper);
  color: var(--ink);
  overflow: hidden;
}

.offset-shot__img {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 48px 0 0 48px;
  transform: translateX(60px);
  opacity: 0;
  transition: transform 1s var(--ease), opacity 1s var(--ease);
}

.offset-shot__img.is-visible {
  transform: none;
  opacity: 1;
}

.offset-shot__img img {
  width: min(100%, 340px);
  height: auto;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -20px 60px rgba(12, 11, 10, 0.15);
}

.offset-shot__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px);
}

.offset-shot__kicker {
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.offset-shot__text {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

/* ── 06 Trust ── */

.trust {
  padding: clamp(48px, 8vh, 80px) clamp(24px, 6vw, 80px);
  background: var(--bg);
}

.trust__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.trust__pills li {
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(240, 236, 230, 0.75);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), border-color 0.2s;
}

.trust__pills li.is-visible {
  opacity: 1;
  transform: none;
}

.trust__pills li:hover {
  border-color: var(--accent);
  color: #fff;
}

/* ── 07 Close ── */

.close {
  padding: clamp(80px, 14vh, 140px) 24px 48px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(255, 61, 90, 0.25), transparent),
    var(--bg);
}

.close__title {
  font-family: var(--display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.close__foot {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.close__foot nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 12px;
}

.close__foot a {
  color: var(--muted);
  font-size: 0.8125rem;
  transition: color 0.15s;
}

.close__foot a:hover { color: #fff; }

.close__foot p {
  color: rgba(240, 236, 230, 0.35);
  font-size: 0.75rem;
}

/* ── Mobile ── */

@media (max-width: 768px) {
  .gate__title { font-size: clamp(2.75rem, 16vw, 4.5rem); }

  .offset-shot {
    grid-template-columns: 1fr;
  }

  .offset-shot__img {
    padding: 32px 24px 0;
    justify-content: center;
    transform: translateY(40px);
  }

  .offset-shot__copy {
    padding: 32px 24px 48px;
    text-align: center;
    align-items: center;
  }

  .offset-shot__text { max-width: none; }

  .lane {
    flex-direction: column;
    align-items: flex-start;
  }

  .lane__copy {
    align-self: flex-start;
    padding-bottom: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gate__eyebrow, .gate__line, .gate__sub, .gate .stores,
  .marquee__track {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .gate__scroll {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .cinema__frame, .lane,
  .offset-shot__img, .trust__pills li {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .phone-motion,
  .phone__shell {
    animation: none !important;
  }

  .phone {
    transform: none !important;
  }
}
