/* DealCadence — "Ledger Editorial" direction
   Palette: forest green / warm cream / ink / brass accent */
:root {
  --green: #1B3A2D;
  --green-deep: #12281f;
  --cream: #F4EFE4;
  --cream-dark: #EAE2D1;
  --ink: #1c1a15;
  --brass: #B08D3E;
  --rule: rgba(27, 58, 45, 0.25);
}

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

html { scroll-behavior: smooth; }
section, .form-card { scroll-margin-top: 24px; }

body {
  font-family: "Inter", -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .serif {
  font-family: "Fraunces", Georgia, serif;
}

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }

/* Nav */
.nav {
  border-bottom: 1px solid var(--rule);
}
.nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo video, .nav-logo img {
  height: 44px; width: 44px; object-fit: cover; border-radius: 6px;
}
.nav-logo .name {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.35rem; color: var(--green); letter-spacing: -0.01em;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  color: var(--green); text-decoration: none; font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--brass); }
.nav-cta {
  background: var(--green); color: var(--cream) !important;
  padding: 10px 22px; border-radius: 4px; text-decoration: none;
  font-weight: 600; font-size: 0.95rem;
}
.nav-cta:hover { color: var(--cream); }

/* Hero */
.hero { padding: 72px 0 64px; }
.hero .wrap {
  display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px;
  align-items: start;
}
.kicker {
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass); font-weight: 700; margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.06; font-weight: 550; color: var(--green);
  letter-spacing: -0.02em; margin-bottom: 22px;
}
.hero h1 em { font-style: italic; color: var(--ink); }
.hero .sub {
  font-size: 1.1rem; line-height: 1.6; color: #3d3a32;
  max-width: 46ch; margin-bottom: 40px;
}

/* Proof ledger row */
.ledger {
  display: flex; border-top: 2px solid var(--green);
  border-bottom: 1px solid var(--rule);
}
.ledger .cell {
  flex: 1; padding: 20px 18px 22px;
}
.ledger .cell + .cell { border-left: 1px solid var(--rule); }
.ledger .num {
  font-family: "Fraunces", serif; font-size: 2.6rem;
  font-weight: 600; color: var(--green); line-height: 1;
  white-space: nowrap;
}
.ledger .num.small { font-size: 2.1rem; padding-top: 0.35rem; }
.ledger .label {
  font-size: 0.82rem; color: #55503f; margin-top: 8px; line-height: 1.4;
}

/* Form card */
.form-card {
  background: var(--green); color: var(--cream);
  border-radius: 8px; padding: 36px 32px;
}
.form-card h2 {
  font-size: 1.6rem; font-weight: 550; margin-bottom: 8px;
}
.form-card p {
  font-size: 0.95rem; opacity: 0.85; margin-bottom: 26px; line-height: 1.5;
}
.form-card label {
  display: block; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 8px; opacity: 0.8;
}
.form-card input {
  width: 100%; padding: 14px 16px; margin-bottom: 18px;
  border: 1px solid rgba(244, 239, 228, 0.35); border-radius: 4px;
  background: rgba(244, 239, 228, 0.07); color: var(--cream);
  font-size: 1.05rem; font-family: inherit;
}
.form-card input::placeholder { color: rgba(244, 239, 228, 0.45); }
.form-card button {
  width: 100%; padding: 16px; border: none; border-radius: 4px;
  background: var(--brass); color: #fff; font-size: 1.05rem;
  font-weight: 700; cursor: pointer; font-family: inherit;
}
.form-card .fine {
  font-size: 0.78rem; opacity: 0.6; margin-top: 14px; margin-bottom: 0;
  text-align: center;
}

/* Shared section bits */
.section-title {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem); font-weight: 550;
  color: var(--green); letter-spacing: -0.02em; line-height: 1.12;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--ink); }
