:root {
  --ink: #17241d;
  --muted: #5f6d61;
  --deep: #092417;
  --deep-2: #123722;
  --herb: #2f6f3f;
  --leaf: #6d9f56;
  --paper: #f4e8b2;
  --paper-soft: #fff8db;
  --cream: #fffdf2;
  --gold: #d6b760;
  --amber: #b98d2e;
  --line: rgba(23, 36, 29, 0.14);
  --shadow: 0 28px 80px rgba(29, 42, 32, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.nowrap {
  white-space: nowrap;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.16;
  mix-blend-mode: multiply;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(47, 111, 63, 0.1), transparent 18%),
    linear-gradient(90deg, rgba(23, 36, 29, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(23, 36, 29, 0.04) 1px, transparent 1px);
  background-size: 480px 480px, 5px 5px, 7px 7px;
}

.cursor-orb {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 183, 96, 0.18), transparent 68%);
  pointer-events: none;
  z-index: 2;
  transform: translate3d(-50%, -50%, 0);
}

.scroll-thread {
  display: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 22px;
  right: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  color: var(--cream);
  mix-blend-mode: difference;
}

.brand img {
  height: 35px;
  width: auto;
}

.site-header nav {
  display: flex;
  gap: 18px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(23, 36, 29, 0.14);
  border-radius: 999px;
  background: rgba(255, 253, 242, 0.78);
  color: var(--ink);
  mix-blend-mode: normal;
  backdrop-filter: blur(12px);
}

.control-button {
  min-height: 32px;
  padding: 7px 11px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
}

.control-button.is-active,
.control-button[aria-pressed="true"] {
  border-color: var(--deep);
  background: var(--deep);
  color: var(--cream);
}

.section {
  position: relative;
  min-height: 100vh;
  padding: clamp(96px, 12vw, 150px) clamp(22px, 6vw, 92px);
}

.dark-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(109, 159, 86, 0.18), transparent 34%),
    linear-gradient(135deg, var(--deep) 0%, #06140f 62%, #1e2d18 100%);
  background-size: 140% 140%, 100% 100%;
  color: var(--cream);
  animation: darkBreath 8s ease-in-out infinite alternate;
}

.dark-section::before {
  content: "";
  position: absolute;
  inset: -18%;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 32% 34%, rgba(244, 232, 178, 0.11), transparent 28%),
    radial-gradient(circle at 72% 64%, rgba(109, 159, 86, 0.12), transparent 34%);
  opacity: 0.42;
  transform: scale(0.96);
  animation: ambientBreath 7.5s ease-in-out infinite alternate;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-flow {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.section-flow span {
  position: absolute;
  display: block;
  width: clamp(210px, 24vw, 440px);
  height: clamp(72px, 8vw, 132px);
  border: 1px solid rgba(47, 111, 63, 0.14);
  border-radius: 100% 4px 100% 4px;
  opacity: 0.34;
  transform: rotate(-18deg);
  will-change: transform, opacity;
}

.section-flow span::after {
  content: "";
  position: absolute;
  inset: 50% 10% auto 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 141, 46, 0.38), transparent);
}

.paper-section,
.platform-section,
.final-section,
.relationship-section {
  background:
    linear-gradient(135deg, rgba(255, 253, 242, 0.82), rgba(244, 232, 178, 0.82)),
    repeating-linear-gradient(0deg, rgba(23, 36, 29, 0.03), rgba(23, 36, 29, 0.03) 1px, transparent 1px, transparent 7px);
}

