/* ===== KAEZEN — Design System ===== */
/* Fonts: Sora (headings), Figtree (body) */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Figtree:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

:root {
  /* Surfaces — deep, navy-tinted */
  --bg-deep: oklch(0.12 0.015 270);
  --bg-surface: oklch(0.16 0.012 270);
  --bg-surface-hover: oklch(0.20 0.015 270);

  /* Committed accent — warm vermillion */
  --accent: oklch(0.65 0.22 25);
  --accent-hover: oklch(0.58 0.24 22);
  --accent-subtle: oklch(0.20 0.05 25);
  --accent-glow: oklch(0.65 0.22 25 / 0.2);

  /* Text — warm off-white, tinted, never #fff */
  --text-primary: oklch(0.93 0.008 80);
  --text-secondary: oklch(0.68 0.012 260);
  --text-muted: oklch(0.45 0.008 260);
  --text-on-accent: oklch(0.14 0.02 25);

  /* Borders */
  --border: oklch(0.25 0.012 270);
  --border-hover: oklch(0.35 0.015 270);

  /* Typography */
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Figtree', sans-serif;

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;

  /* Motion — exponential ease-out */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;

  /* Layout */
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Light text on dark: slightly more line-height */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
  box-shadow: 0 4px 24px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px oklch(0.65 0.22 25 / 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface);
}

/* ===== SECTION UTILITIES ===== */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 540px;
  line-height: 1.7;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes kenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.06);
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(0);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

@media (prefers-reduced-motion: reduce) {

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

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

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.nav.scrolled {
  background: oklch(0.12 0.015 270 / 0.92);
  box-shadow: 0 1px 0 var(--border);
}

.nav-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--duration) var(--ease);
  font-weight: 500;
}

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

.nav-cta {
  padding: 10px 22px;
  font-size: 0.82rem;
}

.nav-mobile-toggle {
  display: none;
  color: var(--text-primary);
  font-size: 1.4rem;
}

/* ===== HERO — left-aligned, no stat bar ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 100px;
}

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

.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      oklch(0.12 0.015 270 / 0.88) 0%,
      oklch(0.12 0.015 270 / 0.75) 40%,
      oklch(0.12 0.015 270 / 0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero h1 {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.75;
  max-width: 520px;
  animation: fadeUp 0.8s var(--ease) 0.1s both;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}

/* ===== HERO PREVIEW TRIGGER =====
   Floats fixed at the bottom-right of the viewport so it stays
   accessible from anywhere on the page. */
.hero-preview {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vh, 32px);
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 22px 10px 10px;
  border-radius: var(--radius-pill);
  background: oklch(0.18 0.012 270 / 0.55);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--border);
  color: var(--text-primary);
  transition: transform var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              background var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease);
  animation: heroPreviewIn 0.8s var(--ease) 0.4s both;
}

@keyframes heroPreviewIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-preview:hover {
  transform: translateY(-2px);
  border-color: var(--border-hover);
  background: oklch(0.22 0.014 270 / 0.7);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.hero-preview:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.hero-preview-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--text-on-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
  box-shadow: 0 4px 18px var(--accent-glow);
  transition: transform var(--duration) var(--ease);
  position: relative;
}

/* Hover ring — appears on hover only */
.hero-preview-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid oklch(0.65 0.22 25 / 0.4);
  opacity: 0;
  transition: opacity var(--duration) var(--ease), inset var(--duration) var(--ease);
}

/* Idle wave — soft ring pulsing outward, kept very subtle */
.hero-preview-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  opacity: 0;
  pointer-events: none;
  animation: heroPreviewWave 2.8s ease-out infinite;
}

@keyframes heroPreviewWave {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  80% {
    opacity: 0;
    transform: scale(1.9);
  }
  100% {
    opacity: 0;
    transform: scale(1.9);
  }
}

.hero-preview:hover .hero-preview-icon {
  transform: scale(1.06);
}

.hero-preview:hover .hero-preview-icon::before {
  opacity: 1;
  inset: -7px;
}

/* Pause the wave on hover so the hover ring reads cleanly */
.hero-preview:hover .hero-preview-icon::after {
  animation-play-state: paused;
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-preview-icon::after {
    animation: none;
  }
}

.hero-preview-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  text-align: left;
  line-height: 1.2;
}

.hero-preview-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.hero-preview-sub {
  font-size: 0.74rem;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ===== VIDEO MODAL =====
   The parent only toggles visibility (no opacity), so children can
   independently transition their own filters/transforms. backdrop-filter
   is composited ignoring parent opacity in most engines — animating the
   blur radius directly is what makes the fade-in actually look smooth. */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  visibility: hidden;
  transition: visibility 0s linear 0.45s;
}