.section-title.light { color: var(--cream); }
.section-title.light em { color: var(--brass); }
.section-sub {
  font-size: 1.05rem; line-height: 1.6; color: #3d3a32;
  max-width: 58ch; margin-bottom: 40px;
}
.kicker.gold { color: var(--brass); }
.form-status { font-size: 0.9rem; margin-top: 12px; min-height: 1.2em; }
.form-status.light { color: var(--cream); text-align: center; }

/* 2. Proof / recordings — white */
.proof { background: #fff; padding: 80px 0; border-top: 1px solid var(--rule); }
.players { display: grid; gap: 14px; max-width: 720px; margin-bottom: 48px; }
.player {
  display: flex; align-items: center; gap: 18px;
  background: var(--cream); border: 1px solid var(--rule);
  border-radius: 8px; padding: 16px 20px;
}
.pp {
  width: 46px; height: 46px; min-width: 46px; border-radius: 50%;
  border: none; background: var(--green); cursor: pointer; position: relative;
}
.pp::after {
  content: ""; position: absolute; left: 55%; top: 50%;
  transform: translate(-50%, -50%);
  border-left: 14px solid var(--cream);
  border-top: 9px solid transparent; border-bottom: 9px solid transparent;
}
.player.playing .pp::after {
  border: none; width: 12px; height: 14px; left: 50%;
  border-left: 4px solid var(--cream); border-right: 4px solid var(--cream);
}
.p-meta { flex: 1; }
.p-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 10px; color: var(--ink); }
.p-bar {
  height: 6px; background: rgba(27,58,45,0.15); border-radius: 3px; cursor: pointer;
}
.p-fill { height: 100%; width: 0%; background: var(--brass); border-radius: 3px; }
.p-time { font-family: "Fraunces", serif; font-size: 0.95rem; color: var(--green); min-width: 42px; text-align: right; }

