:root {
  --ink: #071614;
  --cream: #f3f0e8;
  --paper: #faf8f3;
  --teal: #55d6b3;
  --teal-deep: #0a6a5c;
  --coral: #ff775f;
  --acid: #dafa75;
  --line: rgba(7, 22, 20, 0.16);
  --pointer-x: 50vw;
  --pointer-y: 50vh;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}
button, input, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
::selection { background: var(--coral); color: var(--ink); }

.skip-link {
  background: var(--acid);
  left: 16px;
  padding: 12px 16px;
  position: fixed;
  top: -80px;
  z-index: 500;
}
.skip-link:focus { top: 12px; }

.scroll-progress {
  background: var(--coral);
  height: 4px;
  left: 0;
  position: fixed;
  top: 0;
  width: 0;
  z-index: 200;
}
.pointer-glow {
  background: radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(85, 214, 179, 0.1), transparent 26rem);
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: 80;
}
.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(243, 240, 232, 0.82);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 82px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(22px, 4vw, 68px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
.brand { align-items: center; display: inline-flex; gap: 12px; }
.brand-mark {
  align-items: center;
  background: var(--ink);
  border-radius: 50%;
  color: var(--acid);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-style: italic;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.brand-name { display: grid; gap: 2px; }
.brand strong { font-size: 17px; letter-spacing: 0.14em; }
.brand small { font-size: 9px; letter-spacing: 0.07em; text-transform: uppercase; }
.site-nav { align-items: center; display: flex; gap: clamp(18px, 2.2vw, 34px); }
.site-nav > a:not(.nav-cta) { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; position: relative; }
.site-nav > a:not(.nav-cta)::after {
  background: var(--ink);
  bottom: -7px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms ease;
  width: 100%;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-cta, .button {
  align-items: center;
  display: inline-flex;
  justify-content: center;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}
.nav-cta {
  background: var(--ink);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  font-weight: 700;
  gap: 16px;
  padding: 13px 18px;
}
.nav-cta:hover, .button:hover, .contact-orb:hover { transform: translateY(-3px); }
.menu-toggle { background: transparent; border: 0; cursor: pointer; display: none; padding: 12px; }
.menu-toggle span { background: var(--ink); display: block; height: 2px; margin: 6px 0; transition: transform 220ms ease; width: 26px; }

.hero {
  background: var(--cream);
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.78fr);
  min-height: 820px;
  overflow: hidden;
  padding: 158px clamp(22px, 6.6vw, 112px) 52px;
  position: relative;
}
.hero-grid {
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 74px 74px;
  inset: 82px 0 0;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  opacity: 0.28;
  position: absolute;
}
.hero-orbit { border: 1px solid rgba(7, 22, 20, 0.15); border-radius: 50%; position: absolute; }
.orbit-one { height: 520px; right: -180px; top: 80px; width: 520px; }
.orbit-two {
  animation: slow-spin 24s linear infinite;
  border-color: transparent var(--coral) transparent var(--teal);
  height: 360px;
  right: -100px;
  top: 160px;
  width: 360px;
}
.hero-copy { align-self: center; max-width: 800px; padding-right: 6vw; position: relative; z-index: 2; }
.eyebrow, .kicker {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.pulse-dot { background: var(--coral); border-radius: 50%; height: 8px; position: relative; width: 8px; }
.pulse-dot::after { animation: pulse 1.8s ease-out infinite; border: 1px solid var(--coral); border-radius: 50%; content: ""; inset: -5px; position: absolute; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(60px, 7.2vw, 124px);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.85;
  margin: 34px 0;
  max-width: 890px;
}
.hero h1 em { color: var(--teal-deep); display: block; font-weight: 400; transform: translateX(0.24em); }
.hero-lede { font-size: clamp(17px, 1.35vw, 22px); line-height: 1.5; margin: 0; max-width: 680px; }
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 30px; margin-top: 42px; }
.button { border-radius: 999px; font-size: 13px; font-weight: 800; gap: 32px; padding: 18px 24px; }
.button-primary { background: var(--coral); box-shadow: 0 12px 30px rgba(255, 119, 95, 0.25); }
.button-primary:hover { box-shadow: 0 18px 36px rgba(255, 119, 95, 0.35); }
.text-link { border-bottom: 1px solid var(--ink); font-size: 12px; font-weight: 800; padding: 8px 0; }

.flow-stage {
  align-self: center;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  box-shadow: 0 48px 90px rgba(7, 22, 20, 0.25);
  color: var(--paper);
  min-height: 520px;
  overflow: hidden;
  padding: 30px;
  position: relative;
  transform: rotate(2deg);
  z-index: 3;
}
#network-canvas { inset: 0; opacity: 0.46; position: absolute; width: 100%; height: 100%; }
.stage-heading, .stage-footer {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: 0.15em;
  position: relative;
  z-index: 1;
}
.live-pill { align-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; display: inline-flex; gap: 8px; padding: 8px 10px; }
.live-pill i { animation: pulse-live 1.8s infinite; background: var(--acid); border-radius: 50%; height: 6px; width: 6px; }
.flow-line { background: rgba(255,255,255,.15); bottom: 74px; left: 56px; position: absolute; top: 93px; width: 1px; }
.flow-signal {
  animation: signal-run 5s ease-in-out infinite;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255,119,95,.13), 0 0 28px var(--coral);
  height: 9px;
  left: -4px;
  position: absolute;
  top: 0;
  width: 9px;
}
.flow-list { display: grid; gap: 21px; list-style: none; margin: 44px 0 32px; padding: 0 0 0 8px; position: relative; z-index: 1; }
.flow-list li { align-items: center; display: grid; gap: 24px; grid-template-columns: 38px 1fr; }
.flow-list li > span {
  align-items: center;
  background: var(--ink);
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  color: var(--teal);
  display: flex;
  font-size: 9px;
  height: 38px;
  justify-content: center;
  width: 38px;
}
.flow-list div { border-bottom: 1px solid rgba(255,255,255,.12); display: grid; gap: 4px; padding-bottom: 16px; }
.flow-list strong { font-family: Georgia, "Times New Roman", serif; font-size: 26px; font-weight: 400; }
.flow-list small { color: rgba(255,255,255,.58); font-size: 11px; }
.stage-footer { color: rgba(255,255,255,.5); justify-content: flex-start; gap: 12px; }
.stage-footer b { color: var(--coral); }
.hero-footnote {
  align-items: flex-end;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  grid-column: 1 / -1;
  justify-content: space-between;
  letter-spacing: .12em;
  padding-top: 34px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
.motion-ribbon { background: var(--acid); border-bottom: 1px solid var(--ink); border-top: 1px solid var(--ink); overflow: hidden; transform: rotate(-1.5deg) scale(1.02); }
.motion-ribbon > div { animation: ribbon 24s linear infinite; display: flex; gap: 38px; padding: 16px 0; white-space: nowrap; width: max-content; }
.motion-ribbon span { font-size: 14px; font-weight: 900; letter-spacing: .16em; }
.motion-ribbon i { color: var(--coral); font-style: normal; }

.section-pad { padding: 130px clamp(22px, 6.6vw, 112px); }
.section-intro { max-width: 960px; }
.kicker { color: var(--teal-deep); margin: 0 0 22px; }
.section-intro h2, .process-sticky h2, .principles-copy h2, .faq-heading h2, .contact-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: .96;
  margin: 0;
}
.audience-section { background: var(--paper); }
.audience-switcher { margin-top: 72px; }
.audience-tabs { border-bottom: 1px solid var(--line); display: flex; gap: 42px; }
.audience-tabs button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(23px, 2vw, 32px);
  opacity: .32;
  padding: 0 0 20px;
  position: relative;
}
.audience-tabs button::after { background: var(--coral); bottom: -2px; content: ""; height: 4px; left: 0; position: absolute; transform: scaleX(0); transition: transform 240ms ease; width: 100%; }
.audience-tabs button.is-active { opacity: 1; }
.audience-tabs button.is-active::after { transform: scaleX(1); }
.audience-panel { display: grid; gap: clamp(40px, 8vw, 140px); grid-template-columns: .85fr 1.15fr; padding-top: 62px; }
.audience-panel.is-changing { animation: panel-in 460ms ease both; }
.audience-statement span { color: var(--coral); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.audience-statement h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 4.4vw, 70px); font-weight: 400; line-height: 1; margin: 22px 0 0; }
.benefit-list article { border-top: 1px solid var(--line); display: grid; gap: 22px; grid-template-columns: 40px 1fr; padding: 24px 0 28px; }
.benefit-list article > span { color: var(--teal-deep); font-size: 11px; font-weight: 800; }
.benefit-list h4 { font-family: Georgia, "Times New Roman", serif; font-size: 25px; font-weight: 400; margin: 0 0 8px; }
.benefit-list p, .split-intro > p, .process-sticky > p, .principles-copy > p, .faq-heading > p { color: rgba(7,22,20,.68); font-size: 15px; line-height: 1.65; margin: 0; }