.section-kicker,
.eyebrow {
  margin: 0 0 16px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dark-section .section-kicker,
.dark-section .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h2 {
  max-width: 1050px;
  font-size: clamp(32px, 4.6vw, 66px);
  line-height: 1.02;
}

h3 {
  font-size: clamp(23px, 2.5vw, 34px);
}

p {
  max-width: 760px;
  font-size: clamp(16px, 1.28vw, 19px);
  margin: 22px 0 0;
}

.float-text {
  transform: translate3d(0, 0, 0);
  will-change: transform, opacity, filter;
}

.story-cover {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding-bottom: clamp(58px, 7vw, 92px);
}

.story-cover::after {
  content: "";
  position: absolute;
  inset: auto clamp(24px, 5vw, 76px) clamp(26px, 4vw, 54px) auto;
  width: 1px;
  height: min(28vh, 190px);
  background: linear-gradient(180deg, rgba(214, 183, 96, 0), rgba(214, 183, 96, 0.82));
  opacity: 0.8;
}

.story-cover-inner {
  position: relative;
  z-index: 3;
  max-width: 1040px;
}

.story-mark {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(18px, 8vw, 112px);
  width: clamp(190px, 24vw, 360px);
  opacity: 0.11;
  transform: translateY(-50%);
  filter: saturate(0.86);
}

.story-title {
  max-width: 980px;
  color: var(--cream);
  font-size: clamp(48px, 7vw, 104px);
  line-height: 0.9;
}

.story-title span {
  display: block;
}

.story-lead {
  max-width: 720px;
  margin-top: 24px;
  padding: 18px 0 18px 24px;
  border-left: 3px solid rgba(109, 159, 86, 0.95);
  color: #a9d883;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 600;
  line-height: 1.72;
  text-shadow: 0 18px 46px rgba(109, 159, 86, 0.18);
}

.story-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  max-width: 720px;
  margin-top: 16px;
  padding: 14px 0 14px 24px;
  border-left: 3px solid rgba(109, 159, 86, 0.95);
  color: #a9d883;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: linear-gradient(90deg, rgba(109, 159, 86, 0.1), transparent 72%);
}

.market-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.market-copy h2 {
  max-width: 900px;
}

.market-copy p {
  max-width: 760px;
}

.market-board {
  display: grid;
  gap: 14px;
}

.market-stat,
.market-signal,
.friction-list li {
  border: 1px solid rgba(23, 36, 29, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 242, 0.62);
  box-shadow: 0 22px 60px rgba(29, 42, 32, 0.1);
}

.market-stat {
  padding: clamp(20px, 2.4vw, 28px);
}

.market-stat span,
.market-signal span,
.friction-list span {
  display: block;
  color: var(--amber);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-stat strong {
  display: block;
  margin-top: 10px;
  color: var(--deep);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.94;
}

.market-stat p,
.market-signal p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.market-signal {
  padding: 22px;
  background: rgba(47, 111, 63, 0.08);
}

.friction-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.friction-list li {
  padding: 20px 22px;
  background: rgba(255, 253, 242, 0.72);
}

.friction-list strong {
  display: block;
  margin-top: 7px;
  color: var(--deep);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.38;
}

.hero {
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 1180px;
}

.hero-title {
  max-width: 1120px;
  font-size: clamp(48px, 7.2vw, 110px);
  line-height: 0.9;
}

.hero-title span {
  display: inline-block;
  margin-right: 0.08em;
}

.hero-line {
  margin-top: 34px;
  color: var(--gold);
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.06;
}

.hero-copy {
  max-width: 720px;
  color: rgba(255, 253, 242, 0.82);
  font-size: clamp(16px, 1.25vw, 20px);
}

.leaf-field span {
  position: absolute;
  width: 110px;
  height: 42px;
  border-radius: 100% 4px 100% 4px;
  border: 1px solid rgba(244, 232, 178, 0.22);
  transform: rotate(-28deg);
  opacity: 0.34;
  animation: leafBreath 6.8s ease-in-out infinite alternate;
}

.leaf-field span:nth-child(1) {
  top: 18%;
  right: 12%;
}

.leaf-field span:nth-child(2) {
  top: 38%;
  right: 30%;
  width: 150px;
}

.leaf-field span:nth-child(3) {
  bottom: 18%;
  right: 18%;
  width: 210px;
}

.leaf-field span:nth-child(4) {
  top: 12%;
  left: 56%;
  width: 84px;
}

.leaf-field span:nth-child(5) {
  bottom: 12%;
  left: 8%;
  width: 130px;
}

.split,
.trigger-grid,
.flywheel-layout,
.moat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.84fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.live-platform-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 1.18fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
  overflow: hidden;
}

.live-platform-copy {
  align-self: center;
}

.live-platform-copy h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.35vw, 50px);
  line-height: 1.05;
}

.website-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 16px;
}

