/* ==========================================================================
   ProofPocket Landing — Modern editorial layout
   Design tokens: DESIGN_SYSTEM.md v1.0 (Dark)
   ========================================================================== */

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Background --- */
.bg-app {
  background-color: #0B0C0E;
  background-image: radial-gradient(140% 50% at 50% -8%, #15171B 0%, #0B0C0E 55%);
}

.hero-glow {
  position: absolute;
  width: min(680px, 90vw);
  height: min(680px, 90vw);
  top: 10%;
  right: -10%;
  background: radial-gradient(circle, rgba(243, 240, 233, 0.045) 0%, transparent 65%);
  pointer-events: none;
}

/* --- Typography --- */
.font-display {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.035em;
}

.font-mono-receipt,
.mono-label {
  font-family: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
}

.mono-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.headline-xl {
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

/* --- Hero v2 — Scan Scene --- */
.hero-v2 {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 4rem;
  overflow: hidden;
}

/* Bottom horizon glow — same language as cta-download, shifted toward phone */
.hero-v2::before {
  content: "";
  position: absolute;
  left: 58%;
  bottom: -10%;
  transform: translateX(-50%);
  width: min(1300px, 175vw);
  height: 78%;
  background: radial-gradient(
    ellipse 52% 68% at 50% 100%,
    rgba(243, 240, 233, 0.095) 0%,
    rgba(243, 240, 233, 0.042) 34%,
    rgba(243, 240, 233, 0.012) 56%,
    transparent 74%
  );
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1023px) {
  .hero-v2::before {
    left: 50%;
    height: 65%;
    bottom: -6%;
  }
}

/* Horizon line — blends hero into marquee */
.hero-v2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(880px, 92vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(243, 240, 233, 0.08) 22%,
    rgba(243, 240, 233, 0.16) 50%,
    rgba(243, 240, 233, 0.08) 78%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-v2__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Spotlight behind phone scene */
.hero-v2__paper-glow {
  position: absolute;
  bottom: 8%;
  right: 6%;
  width: min(520px, 75vw);
  height: min(520px, 58vh);
  background: radial-gradient(
    ellipse 58% 58% at 50% 58%,
    rgba(243, 240, 233, 0.11) 0%,
    rgba(243, 240, 233, 0.045) 38%,
    transparent 68%
  );
}

@media (max-width: 1023px) {
  .hero-v2__paper-glow {
    right: 50%;
    bottom: 12%;
    transform: translateX(50%);
    width: min(480px, 95vw);
    height: min(420px, 45vh);
  }
}

/* Faint glow behind headline — balances composition */
.hero-v2__text-glow {
  position: absolute;
  top: 28%;
  left: 8%;
  width: min(420px, 55vw);
  height: min(360px, 40vh);
  background: radial-gradient(
    ellipse 60% 55% at 40% 50%,
    rgba(243, 240, 233, 0.035) 0%,
    transparent 70%
  );
}

@media (max-width: 1023px) {
  .hero-v2__text-glow {
    left: 50%;
    top: 18%;
    transform: translateX(-50%);
    width: min(360px, 90vw);
    opacity: 0.7;
  }
}

.hero-v2__grid {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.035) 1px, transparent 0);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 75% 65% at 60% 55%, #000 0%, transparent 100%);
  opacity: 0.85;
}

.hero-v2__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 4rem);
  min-height: calc(100dvh - 4rem);
}

@media (min-width: 1024px) {
  .hero-v2__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto 1fr auto;
    column-gap: 3rem;
    align-items: center;
    padding-top: 3.5rem;
    padding-bottom: 2rem;
  }
}

.hero-v2__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 10px;
  border-radius: 100px;
  background: rgba(22, 24, 28, 0.8);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  width: fit-content;
}

.hero-v2__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4CC38A;
  box-shadow: 0 0 10px rgba(76, 195, 138, 0.55);
  animation: pulse-dot 2.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.85); }
}

.hero-v2__badge-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9BA1A8;
}

.hero-v2__copy {
  grid-column: 1;
}

