:root {
  --ink: #07110f;
  --muted: #6b7773;
  --paper: #f6f5ef;
  --panel: #ffffff;
  --green: #08382d;
  --mint: #b8ffe6;
  --aqua: #50d8ff;
  --gold: #d7a642;
  --line: rgba(7, 17, 15, 0.12);
  --shadow: 0 24px 80px rgba(7, 17, 15, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

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

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 54px);
  background: rgba(246, 245, 239, 0.82);
  border-bottom: 1px solid rgba(7, 17, 15, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(7, 17, 15, 0.14);
  border-radius: 4px;
  padding: 7px 9px;
  background: #111;
  box-shadow: 0 10px 28px rgba(7, 17, 15, 0.12);
}

.nav nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-weight: 800;
}

.nav-button,
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 900;
}

.nav-button,
.primary {
  background: var(--green);
  color: #fff;
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.42);
  color: #fff;
}

.change-intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 80px;
  background:
    radial-gradient(circle at 78% 22%, rgba(80, 216, 255, 0.22), transparent 30%),
    radial-gradient(circle at 20% 76%, rgba(215, 166, 66, 0.22), transparent 28%),
    linear-gradient(135deg, #f6f5ef 0%, #edf2ed 52%, #07110f 52%, #0a2e28 100%);
}

.change-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(7, 17, 15, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 17, 15, 0.12) 1px, transparent 1px);
  background-size: 58px 58px;
}

.change-copy,
.pressure-orbit,
.relief-loop {
  position: relative;
  z-index: 1;
}

.intro-title {
  max-width: 760px;
  color: var(--ink);
}

.innovation-name {
  display: inline-block;
  max-width: 760px;
  margin: 0 0 18px;
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--green);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 950;
  line-height: 1.24;
  box-shadow: 0 18px 50px rgba(7, 17, 15, 0.08);
  backdrop-filter: blur(14px);
}

.change-copy p {
  max-width: 670px;
  color: #2f3d38;
  font-size: 1.18rem;
  font-weight: 650;
}

.pressure-orbit {
  display: grid;
  place-items: center;
  min-height: 520px;
}

.pressure-orbit::before {
  content: "";
  position: absolute;
  width: min(74vw, 460px);
  height: min(74vw, 460px);
  border: 1px solid rgba(184, 255, 230, 0.38);
  border-radius: 50%;
  animation: rotateSlow 24s linear infinite;
}

.pressure-orbit::after {
  content: "";
  position: absolute;
  width: min(48vw, 270px);
  height: min(48vw, 270px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 255, 230, 0.32), rgba(80, 216, 255, 0.1), transparent 70%);
  animation: pulse 3.4s ease-in-out infinite;
}

.pressure-orbit span {
  position: relative;
  width: min(100%, 330px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 13px 16px;
  background: rgba(7, 17, 15, 0.72);
  color: #fff;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 18px 50px rgba(7, 17, 15, 0.2);
  animation: floatSignal 4s ease-in-out infinite;
}

.pressure-orbit span + span {
  margin-top: 10px;
}

.pressure-orbit span:nth-child(2) {
  animation-delay: 0.3s;
}

.pressure-orbit span:nth-child(3) {
  animation-delay: 0.6s;
}

.pressure-orbit span:nth-child(4) {
  animation-delay: 0.9s;
}

.pressure-orbit span:nth-child(5) {
  animation-delay: 1.2s;
}

.relief-loop {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
}

.relief-loop div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.relief-loop strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 1.2rem;
}

.relief-loop p {
  margin: 0;
}

.bridge-section {
  padding: 34px clamp(18px, 5vw, 72px);
  background: var(--green);
}

.bridge-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.bridge-line span {
  height: 1px;
  background: rgba(255, 255, 255, 0.28);
}

.bridge-line p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 900;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 132px clamp(18px, 5vw, 72px) 80px;
  background:
    radial-gradient(circle at 78% 26%, rgba(80, 216, 255, 0.18), transparent 28%),
    radial-gradient(circle at 24% 76%, rgba(184, 255, 230, 0.28), transparent 30%),
    linear-gradient(135deg, #06110f 0%, #0a2e28 58%, #e9efe9 58%, #f6f5ef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.64fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  max-width: 1240px;
  min-height: calc(100vh - 220px);
  margin: 0 auto;
}

