/* ===== Foundations ===== */
:root {
  --bg: #ffffff;
  --bg-elevated: #f5f5f7;
  --bg-elevated-2: #ebebef;
  --ink: #1c1d21;
  --ink-dim: #55575f;
  --ink-faint: #8a8c93;
  --accent: #e5484d;       /* the gloss red from the hero */
  --accent-2: #f2c94c;     /* the yellow-folder gold */
  --accent-green: #1fa864; /* success / "not identical" green */
  --line: rgba(20, 20, 24, 0.1);
  --radius: 18px;
  --container: 1180px;
  --display: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", sans-serif;
  --sans: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI Variable", "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

.kicker {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-bottom: 20px;
  color: var(--ink);
}

/* ===== Intro door reveal ===== */
.door-overlay {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  pointer-events: none;
  perspective: 1800px;
}
.door-panel {
  width: 50%;
  height: 100%;
  position: relative;
  background:
    linear-gradient(155deg, rgba(255,255,255,0.06), transparent 40%),
    linear-gradient(135deg, #1b2a4a, #0d1526 70%);
  box-shadow: inset 0 0 90px rgba(0,0,0,0.5);
  transition: transform 1.15s cubic-bezier(0.76,0,0.24,1);
  will-change: transform;
}
.door-left { transform-origin: left center; border-right: 1px solid rgba(242,201,76,0.4); }
.door-right { transform-origin: right center; border-left: 1px solid rgba(242,201,76,0.4); }
.door-tab {
  position: absolute;
  top: 50%;
  width: 14px; height: 44px;
  background: linear-gradient(180deg, #f2c94c, #d9a63d);
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(242,201,76,0.5);
  transform: translateY(-50%);
}
.door-left .door-tab { right: -1px; }
.door-right .door-tab { left: -1px; }
.door-overlay.is-opening .door-left { transform: rotateY(-98deg); }
.door-overlay.is-opening .door-right { transform: rotateY(98deg); }
.door-overlay.is-done { display: none; }
@media (prefers-reduced-motion: reduce) {
  .door-overlay { display: none; }
}

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 0;
  box-shadow: 0 1px 0 var(--line), 0 12px 24px -16px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.logo-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  object-fit: cover;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a {
  font-size: 0.9rem;
  color: var(--ink-dim);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--ink); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent-green);
  color: #fff;
  box-shadow: 0 8px 24px -8px rgba(31, 168, 100, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 6px rgba(242, 201, 76, 0.35), 0 8px 24px -8px rgba(31, 168, 100, 0.55); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--ink-faint); transform: translateY(-2px); }
.btn-small { padding: 9px 18px; font-size: 0.82rem; }
.btn-large { padding: 17px 34px; font-size: 1.05rem; }
.btn-full { width: 100%; margin-top: 24px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 180px 0 64px;
  overflow: hidden;
  background: var(--bg);
}
.hero-bg-glow {
  position: absolute;
  top: -25%; left: 50%;
  width: 1500px; height: 1500px;
  background: radial-gradient(circle, rgba(31,168,100,0.16), rgba(242,201,76,0.12) 40%, rgba(229,72,77,0.06) 60%, transparent 72%);
  pointer-events: none;
  animation: heroGlowDrift 14s ease-in-out infinite;
}
@keyframes heroGlowDrift {
  0%, 100% { transform: translateX(-52%) scale(1); }
  50% { transform: translateX(-48%) scale(1.06); }
}
.hero-box-decor {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translateY(-50%);
  width: 340px;
  height: auto;
  opacity: 0.9;
  filter: drop-shadow(0 30px 50px rgba(20,20,24,0.15));
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 1400px) { .hero-box-decor { width: 280px; right: -50px; } }
@media (max-width: 1150px) { .hero-box-decor { display: none; } }
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr minmax(0, 720px) 1fr;
  gap: 32px;
  align-items: center;
}
.hero-headline {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-flank {
  max-width: 190px;
  padding-top: 8px;
}
.hero-flank--right { justify-self: end; text-align: right; margin-left: auto; }
.hero-flank--left { justify-self: start; }
.hero-flank-icon-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.hero-flank--right .hero-flank-icon-stack { align-items: flex-end; }
.hero-flank-icon-wrap {
  position: relative;
  width: 46px;
  height: 38px;
  margin-bottom: 14px;
}
.hero-flank--right .hero-flank-icon-wrap { margin-left: auto; }
.hero-flank-icon {
  --c: #999;
  position: relative;
  width: 46px;
  height: 38px;
}
.hero-flank-icon-wrap .hero-flank-icon {
  position: absolute;
  inset: 0;
}
@property --fill {
  syntax: '<percentage>';
  inherits: false;
  initial-value: 0%;
}
.hero-flank-icon--reveal {
  --fill: 0%;
  pointer-events: none;
  filter: url(#tornReveal);
  transition: --fill 1.1s cubic-bezier(0.65,0,0.35,1);
  -webkit-mask-image: linear-gradient(200deg, #000 0%, #000 var(--fill), transparent calc(var(--fill) + 22%));
  mask-image: linear-gradient(200deg, #000 0%, #000 var(--fill), transparent calc(var(--fill) + 22%));
}
.hero-flank-icon-wrap:hover .hero-flank-icon--reveal { --fill: 120%; }
.hero-flank-icon::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 45%; height: 28%;
  background: color-mix(in srgb, var(--c) 78%, black 12%);
  border-radius: 5px 5px 0 0;
}
.hero-flank-icon::after {
  content: "";
  position: absolute;
  left: 0; top: 20%;
  width: 100%; height: 80%;
  background: var(--c);
  border-radius: 5px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.35), inset 0 -3px 5px rgba(0,0,0,0.15), 0 8px 16px -8px rgba(20,20,24,0.3);
}
.hero-flank-label {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 8px;
}
.hero-flank-copy {
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-faint);
}
@media (max-width: 980px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-flank { display: none; }
}
.eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 22px;
}
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(20,20,24,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 8px 20px -10px rgba(20,20,24,0.12);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(31,168,100,0.2);
}
.hero-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 16ch;
  color: var(--ink);
}
.hero-title span { display: block; }
.hero-title .reveal-green { color: var(--accent-green); }
.hero-sub {
  margin-top: 28px;
  font-size: 1.15rem;
  color: var(--ink-dim);
  max-width: 46ch;
  line-height: 1.5;
}
.hero-actions {
  margin-top: 40px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-swatches {
  margin-top: 44px;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-swatches span {
  --c: #999;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.4), inset 0 -3px 5px rgba(0,0,0,0.2), 0 6px 14px -6px rgba(20,20,24,0.25);
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1);
  animation: swatchBounce 9s ease-in-out infinite;
  animation-delay: var(--bd, 0s);
}
.hero-swatches span:hover { transform: translateY(-4px) scale(1.1); animation-play-state: paused; }
@keyframes swatchBounce {
  0%, 92%, 100% { transform: translateY(0) scale(1); }
  94.5% { transform: translateY(-9px) scale(1.12); }
  97% { transform: translateY(1px) scale(0.96); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-swatches span { animation: none; }
}
.hero-swatches-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--ink-faint);
}