.service-section { background: var(--cream); }
.split-intro { align-items: end; display: grid; gap: 9vw; grid-template-columns: 1.45fr .55fr; max-width: none; }
.split-intro > p { padding-bottom: 8px; }
.service-grid { display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); margin-top: 82px; }
.service-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 50%;
  border: 1px solid var(--ink);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  min-height: 440px;
  overflow: hidden;
  padding: 28px;
  position: relative;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transition: transform 130ms ease-out, box-shadow 260ms ease;
}
.service-card::after { background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255,255,255,.22), transparent 36%); content: ""; inset: 0; pointer-events: none; position: absolute; }
.service-card:hover { box-shadow: 0 28px 55px rgba(7,22,20,.16); }
.card-wide { grid-column: span 2; }
.coral { background: var(--coral); }
.ink { background: var(--ink); color: white; }
.cream { background: var(--paper); }
.teal { background: var(--teal); }
.card-index { font-size: 10px; font-weight: 900; letter-spacing: .16em; position: relative; z-index: 2; }
.card-content { margin-top: auto; max-width: 600px; position: relative; z-index: 2; }
.card-content h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(32px, 3.4vw, 56px); font-weight: 400; letter-spacing: -.04em; line-height: 1; margin: 0 0 16px; }
.service-card:not(.card-wide) .card-content h3 { font-size: clamp(30px, 2.5vw, 42px); }
.card-content p { font-size: 14px; line-height: 1.55; margin: 0; max-width: 470px; }
.plan-bars { align-items: flex-end; display: flex; gap: 10px; height: 110px; left: 45%; position: absolute; right: 7%; top: 32px; }
.plan-bars span { animation: bars 2.4s ease-in-out infinite alternate; background: var(--ink); border-radius: 999px 999px 0 0; width: 25%; }
.plan-bars span:nth-child(1) { height: 28%; }
.plan-bars span:nth-child(2) { animation-delay: -.7s; height: 52%; }
.plan-bars span:nth-child(3) { animation-delay: -1.2s; height: 76%; }
.plan-bars span:nth-child(4) { animation-delay: -1.7s; height: 100%; }
.connection-art { align-items: center; display: flex; justify-content: center; margin-top: 66px; }
.connection-art span { align-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 50%; display: flex; font-size: 11px; font-weight: 800; height: 55px; justify-content: center; width: 55px; }
.connection-art i { background: rgba(255,255,255,.3); height: 1px; position: relative; width: 32px; }
.connection-art i::after { animation: node-run 2.2s infinite ease-in-out; background: var(--acid); border-radius: 50%; content: ""; height: 6px; left: 0; position: absolute; top: -3px; width: 6px; }
.ach-mark { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; margin-top: 60px; padding-bottom: 18px; }
.ach-mark span { font-family: Georgia, "Times New Roman", serif; font-size: 64px; letter-spacing: -.06em; }
.ach-mark i { align-items: center; background: var(--teal); border-radius: 50%; display: flex; font-style: normal; height: 44px; justify-content: center; width: 44px; }
.notice-stack { height: 160px; position: absolute; right: 40px; top: 42px; width: 260px; }
.notice-stack span { align-items: center; background: var(--paper); border: 1px solid var(--ink); border-radius: 10px; display: flex; font-size: 9px; font-weight: 900; height: 92px; justify-content: center; letter-spacing: .12em; position: absolute; right: 0; width: 160px; }
.notice-stack span:nth-child(1) { right: 84px; top: 0; transform: rotate(-8deg); }
.notice-stack span:nth-child(2) { right: 42px; top: 24px; transform: rotate(-1deg); }
.notice-stack span:nth-child(3) { right: 0; top: 48px; transform: rotate(7deg); }