.screen-card {
  overflow: hidden;
  border: 1px solid rgba(23, 36, 29, 0.18);
  border-radius: 8px;
  background: rgba(255, 253, 242, 0.92);
  box-shadow: 0 28px 82px rgba(29, 42, 32, 0.18);
}

.screen-card.primary {
  grid-column: 1 / -1;
  z-index: 3;
}

.screen-card:nth-child(2) {
  z-index: 2;
}

.screen-card:nth-child(3) {
  z-index: 1;
}

.screen-card img {
  width: 100%;
  height: 210px;
  object-fit: contain;
  object-position: top center;
  background: #fff8d6;
}

.screen-card.primary img {
  height: 320px;
}

.screen-card figcaption {
  margin: 0;
  padding: 14px 18px 17px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-orbit {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
}

.brand-orbit img {
  position: absolute;
  width: min(54%, 260px);
  border-radius: 54px;
  z-index: 2;
  box-shadow: 0 34px 90px rgba(55, 75, 39, 0.22);
  animation: logoBreath 5.6s ease-in-out infinite alternate;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(47, 111, 63, 0.2);
  border-radius: 50%;
}

.ring-one {
  width: min(92%, 460px);
  aspect-ratio: 1;
  animation: ringBreath 6.4s ease-in-out infinite alternate;
}

.ring-two {
  width: min(66%, 320px);
  aspect-ratio: 1;
  border-style: dashed;
  animation: ringBreath 5.8s ease-in-out infinite alternate-reverse;
}

.orbit-leaf {
  position: absolute;
  width: 118px;
  height: 42px;
  border: 1px solid rgba(47, 111, 63, 0.32);
  border-radius: 100% 4px 100% 4px;
  transform: rotate(-28deg);
  animation: leafBreath 6s ease-in-out infinite alternate;
}

.orbit-leaf.l1 {
  top: 10%;
  right: 14%;
}

.orbit-leaf.l2 {
  bottom: 16%;
  left: 10%;
  width: 150px;
}

.orbit-leaf.l3 {
  top: 52%;
  right: 3%;
  width: 90px;
}

.bridge-section {
  background: var(--cream);
}

.bridge-map {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
  align-items: center;
}

.map-card,
.instinct-lanes article,
.stacked-layers article,
.media-card,
.quote-card {
  background: rgba(255, 253, 242, 0.86);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.map-card {
  min-height: 260px;
  padding: 28px;
}

.map-card span,
.instinct-lanes span,
.stacked-layers span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.map-card strong {
  display: block;
  margin-top: 18px;
  color: var(--herb);
  font-family: var(--display);
  font-size: 32px;
  line-height: 1;
}

.map-card p {
  font-size: 16px;
}

.bridge-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--herb), transparent);
  transform-origin: left;
}

.pulse-body {
  position: relative;
  min-height: 560px;
}

.body-line {
  position: absolute;
  inset: 8% 18%;
  border: 1px solid rgba(244, 232, 178, 0.28);
  border-radius: 48% 52% 44% 56% / 44% 48% 52% 56%;
}

.acu-point {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(214, 183, 96, 0.44);
}

.p1 {
  top: 18%;
  left: 52%;
}

.p2 {
  top: 34%;
  left: 42%;
}

.p3 {
  top: 48%;
  left: 60%;
}

.p4 {
  top: 64%;
  left: 44%;
}

.p5 {
  top: 76%;
  left: 57%;
}

.two-column {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: clamp(44px, 8vw, 120px);
  align-items: start;
}

.relationship-section {
  overflow: hidden;
}

.relationship-section h2 {
  max-width: 660px;
  font-size: clamp(42px, 4.4vw, 62px);
}

.relationship-section h2 span {
  display: block;
}

.relationship-section::before {
  content: "";
  position: absolute;
  inset: 8% 0 0 48%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(110deg, rgba(255, 253, 242, 0), rgba(255, 253, 242, 0.72) 34%, rgba(214, 183, 96, 0.18)),
    repeating-linear-gradient(90deg, rgba(47, 111, 63, 0.06) 0 1px, transparent 1px 18px);
  clip-path: polygon(12% 0, 100% 8%, 92% 100%, 0 88%);
  opacity: 0.62;
}