.hero-frame {
  margin-top: 64px;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  box-shadow: inset 0 12px 24px -20px rgba(20,20,24,0.3);
}
.hero-video { width: 100%; display: block; max-height: 74vh; object-fit: cover; }

/* reveal-on-load for hero */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  animation: revealUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
  animation-delay: calc(var(--d, 0) * 0.09s + 0.15s);
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ===== Punch strip (why / how / what, unlabeled) ===== */
.punch-strip { padding: 40px 0; background: var(--bg); }
.punch-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px 22px;
  text-align: center;
}
.punch-item {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  color: var(--ink-dim);
  max-width: 22ch;
}
.punch-item--accent { color: var(--accent-green); }
.punch-arrow { color: var(--ink-faint); font-size: 1.2rem; }
@media (max-width: 780px) {
  .punch-arrow { display: none; }
  .punch-strip-inner { flex-direction: column; gap: 10px; }
}

/* ===== Problem section ===== */
.problem {
  padding: 120px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink-dim);
  margin-bottom: 56px;
}
.problem-title em { font-style: italic; color: var(--ink); font-weight: 700; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.problem-copy {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--ink-dim);
}
.problem-list { list-style: none; display: flex; flex-direction: column; gap: 22px; }
.problem-list li {
  padding-left: 26px;
  position: relative;
  color: var(--ink-dim);
  line-height: 1.5;
}
.problem-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 8px; height: 8px;
  border-radius: 2px;
  background: var(--accent);
}
.problem-list strong { color: var(--ink); font-weight: 700; }