.process-section { background: var(--ink); color: white; display: grid; gap: 10vw; grid-template-columns: .75fr 1.25fr; }
.process-sticky { align-self: start; position: sticky; top: 130px; }
.kicker.light { color: var(--teal); }
.process-sticky h2, .principles-copy h2 { font-size: clamp(54px, 6vw, 96px); }
.process-sticky > p, .principles-copy > p { color: rgba(255,255,255,.62); margin-top: 28px; max-width: 430px; }
.process-sticky > a { border-bottom: 1px solid rgba(255,255,255,.45); display: inline-flex; font-size: 12px; font-weight: 800; justify-content: space-between; margin-top: 42px; padding: 12px 0; width: 190px; }
.process-list article { align-items: start; border-top: 1px solid rgba(255,255,255,.18); display: grid; gap: 26px; grid-template-columns: 50px 1fr 34px; min-height: 215px; padding: 34px 0; }
.process-number { color: var(--teal); font-size: 11px; font-weight: 900; }
.process-list h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 3vw, 46px); font-weight: 400; margin: 0 0 14px; }
.process-list p { color: rgba(255,255,255,.56); font-size: 14px; line-height: 1.6; margin: 0; max-width: 560px; }
.process-list i { color: var(--coral); font-size: 25px; font-style: normal; transition: transform 240ms ease; }
.process-list article:hover i { transform: translate(6px, 6px); }

