/* ============================================================
   Position Clarity · website
   Design system ported from the "How Networks Agree" report:
   MIDNIGHT #0F1929 + light paper carry ~90%; OXBLOOD + GOLD are
   rare accents. Didot display, humanist sans body, node-web motif.
   Voice: plain-English, calm, educational-only. No em dashes.
   ============================================================ */

:root {
  --midnight: #0F1929;
  --midnight-2: #16273b;
  --cream:    #EDE7D9;
  --paper:    #FCFBF8;   /* near-white reading surface */
  --paper-2:  #F4F0E8;   /* recessed warm card */
  --oxblood:  #7B2D2D;
  --gold:     #9C7E3C;
  --gold-bright: #C9A24A;
  --ink:      #0F1929;
  --muted:    #6B6452;
  --muted-light: #9a937f;
  --border:   #DDD4C2;

  --serif: "Didot", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans:  "Avenir Next", "Inter", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --mono:  "Menlo", "SF Mono", "JetBrains Mono", ui-monospace, monospace;

  --maxw: 1120px;
  --pad: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.6;
}
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; color: var(--midnight); margin: 0; }
p { margin: 0 0 1em 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.kicker {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-size: 12px;
  color: var(--gold);
  margin: 0 0 18px 0;
}
.section-dark .kicker { color: var(--gold-bright); }
.eyebrow-glyph { width: 30px; height: 18px; opacity: 0.9; margin-bottom: 14px; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15, 25, 41, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(156, 126, 60, 0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brandmark { font-family: var(--serif); font-size: 22px; color: var(--cream); letter-spacing: 0.3px; }
.brandmark .dot { color: var(--gold); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-family: var(--sans); font-size: 14px; letter-spacing: 0.3px;
  color: #C9C2B2; transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-cta {
  font-family: var(--mono); font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--midnight); background: var(--gold); padding: 9px 16px; border-radius: 999px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-bright); }
.nav-burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--midnight); color: var(--cream); overflow: hidden; }
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.55; }
.hero-web-fallback {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.12; z-index: 0;
}
.hero-inner { position: relative; z-index: 1; padding: clamp(72px, 13vh, 150px) 0 clamp(64px, 11vh, 120px); }
.hero h1 {
  font-size: clamp(40px, 7vw, 82px);
  line-height: 1.02;
  color: var(--cream);
  max-width: 16ch;
  letter-spacing: 0.5px;
}
.hero h1 .accent { font-style: italic; color: var(--gold-bright); }
.hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55;
  color: #C9C2B2;
  max-width: 56ch;
  margin: 26px 0 34px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 24px; border-radius: 999px; transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid transparent; cursor: pointer;
}
.btn-gold { background: var(--gold); color: var(--midnight); }
.btn-gold:hover { background: var(--gold-bright); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(237,231,217,0.32); }
.btn-ghost:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.btn-dark { background: var(--midnight); color: var(--cream); }
.btn-dark:hover { background: var(--midnight-2); }
.btn-outline-dark { background: transparent; color: var(--midnight); border-color: var(--border); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--oxblood); }

.hero-networks {
  position: relative; z-index: 1;
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 1.5px; color: var(--muted-light);
  border-top: 1px solid rgba(156,126,60,0.28);
  padding: 18px 0 26px;
}
.hero-networks b { color: var(--cream); font-weight: 400; }

/* ============================================================
   GENERIC SECTION
   ============================================================ */
section { position: relative; }
.section-light { background: var(--paper); padding: clamp(64px, 9vw, 104px) 0; }
.section-band  { background: var(--paper-2); padding: clamp(64px, 9vw, 104px) 0; }
.section-dark  { background: var(--midnight); color: var(--cream); padding: clamp(64px, 9vw, 104px) 0; }
.section-dark h2, .section-dark h3 { color: var(--cream); }