.relationship-photo {
  position: absolute;
  z-index: 0;
  right: clamp(18px, 5vw, 72px);
  bottom: clamp(28px, 7vw, 94px);
  width: min(27vw, 390px);
  min-width: 250px;
  opacity: 0.16;
  transform: rotate(-5deg);
  pointer-events: none;
  filter: saturate(0.82) sepia(0.1);
}

.relationship-photo img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(47, 111, 63, 0.2);
  border-radius: 8px;
  box-shadow: 0 34px 90px rgba(47, 111, 63, 0.16);
}

.relationship-flow span:nth-child(1) {
  top: 12%;
  right: 18%;
}

.relationship-flow span:nth-child(2) {
  right: -6%;
  bottom: 24%;
  width: clamp(280px, 33vw, 520px);
  transform: rotate(-33deg);
}

.relationship-flow span:nth-child(3) {
  left: 6%;
  bottom: 12%;
  width: clamp(180px, 20vw, 360px);
  opacity: 0.22;
  transform: rotate(18deg);
}

.copy-stack {
  border-left: 1px solid rgba(23, 36, 29, 0.16);
  padding-left: clamp(28px, 5vw, 72px);
}

.instinct-section {
  overflow: hidden;
  background:
    linear-gradient(132deg, rgba(255, 253, 242, 0.95), rgba(244, 232, 178, 0.72)),
    repeating-linear-gradient(0deg, rgba(23, 36, 29, 0.025), rgba(23, 36, 29, 0.025) 1px, transparent 1px, transparent 7px);
}

.instinct-section h2 {
  max-width: 1280px;
  font-size: clamp(48px, 6.3vw, 96px);
  line-height: 0.95;
}

.instinct-current {
  position: absolute;
  z-index: 0;
  right: -12vw;
  top: 16%;
  width: min(68vw, 960px);
  aspect-ratio: 1.95;
  border: 1px solid rgba(47, 111, 63, 0.12);
  border-radius: 50%;
  transform: rotate(-11deg);
  pointer-events: none;
  opacity: 0.72;
}

.instinct-current::before,
.instinct-current::after {
  content: "";
  position: absolute;
  inset: 14%;
  border: 1px dashed rgba(47, 111, 63, 0.14);
  border-radius: 50%;
}

.instinct-current::after {
  inset: 30%;
  border-style: solid;
  opacity: 0.72;
}

.instinct-flow span:nth-child(1) {
  top: 9%;
  right: 10%;
  transform: rotate(-24deg);
}

.instinct-flow span:nth-child(2) {
  top: 41%;
  left: 14%;
  width: clamp(230px, 25vw, 420px);
  transform: rotate(11deg);
}

.instinct-flow span:nth-child(3) {
  bottom: 12%;
  right: 18%;
  width: clamp(280px, 30vw, 500px);
  transform: rotate(-8deg);
}

.instinct-flow span:nth-child(4) {
  bottom: 20%;
  left: -8%;
  opacity: 0.18;
  transform: rotate(25deg);
}

.instinct-lanes {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 24px;
  margin-top: clamp(44px, 5vw, 72px);
}

.instinct-lanes article {
  min-height: 316px;
  padding: clamp(28px, 3vw, 42px);
  backdrop-filter: blur(8px);
}

.instinct-lanes h3 {
  color: var(--herb);
  margin-top: 16px;
  font-size: clamp(29px, 3.5vw, 48px);
}

.flywheel-section {
  overflow: hidden;
}

.flywheel-section h2 span {
  display: block;
}

.flywheel-current {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.52;
}

.flywheel-current span {
  position: absolute;
  display: block;
  width: 46vw;
  max-width: 760px;
  min-width: 280px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(214, 183, 96, 0.44), transparent);
  transform: rotate(-21deg);
  transform-origin: center;
}

.flywheel-current span:nth-child(1) {
  top: 22%;
  left: -10%;
}

.flywheel-current span:nth-child(2) {
  top: 52%;
  right: -14%;
  transform: rotate(18deg);
}

.flywheel-current span:nth-child(3) {
  bottom: 18%;
  left: 18%;
  transform: rotate(-8deg);
  opacity: 0.58;
}

