/* =========================================================
   Paper Cut — papercutter.app
   Cinematic dark with frosted-glass language echoing the app.
   ========================================================= */

/* Graft EB Garamond's lowercase f onto Fraunces — only U+0066.
   First in the --serif stack; every other glyph falls through to Fraunces. */
@font-face {
  font-family: "GaramondF";
  src: url("fonts/eb-garamond-400-normal.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0066;
}
@font-face {
  font-family: "GaramondF";
  src: url("fonts/eb-garamond-400-italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
  unicode-range: U+0066;
}

:root {
  /* LIGHT theme — warm paper. App-window mockups re-scope dark vars below. */
  --bg:           #f4efe6;
  --bg-2:         #ece5d6;
  --bg-3:         #fbf8f1;
  --bg-paper:     #efe9dc;
  --bg-paper-2:   #e6dec9;
  --ink:          #15140f;
  --ink-soft:     #3b372d;
  --line:         rgba(0,0,0,0.10);
  --line-strong:  rgba(0,0,0,0.20);
  --text:         #15140f;
  --text-mute:    #6d6657;
  --text-fade:    #9c937f;
  /* light-theme highlight = oxblood (the app-window mockups re-scope --gold
     back to real gold below, so screenshots keep the app's gold accent) */
  --gold:         #7c2f38;
  --gold-hi:      #9a3a45;
  --accent:       #7c2f38;
  --accent-cool:  #2f6f8f;

  --serif:  "GaramondF", "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans:   "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --mono:   "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --gutter: clamp(20px, 5vw, 64px);
  --maxw:   1240px;

  --r-card: 14px;
  --r-pill: 999px;
}

/* App-window mockups stay dark on the light page — re-scope theme vars. */
.win, .hv-frame {
  --bg: #0c0c0e; --bg-2: #131317; --bg-3: #1a1a20;
  --line: rgba(255,255,255,0.08); --line-strong: rgba(255,255,255,0.18);
  --text: #eee7d3; --text-mute: #a39d8b; --text-fade: #6f6a5d;
  --gold: #d8b96b; --gold-hi: #f1cf81;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 16px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  background: rgba(244,239,230,0.72);
  border-bottom: 1px solid var(--line);
}
.logo {
  display: inline-flex;
  align-items: baseline;
  color: var(--text);
  text-decoration: none;
}
.logo-wm {
  display: inline-flex;
  align-items: baseline;
  white-space: nowrap;
  font-size: 32px;
  line-height: 1;
  color: var(--text);
}
.logo-wm .wm-paper {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.10em;
  font-variation-settings: "opsz" 144, "SOFT" 50;
}
.logo-wm .wm-cut {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
}
.logo-wm .wm-box {
  display: inline-flex;
  align-items: baseline;
  background: #7c2f38; /* oxblood chip — CUT knocked out in paper */
  color: #f4efe4;
  padding: 0.12em 0.15em 0.08em;
  line-height: 0.72;
}
.logo-wm .wm-box .wm-c {
  height: 0.70em;
  width: 0.70em;
  margin-right: 0.03em;
  fill: currentColor; /* paper; the notch reveals the oxblood box behind */
}

.nav-links {
  display: flex;
  gap: 28px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.nav-links a:hover { color: var(--text); }
.nav-out { color: var(--text-fade) !important; }
.nav-out:hover { color: var(--gold) !important; }

.nav-cta { white-space: nowrap; }

@media (max-width: 880px) {
  .nav { grid-template-columns: auto auto; gap: 12px; }
  .nav-links { display: none; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease, box-shadow .2s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-lg { padding: 15px 26px; font-size: 15px; }
.btn-primary {
  background: var(--text);
  color: var(--bg);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 8px 24px -10px rgba(238,231,211,0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.4) inset, 0 14px 28px -10px rgba(238,231,211,0.5);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--text);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(0,0,0,0.045);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: clamp(40px, 8vw, 96px) var(--gutter) 0;
  overflow: hidden;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(184, 146, 63, 0.13), transparent 60%),
    radial-gradient(900px 600px at 0% 35%, rgba(184, 146, 63, 0.05), transparent 60%),
    var(--bg);
}
.hero-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding-bottom: clamp(60px, 10vw, 120px);
}
.hero-copy { max-width: 560px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin: 0 0 28px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  background: rgba(0,0,0,0.03);
}
.dot-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(216,185,107,0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(216,185,107,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(216,185,107,0); }
  100% { box-shadow: 0 0 0 0   rgba(216,185,107,0); }
}

.display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6.8vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  color: var(--text);
}
.display em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.lede {
  font-family: var(--serif);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 48ch;
  margin: 0 0 36px;
  font-weight: 350;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cta-row-center { justify-content: center; }

.micro-copy {
  margin: 18px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--text-fade);
}
.micro-copy .soon,
.lede .soon { color: var(--text-mute); white-space: nowrap; }

/* === Hero visual (mock of the app) === */
.hero-visual {
  position: relative;
  perspective: 1400px;
}
.hv-glow {
  position: absolute;
  inset: -10% -20% -10% -10%;
  background:
    radial-gradient(60% 60% at 50% 50%, rgba(216,185,107,0.18), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}
.hv-frame {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #15151a 0%, #0e0e12 100%);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 40px 80px -30px rgba(0,0,0,0.8),
    0 12px 32px -16px rgba(0,0,0,0.6);
  transform: rotate(-0.5deg);
}
.hv-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: linear-gradient(180deg, #1a1a20, #14141a);
  border-bottom: 1px solid var(--line);
}
.hv-dot { width: 11px; height: 11px; border-radius: 50%; }
.hv-dot-r { background: #ff5f57; }
.hv-dot-y { background: #febc2e; }
.hv-dot-g { background: #28c840; }
.hv-url {
  margin-left: 14px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-fade);
  letter-spacing: 0.03em;
}
.hv-app {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 460px;
  background: #0a0a0d;
}
.hv-sidebar {
  background: #0c0c10;
  border-right: 1px solid var(--line);
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hv-sb-mark {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a2a35, #16161d);
  color: var(--gold);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid var(--line-strong);
}
.hv-sb-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-fade);
}
.hv-sb-items span {
  padding: 7px 10px;
  border-radius: 5px;
}
.hv-sb-items .active {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}
.hv-main {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hv-search {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--text);
}
.hv-search-q::before {
  content: "⌕ ";
  color: var(--text-fade);
  margin-right: 6px;
}
.hv-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1.5fr 1fr 1fr;
  gap: 10px;
  flex: 1;
  min-height: 0;
}
.hv-cell-anchor {
  grid-column: 1;
  grid-row: 1 / 3;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1814;
}
.hv-poster {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255, 200, 130, 0.5), transparent 60%),
    linear-gradient(135deg, #6a4a2a, #2a1a14);
}
.hv-poster::after {
  content: "";
  position: absolute;
  inset: 30% 40% 35% 20%;
  background: radial-gradient(ellipse, rgba(255,230,180,0.5), transparent 70%);
  filter: blur(8px);
}
.hv-poster-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 40%);
}
.hv-poster-meta {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text);
  letter-spacing: 0.04em;
}
.hv-stars { color: var(--gold); font-size: 11px; letter-spacing: 1px; }