.hero-copy {
  max-width: 840px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(28px, 4vw, 44px);
  background: rgba(2, 13, 11, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.tag {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  color: #fff;
  font-size: clamp(2.9rem, 5.8vw, 5.6rem);
  line-height: 0.94;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
}

p {
  color: var(--muted);
  line-height: 1.68;
}

.lead {
  max-width: 700px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.system-card {
  position: relative;
  min-height: 540px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.pulse-ring {
  position: absolute;
  top: 44px;
  right: 38px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(184, 255, 230, 0.5);
  border-radius: 50%;
  animation: pulse 3.2s ease-in-out infinite;
}

.pulse-ring::after {
  content: "";
  position: absolute;
  inset: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint), var(--aqua));
  box-shadow: 0 0 40px rgba(80, 216, 255, 0.45);
}

.signal-map {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 300px);
  margin-top: 210px;
}

.signal-map span,
.loop div {
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(7, 17, 15, 0.48);
  color: #fff;
  font-weight: 900;
}

.system-card p {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

section {
  padding: clamp(68px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.split-section,
.risk-section,
.framework-section,
.benefit-section,
.traction-section,
.contact-section {
  max-width: 1240px;
  margin: 0 auto;
}

.section-title {
  max-width: 850px;
  margin-bottom: 40px;
}

.innovation-grid,
.testimonial-grid,
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.traction-section .reveal {
  opacity: 1;
  transform: none;
}

article,
.benefit-card,
.metric,
.contact-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

article {
  min-height: 300px;
  padding: 26px;
}

.risk-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
}

.risk-copy p {
  max-width: 680px;
  color: #263630;
  font-weight: 650;
}

.risk-engine {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(7, 17, 15, 0.12);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 84% 18%, rgba(80, 216, 255, 0.28), transparent 28%),
    radial-gradient(circle at 18% 80%, rgba(215, 166, 66, 0.26), transparent 24%),
    linear-gradient(135deg, #07110f, #0d3a31 64%, #f6f5ef 64%);
  box-shadow: var(--shadow);
}

.risk-engine::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
}

.risk-axis,
.risk-flow,
.risk-meter,
.risk-result {
  position: relative;
  z-index: 1;
}

.risk-axis {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.risk-flow {
  display: grid;
  gap: 14px;
  width: min(100%, 360px);
  margin-top: 76px;
}

.risk-flow div {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: rgba(7, 17, 15, 0.62);
  color: #fff;
  animation: floatSignal 4s ease-in-out infinite;
}

.risk-flow div:nth-child(2) {
  animation-delay: 0.35s;
}

.risk-flow div:nth-child(3) {
  animation-delay: 0.7s;
}

.risk-flow strong {
  display: block;
  color: var(--mint);
  font-size: 1.5rem;
}

.risk-flow p,
.risk-result {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
}

.risk-meter {
  position: absolute;
  right: 32px;
  bottom: 104px;
  width: min(40%, 230px);
  height: 230px;
  border: 1px solid rgba(184, 255, 230, 0.32);
  border-radius: 50%;
  background: conic-gradient(from -90deg, var(--mint), var(--aqua), var(--gold), rgba(255, 255, 255, 0.12));
  animation: rotateSlow 12s linear infinite;
}

.risk-meter span {
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  background: #0b241f;
  box-shadow: inset 0 0 38px rgba(80, 216, 255, 0.22);
}

.risk-result {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(2, 13, 11, 0.82);
  box-shadow: 0 14px 34px rgba(2, 13, 11, 0.18);
  backdrop-filter: blur(12px);
}

article span {
  display: block;
  margin-bottom: 42px;
  color: var(--gold);
  font-size: 2.4rem;
  font-weight: 950;
}

.framework-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(26px, 6vw, 80px);
  align-items: center;
}

.loop {
  display: grid;
  gap: 12px;
  padding: 26px;
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.loop div {
  background: rgba(255, 255, 255, 0.08);
}

.benefit-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 18px;
}

.benefit-card {
  padding: 34px;
  background: var(--green);
}

.benefit-card h2,
.benefit-card p {
  color: #fff;
}

.metrics {
  grid-template-columns: 1fr;
}

.metric {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.metric strong {
  color: var(--gold);
  font-size: 2.4rem;
}

.metric span {
  color: var(--ink);
  font-weight: 850;
  line-height: 1.45;
}

.testimonial {
  min-height: 390px;
  padding: 22px;
  overflow: hidden;
}

.implementation-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
  gap: 18px;
  margin-bottom: 24px;
  padding: 24px;
  border: 1px solid rgba(8, 56, 45, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(7, 17, 15, 0.1);
}

.implementation-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 1.2rem;
}

.implementation-strip p {
  margin: 0;
  color: #263832;
  font-weight: 700;
}

.implementation-strip div:last-child {
  display: grid;
  gap: 10px;
}

.implementation-strip span {
  display: block;
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(8, 56, 45, 0.08);
  color: var(--green);
  font-weight: 950;
}

.creator-evidence {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  margin: 0 0 24px;
  padding: 26px;
  border: 1px solid rgba(215, 166, 66, 0.28);
  border-radius: 8px;
  background:
    radial-gradient(circle at 92% 12%, rgba(215, 166, 66, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(8, 56, 45, 0.96), rgba(8, 56, 45, 0.88));
  box-shadow: 0 24px 80px rgba(7, 17, 15, 0.14);
}

.creator-evidence h3 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  line-height: 1.12;
}

.creator-evidence h2 {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
  line-height: 1.08;
}

.creator-copy {
  display: grid;
  gap: 14px;
}

.creator-copy .tag {
  color: var(--gold);
}

.creator-copy p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
  line-height: 1.55;
}

.creator-about {
  padding-top: 18px;
  padding-bottom: 18px;
}

.testimonial img {
  width: 96px;
  height: 96px;
  border: 3px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 12px 34px rgba(7, 17, 15, 0.16);
}

.testimonial p,
.testimonial span {
  display: block;
}

.testimonial p {
  margin-top: 26px;
  color: #17211d;
  font-weight: 700;
}

.testimonial span {
  color: var(--muted);
  font-weight: 900;
}

.video-testimonial {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(8, 56, 45, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 60px rgba(7, 17, 15, 0.1);
}

.video-testimonial h3 {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
}

.video-testimonial p {
  color: #263832;
  font-weight: 700;
}

.video-testimonial iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 18px 60px rgba(7, 17, 15, 0.16);
}

.video-note {
  font-size: 0.94rem;
}

.evidence-note {
  max-width: 820px;
  margin: 24px 0 0;
  font-size: 0.94rem;
}

.contact-section {
  margin-bottom: 72px;
  padding: 44px;
  background:
    linear-gradient(135deg, rgba(8, 56, 45, 0.96), rgba(8, 56, 45, 0.86)),
    linear-gradient(90deg, var(--mint), var(--aqua));
}

.contact-section h2,
.contact-section p {
  max-width: 860px;
  color: #fff;
}

.subpage-hero {
  min-height: 72vh;
  padding: 142px clamp(18px, 5vw, 72px) 72px;
  background:
    radial-gradient(circle at 82% 18%, rgba(80, 216, 255, 0.22), transparent 28%),
    linear-gradient(135deg, #f6f5ef 0%, #f6f5ef 56%, #0a2e28 56%, #06110f 100%);
}

.subpage-hero .inner,
.page-section,
.site-footer {
  max-width: 1220px;
  margin: 0 auto;
}

.subpage-hero .inner {
  max-width: 980px;
  border: 1px solid rgba(7, 17, 15, 0.12);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(7, 17, 15, 0.1);
  backdrop-filter: blur(14px);
}

.subpage-hero h1 {
  max-width: 900px;
  color: var(--ink);
  font-size: clamp(2.25rem, 4.2vw, 4.25rem);
  line-height: 1;
}

.subpage-hero p {
  max-width: 760px;
  color: #10201b;
  font-size: 1.05rem;
  font-weight: 700;
}

.page-section {
  padding: 76px clamp(18px, 5vw, 72px);
}

.page-section.wide {
  max-width: none;
}

.page-grid,
.profile-grid,
.photo-grid,
.faq-grid,
.legal-grid {
  display: grid;
  gap: 22px;
}

.page-grid,
.profile-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  align-items: center;
}

.page-panel,
.profile-card,
.faq-list details,
.legal-document,
.photo-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(7, 17, 15, 0.1);
}