.wheel {
  position: relative;
  width: min(78vw, 600px);
  aspect-ratio: 1;
  margin-inline: auto;
  border: 1px solid rgba(244, 232, 178, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(244, 232, 178, 0.12) 0 12%, transparent 13%),
    radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(244, 232, 178, 0.05) 39% 41%, transparent 42%),
    radial-gradient(circle at 50% 50%, transparent 0 64%, rgba(109, 159, 86, 0.12) 65%, transparent 68%);
  box-shadow:
    inset 0 0 80px rgba(244, 232, 178, 0.05),
    0 34px 120px rgba(6, 20, 15, 0.18);
  transform: translate3d(0, 0, 0);
}

.wheel::before,
.wheel::after {
  content: "";
  position: absolute;
  inset: 17%;
  border: 1px dashed rgba(244, 232, 178, 0.2);
  border-radius: 50%;
  animation: ringBreath 6.4s ease-in-out infinite alternate;
}

.wheel::after {
  inset: 33%;
  border-style: solid;
  opacity: 0.7;
  animation-direction: alternate-reverse;
}

.wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(128px, 15vw, 176px);
  height: clamp(128px, 15vw, 176px);
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 253, 242, 0.96), rgba(244, 232, 178, 0.92));
  color: var(--deep);
  font-family: var(--display);
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
  text-align: center;
  box-shadow: 0 28px 72px rgba(6, 20, 15, 0.18);
  animation: logoBreath 5.8s ease-in-out infinite alternate;
}

.wheel-node {
  position: absolute;
  width: clamp(108px, 11vw, 138px);
  min-height: clamp(62px, 6.6vw, 78px);
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(244, 232, 178, 0.28);
  border-radius: 8px;
  background: rgba(255, 253, 242, 0.08);
  color: var(--cream);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  backdrop-filter: blur(12px);
  animation: nodeBreath 5.6s ease-in-out infinite alternate;
}

.n1 { top: 6%; left: 50%; transform: translate(-50%, -50%) rotate(-2deg); }
.n2 { top: 27%; left: 86%; transform: translate(-50%, -50%) rotate(5deg); }
.n3 { top: 73%; left: 86%; transform: translate(-50%, -50%) rotate(-4deg); }
.n4 { top: 94%; left: 50%; transform: translate(-50%, -50%) rotate(3deg); }
.n5 { top: 73%; left: 14%; transform: translate(-50%, -50%) rotate(5deg); }
.n6 { top: 27%; left: 14%; transform: translate(-50%, -50%) rotate(-5deg); }

.wide-copy {
  max-width: 930px;
}

.platform-section {
  overflow: hidden;
}

.platform-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 49%;
  top: 10%;
  width: min(40vw, 620px);
  height: 76%;
  border-left: 1px solid rgba(47, 111, 63, 0.12);
  border-right: 1px solid rgba(47, 111, 63, 0.08);
  transform: skewX(-8deg);
  background:
    linear-gradient(90deg, rgba(47, 111, 63, 0.045), transparent 40%),
    repeating-linear-gradient(0deg, rgba(185, 141, 46, 0.06) 0 1px, transparent 1px 26px);
  opacity: 0.58;
}

.platform-flow span {
  border-color: rgba(47, 111, 63, 0.18);
  height: clamp(38px, 4.4vw, 68px);
  opacity: 0.18;
}

.platform-flow span:nth-child(1) {
  top: 19%;
  right: 8%;
  width: clamp(260px, 30vw, 540px);
  opacity: 0.16;
  transform: rotate(-17deg);
}

.platform-flow span:nth-child(2) {
  top: 48%;
  right: 20%;
  opacity: 0.12;
  transform: rotate(8deg);
}

.platform-flow span:nth-child(3) {
  bottom: 12%;
  left: 9%;
  width: clamp(220px, 28vw, 480px);
  opacity: 0.14;
  transform: rotate(-31deg);
}

.stacked-layers {
  max-width: 1060px;
  margin-top: 56px;
}

.stacked-layers article {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(220px, 330px) 1fr;
  gap: 26px;
  align-items: center;
  padding: 24px 28px;
  margin-top: -1px;
  box-shadow: none;
}

.stacked-layers article.future {
  background: rgba(214, 183, 96, 0.16);
}