/* Frosted overlay on hero mock — matches app's .tvis */
.hv-frosted {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 10px 12px;
  background: rgba(20, 20, 24, 0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
}
.hv-frost-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.hv-pill {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--text);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 4px 8px;
  border-radius: 5px;
}
.hv-pill-play { color: var(--gold); border-color: rgba(216,185,107,0.3); }
.hv-pill-mute { background: transparent; border-color: transparent; color: var(--text-fade); margin-left: auto; }
.hv-scrub {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.hv-scrub-band {
  position: absolute;
  left: 25%; right: 30%;
  top: 0; bottom: 0;
  background: var(--gold);
  border-radius: 2px;
}
.hv-scrub-head {
  position: absolute;
  left: 55%;
  top: -4px;
  width: 2px;
  height: 12px;
  background: var(--text);
  border-radius: 1px;
}

.hv-cluster {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}
.hv-cluster-label {
  margin: 0 0 8px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-fade);
}
.hv-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
.hv-thumbs-row { grid-template-columns: repeat(3, 1fr); }
.hv-thumbs span {
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #2a2630, #14131a);
  border-radius: 4px;
}
.hv-thumbs span:nth-child(odd) {
  background: linear-gradient(135deg, #3a2a26, #1a1410);
}
.hv-thumbs span:nth-child(3n) {
  background: linear-gradient(135deg, #1f3340, #0a1a26);
}
.hv-cluster-row .hv-thumbs span { aspect-ratio: 5 / 3; }

@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: 2; max-width: 620px; margin: 24px auto 0; }
  .hv-app { min-height: 360px; grid-template-columns: 110px 1fr; }
}