.page-panel,
.profile-card,
.legal-document {
  padding: clamp(22px, 4vw, 38px);
}

.page-grid .page-panel h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.4vw, 3.65rem);
  line-height: 1.04;
}

.page-grid .page-panel.dark h2 {
  font-size: clamp(1.9rem, 3.1vw, 3.25rem);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.page-panel.dark {
  background: var(--green);
  color: #fff;
}

.page-panel.dark p,
.page-panel.dark h2,
.page-panel.dark li {
  color: #fff;
}

.page-panel ul,
.legal-document ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.page-panel li,
.legal-document li {
  margin: 10px 0;
  color: #263832;
  font-weight: 650;
  line-height: 1.5;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
}

.profile-card h2 {
  margin-top: 22px;
}

.profile-grid > div:not(.profile-card) h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
  line-height: 1.04;
}

.credential-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.credential-strip div {
  min-height: 132px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(8, 56, 45, 0.08);
}

.credential-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
}

.photo-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-card {
  overflow: hidden;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-card p {
  margin: 0;
  padding: 16px;
  color: #263832;
  font-weight: 800;
}

.faq-grid {
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
}

.faq-grid .page-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.2vw, 2.25rem);
  line-height: 1.12;
}

.faq-grid .page-panel p {
  font-size: 1rem;
  line-height: 1.6;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #263832;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.58;
}