.section-head { max-width: 60ch; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head .lead {
  font-size: clamp(17px, 1.6vw, 20px); color: var(--muted); margin-top: 16px; line-height: 1.55;
}
.section-dark .section-head .lead { color: #C0BAA9; }
.rule-gold { width: 56px; height: 2px; background: var(--gold); margin: 22px 0; }

/* ============================================================
   THE GAP, three points
   ============================================================ */
.points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 10px; }
.point h3 { font-family: var(--sans); font-weight: 700; font-size: 18px; color: var(--midnight); margin-bottom: 8px; }
.point p { color: var(--muted); font-size: 16px; margin: 0; }
.point .num { font-family: var(--mono); font-size: 12px; color: var(--gold); letter-spacing: 1px; display: block; margin-bottom: 10px; }

/* ============================================================
   FEATURED GUIDE (How Networks Agree)
   ============================================================ */
.feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.feature-cover { position: relative; }
.feature-cover img {
  width: 100%; border-radius: 6px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(156,126,60,0.25);
}
.feature-cover .tag {
  position: absolute; top: 18px; left: -10px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--oxblood); color: var(--cream); padding: 7px 14px; border-radius: 3px;
}
.feature h2 { font-size: clamp(30px, 4.4vw, 50px); }
.feature .ticker { font-family: var(--mono); font-size: 12px; letter-spacing: 2px; color: var(--gold-bright); text-transform: uppercase; }
.feature-desc { color: #C0BAA9; font-size: 17px; line-height: 1.6; margin: 18px 0 22px; max-width: 52ch; }
.inside { list-style: none; padding: 0; margin: 0 0 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 26px; }
.inside li { font-family: var(--sans); font-size: 14.5px; color: #C9C2B2; padding-left: 20px; position: relative; }
.inside li::before { content: ""; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.feature-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   LIBRARY
   ============================================================ */
.lib-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--paper); border: 1px solid var(--border); border-radius: 10px;
  padding: 26px 24px; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.section-band .card { background: #fff; }
.card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(15,25,41,0.10); border-color: var(--gold); }
.card .label { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.card h3 { font-size: 22px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; flex: 1; margin-bottom: 16px; }
.card .go { font-family: var(--mono); font-size: 12px; letter-spacing: 0.5px; color: var(--oxblood); display: inline-flex; align-items: center; gap: 7px; }
.card.soon { opacity: 0.78; }
.card.soon .go { color: var(--muted); }
.card .pill { font-family: var(--mono); font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); border: 1px solid var(--border); border-radius: 999px; padding: 3px 9px; align-self: flex-start; margin-bottom: 12px; }

/* two live guides, equal billing */
.lib-live { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 46px; }
.live-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.live-card:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(15,25,41,0.12); border-color: var(--gold); }
.live-card .cover { display: block; aspect-ratio: 5 / 3.3; background: var(--midnight); border-bottom: 1px solid var(--border); overflow: hidden; }
.live-card .cover img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.4s ease; }
.live-card:hover .cover img { transform: scale(1.03); }
.live-card .body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.live-card .label { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.live-card h3 { font-size: 26px; margin-bottom: 10px; }
.live-card p { color: var(--muted); font-size: 15.5px; line-height: 1.55; flex: 1; margin-bottom: 18px; }
.live-card .links { display: flex; flex-wrap: wrap; gap: 8px 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.4px; }
.live-card .links a { color: var(--muted); transition: color 0.2s; }
.live-card .links a:first-child { color: var(--oxblood); }
.live-card .links a:hover { color: var(--midnight); }

.workshop-head { font-family: var(--mono); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin: 0 0 18px; }
.workshop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.workshop-grid .card { padding: 20px 18px; }
.workshop-grid .card h3 { font-size: 18px; }
.workshop-grid .card p { font-size: 14px; }

/* ============================================================
   THE REVIEW (offer)
   ============================================================ */
.review-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.review-text h2 { font-size: clamp(28px, 4vw, 46px); }
.review-lead { color: #C0BAA9; font-size: 17px; line-height: 1.6; margin: 18px 0 26px; max-width: 54ch; }
.review-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.review-note { color: #8d8775; font-size: 13px; line-height: 1.55; max-width: 62ch; margin: 0; }
.review-card { background: rgba(237,231,217,0.05); border: 1px solid rgba(156,126,60,0.32); border-radius: 14px; padding: 30px 30px; }
.rc-label { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 18px; }
.rc-list { list-style: none; padding: 0; margin: 0; }
.rc-list li { position: relative; padding-left: 26px; margin-bottom: 14px; color: var(--cream); font-size: 15px; line-height: 1.45; }
.rc-list li:last-child { margin-bottom: 0; }
.rc-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); }

/* ============================================================
   THE JOURNEY (guide ecosystem mapped to stages)
   ============================================================ */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 8px; }