/* Hero strip — under the hero, marquee-ish but static */
.hero-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 14px var(--gutter);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
  text-align: center;
  background: rgba(0,0,0,0.03);
}
.strip-sep { margin: 0 16px; color: var(--gold); }

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-fade);
  margin: 0 0 24px;
}
.h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 48px;
  max-width: 22ch;
  font-variation-settings: "opsz" 144, "SOFT" 70;
  color: var(--text);
}
.h2-tight { margin-bottom: 64px; }
.h2 em { color: var(--gold); font-style: italic; font-weight: 300; }
.h2 strong { color: var(--text); font-weight: 500; }

/* ===== PROBLEM ===== */
.problem {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.problem-inner { max-width: var(--maxw); margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 640px;
}
.problem-grid p {
  font-family: var(--serif);
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--text-mute);
  margin: 0;
  font-weight: 350;
}
.problem-grid p em { color: var(--gold); font-style: italic; }
@media (max-width: 880px) {
  .problem-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== THE PRINCIPLE (collaboration, not automation) ===== */
.creed {
  padding: clamp(96px, 15vw, 168px) var(--gutter);
  text-align: center;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(900px 460px at 50% 50%, rgba(216,185,107,0.07), transparent 62%),
    var(--bg);
}
.creed-inner { max-width: 900px; margin: 0 auto; }
.creed .section-eyebrow { color: var(--text-fade); }
.creed-line {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(46px, 7vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--text);
  margin: 0 0 30px;
  font-variation-settings: "opsz" 144, "SOFT" 55;
}
.creed-line em { font-style: italic; color: var(--gold); }
.creed-body {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 50ch;
  margin: 0 auto;
}
.creed-body em { font-style: italic; color: var(--gold); }

/* ===== FEATURES ===== */
.features {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.features-inner { max-width: var(--maxw); margin: 0 auto; }
/* showcase rows — alternating visual + copy */
.showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}
.showcase:first-of-type { border-top: none; padding-top: clamp(8px, 2vw, 24px); }
.showcase-rev .sc-copy { order: 2; }
.showcase-rev .sc-visual { order: 1; }
.sc-copy { min-width: 0; }
.sc-eyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 16px;
}
.sc-h {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(28px, 3.4vw, 42px); line-height: 1.08; letter-spacing: -0.025em;
  color: var(--text); margin: 0 0 16px; font-variation-settings: "opsz" 144, "SOFT" 55;
}
.sc-h em { font-style: italic; color: var(--gold); }
.sc-body { font-size: 15px; line-height: 1.6; color: var(--text-mute); margin: 0 0 20px; max-width: 46ch; }
.sc-pts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 9px; }
.sc-pts li { font-size: 13.5px; line-height: 1.45; color: var(--text); display: flex; gap: 9px; }
.sc-pts span { color: var(--gold); }