.legal-grid {
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 1fr);
  align-items: start;
}

.legal-document h2 {
  margin-top: 34px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.legal-document h2:first-child {
  margin-top: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(160px, 0.7fr));
  gap: 28px;
  padding: 52px clamp(18px, 5vw, 72px) 34px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 168px;
  margin-bottom: 18px;
  border: 1px solid rgba(7, 17, 15, 0.14);
  border-radius: 4px;
  padding: 8px 10px;
  background: #111;
  box-shadow: 0 10px 28px rgba(7, 17, 15, 0.1);
}

.site-footer h3 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  color: #263832;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.change-intro .reveal {
  opacity: 1;
  transform: none;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

@keyframes pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }

  100% {
    transform: scale(0.92);
    opacity: 0.6;
  }
}

@keyframes floatSignal {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 880px) {
  .nav {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav nav {
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 6px;
  }

  .change-intro,
  .hero {
    padding-top: 56px;
  }

  .change-intro,
  .hero-grid,
  .risk-section,
  .framework-section,
  .benefit-section,
  .innovation-grid,
  .testimonial-grid,
  .relief-loop,
  .implementation-strip,
  .video-testimonial,
  .page-grid,
  .profile-grid,
  .photo-grid,
  .faq-grid,
  .legal-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .pressure-orbit {
    min-height: 430px;
  }

  h1 {
    font-size: 4rem;
  }

  .system-card {
    min-height: 470px;
  }

  .risk-engine {
    min-height: 560px;
  }

  .subpage-hero {
    min-height: auto;
    padding-top: 64px;
  }

  .credential-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .nav nav a:not(.nav-button) {
    display: inline-flex;
  }

  h1 {
    font-size: 2.75rem;
  }

  .subpage-hero h1 {
    font-size: 2.2rem;
  }

  .subpage-hero p {
    font-size: 1rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .faq-list summary {
    padding: 16px;
    font-size: 0.96rem;
  }

  .faq-list details p {
    padding: 0 16px 16px;
    font-size: 0.94rem;
  }

  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .site-footer h3,
  .site-footer p,
  .site-footer a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .site-footer img {
    max-width: min(168px, 100%);
  }

  .hero-actions a {
    width: 100%;
  }

  .risk-meter {
    right: 24px;
    bottom: 118px;
    width: 190px;
    height: 190px;
  }
}

/* Premium NIV presentation layer */
:root {
  --paper: #f3f1e8;
  --panel: rgba(255, 255, 255, 0.9);
  --green: #04382f;
  --ink: #06100e;
  --muted: #5f6f69;
  --line: rgba(6, 16, 14, 0.1);
  --shadow: 0 30px 90px rgba(6, 16, 14, 0.16);
}

body {
  background:
    linear-gradient(90deg, rgba(6, 16, 14, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(6, 16, 14, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
}

.nav {
  top: 14px;
  right: clamp(12px, 3vw, 34px);
  left: clamp(12px, 3vw, 34px);
  border: 1px solid rgba(6, 16, 14, 0.1);
  border-radius: 14px;
  background: rgba(250, 249, 243, 0.9);
  box-shadow: 0 18px 55px rgba(6, 16, 14, 0.08);
}

.nav nav {
  gap: clamp(12px, 2vw, 28px);
}

.nav nav a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav nav a:hover {
  color: var(--green);
  transform: translateY(-1px);
}

.brand {
  border-radius: 10px;
  background: #141414;
}

.brand img {
  width: 168px;
}

.nav-button,
.primary {
  background: linear-gradient(135deg, #04382f, #0f5b4c);
  box-shadow: 0 14px 34px rgba(4, 56, 47, 0.24);
}

.secondary {
  border-color: rgba(184, 255, 230, 0.44);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.change-intro {
  min-height: 112vh;
  padding-top: 154px;
  background:
    radial-gradient(circle at 72% 20%, rgba(80, 216, 255, 0.28), transparent 28%),
    radial-gradient(circle at 16% 82%, rgba(215, 166, 66, 0.2), transparent 30%),
    linear-gradient(135deg, #06100e 0%, #08251f 48%, #eef2ed 48.2%, #f8f5ea 100%);
}

.change-intro::before {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(184, 255, 230, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 230, 0.16) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 86%);
}

.change-copy {
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(184, 255, 230, 0.16);
  border-radius: 18px;
  background: rgba(3, 20, 17, 0.56);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
}

.change-copy .tag,
.hero-copy .tag {
  color: #efc66a;
}

.intro-title {
  color: #fff;
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  line-height: 0.9;
}

.change-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.innovation-name {
  border: 1px solid rgba(239, 198, 106, 0.36);
  border-left: 5px solid #efc66a;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.16);
}

.pressure-orbit {
  isolation: isolate;
}

.pressure-orbit::before {
  border-color: rgba(4, 56, 47, 0.22);
  box-shadow:
    inset 0 0 80px rgba(80, 216, 255, 0.12),
    0 0 80px rgba(80, 216, 255, 0.1);
}

.pressure-orbit span {
  border-color: rgba(4, 56, 47, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
  box-shadow: 0 18px 44px rgba(6, 16, 14, 0.12);
}

.relief-loop {
  margin-top: 8px;
}

.relief-loop div,
article,
.benefit-card,
.metric,
.testimonial,
.implementation-strip,
.video-testimonial,
.page-panel,
.profile-card,
.faq-list details,
.legal-document,
.photo-card {
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(6, 16, 14, 0.12);
}

.relief-loop div {
  border-color: rgba(184, 255, 230, 0.2);
  background: rgba(255, 255, 255, 0.92);
}

.bridge-section {
  padding: 42px clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, #04382f, #0a5b4c 52%, #04382f);
}

.bridge-line p {
  font-size: clamp(1.25rem, 3vw, 2.05rem);
}

.hero {
  min-height: auto;
  padding-top: clamp(76px, 10vw, 126px);
  background:
    radial-gradient(circle at 74% 22%, rgba(184, 255, 230, 0.22), transparent 30%),
    linear-gradient(135deg, #07110f 0%, #0b2d26 60%, #153f35 100%);
}

.hero-grid {
  min-height: 70vh;
}

.hero-copy {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-copy h1 {
  font-size: clamp(3rem, 5.7vw, 6.25rem);
}

.system-card,
.risk-engine {
  border-radius: 22px;
}

.system-card {
  background:
    radial-gradient(circle at 64% 18%, rgba(80, 216, 255, 0.26), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

article {
  position: relative;
  overflow: hidden;
}

article::after,
.metric::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--mint), var(--aqua));
  opacity: 0.9;
}

.risk-section,
.framework-section,
.benefit-section,
.traction-section {
  padding-top: clamp(82px, 10vw, 140px);
  padding-bottom: clamp(82px, 10vw, 140px);
}

.risk-copy h2,
.section-title h2,
.framework-copy h2,
.benefit-card h2 {
  max-width: 900px;
}

.risk-engine {
  box-shadow:
    0 34px 100px rgba(6, 16, 14, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.benefit-card,
.contact-section {
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 18%, rgba(80, 216, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #04382f, #0a574a);
}

.testimonial {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
}

.testimonial img {
  width: 112px;
  height: 112px;
}

.subpage-hero .inner {
  border-radius: 22px;
}

@media (max-width: 880px) {
  .nav {
    position: sticky;
    top: 0;
    right: 0;
    left: 0;
    border-radius: 0;
  }

  .brand img {
    width: 142px;
  }

  .change-intro {
    min-height: auto;
    padding-top: 42px;
    background:
      radial-gradient(circle at 72% 20%, rgba(80, 216, 255, 0.22), transparent 30%),
      linear-gradient(180deg, #06100e 0%, #08251f 58%, #f8f5ea 58.2%, #f8f5ea 100%);
  }

  .change-intro::before {
    mask-image: none;
  }

  .intro-title,
  h1 {
    font-size: clamp(2.55rem, 12vw, 4.2rem);
    line-height: 0.96;
  }

  .change-copy {
    padding: 24px;
  }

  .hero-grid {
    min-height: auto;
  }

  .creator-evidence {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}

@media (max-width: 520px) {
  .nav nav {
    gap: 10px;
  }

  .nav nav a {
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .innovation-name {
    padding: 12px 14px;
    font-size: 1rem;
  }

  .relief-loop div,
  article,
  .implementation-strip,
  .video-testimonial,
  .contact-section {
    padding: 20px;
  }
}