.explorer-section { background: var(--paper); }
.explorer { background: var(--cream); border: 1px solid var(--ink); border-radius: 28px; display: grid; gap: 7vw; grid-template-columns: .85fr 1.15fr; margin-top: 76px; overflow: hidden; padding: clamp(28px, 5vw, 72px); position: relative; }
.explorer::before { background: var(--acid); border-radius: 50%; content: ""; filter: blur(45px); height: 240px; opacity: .35; position: absolute; right: -60px; top: -100px; width: 240px; }
.range-heading { align-items: end; display: flex; justify-content: space-between; }
.range-heading label, .explorer-controls legend { font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.range-heading output { font-family: Georgia, "Times New Roman", serif; font-size: clamp(35px, 4vw, 58px); letter-spacing: -.05em; }
input[type="range"] { appearance: none; background: linear-gradient(to right, var(--coral) 17.55%, rgba(7,22,20,.15) 17.55%); border-radius: 999px; height: 7px; margin: 34px 0 52px; width: 100%; }
input[type="range"]::-webkit-slider-thumb { appearance: none; background: var(--ink); border: 5px solid var(--paper); border-radius: 50%; box-shadow: 0 0 0 1px var(--ink); cursor: grab; height: 27px; width: 27px; }
input[type="range"]::-moz-range-thumb { background: var(--ink); border: 5px solid var(--paper); border-radius: 50%; box-shadow: 0 0 0 1px var(--ink); cursor: grab; height: 17px; width: 17px; }
.explorer-controls fieldset { border: 0; margin: 0; padding: 0; }
.term-buttons { display: flex; gap: 8px; margin-top: 16px; }
.term-buttons button { background: transparent; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; font-size: 11px; font-weight: 800; padding: 12px 15px; }
.term-buttons button.is-active { background: var(--ink); color: white; }
.explorer-note { color: rgba(7,22,20,.55); font-size: 11px; line-height: 1.55; margin: 38px 0 0; }
.structure-visual { align-self: center; position: relative; }
.structure-total { align-items: end; display: flex; justify-content: space-between; }
.structure-total span { font-size: 11px; font-weight: 800; text-transform: uppercase; }
.structure-total strong { font-family: Georgia, "Times New Roman", serif; font-size: 28px; font-weight: 400; }
.structure-track { border: 1px solid var(--ink); display: grid; grid-template-columns: 1fr 3fr; height: 150px; margin: 20px 0 28px; overflow: hidden; }
.structure-track > div { align-items: center; display: flex; justify-content: center; position: relative; }
.down-block { background: var(--coral); border-right: 1px solid var(--ink); }
.finance-block { background: var(--teal); }
.structure-track span { font-family: Georgia, "Times New Roman", serif; font-size: 42px; }
.finance-block i { animation: finance-scan 3s linear infinite; background: rgba(255,255,255,.65); bottom: 0; position: absolute; top: 0; width: 1px; }
.structure-breakdown { display: grid; gap: 10px; }
.structure-breakdown > div { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 12px 0; }
.structure-breakdown span { color: rgba(7,22,20,.6); font-size: 12px; }
.structure-breakdown strong { font-size: 13px; }

.principles-section { background: var(--teal-deep); color: white; display: grid; grid-template-columns: 1fr 1fr; min-height: 760px; overflow: hidden; position: relative; }
.principles-copy { align-self: center; }
.principle-wheel { min-height: 650px; position: relative; }
.wheel-ring { border: 1px solid rgba(255,255,255,.28); border-radius: 50%; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); }
.ring-a { animation: ring-spin 24s linear infinite; border-color: rgba(255,255,255,.28) transparent rgba(255,255,255,.28) transparent; height: 500px; width: 500px; }
.ring-b { animation: slow-spin-reverse 16s linear infinite; border-color: var(--acid) transparent var(--coral) transparent; height: 360px; width: 360px; }
.wheel-core { align-items: center; background: var(--cream); border-radius: 50%; color: var(--ink); display: flex; font-family: Georgia, "Times New Roman", serif; font-size: 52px; height: 190px; justify-content: center; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 190px; }
.wheel-word { font-size: 10px; font-weight: 900; letter-spacing: .15em; position: absolute; }
.word-one { left: 18%; top: 22%; }
.word-two { right: 9%; top: 48%; }
.word-three { bottom: 18%; left: 27%; }