@media (max-width: 780px) {
  .problem-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ===== Playground (interactive folder grid) ===== */
/* ===== Recurring "back wall" parallax divider — true fixed background, page scrolls past it ===== */
.spin-divider {
  position: relative;
  min-height: 100vh;
  background-color: var(--bg-elevated);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spin-divider--dark { background-color: #14161b; border-color: rgba(255,255,255,0.08); }
.spin-divider--video { padding: 0; overflow: hidden; }
.spin-divider-video { width: 100%; height: 100%; min-height: 100vh; object-fit: cover; display: block; }

.box-quad-section { padding: 70px 0; background: var(--bg); }
.box-quad-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(20,20,24,0.25);
}
.box-quad-shot { width: 100%; display: block; }

.playground { padding: 130px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.playground-sub { color: var(--ink-dim); font-size: 1.1rem; margin-bottom: 36px; }

.playground-palette {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.palette-swatch {
  --c: #f2c94c;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--c);
  border: 2px solid transparent;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.4), inset 0 -2px 3px rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  padding: 0;
}
.palette-swatch:hover { transform: scale(1.12); }
.palette-swatch.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--c), inset 0 1px 1px rgba(255,255,255,0.4);
}
.palette-reset {
  margin-left: 8px;
  background: none;
  border: none;
  color: var(--ink-faint);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.palette-reset:hover { color: var(--ink); }

.folder-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .folder-grid { grid-template-columns: repeat(8, 1fr); } }
@media (max-width: 600px) { .folder-grid { grid-template-columns: repeat(5, 1fr); } }

.folder-icon {
  --c: #f2c94c;
  position: relative;
  width: 100%;
  aspect-ratio: 1.2;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}
.folder-icon::before {
  content: "";
  position: absolute;
  left: 0; top: 14%;
  width: 45%; height: 20%;
  background: color-mix(in srgb, var(--c) 78%, black 12%);
  border-radius: 5px 5px 0 0;
}
.folder-icon::after {
  content: "";
  position: absolute;
  left: 0; top: 26%;
  width: 100%; height: 62%;
  background: var(--c);
  border-radius: 4px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.35), inset 0 -3px 5px rgba(0,0,0,0.15);
  transition: background 0.25s cubic-bezier(0.16,1,0.3,1), transform 0.2s ease;
}
.folder-icon:hover::after { transform: translateY(-3px); }
.folder-icon.is-clicked::after { transform: scale(0.94); }