@media (min-width: 1024px) {
  .hero-v2__badge { grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .hero-v2__copy { grid-row: 2 / span 2; align-self: center; }
}

.hero-v2__title {
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.045em;
  margin-bottom: 1.25rem;
}

.hero-v2__accent {
  background: linear-gradient(180deg, #F3F0E9 0%, #E7E3DA 45%, #C8C4BA 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-v2__desc {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #9BA1A8;
  max-width: 26rem;
  margin-bottom: 2rem;
}

.hero-v2__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 480px) {
  .hero-v2__actions { flex-direction: row; flex-wrap: wrap; }
}

.hero-v2__cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 1.5rem;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #FBFBFC 0%, #EDEEEF 100%);
  color: #0B0C0E;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: transform 120ms ease;
}

.hero-v2__cta-primary:hover { transform: translateY(-2px); }

.hero-v2__cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 0 1.25rem;
  font-size: 15px;
  font-weight: 500;
  color: #9BA1A8;
  transition: color 200ms ease;
}

.hero-v2__cta-secondary:hover { color: #F4F5F6; }

.hero-v2__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 0.5rem;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 1024px) {
  .hero-v2__metrics { grid-column: 1; grid-row: 4; margin-top: 0; }
}

.hero-v2__metric {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-v2__metric-value {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #F4F5F6;
}

.hero-v2__metric-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5E646C;
}

/* Phone scene */
.hero-v2__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
  min-height: 420px;
}

@media (min-width: 1024px) {
  .hero-v2__visual {
    grid-column: 2;
    grid-row: 1 / span 4;
    margin-top: 0;
    min-height: 520px;
  }
}

.hero-v2__scene {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v2__scene-frame {
  position: absolute;
  inset: 0;
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  background: rgba(22, 24, 28, 0.35);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-v2__corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: rgba(255, 255, 255, 0.18);
  border-style: solid;
}

.hero-v2__corner--tl { top: 14px; left: 14px; border-width: 1.5px 0 0 1.5px; }
.hero-v2__corner--tr { top: 14px; right: 14px; border-width: 1.5px 1.5px 0 0; }
.hero-v2__corner--bl { bottom: 14px; left: 14px; border-width: 0 0 1.5px 1.5px; }
.hero-v2__corner--br { bottom: 14px; right: 14px; border-width: 0 1.5px 1.5px 0; }

.hero-v2__scene-label {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #5E646C;
  white-space: nowrap;
}

.hero-v2__scan-line {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 245, 246, 0.35), transparent);
  animation: hero-scan 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 5;
}

@keyframes hero-scan {
  0%, 100% { top: 22%; opacity: 0; }
  8% { opacity: 1; }
  50% { top: 78%; opacity: 1; }
  92% { opacity: 0; }
}

.hero-v2__phone-wrap {
  position: relative;
  z-index: 2;
  transform: rotate(-1.5deg);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.hero-v2__visual:hover .hero-v2__phone-wrap {
  transform: rotate(0deg) scale(1.01);
}

/* Ghost receipts */
.hero-v2__ghost {
  position: absolute;
  width: 72px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, rgba(243, 240, 233, 0.12) 0%, rgba(223, 219, 209, 0.06) 100%);
  border: 0.5px solid rgba(243, 240, 233, 0.08);
  pointer-events: none;
}

.hero-v2__ghost::after {
  content: "";
  display: block;
  height: 5px;
  margin-top: -1px;
  background: rgba(220, 216, 205, 0.08);
  clip-path: polygon(0 0, 5% 100%, 10% 0, 15% 100%, 20% 0, 25% 100%, 30% 0, 35% 100%, 40% 0, 45% 100%, 50% 0, 55% 100%, 60% 0, 65% 100%, 70% 0, 75% 100%, 80% 0, 85% 100%, 90% 0, 95% 100%, 100% 0);
}

.hero-v2__ghost-lines {
  padding: 8px 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-v2__ghost-lines span {
  height: 2px;
  border-radius: 1px;
  background: rgba(243, 240, 233, 0.15);
}

.hero-v2__ghost-lines span:nth-child(1) { width: 45%; }
.hero-v2__ghost-lines span:nth-child(2) { width: 80%; }
.hero-v2__ghost-lines span:nth-child(3) { width: 55%; }

.hero-v2__ghost--1 { top: 8%; left: -4%; transform: rotate(-14deg); opacity: 0.5; }
.hero-v2__ghost--2 { bottom: 14%; right: -6%; transform: rotate(10deg); width: 64px; opacity: 0.35; }

/* Floating chips */
.hero-v2__chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: linear-gradient(160deg, rgba(28, 31, 36, 0.95) 0%, rgba(19, 21, 25, 0.95) 100%);
  border: 0.5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}

