/* Proof & Motion — base stylesheet.
   Design tokens carried forward from the v1 audit (WEB-001): cream/off-white
   background, deep forest green accent, near-black dark sections, warm
   brown-gold secondary accent. Serif display type, system sans body/UI. */

:root {
  --cream: #eee8d9;
  --cream-deep: #e4dcc8;
  --ink: #17191c;
  --ink-soft: #33373d;
  --green: #1a6b3c;
  --green-deep: #124d2b;
  --gold: #8a6d3b;
  --line: #d8d2c4;
  --white: #fdfcf9;
  --danger: #b23a2e;
  --radius: 6px;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.kicker {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.kicker::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--green); display: inline-block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.06; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1.15; }
h3 { font-size: 1.15rem; line-height: 1.3; }
p.lede { font-size: 1.1rem; color: var(--ink-soft); max-width: 62ch; }
.accent { color: var(--green); font-style: italic; }

/* --- Nav --- */
.site-nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(238,232,217,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}
.site-nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-family: var(--serif); font-size: 1.05rem; letter-spacing: 0.02em; font-weight: 700; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.logo .mark { width: 22px; height: 22px; border-radius: 50%; background: var(--green); display: inline-block; }
.nav-links { display: none; gap: 28px; list-style: none; margin: 0; padding: 0; font-size: 0.92rem; }
.nav-links a { text-decoration: none; color: var(--ink-soft); }
.nav-links a:hover { color: var(--ink); }
.nav-cta.btn { display: none; } /* compound selector: must outrank .btn's own display rule, which is declared later in this file */
@media (min-width: 860px) {
  .nav-links { display: flex; }
  .nav-cta.btn { display: inline-flex; }
}
/* Below 860px: nav shows only logo — the hero repeats the primary CTA
   prominently, so nothing is lost. A real hamburger menu is a follow-up
   enhancement, not required for this to be a correct mobile experience. */

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 600; text-decoration: none;
  cursor: pointer; border: 1.5px solid transparent; transition: transform .12s ease, opacity .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }
.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-link { color: var(--gold); text-decoration: underline; text-underline-offset: 4px; font-weight: 600; background: none; border: none; padding: 0; font-size: 0.92rem; }
.btn[disabled] { opacity: 0.55; cursor: not-allowed; }

