:root {
  --ink: #11120f;
  --ink-soft: #22241e;
  --bone: #f3eee3;
  --paper: #faf7f0;
  --sage: #98a786;
  --sage-dark: #59634c;
  --signal: #f06a3f;
  --signal-soft: #ffb296;
  --line-dark: rgba(17,18,15,.16);
  --line-light: rgba(255,255,255,.16);
  --shadow: 0 30px 80px rgba(17,18,15,.14);
  --radius: 24px;
  --radius-small: 16px;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 10px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--bone);
}
.nav-shell {
  width: min(1380px, calc(100% - 64px));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.brand-copy { display: grid; line-height: 1.1; gap: 4px; }
.brand-copy strong { font-size: 14px; letter-spacing: .02em; font-weight: 650; }
.brand-copy small { font-size: 10px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a { font-size: 13px; letter-spacing: .02em; opacity: .8; transition: opacity .2s ease, transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { opacity: 1; transform: translateY(-2px); }
.nav-cta { margin-left: 12px; }
.mobile-menu, .menu-toggle { display: none; }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: .01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease;
}
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.button:hover, .button:focus-visible { transform: translateY(-3px) scale(1.01); }
.button-small { min-height: 42px; padding: 0 18px; font-size: 12px; }
.button-signal { color: var(--ink); background: var(--signal); box-shadow: 0 12px 35px rgba(240,106,63,.26); }
.button-signal:hover, .button-signal:focus-visible { box-shadow: 0 16px 45px rgba(240,106,63,.4); }
.button-ghost { color: var(--bone); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.04); backdrop-filter: blur(10px); }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.65); }
.button-ink { color: var(--bone); background: var(--ink); box-shadow: 0 14px 34px rgba(17,18,15,.18); }
.button-ink:hover, .button-ink:focus-visible { box-shadow: 0 18px 42px rgba(17,18,15,.28); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow-light { color: var(--signal-soft); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.045em;
}
h1 em, h2 em { font-weight: 400; }
h2 { font-size: clamp(48px, 5.2vw, 82px); line-height: 1.08; margin-bottom: 24px; }
h3 { font-family: var(--sans); font-size: 22px; line-height: 1.2; letter-spacing: -.025em; }
.lead { font-size: clamp(20px, 1.7vw, 25px); line-height: 1.5; letter-spacing: -.015em; }
.section-pad { padding: 124px 0; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 700;
  transition: gap .25s ease, color .25s ease;
}
.arrow-link:hover, .arrow-link:focus-visible { gap: 18px; color: var(--signal); }

.hero {
  position: relative;
  min-height: 860px;
  color: var(--bone);
  background:
    radial-gradient(circle at 82% 38%, rgba(152,167,134,.18), transparent 35%),
    linear-gradient(122deg, #0d0e0c 0%, #171914 52%, #20241c 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 190px;
  background: linear-gradient(to top, rgba(0,0,0,.3), transparent);
  pointer-events: none;
}
.hero-grid, .final-grid {
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(30px); opacity: .5; }
.hero-glow-one { width: 540px; height: 540px; right: -160px; top: 120px; background: rgba(152,167,134,.24); }
.hero-glow-two { width: 420px; height: 420px; left: 18%; bottom: -270px; background: rgba(240,106,63,.15); }
.hero-shell {
  position: relative;
  z-index: 3;
  width: min(1240px, calc(100% - 80px));
  min-height: 860px;
  margin: 0 auto;
  padding: 180px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 70px;
}
.hero-copy { max-width: 780px; }
.hero h1 { font-size: clamp(68px, 7.1vw, 112px); line-height: 1.08; margin-bottom: 22px; padding: .04em 0 .08em; }
.hero h1 em { color: var(--signal-soft); }
.hero-subhead { max-width: 680px; color: rgba(243,238,227,.78); font-size: clamp(18px, 1.55vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 34px; }
.play-icon circle { fill: none; }

.confidence-field {
  position: absolute;
  z-index: 1;
  width: 620px;
  height: 620px;
  right: -140px;
  top: 130px;
  opacity: .72;
}
.field-ring { position: absolute; inset: 50%; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; transform: translate(-50%,-50%); }
.ring-one { width: 90%; height: 90%; }
.ring-two { width: 70%; height: 70%; }
.ring-three { width: 50%; height: 50%; }
.ring-four { width: 31%; height: 31%; border-color: rgba(240,106,63,.32); }
.field-mark { position: absolute; width: 250px; height: 250px; top: 50%; left: 50%; transform: translate(-50%,-50%) rotate(7deg); fill: none; stroke: rgba(255,255,255,.18); stroke-width: 1; }
.field-label { position: absolute; padding: 7px 12px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: rgba(255,255,255,.66); background: rgba(17,18,15,.35); backdrop-filter: blur(10px); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.label-mindset { left: 11%; top: 27%; }
.label-energy { right: 9%; top: 23%; }
.label-boundaries { right: 2%; bottom: 31%; }
.label-communication { left: 2%; bottom: 27%; }
.label-purpose { left: 42%; bottom: 3%; }

.hero-card {
  position: relative;
  align-self: end;
  margin-bottom: 74px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  backdrop-filter: blur(22px);
  box-shadow: 0 30px 80px rgba(0,0,0,.22);
}
.hero-card::before { content:""; position:absolute; inset:0; border-radius:inherit; background:radial-gradient(circle at top right, rgba(240,106,63,.18), transparent 40%); pointer-events:none; }
.hero-card-kicker { display: block; color: rgba(243,238,227,.58); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.hero-card blockquote { position: relative; margin: 28px 0 18px; font-family: var(--serif); font-size: 48px; line-height: 1.02; letter-spacing: -.04em; }
.hero-card blockquote em { color: var(--signal-soft); }
.hero-card p { color: rgba(243,238,227,.7); font-size: 14px; line-height: 1.55; }
.hero-card-rule { display:block; width:100%; height:1px; margin:24px 0 15px; background:rgba(255,255,255,.16); }
.hero-card-signature { font-family: var(--serif); font-size: 14px; font-style: italic; color: rgba(243,238,227,.78); }
.scroll-cue { position: absolute; z-index: 5; bottom: 30px; left: 50%; transform: translateX(-50%); display:flex; align-items:center; gap:10px; color:rgba(243,238,227,.6); font-size:10px; letter-spacing:.13em; text-transform:uppercase; }
.scroll-cue svg { width:17px; height:17px; fill:none; stroke:currentColor; stroke-width:1.5; animation: bounce 1.8s ease-in-out infinite; }
@keyframes bounce { 50% { transform: translateY(5px); } }

.proof-strip { color: var(--bone); background: var(--signal); overflow:hidden; }
.marquee-track { width:max-content; display:flex; align-items:center; gap:24px; padding:17px 0; animation: marquee 40s linear infinite; }
.marquee-track span { font-size:12px; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.marquee-track i { width:7px; height:7px; border:1px solid currentColor; transform:rotate(45deg); }
@keyframes marquee { to { transform:translateX(-50%); } }

.tax { position:relative; background:
  radial-gradient(circle at 10% 75%, rgba(152,167,134,.18), transparent 28%),
  linear-gradient(180deg, var(--paper), #efe7d9); }
.tax-shell { width:min(1200px, calc(100% - 80px)); margin:0 auto; display:grid; grid-template-columns:.9fr 1.1fr; gap:90px; align-items:center; }
.tax-copy { max-width:520px; }
.tax-copy p:not(.eyebrow) { color:rgba(17,18,15,.68); }
.tax-ledger { padding:16px; border:1px solid var(--line-dark); border-radius:28px; background:rgba(250,247,240,.78); box-shadow:var(--shadow); backdrop-filter:blur(20px); }
.ledger-top, .ledger-total { display:flex; justify-content:space-between; align-items:center; gap:20px; padding:14px 14px 18px; font-size:10px; font-weight:750; letter-spacing:.1em; text-transform:uppercase; }
.ledger-top span:last-child { color:var(--signal); }
.tax-ledger article { display:grid; grid-template-columns:44px minmax(0,1fr) 122px; align-items:center; gap:14px; min-height:92px; padding:16px; border-top:1px solid var(--line-dark); }
.ledger-icon { width:40px; height:40px; display:grid; place-items:center; border:1px solid var(--line-dark); border-radius:12px; background:var(--paper); }
.ledger-icon svg { width:20px; height:20px; fill:none; stroke:var(--ink); stroke-width:1.6; }
.tax-ledger strong { display:block; font-size:14px; line-height:1.3; }
.tax-ledger small { display:block; margin-top:5px; color:rgba(17,18,15,.5); font-size:11px; }
.ledger-bar { height:7px; border-radius:999px; background:rgba(17,18,15,.08); overflow:hidden; }
.ledger-bar i { display:block; width:0; height:100%; border-radius:inherit; background:linear-gradient(90deg, var(--sage), var(--signal)); transition:width 1.15s cubic-bezier(.2,.75,.2,1); }
.tax-ledger.visible .ledger-bar i { width:var(--bar); }
.ledger-total { margin-top:4px; padding:18px 14px 12px; border-top:1px solid var(--line-dark); }
.ledger-total strong { color:var(--signal); font-family:var(--serif); font-size:20px; font-style:italic; text-transform:none; letter-spacing:-.02em; }

.method { color:var(--bone); background:
  radial-gradient(circle at 78% 8%, rgba(240,106,63,.14), transparent 28%),
  radial-gradient(circle at 8% 86%, rgba(152,167,134,.18), transparent 30%),
  #12130f; }
.method-heading { width:min(760px, calc(100% - 80px)); margin:0 auto 60px; text-align:center; }
.method-heading > p:last-child { max-width:680px; margin:0 auto; color:rgba(243,238,227,.68); font-size:19px; }
.method-bento { width:min(1240px, calc(100% - 80px)); margin:0 auto; display:grid; grid-template-columns:repeat(12, 1fr); grid-template-rows:300px 300px 230px; gap:14px; }
.method-card { position:relative; overflow:hidden; border:1px solid rgba(255,255,255,.13); border-radius:var(--radius); background:rgba(255,255,255,.045); }
.method-card::after { content:""; position:absolute; inset:0; pointer-events:none; background:linear-gradient(140deg, rgba(255,255,255,.07), transparent 35%); }
.method-card h3 { margin:10px 0 12px; font-size:26px; }
.method-card p { margin-bottom:0; color:rgba(243,238,227,.63); font-size:14px; line-height:1.55; }
.method-kicker { color:var(--signal-soft); font-size:10px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.method-core { grid-column:span 6; grid-row:span 2; display:flex; flex-direction:column; justify-content:flex-end; padding:42px; background:linear-gradient(150deg, rgba(152,167,134,.16), rgba(255,255,255,.035)); }
.core-orbit { position:absolute; width:420px; height:420px; top:-90px; right:-70px; border:1px solid rgba(255,255,255,.1); border-radius:50%; }
.core-orbit::before, .core-orbit::after { content:""; position:absolute; inset:13%; border:1px solid rgba(255,255,255,.08); border-radius:50%; }
.core-orbit::after { inset:28%; border-color:rgba(240,106,63,.22); }
.core-orbit svg { position:absolute; width:170px; height:170px; left:50%; top:50%; transform:translate(-50%,-50%) rotate(9deg); fill:none; stroke:rgba(255,255,255,.24); stroke-width:1; }
.core-orbit span { position:absolute; width:10px; height:10px; border-radius:50%; background:var(--signal); box-shadow:0 0 24px rgba(240,106,63,.55); }
.core-orbit span:nth-child(1){left:12%;top:31%}.core-orbit span:nth-child(2){right:14%;top:24%}.core-orbit span:nth-child(3){right:5%;bottom:34%}.core-orbit span:nth-child(4){left:13%;bottom:19%}.core-orbit span:nth-child(5){left:48%;bottom:2%}
.method-card-copy { position:relative; z-index:2; max-width:430px; }
.method-card-copy h3 { font-family:var(--serif); font-size:48px; font-weight:500; line-height:1.06; letter-spacing:-.04em; }
.pillar-card { grid-column:span 3; padding:28px; display:flex; flex-direction:column; justify-content:flex-end; }
.pillar-card h3 { font-size:20px; }
.pillar-icon { width:46px; height:46px; display:grid; place-items:center; margin-bottom:auto; border:1px solid rgba(255,255,255,.15); border-radius:14px; color:var(--signal-soft); background:rgba(0,0,0,.12); }
.pillar-icon svg { width:23px; height:23px; fill:none; stroke:currentColor; stroke-width:1.6; }
.pillar-mindset { background:linear-gradient(145deg, rgba(152,167,134,.15), rgba(255,255,255,.04)); }
.pillar-energy { background:linear-gradient(145deg, rgba(240,106,63,.16), rgba(255,255,255,.04)); }
.pillar-boundaries { background:linear-gradient(145deg, rgba(255,178,150,.09), rgba(255,255,255,.04)); }
.pillar-communication { background:linear-gradient(145deg, rgba(152,167,134,.12), rgba(255,255,255,.04)); }
.purpose-card { grid-column:span 12; padding:34px 38px; display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:center; background:linear-gradient(110deg, rgba(240,106,63,.14), rgba(152,167,134,.13)); }
.purpose-card > div { display:grid; grid-template-columns:auto 1fr; column-gap:18px; align-items:center; }
.purpose-card .pillar-icon { grid-row:span 2; margin:0; }
.purpose-card h3 { margin:5px 0 0; font-size:30px; }
.purpose-card p { max-width:530px; font-size:17px; }

.so-what { position:relative; color:var(--bone); background:#272a22; overflow:hidden; }
.so-what::before { content:"SO WHAT?"; position:absolute; right:-55px; top:45px; color:rgba(255,255,255,.025); font-family:var(--serif); font-size:230px; line-height:1; letter-spacing:-.08em; white-space:nowrap; }
.so-what-noise { position:absolute; inset:0; opacity:.18; background-image:radial-gradient(rgba(255,255,255,.14) .6px, transparent .6px); background-size:10px 10px; mask-image:linear-gradient(to right, black, transparent 75%); }
.so-what-shell { position:relative; z-index:2; width:min(1200px, calc(100% - 80px)); margin:0 auto; display:grid; grid-template-columns:1.1fr .9fr; gap:90px; align-items:center; }
.so-what-copy { max-width:620px; }
.so-what-copy > p:not(.eyebrow) { color:rgba(243,238,227,.7); }
.so-what-steps { margin-top:42px; display:grid; gap:13px; }
.so-what-steps article { display:grid; grid-template-columns:52px 1fr; gap:18px; padding:20px; border:1px solid rgba(255,255,255,.12); border-radius:18px; background:rgba(255,255,255,.035); }
.step-icon { width:46px; height:46px; display:grid; place-items:center; border-radius:14px; color:var(--signal-soft); background:rgba(240,106,63,.11); }
.step-icon svg { width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.6; }
.so-what-steps small { display:block; color:var(--signal-soft); font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.so-what-steps strong { display:block; margin:4px 0; font-size:16px; }
.so-what-steps p { margin:0; color:rgba(243,238,227,.58); font-size:13px; line-height:1.5; }
.so-what-tool { padding:24px; border:1px solid rgba(255,255,255,.14); border-radius:28px; background:linear-gradient(150deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); box-shadow:0 35px 90px rgba(0,0,0,.24); backdrop-filter:blur(20px); }
.tool-heading { display:flex; justify-content:space-between; align-items:center; gap:20px; margin-bottom:32px; padding-bottom:18px; border-bottom:1px solid rgba(255,255,255,.13); font-size:11px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.tool-status { color:rgba(243,238,227,.55); font-size:9px; }
.tool-status i { display:inline-block; width:7px; height:7px; margin-right:6px; border-radius:50%; background:var(--sage); box-shadow:0 0 12px var(--sage); }
.so-what-tool label { display:block; margin-bottom:12px; font-family:var(--serif); font-size:28px; line-height:1.2; letter-spacing:-.03em; }
.so-what-tool textarea { width:100%; resize:vertical; min-height:150px; padding:18px; color:var(--bone); border:1px solid rgba(255,255,255,.15); border-radius:16px; outline:none; background:rgba(0,0,0,.16); transition:border-color .2s ease, box-shadow .2s ease; }
.so-what-tool textarea::placeholder { color:rgba(243,238,227,.35); }
.so-what-tool textarea:focus { border-color:var(--signal); box-shadow:0 0 0 4px rgba(240,106,63,.1); }
.tool-button { width:100%; margin-top:12px; border:0; }
.tool-response { min-height:130px; margin-top:14px; padding:20px; display:flex; align-items:flex-start; gap:15px; border:1px solid rgba(255,255,255,.1); border-radius:16px; background:rgba(0,0,0,.12); }
.response-mark { flex:0 0 auto; width:34px; height:34px; display:grid; place-items:center; border-radius:50%; color:var(--ink); background:var(--signal); font-family:var(--serif); font-size:20px; font-style:italic; }
.tool-response p { margin:2px 0 0; color:rgba(243,238,227,.7); font-size:14px; line-height:1.55; }
.tool-response strong { color:var(--bone); }

.definition { background:
  radial-gradient(circle at 50% 50%, rgba(152,167,134,.16), transparent 30%),
  var(--paper); }
.definition-heading { width:min(900px, calc(100% - 80px)); margin:0 auto 60px; text-align:center; }
.definition-grid { width:min(1180px, calc(100% - 80px)); margin:0 auto; display:grid; grid-template-columns:1fr 80px 1fr; gap:30px; align-items:stretch; }
.definition-column { padding:34px; border:1px solid var(--line-dark); border-radius:var(--radius); }
.old-way { background:rgba(17,18,15,.035); }
.new-way { color:var(--bone); background:linear-gradient(150deg, #1a1d17, #2d3228); box-shadow:var(--shadow); }
.definition-label { display:inline-flex; margin-bottom:24px; padding:7px 11px; border-radius:999px; font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.old-way .definition-label { color:rgba(17,18,15,.54); border:1px solid var(--line-dark); }
.new-way .definition-label { color:var(--signal-soft); border:1px solid rgba(255,255,255,.14); }
.definition-column article { display:grid; grid-template-columns:36px 1fr; gap:14px; padding:19px 0; border-top:1px solid var(--line-dark); }
.new-way article { border-color:rgba(255,255,255,.12); }
.definition-column article > svg { width:23px; height:23px; margin-top:2px; fill:none; stroke:rgba(17,18,15,.3); stroke-width:1.5; }
.check-icon { width:30px; height:30px; display:grid; place-items:center; border-radius:9px; color:var(--ink); background:var(--signal); }
.check-icon svg { width:18px; height:18px; fill:none; stroke:currentColor; stroke-width:2; }
.definition-column strong { display:block; font-size:17px; }
.definition-column p { margin:4px 0 0; color:rgba(17,18,15,.56); font-size:13px; line-height:1.5; }
.new-way p { color:rgba(243,238,227,.56); }
.definition-center { display:flex; flex-direction:column; align-items:center; justify-content:center; gap:12px; color:rgba(17,18,15,.32); }
.definition-center svg { width:46px; height:150px; fill:none; stroke:currentColor; stroke-width:1; }
.definition-center span { font-size:9px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; writing-mode:vertical-rl; }

.speaking { position:relative; color:var(--bone); background:
  radial-gradient(circle at 16% 20%, rgba(240,106,63,.16), transparent 28%),
  #11120f; overflow:hidden; }
.speaking::after { content:""; position:absolute; inset:0; background-image:linear-gradient(135deg, rgba(255,255,255,.025) 25%, transparent 25%, transparent 50%, rgba(255,255,255,.025) 50%, rgba(255,255,255,.025) 75%, transparent 75%); background-size:30px 30px; opacity:.3; }
.speaking-glow { position:absolute; width:650px; height:650px; right:-260px; top:-150px; border-radius:50%; background:rgba(152,167,134,.12); filter:blur(40px); }
.speaking-shell { position:relative; z-index:2; width:min(1200px, calc(100% - 80px)); margin:0 auto; display:grid; grid-template-columns:.9fr 1.1fr; gap:80px; align-items:center; }
.speaking-copy { max-width:520px; }
.speaking-copy p:not(.eyebrow) { color:rgba(243,238,227,.67); }
.speaking-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:32px; }
.topic-stack { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.topic-card { min-height:245px; padding:28px; border:1px solid rgba(255,255,255,.13); border-radius:var(--radius); background:rgba(255,255,255,.045); transition:transform .25s ease, background .25s ease; }
.topic-card:hover { transform:translateY(-5px); background:rgba(255,255,255,.075); }
.topic-featured { grid-column:span 2; min-height:220px; display:grid; grid-template-columns:70px 1fr; gap:22px; align-items:center; background:linear-gradient(130deg, rgba(240,106,63,.18), rgba(152,167,134,.1)); }
.topic-icon { width:54px; height:54px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.15); border-radius:16px; color:var(--signal-soft); }
.topic-icon svg { width:27px; height:27px; fill:none; stroke:currentColor; stroke-width:1.55; }
.topic-card small { color:var(--signal-soft); font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.topic-card h3 { margin:8px 0 10px; font-size:26px; }
.topic-featured h3 { font-family:var(--serif); font-size:48px; font-weight:500; letter-spacing:-.04em; }
.topic-card p { margin:0; color:rgba(243,238,227,.6); font-size:13px; line-height:1.5; }

.about { background:linear-gradient(180deg, #eee7da, var(--paper)); }
.about-shell { width:min(1180px, calc(100% - 80px)); margin:0 auto; display:grid; grid-template-columns:.86fr 1.14fr; gap:100px; align-items:center; }
.about-graphic { position:relative; min-height:610px; display:grid; place-items:center; border-radius:32px; overflow:hidden; color:var(--bone); background:
  radial-gradient(circle at 50% 42%, rgba(240,106,63,.25), transparent 25%),
  radial-gradient(circle at 70% 18%, rgba(152,167,134,.18), transparent 28%),
  #1b1d18; box-shadow:var(--shadow); }
.about-graphic::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size:42px 42px; }
.about-graphic svg { position:relative; z-index:2; width:75%; fill:none; stroke:rgba(255,255,255,.18); stroke-width:1; }
.about-word { position:absolute; z-index:3; font-family:var(--serif); font-size:44px; font-style:italic; letter-spacing:-.04em; }
.word-one { top:68px; left:45px; color:rgba(255,255,255,.82); }
.word-two { top:47%; right:30px; color:var(--signal-soft); transform:rotate(90deg); }
.word-three { bottom:58px; left:64px; color:rgba(255,255,255,.65); }
.about-copy { max-width:620px; }
.about-copy p:not(.eyebrow) { color:rgba(17,18,15,.67); }
.about-copy blockquote { margin:30px 0 16px; padding:22px 0 22px 26px; border-left:2px solid var(--signal); font-family:var(--serif); font-size:24px; font-style:italic; line-height:1.45; letter-spacing:-.02em; }

.listen { padding-top:0; background:var(--paper); }
.listen-shell { width:min(1120px, calc(100% - 80px)); margin:0 auto; padding:56px; display:grid; grid-template-columns:330px 1fr; gap:60px; align-items:center; border:1px solid var(--line-dark); border-radius:32px; background:
  radial-gradient(circle at 20% 40%, rgba(240,106,63,.14), transparent 28%),
  linear-gradient(145deg, #f4ede0, #fbf8f2); box-shadow:var(--shadow); }
.listen-art { position:relative; min-height:280px; display:grid; place-items:center; border-radius:24px; overflow:hidden; color:var(--bone); background:#1a1c17; }
.listen-art::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 50% 45%, rgba(240,106,63,.22), transparent 28%); }
.listen-ring { position:absolute; width:220px; height:220px; border:1px solid rgba(255,255,255,.12); border-radius:50%; box-shadow:0 0 0 34px rgba(255,255,255,.035),0 0 0 68px rgba(255,255,255,.02); }
.listen-art > svg { position:relative; z-index:2; width:110px; height:110px; fill:none; stroke:currentColor; stroke-width:1.5; }
.sound-wave { position:absolute; z-index:3; bottom:26px; left:50%; transform:translateX(-50%); display:flex; align-items:center; gap:4px; height:28px; }
.sound-wave i { width:3px; height:8px; border-radius:999px; background:var(--signal); animation:wave 1s ease-in-out infinite alternate; }
.sound-wave i:nth-child(2n){animation-delay:.15s}.sound-wave i:nth-child(3n){animation-delay:.3s}.sound-wave i:nth-child(4n){animation-delay:.45s}
@keyframes wave { to { height:26px; } }
.listen-copy h2 { max-width:680px; font-size:48px; }
.listen-copy p:not(.eyebrow) { color:rgba(17,18,15,.64); }

.faq { background:
  radial-gradient(circle at 12% 20%, rgba(152,167,134,.14), transparent 24%),
  #efeadf; }
.faq-shell { width:min(1080px, calc(100% - 80px)); margin:0 auto; display:grid; grid-template-columns:360px 1fr; gap:80px; align-items:start; }
.faq-heading { position:sticky; top:30px; }
.faq-heading h2 { font-size:64px; }
.faq-list { border-top:1px solid var(--line-dark); }
.faq-item { border-bottom:1px solid var(--line-dark); }
.faq-item button { width:100%; min-height:92px; display:flex; align-items:center; justify-content:space-between; gap:24px; padding:22px 0; border:0; background:transparent; text-align:left; cursor:pointer; }
.faq-item button span { font-family:var(--serif); font-size:24px; letter-spacing:-.025em; }
.faq-item button svg { flex:0 0 auto; width:22px; height:22px; fill:none; stroke:currentColor; stroke-width:1.4; transition:transform .25s ease; }
.faq-item button[aria-expanded="true"] svg { transform:rotate(45deg); }
.faq-answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .35s ease; }
.faq-answer > p { overflow:hidden; margin:0; color:rgba(17,18,15,.62); }
.faq-item.open .faq-answer { grid-template-rows:1fr; }
.faq-item.open .faq-answer > p { padding:0 60px 26px 0; }

.final-cta { position:relative; min-height:610px; display:grid; place-items:center; overflow:hidden; color:var(--bone); background:#11120f; }
.final-glow { position:absolute; width:720px; height:720px; left:50%; top:52%; transform:translate(-50%,-50%); border-radius:50%; background:radial-gradient(circle, rgba(240,106,63,.18), rgba(152,167,134,.08) 36%, transparent 67%); }
.final-shell { position:relative; z-index:2; width:min(900px, calc(100% - 80px)); padding:100px 0; text-align:center; }
.final-shell h2 { font-size:clamp(58px, 6.3vw, 92px); }
.final-shell > p:not(.eyebrow) { max-width:680px; margin:0 auto; color:rgba(243,238,227,.67); font-size:19px; }
.final-actions { display:flex; justify-content:center; gap:12px; flex-wrap:wrap; margin-top:34px; }

.site-footer { color:var(--bone); background:#0b0c0a; }
.footer-shell { width:min(1240px, calc(100% - 80px)); margin:0 auto; padding:42px 0; display:grid; grid-template-columns:1fr auto; gap:30px; align-items:center; border-top:1px solid rgba(255,255,255,.12); }
.footer-links { display:flex; gap:24px; }
.footer-links a { color:rgba(243,238,227,.62); font-size:12px; transition:color .2s ease; }
.footer-links a:hover { color:var(--bone); }
.footer-meta { grid-column:1/-1; display:flex; justify-content:space-between; padding-top:24px; border-top:1px solid rgba(255,255,255,.08); color:rgba(243,238,227,.38); font-size:10px; letter-spacing:.08em; text-transform:uppercase; }

@media (max-width: 1100px) {
  .desktop-nav, .nav-cta { display:none; }
  .menu-toggle { display:grid; width:44px; height:44px; place-content:center; gap:5px; border:1px solid rgba(255,255,255,.22); border-radius:50%; background:rgba(255,255,255,.04); }
  .menu-toggle span:not(.sr-only) { width:18px; height:1px; background:currentColor; transition:transform .25s ease, opacity .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(6px) rotate(45deg)}
  .menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
  .menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-6px) rotate(-45deg)}
  .mobile-menu { position:fixed; inset:78px 0 auto; padding:30px 32px 38px; display:grid; gap:4px; color:var(--bone); background:rgba(17,18,15,.98); border-top:1px solid rgba(255,255,255,.1); transform:translateY(-120%); opacity:0; pointer-events:none; transition:transform .35s ease, opacity .35s ease; }
  .mobile-menu.open { transform:translateY(0); opacity:1; pointer-events:auto; }
  .mobile-menu a { padding:14px 0; border-bottom:1px solid rgba(255,255,255,.09); font-family:var(--serif); font-size:24px; }
  .hero-shell { grid-template-columns:1fr 320px; gap:40px; }
  .confidence-field { right:-250px; }
  .tax-shell, .so-what-shell, .speaking-shell, .about-shell { gap:55px; }
  .method-bento { grid-template-rows:280px 280px 230px; }
  .method-card-copy h3 { font-size:40px; }
  .pillar-card { padding:23px; }
  .pillar-card h3 { font-size:18px; }
  .definition-grid { grid-template-columns:1fr 50px 1fr; gap:20px; }
  .listen-shell { grid-template-columns:280px 1fr; padding:42px; }
  .faq-shell { grid-template-columns:290px 1fr; gap:55px; }
}

@media (max-width: 860px) {
  .nav-shell, .hero-shell, .tax-shell, .method-heading, .method-bento, .so-what-shell, .definition-heading, .definition-grid, .speaking-shell, .about-shell, .listen-shell, .faq-shell, .final-shell, .footer-shell { width:min(100% - 40px, 720px); }
  .section-pad { padding:92px 0; }
  .hero { min-height:auto; }
  .hero-shell { min-height:auto; grid-template-columns:1fr; padding:150px 0 100px; }
  .hero-copy { max-width:700px; }
  .hero h1 { font-size:clamp(60px, 12vw, 88px); }
  .hero-card { width:min(420px, 100%); margin:0; }
  .confidence-field { width:520px; height:520px; right:-270px; top:90px; opacity:.5; }
  .tax-shell, .so-what-shell, .speaking-shell, .about-shell { grid-template-columns:1fr; }
  .tax-copy, .speaking-copy { max-width:680px; }
  .method-bento { display:grid; grid-template-columns:1fr 1fr; grid-template-rows:auto; }
  .method-core, .pillar-card, .purpose-card { grid-column:auto; grid-row:auto; min-height:290px; }
  .method-core { grid-column:span 2; min-height:480px; }
  .purpose-card { grid-column:span 2; min-height:220px; }
  .definition-grid { grid-template-columns:1fr; }
  .definition-center { min-height:60px; flex-direction:row; }
  .definition-center svg { width:100px; height:38px; transform:rotate(90deg); }
  .definition-center span { writing-mode:horizontal-tb; }
  .topic-stack { grid-template-columns:1fr 1fr; }
  .about-graphic { min-height:520px; }
  .listen-shell { grid-template-columns:1fr; }
  .listen-art { min-height:320px; }
  .faq-shell { grid-template-columns:1fr; }
  .faq-heading { position:static; }
  .faq-heading h2 { font-size:58px; }
}

@media (max-width: 600px) {
  body { font-size:16px; }
  .nav-shell { width:calc(100% - 30px); height:66px; }
  .brand-copy strong { font-size:12px; }
  .brand-copy small { font-size:8px; }
  .brand-mark { width:32px; height:32px; }
  .mobile-menu { inset:66px 0 auto; }
  .hero-shell { width:calc(100% - 36px); padding:128px 0 82px; gap:52px; }
  .hero h1 { font-size:50px; line-height:1.08; }
  .hero h1 br { display:none; }
  .hero-subhead { font-size:17px; }
  .hero-actions { display:grid; }
  .hero-actions .button { width:100%; }
  .confidence-field { width:420px; height:420px; right:-280px; top:80px; }
  .field-label { display:none; }
  .hero-card blockquote { font-size:43px; }
  .scroll-cue { display:none; }
  .section-pad { padding:76px 0; }
  h2 { font-size:45px; line-height:1.09; }
  .lead { font-size:19px; }
  .tax-ledger { padding:10px; }
  .tax-ledger article { grid-template-columns:38px 1fr; min-height:94px; padding:14px 8px; }
  .ledger-icon { width:36px; height:36px; }
  .ledger-bar { grid-column:2; width:100%; }
  .ledger-total { align-items:flex-start; }
  .ledger-total strong { text-align:right; }
  .method-heading { margin-bottom:42px; }
  .method-bento { grid-template-columns:1fr; gap:12px; }
  .method-core, .pillar-card, .purpose-card { grid-column:auto; min-height:300px; }
  .method-core { min-height:440px; padding:28px; }
  .method-card-copy h3 { font-size:36px; }
  .core-orbit { width:340px; height:340px; top:-65px; right:-120px; }
  .pillar-card { min-height:280px; }
  .purpose-card { display:block; padding:28px; }
  .purpose-card > div { display:block; }
  .purpose-card .pillar-icon { margin-bottom:42px; }
  .purpose-card p { margin-top:18px; }
  .so-what::before { font-size:120px; right:-35px; }
  .so-what-tool { padding:18px; }
  .so-what-tool label { font-size:24px; }
  .definition-column { padding:24px; }
  .definition-column article { grid-template-columns:32px 1fr; }
  .topic-stack { grid-template-columns:1fr; }
  .topic-card, .topic-featured { grid-column:auto; min-height:220px; display:block; }
  .topic-icon { margin-bottom:30px; }
  .topic-featured h3 { font-size:40px; }
  .speaking-actions { display:grid; }
  .speaking-actions .button { width:100%; }
  .about-graphic { min-height:470px; }
  .about-word { font-size:34px; }
  .word-two { right:8px; }
  .listen-shell { padding:18px; border-radius:24px; }
  .listen-copy { padding:10px 8px 14px; }
  .listen-copy h2 { font-size:40px; }
  .listen-copy .button { width:100%; }
  .faq-item button { min-height:82px; }
  .faq-item button span { font-size:20px; }
  .faq-item.open .faq-answer > p { padding-right:10px; }
  .final-shell h2 { font-size:50px; }
  .final-actions { display:grid; }
  .final-actions .button { width:100%; }
  .footer-shell { grid-template-columns:1fr; }
  .footer-links { flex-wrap:wrap; }
  .footer-meta { grid-column:auto; display:grid; gap:8px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}

/* Dynamic So What? reflection results */
.tool-button:disabled { cursor:wait; opacity:.78; transform:none; box-shadow:none; }
.tool-response { transition:min-height .3s ease, border-color .3s ease, background .3s ease; }
.tool-response.has-result { min-height:0; border-color:rgba(240,106,63,.32); background:linear-gradient(145deg, rgba(240,106,63,.09), rgba(0,0,0,.16)); }
.tool-response.is-thinking { min-height:110px; }
.tool-response.is-thinking .response-mark { animation:reflectionPulse 1s ease-in-out infinite alternate; }
.response-content { min-width:0; flex:1; }
.response-content > p { margin:2px 0 0; color:rgba(243,238,227,.72); font-size:14px; line-height:1.62; }
.response-content > small { display:block; margin-top:9px; color:rgba(243,238,227,.38); font-size:10px; }
.response-theme { display:inline-flex; margin-bottom:10px; padding:6px 9px; border:1px solid rgba(240,106,63,.28); border-radius:999px; color:var(--signal-soft); background:rgba(240,106,63,.08); font-size:9px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.response-content h3 { margin:0 0 9px; color:var(--bone); font-family:var(--serif); font-size:23px; font-weight:500; line-height:1.18; letter-spacing:-.025em; }
.reflection-echo { margin:15px 0; padding:11px 13px; border-left:2px solid var(--signal); color:rgba(243,238,227,.62); background:rgba(0,0,0,.12); font-family:var(--serif); font-size:13px; font-style:italic; line-height:1.5; }
.reflection-echo span { color:var(--signal-soft); font-family:var(--sans); font-size:8px; font-style:normal; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.reflection-block { margin-top:15px; padding-top:14px; border-top:1px solid rgba(255,255,255,.1); }
.reflection-block > strong { display:block; margin-bottom:8px; color:var(--bone); font-size:10px; letter-spacing:.09em; text-transform:uppercase; }
.reflection-block ul { margin:0; padding:0; display:grid; gap:7px; list-style:none; }
.reflection-block li { position:relative; padding-left:18px; color:rgba(243,238,227,.7); font-size:13px; line-height:1.5; }
.reflection-block li::before { content:""; position:absolute; left:0; top:.62em; width:6px; height:6px; border:1px solid var(--signal-soft); border-radius:50%; }
.reflection-actions li::before { width:8px; height:8px; top:.5em; border:0; border-radius:2px; background:var(--sage); transform:rotate(45deg); }
.tool-response.is-safety { border-color:rgba(255,178,150,.55); background:linear-gradient(145deg, rgba(240,106,63,.15), rgba(0,0,0,.2)); }
.tool-response.is-safety .response-mark { color:var(--bone); background:#9f3828; }
.crisis-links { display:flex; flex-wrap:wrap; gap:9px; margin-top:16px; }
.crisis-links a { display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:10px 15px; border-radius:999px; color:var(--ink); background:var(--signal); font-size:12px; font-weight:800; text-decoration:none; transition:transform .2s ease, box-shadow .2s ease; }
.crisis-links a:hover, .crisis-links a:focus-visible { transform:translateY(-2px); box-shadow:0 9px 24px rgba(240,106,63,.24); outline:none; }
.crisis-note { margin-top:12px !important; color:rgba(243,238,227,.52) !important; font-size:11px !important; }
@keyframes reflectionPulse { from { opacity:.45; transform:scale(.92); } to { opacity:1; transform:scale(1.04); } }

@media (max-width: 560px) {
  .tool-response { padding:17px; gap:11px; }
  .response-mark { width:30px; height:30px; font-size:17px; }
  .response-content h3 { font-size:21px; }
  .reflection-block li { font-size:12.5px; }
}