.video-modal.open {
  visibility: visible;
  transition: visibility 0s linear 0s;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background-color: oklch(0.06 0.012 270 / 0);
  -webkit-backdrop-filter: blur(0px) saturate(100%);
  backdrop-filter: blur(0px) saturate(100%);
  transition: background-color 0.45s var(--ease),
              -webkit-backdrop-filter 0.45s var(--ease),
              backdrop-filter 0.45s var(--ease);
  cursor: pointer;
  will-change: backdrop-filter;
}

.video-modal.open .video-modal-backdrop {
  background-color: oklch(0.06 0.012 270 / 0.82);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  backdrop-filter: blur(18px) saturate(140%);
}

.video-modal-stage {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 100%;
  width: auto;
  transform: translateY(14px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
}

.video-modal.open .video-modal-stage {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.video-modal-close {
  position: absolute;
  top: -54px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: oklch(0.18 0.012 270 / 0.85);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--text-primary);
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  transition: transform var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              background var(--duration) var(--ease),
              color var(--duration) var(--ease);
  z-index: 3;
}

.video-modal-close:hover {
  border-color: var(--accent);
  background: oklch(0.22 0.014 270 / 0.95);
  color: var(--accent);
  transform: rotate(90deg);
}

.video-modal-close:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.video-modal-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.55),
    0 0 0 1px oklch(0.65 0.22 25 / 0.06),
    0 0 120px oklch(0.65 0.22 25 / 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: min(92vw, 1100px);
  max-height: calc(100dvh - 130px);
  min-height: 280px;
  min-width: 240px;
}

.video-modal-frame video {
  display: block;
  max-width: min(92vw, 1100px);
  max-height: calc(100dvh - 130px);
  width: auto;
  height: auto;
  background: black;
  border-radius: calc(var(--radius-lg) - 1px);
}

/* Loader — soft pulsing dots while video is buffering */
.video-modal-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s var(--ease);
}

.video-modal-frame[data-state="ready"] .video-modal-loader {
  opacity: 0;
}

.video-modal-loader span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: previewPulse 1.1s var(--ease) infinite;
}

.video-modal-loader span:nth-child(2) {
  animation-delay: 0.18s;
}

.video-modal-loader span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes previewPulse {
  0%, 100% { transform: scale(0.8); opacity: 0.35; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Mobile: close pulls inside the frame, padding tightens */
@media (max-width: 640px) {
  .video-modal {
    padding: 12px;
  }

  .video-modal-stage {
    gap: 0;
  }

  .video-modal-close {
    top: 10px;
    right: 10px;
    width: 38px;
    height: 38px;
  }

  .video-modal-frame {
    max-width: 100%;
    max-height: calc(100dvh - 24px);
  }

  .video-modal-frame video {
    max-width: 100%;
    max-height: calc(100dvh - 24px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .video-modal,
  .video-modal.open,
  .video-modal-backdrop,
  .video-modal-stage {
    transition: visibility 0s linear 0s, background-color 0.15s linear, opacity 0.15s linear !important;
  }
  .video-modal-stage {
    transform: none !important;
  }
  .video-modal-close:hover {
    transform: none;
  }
  .video-modal-loader span {
    animation: none;
    opacity: 0.6;
  }
}

/* ===== SOCIAL PROOF BAR ===== */
.social-proof {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.social-proof::before,
.social-proof::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}

.social-proof::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-deep), transparent);
}

.social-proof::after {
  right: 0;
  background: linear-gradient(-90deg, var(--bg-deep), transparent);
}

.social-proof-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: slideLeft 20s linear infinite;
  width: max-content;
}

.social-proof-item {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ===== PACKS — Visual Grid ===== */
.packs {
  padding: 140px 0 100px;
}

.packs-header {
  margin-bottom: 64px;
}

.pack-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.pack-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration) var(--ease), border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.pack-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.pack-visual {
  aspect-ratio: 16 / 9;
  position: relative;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.pack-visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
  transition: transform 0.6s var(--ease);
}

.pack-card:hover .pack-visual > img {
  transform: scale(1.04);
}

.pack-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.45) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity var(--duration) var(--ease);
  z-index: 1;
}

.pack-card:hover .pack-visual-overlay {
  opacity: 1;
}