/* --- Sections --- */
section { padding: 88px 0; }
section.tight { padding: 56px 0; }
.section-dark { background: var(--ink); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark .kicker { color: var(--gold); }
.section-panel { background: var(--white); border: 1px solid var(--line); border-radius: 10px; }

/* --- Hero --- */
.hero { padding-top: 70px; padding-bottom: 60px; }
.hero-ctas { display: flex; align-items: center; gap: 22px; margin-top: 30px; flex-wrap: wrap; }
.hero-sub { margin-top: 20px; }

/* --- CTA repeat --- */
.cta-repeat { text-align: center; padding: 40px 0; }
.cta-repeat .btn { }

/* --- Proof / portfolio grid --- */
.proof-note { font-size: 0.85rem; color: #a9a49a; max-width: 60ch; margin-top: 10px; }
.grid-portfolio {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px; margin-top: 32px;
}
.video-card {
  position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 9/16;
  background: linear-gradient(160deg, #1f2b24, #10120f);
  border: 1px solid #2a2d27;
}
.video-card video, .video-card .placeholder-art {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.video-card .placeholder-art { display: flex; align-items: center; justify-content: center; font-family: var(--serif); font-size: 0.8rem; color: #6d7168; text-align: center; padding: 20px; }
.video-card .tag-row { position: absolute; top: 10px; left: 10px; right: 10px; display: flex; justify-content: space-between; align-items: flex-start; z-index: 3; }
.video-card .status-badge { font-size: 9.5px; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; background: rgba(23,25,28,0.75); color: #fff; padding: 4px 8px; border-radius: 3px; border: 1px solid rgba(255,255,255,0.15); }
.video-card .meta { position: absolute; left: 12px; right: 12px; bottom: 12px; z-index: 3; color: #fff; }
.video-card .meta .cat { font-size: 9.5px; text-transform: uppercase; letter-spacing: 0.05em; color: #b9c9bd; margin-bottom: 3px; }
.video-card .meta .title { font-family: var(--serif); font-size: 1rem; }
.video-card .sound-toggle {
  position: absolute; bottom: 12px; right: 12px; z-index: 4;
  width: 34px; height: 34px; border-radius: 50%; background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.25); color: #fff; display: flex; align-items: center;
  justify-content: center; cursor: pointer; font-size: 15px; -webkit-tap-highlight-color: transparent;
  opacity: 0; transition: opacity .15s ease;
}
/* Desktop: reveal the toggle on hover, matching v1's existing interaction.
   Touch (no hover state): keep it always visible — there is no hover to reveal it. */
.video-card:hover .sound-toggle { opacity: 1; }
body.is-touch .video-card .sound-toggle { opacity: 1; }
.video-card::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.65) 100%);
  pointer-events: none;
}

/* --- Process --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.14); }
.process-step { padding: 26px 22px 26px 0; border-bottom: 1px solid rgba(255,255,255,0.14); }
.process-step .idx { font-family: var(--serif); font-size: 0.85rem; color: var(--gold); }
.process-step h3 { margin-top: 10px; }
.process-step p { color: #b9bcc0; font-size: 0.92rem; margin-top: 8px; }

/* --- Pricing --- */
.pricing-note { font-size: 0.95rem; color: var(--ink-soft); text-align: center; max-width: 60ch; margin: 24px auto 0; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.price-card { padding: 26px 24px; }
.price-card.featured { border-color: var(--ink); background: var(--white); box-shadow: 0 10px 30px -14px rgba(0,0,0,0.25); }
.price-card .badge { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 700; color: var(--white); background: var(--ink); padding: 5px 10px; border-radius: 3px; display: inline-block; margin-bottom: 14px; }
.price-card .tier-name { font-family: var(--serif); font-size: 1rem; color: var(--ink-soft); }
.price-card .video-headline { font-family: var(--serif); font-size: 1.7rem; line-height: 1.15; margin: 6px 0 4px; color: var(--ink); }
.price-card .breakdown { font-size: 0.85rem; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.price-card .amount { font-family: var(--serif); font-size: 1.6rem; margin: 12px 0 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.price-card .amount .period { font-size: 0.85rem; font-family: var(--sans); color: #8a8f97; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 22px; font-size: 0.88rem; }
.price-card li { padding-left: 20px; position: relative; margin-bottom: 8px; color: var(--ink-soft); }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price-card .btn { width: 100%; justify-content: center; }

/* --- Guarantee --- */
.guarantee { display: grid; grid-template-columns: 200px 1fr; gap: 36px; align-items: center; }
.guarantee-badge { width: 180px; height: 180px; border-radius: 50%; border: 1.5px solid var(--green); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.guarantee-badge .n { font-family: var(--serif); font-size: 2.6rem; color: var(--green); }
.guarantee-badge .u { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.fine-print { font-size: 0.8rem; color: #8a8f97; margin-top: 10px; }
@media (max-width: 720px) { .guarantee { grid-template-columns: 1fr; justify-items: center; text-align: center; } }

/* --- About --- */
.about-grid { display: grid; grid-template-columns: 320px 1fr; gap: 44px; align-items: center; }
.portrait-frame { aspect-ratio: 4/5; background: radial-gradient(circle at 30% 30%, #2a3a30, #10120f 70%); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #5c6058; font-size: 0.8rem; text-align: center; padding: 16px; }
.founder-sig { margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line); }
.founder-sig .name { font-family: var(--serif); font-size: 1.1rem; }
.founder-sig .role { font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-soft); }
@media (max-width: 780px) { .about-grid { grid-template-columns: 1fr; } .portrait-frame { max-width: 280px; margin: 0 auto; } }

/* --- FAQ --- */
.faq-list { margin-top: 34px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 20px 4px; font-family: var(--serif); font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.faq-q:hover { color: var(--green); }
.faq-q:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; }
.faq-q .plus { font-family: var(--sans); font-size: 1.3rem; color: var(--gold); transition: transform .15s ease; }
.faq-item[open] .plus { transform: rotate(45deg); }
.faq-a { padding: 0 4px 20px; color: var(--ink-soft); font-size: 0.95rem; max-width: 68ch; }
/* Dark sections (.section-dark) invert the base near-black FAQ colors --
   the light-mode --ink/--ink-soft values are unreadable against --ink
   background otherwise. Covers every FAQ instance inside a dark section,
   not just whichever one gets QA'd by hand. */
.section-dark .faq-item { border-bottom-color: rgba(255,255,255,0.14); }
.section-dark .faq-q { color: #fff; }
.section-dark .faq-q:hover { color: var(--gold); }
.section-dark .faq-a { color: #c7cbd0; }

/* --- Lead form --- */
.lead-panel { max-width: 560px; margin: 40px auto 0; padding: 32px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 6px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line); border-radius: 5px;
  font-family: var(--sans); font-size: 0.95rem; background: var(--white); color: var(--ink);
}
.field textarea { min-height: 90px; resize: vertical; }
.form-status { margin-top: 14px; font-size: 0.88rem; }
.form-status.ok { color: var(--green); }
.form-status.err { color: var(--danger); }

/* --- Footer --- */
.site-footer { background: var(--ink); color: #cfd2d6; padding: 56px 0 30px; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 20px; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,0.14); }
.footer-top .tagline { font-family: var(--serif); font-size: 1.15rem; color: #fff; }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 26px 0 0; padding: 0; font-size: 0.85rem; }
.footer-links a { text-decoration: none; color: #b9bcc0; }
.footer-copy { font-size: 0.78rem; color: #74777c; margin-top: 26px; }

/* --- Utility --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 780px) { .grid-2 { grid-template-columns: 1fr; } }
.benefit-list { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 18px; }
.benefit-list li { padding-left: 30px; position: relative; font-size: 1rem; }
.benefit-list li::before { content: "—"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.not-promised { font-size: 0.85rem; color: #8a8f97; margin-top: 26px; border-top: 1px solid var(--line); padding-top: 16px; }

@media (max-width: 640px) {
  section { padding: 56px 0; }
  .hero { padding-top: 40px; }
  .price-card.featured { order: -1; }
}