/* ===== Features / Bento ===== */
.features {
  position: relative;
  padding: 130px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.features::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(229,72,77,0.22), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.bento-card {
  position: relative;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(20,20,24,0.08);
  border-radius: var(--radius);
  padding: 32px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 1px 2px rgba(20,20,24,0.04), 0 16px 32px -18px rgba(20,20,24,0.16);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), border-color 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover { transform: translateY(-6px); border-color: rgba(229,72,77,0.3); box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 1px 2px rgba(20,20,24,0.04), 0 28px 44px -22px rgba(20,20,24,0.22); }
.bento-card::before,
.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(280px circle at var(--mx, 50%) var(--my, 0%),
    rgba(229, 72, 77, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.bento-card:hover::before,
.price-card:hover::before { opacity: 1; }
.bento-card--wide { grid-column: span 2; }
.bento-icon { font-size: 1.8rem; margin-bottom: 18px; }
.bento-card h3 { font-family: var(--display); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.bento-card p { color: var(--ink-dim); font-size: 0.98rem; line-height: 1.55; }
.badge {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 8px;
  font-family: var(--sans);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .bento { grid-template-columns: 1fr 1fr; }
  .bento-card--wide { grid-column: span 2; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card--wide { grid-column: span 1; }
}

/* ===== Hover Preview spotlight ===== */
.hover-spotlight { padding: 150px 0 130px; background: var(--bg-elevated); border-bottom: 1px solid var(--line); overflow: visible; }
.hover-spotlight-head { max-width: 640px; margin: 0 auto 72px; text-align: center; }
.claim-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 700;
  color: #2f80ed;
  background: rgba(47,128,237,0.1);
  border: 1px solid rgba(47,128,237,0.25);
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px -12px rgba(47,128,237,0.35);
}
.hover-spotlight-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 22px;
}
.hover-spotlight-text { color: var(--ink-dim); font-size: 1.1rem; line-height: 1.55; max-width: 46ch; margin: 0 auto; }

.explorer-mock {
  max-width: 860px;
  margin: 0 auto 56px;
  border-radius: 10px;
  overflow: visible;
  background: #fff;
  border: 1px solid rgba(20,20,24,0.1);
  box-shadow: 0 60px 100px -40px rgba(20,20,24,0.35), 0 2px 8px rgba(20,20,24,0.06);
}
.explorer-mock * { font-family: "Segoe UI", "Segoe UI Variable", system-ui, var(--sans); }

.explorer-titlebar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 12px;
  height: 32px;
  background: #f3f3f3;
  border-bottom: 1px solid rgba(20,20,24,0.06);
  border-radius: 10px 10px 0 0;
}
.explorer-titlebar-icon { font-size: 0.78rem; }
.explorer-titlebar-text { font-size: 0.76rem; color: var(--ink-dim); }
.explorer-winctrls {
  display: flex;
  height: 100%;
  margin-left: auto;
}
.explorer-winctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 100%;
  font-size: 0.75rem;
  color: var(--ink-dim);
  transition: background 0.15s ease, color 0.15s ease;
}
.explorer-winctrl:hover { background: rgba(20,20,24,0.06); }
.explorer-winctrl--close:hover { background: #e5484d; color: #fff; }

.explorer-ribbon {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: #fff;
  border-bottom: 1px solid rgba(20,20,24,0.08);
}
.explorer-ribbon-btn {
  font-size: 0.78rem;
  color: var(--ink-dim);
  padding: 6px 10px;
  border-radius: 5px;
  white-space: nowrap;
}
.explorer-ribbon-btn:hover { background: rgba(20,20,24,0.06); }
.explorer-ribbon-btn--primary { background: rgba(47,128,237,0.1); color: #2f80ed; font-weight: 600; }
.explorer-ribbon-btn--push { margin-left: auto; }
.explorer-ribbon-sep { width: 1px; height: 18px; background: rgba(20,20,24,0.1); margin: 0 4px; }

.explorer-addressbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  background: #fff;
  border-bottom: 1px solid rgba(20,20,24,0.08);
}
.explorer-nav-arrow {
  color: var(--ink-faint);
  font-size: 0.8rem;
}
.explorer-nav-arrow--dim { opacity: 0.35; }
.explorer-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--ink-dim);
  background: #f6f6f8;
  border: 1px solid rgba(20,20,24,0.08);
  border-radius: 5px;
  padding: 4px 10px;
  flex: 1;
}
.explorer-crumb-sep { color: var(--ink-faint); }
.explorer-crumb--active { color: var(--ink); font-weight: 600; }
.explorer-search {
  font-size: 0.76rem;
  color: var(--ink-faint);
  background: #f6f6f8;
  border: 1px solid rgba(20,20,24,0.08);
  border-radius: 5px;
  padding: 5px 12px;
  flex-shrink: 0;
}

.explorer-main { display: flex; }
.explorer-sidebar {
  width: 148px;
  flex-shrink: 0;
  background: #f9f9fb;
  border-right: 1px solid rgba(20,20,24,0.06);
  padding: 10px 8px;
}
.explorer-sidebar-item {
  font-size: 0.78rem;
  color: var(--ink-dim);
  padding: 7px 8px;
  border-radius: 5px;
  margin-bottom: 1px;
  white-space: nowrap;
}
.explorer-sidebar-item--active { background: rgba(47,128,237,0.12); color: #2f80ed; font-weight: 600; }

.explorer-content { flex: 1; min-width: 0; }
.explorer-columns {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  border-bottom: 1px solid rgba(20,20,24,0.08);
  font-size: 0.74rem;
  color: var(--ink-faint);
}
.explorer-col-name { flex: 1; }
.explorer-col-date { width: 150px; flex-shrink: 0; }
.explorer-col-type { width: 100px; flex-shrink: 0; }

.explorer-body {
  padding: 6px;
  overflow: visible;
}
.explorer-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 8px;
  border-radius: 4px;
  transition: background 0.2s ease;
}
.explorer-row-date, .explorer-row-type {
  font-size: 0.78rem;
  color: var(--ink-faint);
  width: 150px;
  flex-shrink: 0;
}
.explorer-row-type { width: 100px; }
.explorer-row-anchor { flex: 1; min-width: 0; }
.explorer-row:hover { background: rgba(47,128,237,0.07); }
.explorer-row-anchor {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.explorer-folder-icon {
  --c: #999;
  position: relative;
  width: 26px; height: 21px;
  flex-shrink: 0;
}
.explorer-folder-icon::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 45%; height: 28%;
  background: color-mix(in srgb, var(--c) 78%, black 12%);
  border-radius: 3px 3px 0 0;
}
.explorer-folder-icon::after {
  content: "";
  position: absolute;
  left: 0; top: 20%;
  width: 100%; height: 80%;
  background: var(--c);
  border-radius: 3px;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.35), inset 0 -2px 3px rgba(0,0,0,0.15);
}
.explorer-row-name { font-size: 0.92rem; color: var(--ink); font-weight: 500; }
.explorer-row-hint {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.76rem;
  color: var(--ink-faint);
  opacity: 0;
  transition: opacity 0.2s ease;
}
.explorer-row--hover-target:hover .explorer-row-hint { opacity: 1; }