.hero-v2__chip--warranty {
  top: 18%;
  right: -8%;
  color: #4CC38A;
}

@media (min-width: 1024px) {
  .hero-v2__chip--warranty { right: -4%; }
}

.hero-v2__chip--ocr {
  bottom: 20%;
  left: -10%;
  color: #9BA1A8;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .hero-v2__chip--ocr { left: -6%; }
}

.hero-v2__chip-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4CC38A;
  box-shadow: 0 0 8px rgba(76, 195, 138, 0.5);
  flex-shrink: 0;
}

/* --- Surfaces --- */
.surface-card {
  background: linear-gradient(160deg, #1C1F24 0%, #131519 100%);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.surface-primary {
  background: rgba(22, 24, 28, 0.66);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.hairline-b {
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

/* --- Buttons --- */
.btn-primary {
  background: linear-gradient(180deg, #FBFBFC 0%, #EDEEEF 100%);
  color: #0B0C0E;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 0 rgba(0, 0, 0, 0.06);
  transition: transform 120ms ease, background 120ms ease, opacity 120ms ease;
}

.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: scale(0.97); background: #D9DADB; }

.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
  border: 0.5px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #F4F5F6;
  transition: background 200ms ease, border-color 200ms ease, transform 120ms ease;
}

.btn-store:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}

.btn-ghost {
  color: #9BA1A8;
  transition: color 200ms ease, opacity 120ms ease;
}

.btn-ghost:hover { color: #F4F5F6; }

.nav-link {
  color: #9BA1A8;
  font-size: 14px;
  font-weight: 500;
  transition: color 200ms ease;
}

.nav-link:hover { color: #F4F5F6; }

/* --- Status --- */
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}

.status-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 6px currentColor;
}

.status-active { color: #4CC38A; }
.status-expiring { color: #D9A05B; }

/* --- Marquee --- */
.marquee-wrap {
  overflow: hidden;
  border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 95s linear infinite;
  will-change: transform;
}

.marquee-content {
  flex-shrink: 0;
  margin: 0;
  padding: 20px 0;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5E646C;
  white-space: nowrap;
}

.marquee-gap {
  display: inline-block;
  padding: 0 2.75rem;
  opacity: 0.4;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}

/* --- Scroll cue --- */
.scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #5E646C;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: bob 2.4s ease-in-out infinite;
}

.scroll-cue__line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.2), transparent);
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

/* --- Editorial steps (BuyLater-inspired) --- */
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.step-item:first-child { padding-top: 0; }
.step-item:last-child { border-bottom: none; padding-bottom: 0; }

.step-num {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #5E646C;
  padding-top: 4px;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

.step-title em {
  font-style: normal;
  color: #9BA1A8;
}

/* --- Trust pills --- */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: #9BA1A8;
  background: rgba(255, 255, 255, 0.03);
  border: 0.5px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}

.trust-pill::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4CC38A;
  box-shadow: 0 0 8px rgba(76, 195, 138, 0.5);
  flex-shrink: 0;
}

/* --- Feature bento --- */
.feature-bento {
  transition: transform 220ms ease, border-color 220ms ease;
}

.feature-bento:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.1);
}

/* --- Phone stage --- */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-stage__glow {
  position: absolute;
  inset: 10% 5%;
  background: radial-gradient(ellipse at center, rgba(243, 240, 233, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.phone-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #5E646C;
  letter-spacing: -0.01em;
}

.phone-caption strong {
  display: block;
  color: #F4F5F6;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 2px;
}

/* --- CTA / Download glow --- */
.cta-download {
  position: relative;
  overflow: hidden;
}

/* Paper horizon glow — fills section down to footer */
.cta-download::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  width: min(1400px, 180vw);
  height: 85%;
  background: radial-gradient(
    ellipse 55% 70% at 50% 100%,
    rgba(243, 240, 233, 0.11) 0%,
    rgba(243, 240, 233, 0.05) 32%,
    rgba(243, 240, 233, 0.015) 55%,
    transparent 72%
  );
  pointer-events: none;
}

/* Soft horizon line */
.cta-download::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(900px, 90vw);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(243, 240, 233, 0.12) 20%,
    rgba(243, 240, 233, 0.22) 50%,
    rgba(243, 240, 233, 0.12) 80%,
    transparent 100%
  );
  pointer-events: none;
}

.cta-block {
  position: relative;
}