.stacked-layers h3 {
  color: var(--herb);
  font-size: clamp(23px, 2.6vw, 34px);
}

.stacked-layers p {
  margin: 0;
  font-size: 16px;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 42px;
  max-width: 1120px;
}

.metrics div {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(23, 36, 29, 0.12);
  border-radius: 8px;
  background: var(--paper-soft);
}

.metrics strong {
  display: block;
  color: var(--herb);
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.9;
}

.metrics span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 58px;
}

.media-card,
.quote-card {
  overflow: hidden;
}

.media-card.tall {
  grid-row: auto;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.media-card.tall img {
  height: 360px;
  object-position: center center;
}

.brand-proof {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 760px;
  background:
    radial-gradient(circle at 50% 42%, rgba(109, 159, 86, 0.15), transparent 42%),
    var(--paper-soft);
}

.brand-proof img {
  width: min(62%, 320px);
  height: auto;
  border-radius: 58px;
  box-shadow: 0 30px 80px rgba(47, 111, 63, 0.18);
}

.media-card figcaption,
.quote-card figcaption {
  padding: 15px 18px 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--deep-2);
  color: var(--cream);
}

.quote-card blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(21px, 1.55vw, 24px);
  line-height: 1.12;
}

.quote-card figcaption {
  padding: 28px 0 0;
  color: var(--gold);
}

.moat-copy p {
  color: rgba(255, 253, 242, 0.82);
}

.system-map {
  position: relative;
  min-height: 560px;
  border: 1px solid rgba(244, 232, 178, 0.2);
  border-radius: 50%;
}

.system-map span,
.system-map strong {
  position: absolute;
  display: block;
  border-radius: 8px;
  border: 1px solid rgba(244, 232, 178, 0.24);
  background: rgba(255, 253, 242, 0.07);
  backdrop-filter: blur(12px);
}

.system-map span {
  padding: 12px 14px;
  color: rgba(255, 253, 242, 0.84);
  font-size: 13px;
  font-weight: 700;
}

.system-map span:nth-child(1) { top: 10%; left: 44%; }
.system-map span:nth-child(2) { top: 27%; right: 6%; }
.system-map span:nth-child(3) { bottom: 29%; right: 8%; }
.system-map span:nth-child(4) { bottom: 12%; left: 42%; }
.system-map span:nth-child(5) { bottom: 29%; left: 6%; }
.system-map span:nth-child(6) { top: 27%; left: 8%; }

.system-map strong {
  top: 50%;
  left: 50%;
  width: 260px;
  padding: 24px;
  transform: translate(-50%, -50%);
  color: var(--deep);
  background: var(--paper);
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
  text-align: center;
}

.final-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.78fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 20, 15, 0.1), rgba(6, 20, 15, 0.88)),
    linear-gradient(135deg, #092417 0%, #0e2e1e 52%, #1f391c 100%);
  background-size: 100% 100%, 130% 130%;
  color: var(--cream);
  animation: finalBreath 9s ease-in-out infinite alternate;
}

.final-section::before {
  content: "";
  position: absolute;
  inset: auto -6% -18% -6%;
  height: 46%;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(244, 232, 178, 0), rgba(244, 232, 178, 0.16)),
    repeating-linear-gradient(90deg, rgba(244, 232, 178, 0.08) 0 1px, transparent 1px 16px);
  transform: skewY(-2deg);
}

.final-landscape {
  position: relative;
  min-height: min(58vw, 620px);
}