.explorer-hud {
  position: absolute;
  left: 100%;
  margin-left: 18px;
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  width: 220px;
  text-align: left;
  background: rgba(22,22,26,0.96);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 12px 10px;
  box-shadow: 0 30px 60px -20px rgba(20,20,24,0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16,1,0.3,1), transform 0.3s cubic-bezier(0.16,1,0.3,1);
  z-index: 5;
}
.explorer-row--hover-target:hover .explorer-hud {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.explorer-hud-title { font-weight: 700; font-size: 0.8rem; color: #fff; padding: 2px 6px 8px; }
.explorer-hud-list { list-style: none; }
.explorer-hud-list li {
  font-size: 0.82rem;
  color: rgba(245,245,248,0.9);
  padding: 5px 6px;
  border-radius: 5px;
}
@media (max-width: 780px) {
  .explorer-hud { position: static; transform: none; opacity: 1; pointer-events: auto; width: auto; margin-top: 10px; box-shadow: none; border-style: dashed; }
  .explorer-row-hint { display: none; }
}

.hover-spotlight-facts {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 32px;
  color: var(--ink-dim);
  font-size: 0.92rem;
}
.hover-spotlight-facts li { position: relative; padding-left: 22px; }
.hover-spotlight-facts li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-green); font-weight: 800; }

/* ===== Proof (real screenshot) ===== */
.proof { padding: 130px 0; background: var(--bg-elevated); border-bottom: 1px solid var(--line); }
.proof-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.proof-text { color: var(--ink-dim); font-size: 1.08rem; line-height: 1.6; margin-bottom: 28px; max-width: 44ch; }
.proof-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.proof-list li {
  color: var(--ink-dim);
  padding-left: 24px;
  position: relative;
  font-size: 0.96rem;
}
.proof-list li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent-green);
  font-weight: 800;
}
.proof-shot-wrap {
  border-radius: 20px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 4px;
  box-shadow: 0 40px 80px -30px rgba(20,20,24,0.25);
}
.proof-shot { border-radius: 16px; display: block; width: 100%; }
@media (max-width: 900px) {
  .proof-inner { grid-template-columns: 1fr; }
}

/* ===== Materials ===== */
.materials {
  padding: 130px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.materials-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
}
.materials-sub { color: var(--ink-dim); font-size: 1.1rem; max-width: 56ch; margin-bottom: 0; }
.materials-shot-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 80px -30px rgba(20,20,24,0.25);
}
.materials-shot { width: 100%; display: block; }
@media (max-width: 900px) {
  .materials-intro { grid-template-columns: 1fr; }
}


.finish-menu-wrap {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 3px;
  padding: 10px 10px 0;
  background: linear-gradient(155deg, #2a2c33, #16171b 70%);
  box-shadow:
    0 40px 80px -30px rgba(20,20,24,0.35),
    inset 0 1px 0 rgba(255,255,255,0.08),
    inset 0 -1px 0 rgba(0,0,0,0.4);
}
.tv-bezel-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 26px;
}
.tv-bezel-logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.5);
}
.tv-bezel-leds { display: flex; gap: 5px; }
.tv-bezel-leds span {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #e5484d;
  box-shadow: 0 0 3px rgba(229,72,77,0.8);
}
.tv-bezel-leds span:nth-child(2) { opacity: 0.5; }
.tv-bezel-leds span:nth-child(3) { opacity: 0.25; }
.finish-menu-screen {
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.finish-menu-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.06), transparent 30%);
  pointer-events: none;
}
.finish-menu-shot {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  border-radius: 1px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.5), inset 0 2px 12px rgba(0,0,0,0.5);
}