.cta-block::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
  width: min(600px, 100%);
  height: 320px;
  background: radial-gradient(
    ellipse 70% 60% at 50% 50%,
    rgba(243, 240, 233, 0.045) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: -1;
}

/* --- Navbar --- */
.navbar-scrolled {
  background: rgba(11, 12, 14, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu {
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease, visibility 0.25s;
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* --- Animations --- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fade-up 0.65s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  opacity: 0;
}

.animate-delay-1 { animation-delay: 0.08s; }
.animate-delay-2 { animation-delay: 0.16s; }
.animate-delay-3 { animation-delay: 0.24s; }
.animate-delay-4 { animation-delay: 0.32s; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.33, 1, 0.68, 1), transform 0.65s cubic-bezier(0.33, 1, 0.68, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- iPhone 14 Pro mockup --- */
.iphone-14-pro {
  --phone-width: 280px;
  --frame-radius: 50px;
  --screen-radius: 42px;
  --bezel: 10px;
  position: relative;
  width: var(--phone-width);
  margin: 0 auto;
}

.iphone-14-pro__shell {
  position: relative;
  border-radius: var(--frame-radius);
  padding: var(--bezel);
  background: linear-gradient(145deg, #3a3a3c 0%, #1c1c1e 18%, #2c2c2e 50%, #1a1a1c 82%, #48484a 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 32px 64px rgba(0, 0, 0, 0.5);
}

.iphone-14-pro__empty { flex: 1; min-height: 0; }

.iphone-14-pro__screen {
  position: relative;
  border-radius: var(--screen-radius);
  overflow: hidden;
  background: #0B0C0E;
  aspect-ratio: 393 / 852;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.iphone-14-pro__dynamic-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 28px;
  background: #000;
  border-radius: 20px;
  z-index: 20;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.iphone-14-pro__dynamic-island::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a2840 0%, #0a0a0c 70%);
  opacity: 0.85;
}

.iphone-14-pro__status-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #F4F5F6;
}

.iphone-14-pro__status-icons { display: flex; align-items: center; gap: 5px; }
.iphone-14-pro__status-icons svg { display: block; }

.iphone-14-pro__home-indicator {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 4px;
  background: rgba(244, 245, 246, 0.28);
  border-radius: 100px;
  z-index: 20;
}

.iphone-14-pro__btn {
  position: absolute;
  background: linear-gradient(90deg, #2c2c2e, #48484a, #2c2c2e);
  border-radius: 2px;
}

.iphone-14-pro__btn--silent { left: -3px; top: 108px; width: 3px; height: 22px; }
.iphone-14-pro__btn--vol-up { left: -3px; top: 148px; width: 3px; height: 44px; }
.iphone-14-pro__btn--vol-down { left: -3px; top: 204px; width: 3px; height: 44px; }
.iphone-14-pro__btn--power { right: -3px; top: 168px; width: 3px; height: 64px; }

.iphone-14-pro__label {
  text-align: center;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5E646C;
}

.iphone-14-pro--sm {
  --phone-width: 220px;
  --frame-radius: 40px;
  --screen-radius: 34px;
  --bezel: 8px;
}

.iphone-14-pro--sm .iphone-14-pro__dynamic-island { width: 72px; height: 22px; top: 9px; }
.iphone-14-pro--sm .iphone-14-pro__status-bar { padding: 11px 16px 4px; font-size: 10px; }
.iphone-14-pro--sm .iphone-14-pro__home-indicator { width: 80px; height: 3px; bottom: 6px; }

.iphone-14-pro--lg {
  --phone-width: 300px;
  --frame-radius: 54px;
  --screen-radius: 46px;
  --bezel: 11px;
}

.iphone-14-pro--lg .iphone-14-pro__dynamic-island { width: 102px; height: 30px; }

/* --- FAQ --- */
details summary { list-style: none; }
details summary::-webkit-details-marker { display: none; }

details .faq-icon-minus { display: none; }
details[open] .faq-icon-plus { display: none; }
details[open] .faq-icon-minus { display: block; }

/* --- Focus & a11y --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 16px;
  background: #F4F5F6;
  color: #0B0C0E;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
}

.skip-link:focus { top: 16px; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid #F4F5F6;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track,
  .animate-fade-up,
  .scroll-cue,
  .reveal,
  .hero-v2__scan-line,
  .hero-v2__badge-dot {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