.final-path {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.final-path path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.main-path {
  stroke: rgba(244, 232, 178, 0.82);
  stroke-width: 3;
  filter: drop-shadow(0 0 16px rgba(214, 183, 96, 0.18));
}

.root-path {
  stroke: rgba(109, 159, 86, 0.38);
  stroke-width: 1.4;
}

.final-leaf {
  position: absolute;
  width: 128px;
  height: 42px;
  border: 1px solid rgba(244, 232, 178, 0.24);
  border-radius: 100% 4px 100% 4px;
  transform: rotate(-28deg);
  animation: leafBreath 7s ease-in-out infinite alternate;
}

.final-leaf.leaf-a {
  left: 12%;
  top: 25%;
}

.final-leaf.leaf-b {
  right: 22%;
  top: 15%;
  width: 88px;
  animation-delay: -2s;
}

.final-leaf.leaf-c {
  right: 9%;
  bottom: 22%;
  width: 158px;
  animation-delay: -4s;
}

.final-logo {
  position: absolute;
  right: 3%;
  top: 4%;
  width: min(22vw, 168px);
  border-radius: 36px;
  box-shadow: 0 34px 95px rgba(244, 232, 178, 0.18);
  animation: logoBreath 5.8s ease-in-out infinite alternate;
}

.final-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.final-line {
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 1px solid rgba(244, 232, 178, 0.26);
}

.final-line h2 {
  max-width: 780px;
  color: var(--cream);
  font-size: clamp(31px, 4vw, 64px);
  line-height: 1;
}

.final-line p {
  margin-top: 10px;
  color: rgba(244, 232, 178, 0.88);
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 600;
}

@keyframes finalBreath {
  0% {
    background-position: center, 0% 48%;
  }
  100% {
    background-position: center, 38% 52%;
  }
}

@keyframes darkBreath {
  0% {
    background-position: 0% 48%, center;
  }
  100% {
    background-position: 38% 52%, center;
  }
}

@keyframes ambientBreath {
  0% {
    opacity: 0.32;
    transform: scale(0.96) translate3d(-1%, 1%, 0);
  }
  100% {
    opacity: 0.58;
    transform: scale(1.04) translate3d(1%, -1%, 0);
  }
}

@keyframes logoBreath {
  0% {
    transform: translate3d(0, 4px, 0) scale(0.985);
    filter: saturate(0.96);
  }
  100% {
    transform: translate3d(0, -6px, 0) scale(1.018);
    filter: saturate(1.05);
  }
}

@keyframes ringBreath {
  0% {
    transform: scale(0.94);
    opacity: 0.36;
  }
  100% {
    transform: scale(1.04);
    opacity: 0.72;
  }
}

@keyframes leafBreath {
  0% {
    opacity: 0.2;
    transform: rotate(-28deg) scale(0.94);
  }
  100% {
    opacity: 0.42;
    transform: rotate(-22deg) scale(1.05);
  }
}

@keyframes nodeBreath {
  0% {
    border-color: rgba(244, 232, 178, 0.18);
    background-color: rgba(255, 253, 242, 0.055);
  }
  100% {
    border-color: rgba(244, 232, 178, 0.38);
    background-color: rgba(255, 253, 242, 0.11);
  }
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .site-header {
    left: 16px;
    right: 16px;
  }

  .brand img {
    height: 28px;
  }

  .section {
    min-height: auto;
    padding-block: 92px;
  }

  .split,
  .live-platform-section,
  .trigger-grid,
  .flywheel-layout,
  .moat-grid,
  .two-column,
  .final-section {
    grid-template-columns: 1fr;
  }

  .bridge-map {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bridge-line {
    height: 56px;
    width: 1px;
    margin-inline: auto;
    background: linear-gradient(180deg, transparent, var(--herb), transparent);
  }

  .instinct-lanes,
  .metrics,
  .proof-wall {
    grid-template-columns: 1fr;
  }

  .media-card.tall {
    grid-row: auto;
  }

  .media-card.tall img,
  .media-card img,
  .media-card video {
    height: 420px;
  }

  .stacked-layers article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .website-showcase {
    min-height: auto;
    display: grid;
    gap: 18px;
  }

  .screen-card,
  .screen-card.primary,
  .screen-card:nth-child(2),
  .screen-card:nth-child(3) {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .screen-card img,
  .screen-card.primary img {
    height: 260px;
  }

  .system-map {
    transform: scale(0.82);
    transform-origin: center;
  }

  .final-landscape {
    order: 2;
    min-height: 420px;
  }

  .final-copy {
    order: 1;
  }

  .final-logo {
    right: 6%;
    top: 2%;
    width: 124px;
  }
}

@media (max-width: 620px) {
  body {
    background: var(--cream);
  }

  .cursor-orb {
    display: none;
  }

  .scroll-thread {
    position: fixed;
    display: block;
    z-index: 19;
    top: 78px;
    left: 14px;
    bottom: 28px;
    width: 1px;
    pointer-events: none;
    background: rgba(214, 183, 96, 0.16);
  }

  .scroll-thread span {
    position: absolute;
    inset: 0;
    display: block;
    transform: scaleY(0);
    transform-origin: top;
    background: linear-gradient(180deg, rgba(214, 183, 96, 0), rgba(214, 183, 96, 0.86), rgba(109, 159, 86, 0.18));
    box-shadow: 0 0 18px rgba(214, 183, 96, 0.28);
  }

  .section {
    overflow-x: clip;
    padding: 90px 24px 86px;
  }

  .site-header {
    top: 12px;
    left: 12px;
    right: 12px;
    padding: 8px 4px;
  }

  .header-controls {
    gap: 5px;
  }

  .control-button {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 10px;
  }

  .hero {
    min-height: 92vh;
  }

  .story-cover {
    min-height: 100svh;
    align-items: end;
    padding: 112px 24px 70px;
  }

  .story-cover::after {
    right: 24px;
    bottom: 22px;
    height: 124px;
  }

  .story-mark {
    top: 32%;
    right: -34px;
    width: 220px;
    opacity: 0.1;
  }

  .story-title {
    max-width: 330px;
    font-size: clamp(42px, 13vw, 58px);
    line-height: 0.94;
  }

  .story-lead {
    max-width: 318px;
    font-size: 16px;
    line-height: 1.72;
  }

  .story-footer {
    display: grid;
    gap: 14px;
    margin-top: 16px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .market-section {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .market-board {
    gap: 12px;
  }

  .market-stat,
  .market-signal,
  .friction-list li {
    border-radius: 8px;
  }

  .market-stat {
    padding: 19px;
  }

  .market-stat strong {
    font-size: 34px;
  }

  .market-signal {
    padding: 19px;
  }

  .friction-list {
    gap: 11px;
  }

  .friction-list li {
    padding: 18px;
  }

  .hero-title {
    max-width: 318px;
    font-size: clamp(42px, 14vw, 60px);
    line-height: 0.95;
  }

  h2 {
    font-size: clamp(29px, 8.4vw, 38px);
    line-height: 1.08;
  }

  .hero-line {
    font-size: 26px;
  }

  .hero-copy {
    font-size: 17px;
    line-height: 1.65;
  }

  .live-platform-copy h2 {
    font-size: clamp(30px, 8.2vw, 37px);
    line-height: 1.07;
  }

  .relationship-section h2 {
    font-size: clamp(31px, 9.1vw, 38px);
    line-height: 1.08;
  }

  .metrics {
    gap: 12px;
  }

  .metrics div {
    min-height: 104px;
  }

  .metrics strong {
    font-size: 42px;
  }

  .screen-card img,
  .screen-card.primary img {
    height: 214px;
  }

  .screen-card,
  .map-card,
  .instinct-lanes article,
  .stacked-layers article,
  .media-card,
  .quote-card {
    will-change: transform, opacity;
  }

  .wheel {
    width: min(88vw, 360px);
    margin-top: 20px;
  }

  .wheel-center {
    width: 112px;
    height: 112px;
    font-size: 21px;
  }

  .wheel-node {
    width: 106px;
    min-height: 62px;
    font-size: 11px;
    padding: 9px;
  }

  .relationship-photo {
    right: -20px;
    bottom: 38px;
    width: 190px;
    min-width: 0;
    opacity: 0.1;
  }

  .relationship-section::before {
    inset: 22% -16% 0 22%;
    opacity: 0.42;
  }

  .section-flow span {
    width: 230px;
    height: 76px;
    opacity: 0.2;
  }

  .instinct-section h2 {
    font-size: clamp(40px, 11.4vw, 58px);
  }

  .instinct-current {
    right: -46vw;
    top: 24%;
    width: 112vw;
    opacity: 0.36;
  }

  .platform-section::before {
    left: 24%;
    top: 20%;
    width: 82vw;
    height: 70%;
    opacity: 0.36;
  }

  .final-section {
    gap: 18px;
  }

  .final-line h2 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.06;
  }

  .final-line p {
    font-size: 16px;
  }

  .final-landscape {
    min-height: 320px;
  }

  .final-logo {
    width: 102px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