.trust-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  border-top: 2px solid var(--green); padding-top: 28px;
}
.t-head { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.15rem; color: var(--green); margin-bottom: 8px; }
.t-body { font-size: 0.92rem; line-height: 1.55; color: #4a463b; }

/* 3. Case study — dark green */
.case { background: var(--green); color: var(--cream); padding: 84px 0; }
.case .section-title { color: var(--cream); }
.case .section-title em { color: var(--brass); }
.case-grid {
  display: flex; gap: 0; border-top: 1px solid rgba(244,239,228,0.3);
  border-bottom: 1px solid rgba(244,239,228,0.3); margin: 36px 0;
  max-width: 720px;
}
.case-num { flex: 1; padding: 26px 20px; }
.case-num + .case-num { border-left: 1px solid rgba(244,239,228,0.3); }
.cn { font-family: "Fraunces", serif; font-size: 3.4rem; font-weight: 600; color: var(--brass); line-height: 1; }
.cl { font-size: 0.85rem; opacity: 0.8; margin-top: 8px; }
.case-body { font-size: 1.08rem; line-height: 1.65; max-width: 56ch; opacity: 0.92; }

/* 4. Pricing — cream */
.pricing { background: var(--cream); padding: 84px 0; }
.plans { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin: 44px 0 36px; }
.plans.three { grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--brass); color: #fff; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.plan-price .was {
  font-size: 1.4rem; color: #9a9382; text-decoration-color: var(--brass);
  margin-right: 6px; font-weight: 400;
}
.plan {
  background: #fff; border: 1px solid var(--rule); border-radius: 10px;
  padding: 34px 32px;
}
.plan.featured { border: 2px solid var(--green); position: relative; }
.plan-name {
  font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: var(--brass); margin-bottom: 10px;
}
.plan-price { font-family: "Fraunces", serif; font-size: 2.6rem; font-weight: 600; color: var(--green); margin-bottom: 24px; }
.plan-price span { font-size: 1.1rem; color: #6b6555; font-family: "Inter", sans-serif; font-weight: 400; }
.plan-math { border-top: 2px solid var(--green); margin-bottom: 24px; }
.pm-row {
  display: flex; align-items: baseline; gap: 12px;
  padding: 12px 2px; border-bottom: 1px solid var(--rule);
  font-size: 0.95rem; color: #3d3a32;
}
.pm-num {
  font-family: "Fraunces", serif; font-size: 1.5rem; font-weight: 600;
  color: var(--green); min-width: 58px;
}
.pm-row.total { background: rgba(176,141,62,0.1); }
.pm-row.total .pm-num { color: var(--brass); }
.plan-feats { list-style: none; margin-bottom: 28px; }
.plan-feats li {
  font-size: 0.92rem; line-height: 1.5; color: #4a463b;
  padding: 6px 0 6px 24px; position: relative;
}
.plan-feats li::before { content: "—"; position: absolute; left: 0; color: var(--brass); }
.plan-cta {
  display: block; text-align: center; padding: 14px;
  background: var(--green); color: var(--cream); border-radius: 4px;
  text-decoration: none; font-weight: 600;
}
.bench {
  border-top: 2px solid var(--green); padding-top: 26px; max-width: 720px;
}
.bench-head { font-family: "Fraunces", serif; font-size: 1.3rem; font-weight: 600; color: var(--green); margin-bottom: 10px; }
.bench p { font-size: 0.98rem; line-height: 1.6; color: #4a463b; }

/* 5. Final CTA — deep green */
.final { background: var(--green-deep); padding: 84px 0 72px; text-align: center; }
.final .wrap { max-width: 640px; }
.hero-logo {
  width: 210px; aspect-ratio: 16 / 9; object-fit: cover;
  border-radius: 10px; margin-bottom: 26px; display: block;
  border: 1px solid var(--rule);
}
.final-form { display: flex; gap: 12px; margin-top: 34px; }
.final-form input {
  flex: 1; padding: 15px 16px; border-radius: 4px;
  border: 1px solid rgba(244,239,228,0.35);
  background: rgba(244,239,228,0.07); color: var(--cream);
  font-size: 1rem; font-family: inherit;
}
.final-form input::placeholder { color: rgba(244,239,228,0.45); }
.final-form button {
  padding: 15px 28px; border: none; border-radius: 4px;
  background: var(--brass); color: #fff; font-weight: 700;
  font-size: 1rem; cursor: pointer; font-family: inherit; white-space: nowrap;
}
.final .fine { font-size: 0.8rem; color: rgba(244,239,228,0.55); margin-top: 14px; }

/* Footer */
.footer { background: var(--green-deep); border-top: 1px solid rgba(244,239,228,0.15); padding: 52px 0 44px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 0.6fr; gap: 48px;
  align-items: start;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo img { height: 40px; width: 40px; }
.footer-logo .name {
  font-family: "Fraunces", serif; font-weight: 600;
  font-size: 1.3rem; color: var(--cream); letter-spacing: -0.01em;
}
.footer-blurb {
  font-size: 0.95rem; line-height: 1.6; color: rgba(244,239,228,0.75);
  max-width: 48ch; margin-bottom: 18px;
}
.footer-fine { font-size: 0.8rem; color: rgba(244,239,228,0.5); line-height: 1.5; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links a {
  color: rgba(244,239,228,0.85); text-decoration: none;
  font-size: 0.95rem; font-weight: 600;
}
.footer-links a:hover { color: var(--brass); }

/* Privacy page */
.legal { padding: 64px 0; max-width: 760px; margin: 0 auto; }
.legal h1 { color: var(--green); margin-bottom: 28px; font-size: 2.2rem; }
.legal h2 { font-size: 1.3rem; color: var(--green); margin: 28px 0 10px; }
.legal p { line-height: 1.65; color: #3d3a32; margin-bottom: 14px; }

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 44px; }
  .ledger { flex-direction: column; }
  .ledger .cell + .cell { border-left: none; border-top: 1px solid var(--rule); }
  .trust-strip { grid-template-columns: 1fr; gap: 22px; }
  .case-grid { flex-direction: column; }
  .case-num + .case-num { border-left: none; border-top: 1px solid rgba(244,239,228,0.3); }
  .plans, .plans.three { grid-template-columns: 1fr; }
  .final-form { flex-direction: column; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