.pack-visual-overlay i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3.5rem;
  color: rgba(255, 255, 255, 0.95);
  opacity: 0;
  transition: opacity var(--duration) var(--ease), transform var(--duration) var(--ease);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.pack-card:hover .pack-visual-overlay i {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* Premium Placeholder Gradients */
.pack-visual--automotive { background: linear-gradient(135deg, oklch(0.25 0.05 270), oklch(0.12 0.02 270)); }
.pack-visual--elite { background: linear-gradient(135deg, oklch(0.20 0.02 40), oklch(0.10 0.01 40)); }
.pack-visual--hustle { background: linear-gradient(135deg, oklch(0.28 0.08 280), oklch(0.14 0.04 280)); }
.pack-visual--urban { background: linear-gradient(135deg, oklch(0.25 0.06 200), oklch(0.12 0.03 200)); }
.pack-visual--travel { background: linear-gradient(135deg, oklch(0.28 0.05 150), oklch(0.14 0.02 150)); }
.pack-visual--night { background: linear-gradient(135deg, oklch(0.22 0.1 320), oklch(0.10 0.05 320)); }
.pack-visual--all-in-one { background: radial-gradient(circle at top right, oklch(0.35 0.15 25), oklch(0.15 0.05 25)); }

.pack-content {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 24px;
}

.pack-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pack-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.pack-angle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pack-stats-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.pack-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-deep);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.pack-stat-pill i {
  color: var(--text-secondary);
  font-size: 1rem;
}

.pack-action {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* All-in-One Span Treatment */
.pack-card--all-in-one {
  grid-column: 1 / -1;
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-subtle) 0%, var(--bg-surface) 100%);
  flex-direction: row;
  margin-top: 16px;
}

@media (max-width: 900px) {
  .pack-card--all-in-one {
    flex-direction: column;
  }
}

.pack-card--all-in-one:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.pack-card--all-in-one .pack-visual {
  flex: 0 0 45%;
  border-bottom: none;
  border-right: 1px solid var(--border);
}