/* ===== Pricing ===== */
.pricing {
  position: relative;
  padding: 130px 0;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.pricing::before {
  content: "";
  position: absolute;
  bottom: -30%; left: -10%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(242,201,76,0.14), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}
.pricing-sub { color: var(--ink-dim); font-size: 1.05rem; margin-bottom: 56px; max-width: 52ch; }
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(20,20,24,0.08);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 1px 2px rgba(20,20,24,0.04), 0 16px 32px -16px rgba(20,20,24,0.16);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-4px); }
.price-card ul { flex: 1; }
.price-card--featured {
  border: 1px solid var(--accent-green);
  background: linear-gradient(165deg, rgba(31,168,100,0.08), rgba(255,255,255,0.9) 55%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 32px 56px -24px rgba(31,168,100,0.35);
  padding: 52px 32px 40px;
  margin-top: -16px;
  transform: scale(1.035);
  z-index: 2;
}
.price-card--featured:hover { transform: scale(1.035) translateY(-4px); }
.price-card--gold {
  border-color: rgba(242,201,76,0.6);
  background: linear-gradient(165deg, rgba(242,201,76,0.08), rgba(255,255,255,0.9) 55%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 16px 32px -16px rgba(242,201,76,0.25);
}
.price-tag {
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(31,168,100,0.5);
  white-space: nowrap;
}
.price-card h3 { font-family: var(--display); font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.price-card--featured h3 { font-size: 1.3rem; }
.price { font-family: var(--display); font-size: 1.1rem; color: var(--ink-dim); margin-bottom: 24px; }
.price span { font-size: 2.6rem; font-weight: 700; color: var(--ink); }
.price-card--featured .price span { font-size: 3rem; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.price-card li {
  font-size: 0.92rem;
  color: var(--ink-dim);
  padding-left: 20px;
  position: relative;
}
.price-card li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--accent-green);
  font-weight: 800;
}
.price-card .btn-full { margin-top: 0; }
@media (max-width: 900px) {
  .price-cards { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }
  .price-card--featured { margin-top: 0; padding: 44px 32px; }
}

/* ===== Final CTA ===== */
.final-cta { position: relative; padding: 90px 0 110px; background: var(--bg); text-align: center; overflow: hidden; }
.final-cta::before {
  content: "";
  position: absolute;
  top: -30%; left: 50%;
  transform: translateX(-50%);
  width: 1100px; height: 1100px;
  background: radial-gradient(circle, rgba(27,42,74,0.10), rgba(31,168,100,0.08) 45%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.final-cta .section-title { max-width: 20ch; margin: 0 auto 32px; }
.final-note { color: var(--ink-faint); margin-top: 18px; font-size: 0.88rem; }

.btn-premium {
  background: linear-gradient(135deg, #1b2a4a, #16213a);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 16px 40px -12px rgba(27,42,74,0.55);
}
.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 0 0 6px rgba(242,201,76,0.25), 0 20px 44px -12px rgba(27,42,74,0.6);
}

/* ===== Footer ===== */
.footer { padding: 36px 0; border-top: 1px solid var(--line); }
.footer-inner {
  display: flex;
  justify-content: space-between;
  color: var(--ink-faint);
  font-size: 0.85rem;
}
.footer-links a:hover { color: var(--ink); }

/* ===== Celebration overlay ===== */
.celebration-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 20, 24, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.celebration-overlay[hidden] { display: none; }
.celebration-box {
  position: relative;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 60px 120px -30px rgba(0,0,0,0.6);
}
.celebration-label {
  position: absolute;
  top: 16px; left: 0; right: 0;
  z-index: 2;
  text-align: center;
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.85;
}
.celebration-video { width: 100%; display: block; }
.celebration-audio { width: calc(100% - 24px); display: block; margin: 12px; }
.celebration-close {
  position: absolute;
  top: 10px; right: 12px;
  z-index: 3;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}
.celebration-close:hover { background: rgba(255,255,255,0.3); }