.faq-section { background: var(--cream); display: grid; gap: 10vw; grid-template-columns: .7fr 1.3fr; }
.faq-heading { align-self: start; position: sticky; top: 130px; }
.faq-heading > p:last-child { margin-top: 24px; max-width: 300px; }
.faq-list article { border-top: 1px solid var(--ink); }
.faq-list article:last-child { border-bottom: 1px solid var(--ink); }
.faq-list button { align-items: center; background: transparent; border: 0; cursor: pointer; display: flex; font-family: Georgia, "Times New Roman", serif; font-size: clamp(22px, 2.2vw, 34px); justify-content: space-between; padding: 28px 0; text-align: left; width: 100%; }
.faq-list button i { align-items: center; border: 1px solid var(--ink); border-radius: 50%; display: flex; flex: 0 0 auto; font-family: Arial, sans-serif; font-size: 21px; font-style: normal; height: 42px; justify-content: center; transition: transform 260ms ease, background 260ms ease; width: 42px; }
.faq-list article.is-open button i { background: var(--coral); transform: rotate(45deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 360ms ease; }
.faq-answer p { color: rgba(7,22,20,.65); font-size: 15px; line-height: 1.7; margin: 0; max-width: 650px; overflow: hidden; }
.faq-list article.is-open .faq-answer { grid-template-rows: 1fr; }
.faq-list article.is-open .faq-answer p { padding-bottom: 32px; }

.contact-band { align-items: center; background: var(--coral); display: flex; justify-content: space-between; min-height: 520px; position: relative; }
.contact-band::before, .contact-band::after { border: 1px solid rgba(7,22,20,.2); border-radius: 50%; content: ""; position: absolute; right: 11%; top: 50%; transform: translateY(-50%); }
.contact-band::before { height: 430px; width: 430px; }
.contact-band::after { height: 340px; width: 340px; }
.contact-copy { max-width: 780px; position: relative; z-index: 2; }
.contact-copy .kicker { color: var(--ink); }
.contact-orb { align-items: center; background: var(--ink); border-radius: 50%; color: white; display: flex; flex: 0 0 auto; height: 230px; justify-content: center; position: relative; transition: transform 260ms ease, box-shadow 260ms ease; width: 230px; z-index: 2; }
.contact-orb:hover { box-shadow: 0 30px 50px rgba(7,22,20,.25); }
.contact-orb span { font-size: 11px; font-weight: 900; letter-spacing: .13em; line-height: 1.5; }
.contact-orb i { color: var(--acid); font-size: 26px; font-style: normal; position: absolute; right: 48px; top: 46px; }

.site-footer { background: var(--ink); color: white; display: grid; gap: 56px; grid-template-columns: 1.3fr 1fr .7fr; padding: 70px clamp(22px, 6.6vw, 112px) 34px; }
.footer-brand .brand-mark { background: var(--acid); color: var(--ink); }
.footer-contact, .footer-meta { color: rgba(255,255,255,.65); display: grid; font-size: 12px; gap: 9px; }
.footer-contact a { color: var(--teal); }
.footer-meta { text-align: right; }
.footer-disclaimer { border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 10px; grid-column: 1 / -1; line-height: 1.6; margin: 0; padding-top: 24px; }

[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.75,.25,1); }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@keyframes pulse { 0% { opacity: 1; transform: scale(.5); } 100% { opacity: 0; transform: scale(1.8); } }
@keyframes pulse-live { 50% { box-shadow: 0 0 0 6px rgba(218,250,117,.12); } }
@keyframes slow-spin { to { transform: rotate(360deg); } }
@keyframes ring-spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes slow-spin-reverse { from { transform: translate(-50%, -50%) rotate(360deg); } to { transform: translate(-50%, -50%) rotate(0); } }
@keyframes signal-run { 0%,8% { top: 0; } 28% { top: 25%; } 52% { top: 50%; } 76% { top: 75%; } 92%,100% { top: 100%; } }
@keyframes ribbon { to { transform: translateX(-50%); } }
@keyframes panel-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bars { to { transform: scaleY(.72); transform-origin: bottom; } }
@keyframes node-run { 50%,100% { left: calc(100% - 6px); } }
@keyframes finance-scan { from { left: 0; } to { left: 100%; } }