/* shared app-window mock — placeholder for real screenshots (data-shot) */
.sc-visual { min-width: 0; }
.win {
  background: #0a0a0d; border: 1px solid #23232a; border-radius: 11px; overflow: hidden;
  box-shadow: 0 30px 60px -34px rgba(0,0,0,0.85);
}
.win-bar { display: flex; align-items: center; gap: 5px; padding: 9px 12px; background: #16161c; border-bottom: 1px solid #23232a; }
.win-bar .d { width: 9px; height: 9px; border-radius: 50%; }
.win-bar .dr { background: #ff5f57; } .win-bar .dy { background: #febc2e; } .win-bar .dg { background: #28c840; }
.win-bar .u { margin-left: 10px; font-family: var(--mono); font-size: 10px; color: #5f5a50; }
.win-body { padding: 13px; }

/* story sense mock (periwinkle = AI/synthesis, matching the app) */
.ss-synth { border: 1px solid rgba(159,150,232,0.35); background: rgba(159,150,232,0.06); border-radius: 9px; padding: 11px 13px; margin-bottom: 11px; }
.ss-mark { margin: 0 0 5px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: #b9b2f0; }
.ss-syntxt { margin: 0; font-size: 12px; line-height: 1.5; color: var(--text-mute); }
.ss-scene { border: 1px solid var(--line); border-radius: 9px; padding: 11px 13px; margin-bottom: 8px; background: rgba(255,255,255,0.015); }
.ss-head { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 5px; }
.ss-title { font-family: var(--serif); font-size: 16px; color: var(--text); }
.ss-btns { display: flex; gap: 6px; flex-shrink: 0; }
.b-rej, .b-pro { font-family: var(--mono); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 9px; border-radius: 5px; }
.b-rej { color: var(--text-fade); border: 1px solid var(--line); }
.b-pro { color: #1a160c; background: #c3b6f0; }
.ss-desc { margin: 0 0 7px; font-size: 12px; line-height: 1.45; color: var(--text-mute); }
.ss-meta { font-family: var(--mono); font-size: 10px; color: var(--text-fade); display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.ss-meta .dots { color: #b9b2f0; letter-spacing: 1px; }
.ss-meta .tag { color: #b9b2f0; background: rgba(159,150,232,0.12); padding: 2px 7px; border-radius: 4px; }

/* clusters bento mock */
.bn-h { margin: 0 0 9px; font-family: var(--serif); font-size: 15px; color: var(--text); }
.bento { display: grid; grid-template-columns: 1.5fr 1fr 1fr; grid-auto-rows: auto; gap: 8px; }
.anchor { grid-row: 1/3; position: relative; border-radius: 9px; overflow: hidden; min-height: 184px; background: radial-gradient(ellipse at 35% 38%, #c8a463, #3a2614 70%); }
.anchor .lab { position: absolute; left: 9px; top: 8px; font-family: var(--mono); font-size: 9px; color: #f3ead2; background: rgba(0,0,0,0.35); padding: 2px 6px; border-radius: 4px; }
.anchor .meta { position: absolute; left: 10px; right: 10px; bottom: 10px; display: flex; justify-content: space-between; align-items: center; }
.anchor .nm { font-family: var(--mono); font-size: 10px; color: #f3ead2; }
.anchor .st { color: #ffd873; font-size: 10px; letter-spacing: 1px; }
.cl { background: rgba(255,255,255,0.025); border: 1px solid var(--line); border-radius: 9px; padding: 9px; }
.cl.wide { grid-column: 2/4; }
.cl p { margin: 0 0 7px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-fade); }
.cl .row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; }
.cl .row.six { grid-template-columns: repeat(6, 1fr); }
.cl .row span { aspect-ratio: 16/9; border-radius: 3px; }
.t1 { background: linear-gradient(135deg,#3a2a26,#1a1410); }
.t2 { background: linear-gradient(135deg,#26323f,#0e1a24); }
.t3 { background: linear-gradient(135deg,#2f2a3a,#16131f); }
.t4 { background: linear-gradient(135deg,#3a3326,#1a160f); }

/* clip detail mock */
.cd-frame { position: relative; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; margin-bottom: 10px; background: radial-gradient(ellipse at 60% 40%, #b58a52, #241a12 72%); }
.cd-bar { position: absolute; left: 8px; right: 8px; bottom: 22px; display: flex; align-items: center; gap: 5px; background: rgba(20,20,24,0.55); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; padding: 6px 8px; }
.cd-pill { font-family: var(--mono); font-size: 9px; color: var(--text); background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); padding: 3px 7px; border-radius: 4px; }
.cd-pill.gold { color: var(--gold); border-color: rgba(216,185,107,0.3); }
.cd-tc { margin-left: auto; font-family: var(--mono); font-size: 9px; color: var(--text-fade); }
.cd-scrub { position: absolute; left: 8px; right: 8px; bottom: 13px; height: 3px; background: rgba(255,255,255,0.15); border-radius: 2px; }
.cd-head { position: absolute; left: 38%; top: -3px; width: 2px; height: 9px; background: var(--text); border-radius: 1px; }
.cd-rate { display: flex; gap: 6px; margin-bottom: 11px; }
.cd-chip { font-family: var(--mono); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; padding: 4px 9px; border-radius: 5px; color: var(--text-fade); border: 1px solid var(--line); }
.cd-chip.on { color: #b9b2f0; border-color: rgba(159,150,232,0.4); background: rgba(159,150,232,0.08); }
.cd-sec { margin: 0 0 6px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-fade); }
.cd-hl { margin: 0 0 6px; font-size: 12px; line-height: 1.4; color: var(--text-mute); }
.cd-hl span { font-family: var(--mono); font-size: 10px; color: var(--gold); margin-right: 7px; }
.cd-tr { margin: 0 0 5px; font-size: 12px; color: var(--text-mute); }
.cd-tr span { font-family: var(--mono); font-size: 10px; color: var(--text-fade); margin-right: 8px; }

/* story center mock */
.st-scene { border: 1px solid var(--line); border-radius: 10px; padding: 14px; background: rgba(255,255,255,0.015); }
.st-head { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 11px; }
.st-title { font-family: var(--serif); font-size: 17px; color: var(--text); }
.st-tag { font-family: var(--mono); font-size: 9px; letter-spacing: 0.04em; text-transform: uppercase; color: #b9b2f0; background: rgba(159,150,232,0.12); padding: 3px 7px; border-radius: 4px; white-space: nowrap; }
.st-shape { font-size: 12px; line-height: 1.5; color: var(--text-mute); border-left: 2px solid rgba(159,150,232,0.5); padding: 4px 0 4px 11px; margin-bottom: 13px; }
.st-shape span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; text-transform: uppercase; color: #b9b2f0; margin-right: 7px; }
.st-beat { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.st-band { font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold); width: 64px; flex-shrink: 0; }
.st-band.mid { color: #b9b2f0; }
.st-thumb { width: 46px; height: 30px; border-radius: 4px; flex-shrink: 0; }
.st-thumb.b1 { background: linear-gradient(135deg,#6a5238,#2c2118); }
.st-thumb.b2 { background: linear-gradient(135deg,#7a5a3a,#36281a); }
.st-bt { font-size: 12px; color: var(--text-mute); }

/* everything-else strip */
.more-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden;
  margin-top: clamp(44px, 7vw, 80px);
}
.more { background: var(--bg-2); padding: 24px 22px; }
.more h4 { font-family: var(--serif); font-weight: 400; font-size: 17px; margin: 0 0 7px; color: var(--text); }
.more p { font-size: 13.5px; line-height: 1.5; color: var(--text-mute); margin: 0; }
.more code { font-family: var(--mono); font-size: 0.9em; background: rgba(216,185,107,0.1); color: var(--gold); padding: 1px 5px; border-radius: 4px; }

@media (max-width: 860px) {
  .showcase { grid-template-columns: 1fr; gap: 26px; padding: 44px 0; }
  .showcase-rev .sc-copy { order: 1; }
  .showcase-rev .sc-visual { order: 2; }
  .more-grid { grid-template-columns: 1fr; }
}

/* ===== WORKFLOW ===== */
.workflow {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  background:
    linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-paper-2) 100%);
  color: var(--ink);
  border-top: 1px solid rgba(0,0,0,0.08);
}
.workflow .section-eyebrow { color: rgba(0,0,0,0.45); }
.workflow .h2 { color: var(--ink); }
.workflow .h2 em { color: var(--accent); }
.workflow-inner { max-width: var(--maxw); margin: 0 auto; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
  counter-reset: step;
}
.step {
  padding: 28px 0 0;
  border-top: 1.5px solid var(--ink);
  position: relative;
}
.step-no {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--accent);
  display: block;
  margin-bottom: 14px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

@media (max-width: 880px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .steps { grid-template-columns: 1fr; }
}

/* ===== COLLABORATION ===== */
.collab {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  border-top: 1px solid var(--line);
  background:
    radial-gradient(820px 420px at 80% 0%, rgba(124,47,56,0.06), transparent 60%),
    var(--bg);
}
.collab-inner { max-width: var(--maxw); margin: 0 auto; }
.collab-lede {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.5;
  color: var(--text-mute);
  max-width: 42ch;
  margin: 0 0 clamp(48px, 7vw, 80px);
}
.collab-lede em { font-style: italic; color: var(--gold); }
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
.collab-beat {
  padding-top: 26px;
  border-top: 1.5px solid var(--accent);
}
.collab-beat h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 24px);
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 12px;
}
.collab-beat p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-mute);
  margin: 0;
}
@media (max-width: 860px) {
  .collab-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ===== PROOF ===== */
.proof {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.proof-inner { max-width: var(--maxw); margin: 0 auto; }
.quote {
  max-width: 820px;
  margin: 0 0 64px;
}
.quote p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 16px;
  font-variation-settings: "opsz" 144, "SOFT" 70;
}
.quote em { font-style: italic; color: var(--gold); }
.quote footer {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-fade);
}
.quote cite { font-style: normal; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.stat-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin: 0 0 12px;
  color: var(--gold);
  font-variation-settings: "opsz" 144, "SOFT" 70;
}
.stat-label {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-mute);
  margin: 0;
  max-width: 32ch;
}
.stat-label em { color: var(--text); font-style: italic; }

@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== FAQ ===== */
.faq {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.faq-inner { max-width: 860px; margin: 0 auto; }
.faq details {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--line); }
.faq summary {
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 400;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--text);
  font-variation-settings: "opsz" 64;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--mono);
  font-size: 22px;
  color: var(--gold);
  font-weight: 300;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-mute);
  margin: 14px 0 0;
  max-width: 64ch;
}
.faq details p a {
  color: var(--gold);
  border-bottom: 1px solid rgba(216,185,107,0.4);
}
.faq details p a:hover { border-color: var(--gold); }

/* ===== PRICING ===== */
.pricing {
  padding: clamp(80px, 12vw, 140px) var(--gutter);
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.pricing-inner { max-width: var(--maxw); margin: 0 auto; }
.pricing-note {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-fade); margin: -36px 0 40px;
}
.price-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
  align-items: start;
}
.tier {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 26px 24px;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
}
.tier-featured {
  border: 2px solid var(--accent);
  background: var(--bg);
}
.tier-quiet { background: transparent; }
.tier-badge {
  position: absolute; top: -10px; left: 24px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em;
  text-transform: uppercase; color: #fff; background: var(--accent);
  padding: 3px 10px; border-radius: var(--r-pill);
}
.tier-name {
  font-family: var(--serif); font-weight: 400; font-size: 21px;
  color: var(--text); margin: 0 0 8px;
}
.tier-price {
  font-family: var(--serif); font-weight: 300; font-size: 40px;
  letter-spacing: -0.03em; color: var(--text); margin: 0 0 4px; line-height: 1;
}
.tier-price span { font-size: 15px; color: var(--text-fade); font-weight: 400; }
.tier-tag {
  font-size: 13.5px; line-height: 1.45; color: var(--text-mute);
  margin: 0 0 18px; min-height: 38px;
}
.tier-feats {
  list-style: none; padding: 0; margin: 0 0 22px;
  display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.tier-feats li {
  font-size: 13px; line-height: 1.45; color: var(--text);
  padding-left: 18px; position: relative;
}
.tier-feats li::before {
  content: "+"; position: absolute; left: 0; top: -1px;
  color: var(--accent); font-weight: 500;
}
.tier-cta { width: 100%; justify-content: center; }
.price-addon {
  text-align: center; margin: 36px 0 0;
  font-size: 14px; color: var(--text-mute);
}
.price-addon strong { color: var(--text); font-weight: 500; }

@media (max-width: 920px) {
  .price-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .price-grid { grid-template-columns: 1fr; }
  .tier-tag { min-height: 0; }
}

/* ===== FINAL CTA ===== */
.final-cta {
  padding: clamp(100px, 14vw, 160px) var(--gutter);
  text-align: center;
  background:
    radial-gradient(1000px 600px at 50% 50%, rgba(216,185,107,0.10), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
}
.final-cta-inner { max-width: 720px; margin: 0 auto; }
.display-cta {
  margin: 0 auto 28px;
  max-width: none;
}
.final-cta .lede { margin: 0 auto 36px; }

/* ===== FOOTER ===== */
.site-footer {
  background: #e6ddc9;
  border-top: 1px solid var(--line);
  padding: 60px var(--gutter) 28px;
}
.site-footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(40px, 6vw, 80px);
}
.sf-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 28px;
  margin: 0 0 6px;
  color: var(--text);
}
.sf-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin: 0 0 12px;
}
.sf-tag {
  font-size: 14px;
  color: var(--text-fade);
  max-width: 36ch;
  margin: 0;
  line-height: 1.5;
}
.sf-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.sf-col-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-fade);
  margin: 0 0 14px;
}
.sf-cols a {
  display: block;
  font-size: 14px;
  color: var(--text-mute);
  padding: 4px 0;
}
.sf-cols a:hover { color: var(--text); }

.site-footer-foot {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--text-fade);
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer-foot p { margin: 0; }

@media (max-width: 760px) {
  .site-footer-inner { grid-template-columns: 1fr; }
  .sf-cols { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 540px) {
  .sf-cols { grid-template-columns: 1fr 1fr; }
}

/* Inline code in faq etc */
code {
  font-family: var(--mono);
  font-size: 0.92em;
  background: rgba(216, 185, 107, 0.1);
  color: var(--gold);
  padding: 1px 6px;
  border-radius: 4px;
}