@media (max-width: 900px) {
  .pack-card--all-in-one .pack-visual {
    flex: auto;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
}

.pack-card--all-in-one .pack-visual > img {
  opacity: 1;
  mix-blend-mode: normal;
}

.pack-card--all-in-one:hover .pack-visual > img {
  transform: scale(1.02);
}

.pack-card--all-in-one .pack-content {
  padding: 48px;
  justify-content: center;
}

.pack-badge {
  display: inline-block;
  align-self: flex-start;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: var(--text-on-accent);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.pack-card--all-in-one .pack-name {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.pack-card--all-in-one .pack-angle {
  font-size: 1.05rem;
  color: var(--text-primary);
  max-width: 480px;
}

.pack-card--all-in-one .pack-stats-strip {
  margin-top: 8px;
}

.pack-card--all-in-one .pack-stat-pill {
  background: oklch(0.18 0.04 25);
  color: var(--text-primary);
}

.pack-card--all-in-one .pack-stat-pill i {
  color: var(--accent);
}

.pack-action--split {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 16px;
  border-top: 1px solid oklch(0.25 0.05 25);
  padding-top: 24px;
}

@media (max-width: 600px) {
  .pack-action--split {
    flex-direction: column;
    align-items: stretch;
  }
}

.pack-price-compare {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.pack-price-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.pack-price-current {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

/* ===== SHOWCASE ===== */
.showcase {
  padding: 100px 0 140px;
  position: relative;
  overflow: hidden;
}

.showcase::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-image {
  position: relative;
}

.showcase-image img {
  border-radius: var(--radius-lg);
}

.showcase-content {
  position: relative;
  z-index: 2;
}

.showcase-content .section-title {
  margin-bottom: 24px;
}

.showcase-content .section-subtitle {
  margin-bottom: 32px;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  padding: 10px 0;
}

.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--accent);
}

.showcase-price {
  margin-bottom: 28px;
}

.price-original {
  font-size: 1rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-right: 12px;
  color: black;
  opacity: 0.5;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
}

.price-tagline {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.btn-strike {
  display: inline-block;
  margin-left: 8px;
  font-weight: 500;
  opacity: 0.6;
  text-decoration: line-through;
  font-size: 0.85em;
}

/* ===== BONUSES — asymmetric, not identical cards ===== */
.bonuses {
  padding: 60px 0 120px;
  position: relative;
}

.bonuses-header {
  margin-bottom: 48px;
}

.bonuses-header .section-subtitle {
  max-width: 580px;
}

/* Lead bonus: LUT pack gets the most visual weight */
.bonus-lead {
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  margin-bottom: 14px;
}

.bonus-lead-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}

.bonus-lead-content {
  flex: 1;
  max-width: 560px;
}

.bonus-lead-number {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}

.bonus-lead-unit {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.bonus-lead h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.bonus-lead p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.bonus-exclusive {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: var(--accent-subtle);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
}

/* LUT categories — inline data strip, not cards */
.bonus-lut-categories {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.bonus-lut-cat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bonus-lut-cat-count {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.bonus-lut-cat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Compatibility tags — flowing, not a list */
.compat-strip {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.compat-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.compat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.compat-tag {
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  background: oklch(0.20 0.01 270);
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Secondary bonuses — compact horizontal strips */
.bonus-secondary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.bonus-secondary {
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bonus-secondary-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bonus-secondary-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
  flex-shrink: 0;
}

.bonus-secondary h3 {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.bonus-secondary p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== HOW IT WORKS — no cards ===== */
.how-it-works {
  padding: 80px 0 100px;
}

.how-it-works-header {
  margin-bottom: 56px;
}

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

.step {
  position: relative;
  transition: transform var(--duration) var(--ease);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== BROWSER SHOWCASE ===== */
.browser-showcase {
  padding: 100px 0 120px;
}

.browser-showcase-header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.browser-showcase-header .section-subtitle {
  margin: 0 auto;
}

.browser-showcase-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
}

.browser-showcase-still,
.browser-showcase-video {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.browser-showcase-frame {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-surface);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.browser-showcase-frame img,
.browser-showcase-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.browser-showcase-trigger {
  appearance: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: block;
  width: 100%;
  transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease;
}

.browser-showcase-trigger:hover,
.browser-showcase-trigger:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 14px 40px -18px oklch(0 0 0 / 0.45);
  outline: none;
}

.browser-showcase-trigger:hover .browser-showcase-play,
.browser-showcase-trigger:focus-visible .browser-showcase-play {
  background: rgba(0, 0, 0, 0.5);
  transform: translate(-50%, -50%) scale(1.06);
}

.browser-showcase-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: white;
  font-size: 1.6rem;
  pointer-events: none;
  transition: background 250ms ease, transform 250ms ease;
}

.browser-showcase-play i {
  margin-left: 4px;
}

.browser-showcase-still figcaption,
.browser-showcase-video figcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

.browser-showcase-points {
  margin: 40px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 28px;
  list-style: none;
  padding: 0;
}

.browser-showcase-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.browser-showcase-points i {
  color: var(--accent);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ===== PRICING ===== */
.pricing {
  padding: 140px 0 120px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header .section-subtitle {
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--duration) var(--ease);
  border: 1px solid var(--border);
  background: var(--bg-surface);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

/* Featured card: accent background, dark text */
.pricing-card.featured {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--text-on-accent);
}

.pricing-card.featured .pricing-card-desc {
  color: oklch(0.35 0.03 25);
}

.pricing-card.featured .pricing-card-price .amount {
  color: var(--text-on-accent);
}

.pricing-card.featured .pricing-card-price .period {
  color: oklch(0.35 0.03 25);
}

.pricing-card.featured .pricing-features li {
  color: oklch(0.30 0.02 25);
}

.pricing-card.featured .pricing-check {
  color: var(--text-on-accent);
}

.pricing-card.featured .btn {
  background: var(--text-on-accent);
  color: var(--accent);
  box-shadow: none;
}

.pricing-card.featured .btn:hover {
  box-shadow: 0 4px 20px oklch(0.14 0.02 25 / 0.3);
}

.pricing-badge {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: black;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.pricing-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.pricing-card-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-card-price {
  margin-bottom: 28px;
}

.pricing-card-price .amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
}

.pricing-card-price .period {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.pricing-features li {
  font-size: 0.88rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-check {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== TESTIMONIALS — varied, not identical ===== */
/* ===== FAQ — grid-template-rows animation ===== */
.faq {
  padding: 80px 0 120px;
}

.faq-header {
  margin-bottom: 48px;
}

.faq-list {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color var(--duration) var(--ease);
}

.faq-item.active {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: color var(--duration) var(--ease);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease);
  color: var(--text-muted);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.faq-item.active .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-inner p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: 140px 0 120px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.final-cta h2 .accent {
  color: var(--accent);
}

.final-cta p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

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

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

.footer-links a:hover {
  color: var(--text-primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content {
    max-width: 100%;
  }

  .showcase-inner {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    order: -1;
    max-width: 400px;
  }

  .showcase-content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 400px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .pack-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pack-stats {
    justify-content: flex-start;
  }

  .pack-stat {
    align-items: flex-start;
  }

  .pack-price {
    text-align: left;
  }

  .browser-showcase-media {
    grid-template-columns: 1fr;
  }

  .browser-showcase-points {
    grid-template-columns: 1fr;
  }

  .bonus-lead-top {
    flex-direction: column;
    gap: 24px;
  }

  .bonus-lead {
    padding: 28px 24px;
  }

  .bonus-secondary-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 14px 20px;
  }

  .nav-links {
    display: none;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 56px;
    left: 12px;
    right: 12px;
    background: oklch(0.14 0.015 270 / 0.96);
    padding: 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    gap: 14px;
  }

  .pack-row {
    padding: 18px 20px;
  }

  .pack-name {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero {
    padding: 120px 0 80px;
  }
}