.stage { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 26px 24px; display: flex; flex-direction: column; }
.stage-head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.stage-num { font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); }
.stage-head h3 { font-size: 22px; }
.stage-desc { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
.stage-list { list-style: none; padding: 0; margin: 0; flex: 1; }
.stage-list li { font-size: 14.5px; color: var(--muted); padding: 8px 0 8px 22px; position: relative; border-top: 1px solid var(--border); }
.stage-list li:first-child { border-top: none; }
.stage-list li::before { content: "○"; position: absolute; left: 0; top: 8px; color: var(--border); font-size: 11px; }
.stage-list li.done { color: var(--midnight); font-weight: 500; }
.stage-list li.done::before { content: "●"; color: var(--gold); }
.stage-cta { font-family: var(--mono); font-size: 12px; letter-spacing: 0.4px; color: var(--oxblood); margin-top: 16px; }
.journey-note { text-align: center; color: var(--muted); font-size: 13.5px; font-style: italic; margin-top: 28px; }

.contact-line { font-family: var(--mono); font-size: 13px; letter-spacing: 0.5px; color: var(--muted); margin-top: 20px; }

/* ============================================================
   APPROACH / ETHOS
   ============================================================ */
.principles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(237,231,217,0.14); border: 1px solid rgba(237,231,217,0.14); border-radius: 12px; overflow: hidden; }
.principle { background: var(--midnight); padding: 30px 30px; }
.principle .n { font-family: var(--mono); font-size: 12px; color: var(--gold-bright); letter-spacing: 1px; }
.principle h3 { font-family: var(--serif); font-size: 24px; color: var(--cream); margin: 12px 0 10px; }
.principle p { color: #B7B1A1; font-size: 15.5px; margin: 0; }

/* ============================================================
   CTA STRIP
   ============================================================ */
.cta-strip { text-align: center; }
.cta-strip h2 { font-size: clamp(26px, 3.6vw, 40px); max-width: 22ch; margin: 0 auto 14px; }
.cta-strip p { color: var(--muted); max-width: 52ch; margin: 0 auto 26px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { position: relative; background: var(--midnight); color: var(--cream); overflow: hidden; padding: clamp(56px, 8vw, 92px) 0 38px; }
.footer .node-web-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.footer-inner { position: relative; z-index: 1; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; align-items: flex-start; }
.footer-brand .mark { font-family: var(--serif); font-size: 30px; color: var(--cream); }
.footer-brand .tag { color: #A49C8a; max-width: 40ch; margin-top: 12px; font-size: 15px; }
.footer-contact { font-family: var(--mono); font-size: 13px; letter-spacing: 0.5px; text-align: right; }
.footer-contact a { color: var(--gold-bright); display: block; margin-bottom: 6px; }
.footer-rule { height: 1px; background: rgba(156,126,60,0.3); margin: 36px 0 22px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; font-size: 12.5px; color: #8d8775; font-family: var(--sans); }
.footer-disclaimer { max-width: 70ch; line-height: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 860px) {
  .points, .lib-grid, .inside, .lib-live, .review-grid, .journey { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr 1fr; }
  .feature { grid-template-columns: 1fr; }
  .feature-cover { max-width: 360px; }
  .principles { grid-template-columns: 1fr; }
  .nav-links { gap: 0; }
  .nav-links a:not(.nav-cta) { display: none; }   /* keep the CTA, drop the text links on small screens */
}
@media (prefers-reduced-motion: reduce) {
  .hero canvas { display: none; }
  .hero-web-fallback { opacity: 0.14; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   PASS 2: conversion components
   ============================================================ */
/* two-tier pricing (in the dark Review section) */
.tiers { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 40px 0 22px; }
.tier { border: 1px solid rgba(156,126,60,0.30); border-radius: 12px; padding: 26px 26px; background: rgba(237,231,217,0.03); }
.tier-name { font-family: var(--sans); font-weight: 600; font-size: 14px; letter-spacing: 0.3px; color: var(--cream); }
.tier-price { font-family: var(--serif); font-size: 34px; color: var(--gold-bright); margin: 6px 0 12px; }
.tier p { color: #B7B1A1; font-size: 15px; margin: 0; }
.review-disclaimer { color: #8d8775; font-size: 13.5px; line-height: 1.5; max-width: 78ch; margin: 0; }

/* offers ladder (dark section): Estate Kit + Review side by side */
.offers { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 8px 0 26px; }
.offer { background: rgba(237,231,217,0.05); border: 1px solid rgba(156,126,60,0.32); border-radius: 14px; padding: 32px 30px; display: flex; flex-direction: column; }
.offer-label { font-family: var(--mono); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-bright); margin-bottom: 12px; }
.offer-head h3 { font-size: 28px; color: var(--cream); margin-bottom: 10px; }
.offer-price { font-family: var(--serif); font-size: 38px; color: var(--gold-bright); line-height: 1; margin-bottom: 2px; }
.offer-price span { font-family: var(--sans); font-size: 13px; color: #B7B1A1; letter-spacing: 0.3px; }
.offer-lead { color: #C0BAA9; font-size: 15.5px; line-height: 1.55; margin: 16px 0 16px; }
.offer-list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.offer-list li { position: relative; padding-left: 24px; margin-bottom: 12px; color: var(--cream); font-size: 14.5px; line-height: 1.45; }
.offer-list li::before { content: ""; position: absolute; left: 0; top: 7px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.offer .btn { align-self: flex-start; }
.offer-cta-row { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; }
.offer-sample { font-family: var(--mono); font-size: 12px; letter-spacing: 0.4px; color: var(--gold-bright); }
.offer-sample:hover { color: var(--cream); }
.offer-fine { color: #8d8775; font-size: 12.5px; line-height: 1.5; margin: 14px 0 0; }

/* who is behind this */
.who { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(24px,5vw,60px); align-items: start; }
.who .who-head h2 { font-size: clamp(26px,3.4vw,40px); }
.who-body p { color: var(--muted); font-size: 16.5px; line-height: 1.6; }
.who-body p strong { color: var(--midnight); font-weight: 600; }
.who-sign { font-family: var(--mono); font-size: 12px; letter-spacing: 0.5px; color: var(--gold); margin-top: 6px; }

/* intake form (light contact section) */
.intake { max-width: 640px; margin: 28px auto 0; text-align: left; }
.intake .field { margin-bottom: 16px; }
.intake label { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.intake input[type=text], .intake input[type=email], .intake textarea {
  width: 100%; box-sizing: border-box; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 11px 13px;
}
.intake textarea { min-height: 84px; resize: vertical; }
.intake input:focus, .intake textarea:focus { outline: none; border-color: var(--gold); }
.intake .choices { display: flex; flex-wrap: wrap; gap: 10px; }
.intake .choices label { display: inline-flex; align-items: center; gap: 7px; text-transform: none; letter-spacing: 0; font-family: var(--sans); font-size: 14px; color: var(--ink); background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 8px 14px; cursor: pointer; margin: 0; }
.intake .choices input { accent-color: var(--oxblood); }
.intake .nosecrets { font-size: 13px; color: var(--muted); background: var(--paper-2); border-left: 3px solid var(--gold); border-radius: 6px; padding: 11px 14px; margin: 4px 0 18px; }
.intake .submit-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.form-hint { font-size: 12.5px; color: var(--muted); margin-top: 12px; }

/* notify (non-gating heads-up) */
.notify { margin-top: 30px; border-top: 1px solid var(--border); padding-top: 26px; display: flex; flex-wrap: wrap; gap: 14px 26px; align-items: baseline; justify-content: space-between; }
.notify .nt-text { max-width: 56ch; }
.notify .nt-text h3 { font-family: var(--sans); font-weight: 600; font-size: 17px; color: var(--midnight); margin: 0 0 4px; }
.notify .nt-text p { color: var(--muted); font-size: 14.5px; margin: 0; }

@media (max-width: 760px){
  .tiers { grid-template-columns: 1fr; }
  .offers { grid-template-columns: 1fr; }
  .who { grid-template-columns: 1fr; }
}