@media (max-width: 1050px) {
  .site-nav { background: var(--cream); border-bottom: 1px solid var(--ink); display: none; flex-direction: column; inset: 82px 0 auto; padding: 32px; position: fixed; }
  .site-nav.is-open { display: flex; }
  .menu-toggle { display: block; }
  .menu-toggle.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns: 1fr; padding-top: 142px; }
  .hero-copy { padding-right: 0; }
  .flow-stage { margin-top: 70px; transform: rotate(1deg); }
  .hero-footnote { margin-top: 28px; }
  .split-intro { grid-template-columns: 1fr; }
  .split-intro > p { max-width: 600px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .card-wide { grid-column: span 2; }
  .process-section { gap: 70px; grid-template-columns: 1fr; }
  .process-sticky { position: static; }
  .explorer { grid-template-columns: 1fr; }
  .principles-section { grid-template-columns: 1fr; }
  .principle-wheel { min-height: 600px; }
  .faq-section { grid-template-columns: 1fr; }
  .faq-heading { position: static; }
}

@media (max-width: 700px) {
  .site-header { height: 72px; }
  .brand small { display: none; }
  .site-nav { inset: 72px 0 auto; }
  .section-pad { padding-bottom: 90px; padding-top: 90px; }
  .hero { min-height: auto; padding: 124px 22px 42px; }
  .hero h1 { font-size: clamp(56px, 18vw, 86px); }
  .hero h1 em { transform: none; }
  .hero-lede { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .flow-stage { margin-top: 55px; min-height: 500px; padding: 24px; }
  .flow-line { left: 50px; }
  .hero-footnote { align-items: flex-start; flex-direction: column; gap: 8px; }
  .audience-tabs { gap: 22px; }
  .audience-panel { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .card-wide { grid-column: span 1; }
  .service-card { min-height: 390px; }
  .plan-bars { left: 50%; }
  .notice-stack { opacity: .66; right: -20px; transform: scale(.76); }
  .process-list article { grid-template-columns: 38px 1fr; }
  .process-list i { display: none; }
  .term-buttons { align-items: stretch; flex-direction: column; }
  .structure-track { height: 110px; }
  .structure-breakdown > div { align-items: flex-start; flex-direction: column; gap: 5px; }
  .principle-wheel { min-height: 480px; }
  .ring-a { height: 360px; width: 360px; }
  .ring-b { height: 260px; width: 260px; }
  .wheel-core { font-size: 42px; height: 150px; width: 150px; }
  .contact-band { align-items: flex-start; flex-direction: column; gap: 55px; }
  .contact-band::before, .contact-band::after { display: none; }
  .contact-orb { align-self: flex-end; height: 190px; width: 190px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-meta { text-align: left; }
}

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

:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
