:root {
  --ink-950: #050b09;
  --ink-900: #07110f;
  --ink-850: #0a1714;
  --ink-800: #0d1d19;
  --ink-700: #153129;
  --paper: #f4f7f5;
  --paper-2: #e9efec;
  --white: #ffffff;
  --text: #edf5f1;
  --muted: #a8bab3;
  --muted-dark: #53645e;
  --accent: #b6f37c;
  --accent-strong: #8fe858;
  --aqua: #45d8b2;
  --gold: #d4ae62;
  --danger: #ff8e7d;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(7, 17, 15, 0.12);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 18px 50px rgba(7, 17, 15, 0.1);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink-950);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--ink-900);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--accent);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
.btn,
.nav-toggle,
summary {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ink-950);
  background: var(--accent);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--ink-950);
  background: var(--accent);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-sm {
  padding: 72px 0;
}

.section-light {
  color: var(--ink-900);
  background: var(--paper);
}

.section-white {
  color: var(--ink-900);
  background: var(--white);
}

.section-ink {
  color: var(--text);
  background: var(--ink-900);
}

.section-deep {
  color: var(--text);
  background: var(--ink-950);
}

.section-grid {
  background-image:
    linear-gradient(rgba(182, 243, 124, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 243, 124, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-light .eyebrow,
.section-white .eyebrow {
  color: #3e7b27;
}

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

h1,
h2,
h3,
h4 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 920px;
  margin-bottom: 26px;
  font-size: clamp(2.85rem, 7vw, 6.35rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 4.8vw, 4.4rem);
  font-weight: 740;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  font-weight: 720;
}

h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 760;
}

.lede {
  max-width: 790px;
  color: var(--muted);
  font-size: clamp(1.12rem, 2vw, 1.34rem);
  line-height: 1.65;
}

.section-light .lede,
.section-white .lede {
  color: var(--muted-dark);
}

.text-accent {
  color: var(--accent);
}

.text-gradient {
  color: transparent;
  background: linear-gradient(105deg, var(--accent) 12%, var(--aqua) 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.text-muted {
  color: var(--muted);
}

.kicker {
  color: var(--muted);
  font-size: 0.92rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 11, 9, 0.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
}

.brand-mark {
  width: 44px;
  height: 44px;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-name {
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.brand-sub {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 11px 12px;
  border-radius: 10px;
  color: #d8e4df;
  font-size: 0.9rem;
  font-weight: 680;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.075);
}

.header-cta {
  padding: 11px 17px !important;
  color: var(--ink-950) !important;
  background: var(--accent) !important;
}

.header-cta:hover {
  background: var(--accent-strong) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  content: "";
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span {
  opacity: 0;
}

.nav-open .nav-toggle::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 98px 0 86px;
  background:
    radial-gradient(circle at 78% 28%, rgba(69, 216, 178, 0.17), transparent 34%),
    radial-gradient(circle at 56% 80%, rgba(182, 243, 124, 0.1), transparent 30%),
    linear-gradient(135deg, #050b09 0%, #07110f 58%, #0b1a16 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(182, 243, 124, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(182, 243, 124, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to right, black, transparent 78%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.24fr) minmax(330px, 0.76fr);
  gap: 64px;
}

.hero-copy h1 {
  font-size: clamp(3.1rem, 6.4vw, 6.4rem);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-primary {
  color: var(--ink-950);
  background: var(--accent);
  box-shadow: 0 14px 36px rgba(182, 243, 124, 0.18);
}

.btn-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 18px 40px rgba(182, 243, 124, 0.24);
}

.btn-secondary {
  color: var(--white);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.btn-secondary:hover {
  border-color: rgba(182, 243, 124, 0.5);
  background: rgba(182, 243, 124, 0.07);
}

.btn-dark {
  color: var(--white);
  background: var(--ink-900);
}

.btn-outline-dark {
  color: var(--ink-900);
  border-color: var(--line-dark);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--ink-900);
}

.arrow::after {
  content: "→";
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-proof span {
  position: relative;
  padding-left: 15px;
}

.hero-proof span::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
}

.signal-console {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  border: 1px solid rgba(182, 243, 124, 0.2);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(4, 10, 8, 0.82);
  box-shadow: var(--shadow);
}

.signal-console::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(69, 216, 178, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 216, 178, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.scan-line {
  position: absolute;
  z-index: 2;
  top: -20%;
  left: 0;
  width: 100%;
  height: 110px;
  opacity: 0.68;
  background: linear-gradient(to bottom, transparent, rgba(182, 243, 124, 0.18), transparent);
  animation: scan 7s linear infinite;
}

@keyframes scan {
  to { transform: translateY(650px); }
}

.console-top {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}

.status-live::before {
  width: 8px;
  height: 8px;
  content: "";
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(182, 243, 124, 0.09);
}

.console-body {
  position: relative;
  z-index: 3;
  padding: 26px 22px 22px;
}

.console-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.console-number {
  margin: 4px 0 28px;
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 790;
  letter-spacing: -0.05em;
  line-height: 1;
}

.signal-chart {
  position: relative;
  height: 118px;
  margin: 10px 0 26px;
}

.signal-chart svg {
  width: 100%;
  height: 100%;
}

.signal-tags {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.signal-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #dce9e4;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.75rem;
  font-weight: 750;
}

.signal-tag span:last-child {
  color: var(--accent);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.trust-bar {
  border-block: 1px solid var(--line);
  background: var(--ink-950);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 27px 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-number {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1.16rem;
  font-weight: 820;
}

.trust-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 680;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.section-heading > :first-child {
  max-width: 770px;
}

.section-heading .lede {
  max-width: 520px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 20px;
}

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

.card {
  position: relative;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
}

.section-light .card,
.section-white .card,
.card-light {
  border-color: var(--line-dark);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card p:last-child {
  margin-bottom: 0;
}

.card-index {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border: 1px solid rgba(182, 243, 124, 0.28);
  border-radius: 50%;
  color: var(--accent);
  background: rgba(182, 243, 124, 0.06);
  font-size: 0.74rem;
  font-weight: 850;
}

.section-light .card-index,
.section-white .card-index {
  color: #3f7e28;
  border-color: rgba(63, 126, 40, 0.22);
  background: rgba(63, 126, 40, 0.06);
}

.service-card {
  min-height: 345px;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  content: "";
  border: 1px solid rgba(182, 243, 124, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 0 27px rgba(182, 243, 124, 0.025), 0 0 0 54px rgba(69, 216, 178, 0.02);
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  position: relative;
  z-index: 2;
  margin-top: auto;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.section-light .service-card p,
.section-white .service-card p {
  color: var(--muted-dark);
}

.section-light .service-card a,
.section-white .service-card a {
  color: #2f6c20;
}

.split {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 82px;
}

.split-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.quote-panel {
  position: relative;
  overflow: hidden;
  padding: 44px;
  border: 1px solid rgba(182, 243, 124, 0.2);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 85% 15%, rgba(69, 216, 178, 0.17), transparent 35%),
    rgba(255, 255, 255, 0.035);
}

.quote-panel::before {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
}

.quote-panel blockquote {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
  font-weight: 650;
  line-height: 1.34;
  letter-spacing: -0.025em;
}

.quote-panel cite {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.check-list,
.signal-list,
.plain-list {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li,
.signal-list li {
  position: relative;
  padding: 15px 0 15px 34px;
  border-bottom: 1px solid currentColor;
  border-color: rgba(255, 255, 255, 0.1);
}

.section-light .check-list li,
.section-white .check-list li,
.section-light .signal-list li,
.section-white .signal-list li {
  border-color: rgba(7, 17, 15, 0.1);
}

.check-list li::before {
  position: absolute;
  top: 18px;
  left: 0;
  width: 18px;
  height: 18px;
  content: "✓";
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
}

.section-light .check-list li::before,
.section-white .check-list li::before {
  color: #3e7b27;
}

.signal-list li::before {
  position: absolute;
  top: 24px;
  left: 0;
  width: 16px;
  height: 2px;
  content: "";
  background: var(--accent);
}

.plain-list li {
  margin: 8px 0;
}

.method-shell {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(182, 243, 124, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
}

.method-pass {
  display: grid;
  align-items: start;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.method-pass:last-child {
  border-bottom: 0;
}

.pass-number {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.method-pass p {
  margin: 0;
  color: var(--muted);
}

.layer-grid {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.layer {
  min-height: 170px;
  padding: 18px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.layer b {
  display: block;
  margin-bottom: 42px;
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.layer span {
  display: block;
  color: #dce9e4;
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.35;
}

.results-panel {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background: var(--ink-950);
  grid-template-columns: 0.82fr 1.18fr;
}

.result-number-block {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background:
    radial-gradient(circle at 20% 20%, rgba(182, 243, 124, 0.15), transparent 45%),
    linear-gradient(145deg, #0c1e18, #050b09);
}

.result-big {
  display: block;
  color: var(--accent);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.result-label {
  display: block;
  margin-top: 17px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-story {
  padding: 48px;
}

.result-story p {
  color: var(--muted);
}

.case-data {
  display: grid;
  margin-top: 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.case-data div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.case-data b,
.case-data span {
  display: block;
}

.case-data b {
  color: var(--white);
  font-size: 1.04rem;
}

.case-data span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.industry-strip {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.industry-item {
  min-height: 245px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.industry-item:last-child {
  border-right: 0;
}

.industry-item span {
  display: block;
  margin-bottom: 64px;
  color: #3f7e28;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.industry-item p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 92px;
  background:
    radial-gradient(circle at 85% 10%, rgba(69, 216, 178, 0.14), transparent 30%),
    linear-gradient(135deg, var(--ink-950), var(--ink-900));
}

.page-hero::after {
  position: absolute;
  right: -180px;
  bottom: -290px;
  width: 660px;
  height: 660px;
  content: "";
  border: 1px solid rgba(182, 243, 124, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(182, 243, 124, 0.025), 0 0 0 140px rgba(69, 216, 178, 0.02);
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(3rem, 6.2vw, 6.1rem);
}

.page-hero .lede {
  max-width: 810px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 720;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs span[aria-current="page"] {
  color: var(--accent);
}

.metric-grid {
  display: grid;
  margin-top: 44px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
}

.metric b {
  display: block;
  color: var(--accent);
  font-size: 1.8rem;
  line-height: 1.1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.callout {
  padding: 30px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgba(182, 243, 124, 0.07);
}

.section-light .callout,
.section-white .callout {
  background: rgba(63, 126, 40, 0.07);
}

.callout p:last-child {
  margin-bottom: 0;
}

.article-shell {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 74px;
}

.article-content {
  color: #1b2823;
  font-size: 1.08rem;
}

.article-content h2 {
  margin-top: 58px;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
}

.article-content h3 {
  margin-top: 36px;
}

.article-content a {
  color: #2f6c20;
}

.article-content ul,
.article-content ol {
  padding-left: 1.25em;
}

.article-content li {
  margin: 9px 0;
}

.article-content .callout {
  margin: 36px 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.article-aside {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.aside-card {
  padding: 25px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.aside-card + .aside-card {
  margin-top: 16px;
}

.aside-card p,
.aside-card li {
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.aside-card ul {
  padding: 0;
  margin: 15px 0 0;
  list-style: none;
}

.aside-card li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
}

.aside-card a {
  color: #2f6c20;
  font-weight: 750;
}

.insight-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
}

.insight-card .tag {
  align-self: flex-start;
}

.insight-card h3 {
  margin-top: 32px;
}

.insight-card p {
  color: var(--muted-dark);
}

.insight-card a {
  margin-top: auto;
  color: #2f6c20;
  font-weight: 800;
  text-decoration: none;
}

.tag {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #2f6c20;
  background: rgba(63, 126, 40, 0.08);
  font-size: 0.68rem;
  font-weight: 820;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

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

.faq-list details {
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: var(--white);
}

.faq-list summary {
  position: relative;
  padding: 22px 60px 22px 24px;
  color: var(--ink-900);
  font-weight: 780;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  color: #3f7e28;
  content: "+";
  font-size: 1.5rem;
  font-weight: 450;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 24px 24px;
  color: var(--muted-dark);
}

.form-shell {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: 0.75fr 1.25fr;
}

.form-aside {
  padding: 40px;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(182, 243, 124, 0.13), transparent 36%),
    var(--ink-900);
}

.form-aside p,
.form-aside li {
  color: var(--muted);
}

.form-aside .contact-line {
  display: block;
  margin: 17px 0;
  color: var(--white);
  font-weight: 750;
  text-decoration: none;
}

.review-form {
  padding: 40px;
  color: var(--ink-900);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.field-full {
  grid-column: 1 / -1;
}

.form-field label,
.fieldset-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 51px;
  padding: 12px 13px;
  border: 1px solid rgba(7, 17, 15, 0.19);
  border-radius: 10px;
  outline: none;
  color: var(--ink-900);
  background: #fbfdfc;
}

.form-field textarea {
  min-height: 145px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #4c902f;
  box-shadow: 0 0 0 4px rgba(76, 144, 47, 0.12);
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px;
  border: 1px solid var(--line-dark);
  border-radius: 10px;
  color: #26342f;
  font-size: 0.87rem;
}

.check-option input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: #4c902f;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.form-consent input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: #4c902f;
}

.form-note {
  margin-top: 18px;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(69, 216, 178, 0.2), transparent 30%),
    linear-gradient(125deg, #102b21, #07110f 68%);
}

.cta-band::before {
  position: absolute;
  top: -200px;
  right: -80px;
  width: 500px;
  height: 500px;
  content: "";
  border: 1px solid rgba(182, 243, 124, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(182, 243, 124, 0.03), 0 0 0 90px rgba(69, 216, 178, 0.02);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-inner h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
}

.site-footer {
  color: var(--muted);
  background: var(--ink-950);
}

.footer-main {
  display: grid;
  padding: 74px 0 48px;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 0.7fr));
  gap: 48px;
}

.footer-intro {
  max-width: 420px;
}

.footer-intro p {
  margin-top: 22px;
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  color: var(--muted);
  font-size: 0.87rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0 34px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
}

.footer-bottom p {
  max-width: 820px;
  margin: 0;
}

.legal-content {
  color: #24322d;
}

.legal-content h2 {
  margin-top: 52px;
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 35px;
  font-size: 1.35rem;
}

.legal-content li {
  margin: 8px 0;
}

.notice {
  padding: 18px 20px;
  border: 1px solid rgba(212, 174, 98, 0.4);
  border-radius: 12px;
  color: #55451f;
  background: rgba(212, 174, 98, 0.1);
}

.center {
  text-align: center;
}

.center .lede,
.center h1,
.center h2 {
  margin-inline: auto;
}

.spacer-top {
  margin-top: 36px;
}

.spacer-lg {
  margin-top: 64px;
}

.only-screen-reader {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1060px) {
  .nav-toggle {
    display: block;
  }

  .nav-wrap {
    position: fixed;
    z-index: 90;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    padding: 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 11, 9, 0.98);
  }

  .nav-open .nav-wrap {
    display: block;
  }

  .site-nav {
    width: min(100%, 720px);
    margin: 0 auto;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero-inner,
  .split,
  .split-reverse,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 850px;
  }

  .signal-console {
    width: min(100%, 680px);
    min-height: 470px;
  }

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

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

  .form-shell,
  .results-panel {
    grid-template-columns: 1fr;
  }

  .result-number-block {
    min-height: 300px;
  }

  .article-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .aside-card + .aside-card {
    margin-top: 0;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  body {
    font-size: 16px;
  }

  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .section-sm {
    padding: 54px 0;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    padding: 72px 0 62px;
  }

  .hero-inner {
    gap: 45px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.3rem);
  }

  .hero-actions,
  .cta-row {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .signal-console {
    min-height: 440px;
  }

  .trust-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .metric-grid,
  .industry-strip,
  .form-grid,
  .checkbox-grid,
  .case-data,
  .article-aside {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .cta-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading {
    display: block;
  }

  .section-heading .lede {
    margin-top: 20px;
  }

  .industry-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .industry-item:last-child {
    border-bottom: 0;
  }

  .industry-item span {
    margin-bottom: 28px;
  }

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

  .layer {
    min-height: 145px;
  }

  .method-pass {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .quote-panel,
  .result-story,
  .form-aside,
  .review-form {
    padding: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: flex;
  }

  .page-hero {
    padding: 82px 0 70px;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .cta-band,
  .hero-actions,
  .nav-wrap,
  .nav-toggle {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero {
    padding: 30px 0;
  }
}

/* =========================================================
   CULTIVATION UTILITY INTELLIGENCE // CATEGORY SYSTEM
   ========================================================= */

.cultivation-hero {
  background:
    radial-gradient(circle at 82% 24%, rgba(69, 216, 178, 0.19), transparent 31%),
    radial-gradient(circle at 58% 88%, rgba(182, 243, 124, 0.11), transparent 34%),
    linear-gradient(135deg, #040907 0%, #07110f 54%, #0a1b16 100%);
}

.signature-console {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(182, 243, 124, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.014)),
    rgba(4, 10, 8, 0.9);
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.42);
}

.signature-console::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(69, 216, 178, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 216, 178, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.console-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 23px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.console-meta strong {
  color: var(--aqua);
  font-size: 0.68rem;
  text-align: right;
}

.signature-readout {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.signature-readout .console-number {
  margin: 0;
  color: var(--accent);
}

.signature-chart {
  height: 145px;
  margin-top: 20px;
}

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

.signal-tags-3 .signal-tag {
  min-height: 62px;
  align-items: flex-start;
  flex-direction: column;
  gap: 4px;
}

.category-section {
  overflow: hidden;
}

.category-stack {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 12%, rgba(69, 216, 178, 0.11), transparent 34%),
    #fff;
  box-shadow: var(--shadow-soft);
}

.category-stack::before {
  position: absolute;
  top: 48px;
  bottom: 48px;
  left: 53px;
  width: 1px;
  content: "";
  background: linear-gradient(var(--accent-strong), rgba(69, 216, 178, 0.35));
}

.stack-card {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  color: var(--ink-900);
  background: rgba(255, 255, 255, 0.92);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.stack-card:hover {
  border-color: rgba(63, 126, 40, 0.38);
  transform: translateX(5px);
}

.stack-card > span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(63, 126, 40, 0.25);
  border-radius: 50%;
  color: #356d23;
  background: var(--paper);
  font-size: 0.7rem;
  font-weight: 850;
}

.stack-card b,
.stack-card small {
  display: block;
}

.stack-card b {
  margin-bottom: 5px;
  font-size: 1rem;
}

.stack-card small {
  color: var(--muted-dark);
  font-size: 0.82rem;
  line-height: 1.5;
}

.system-map {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--ink-900);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.system-map article {
  position: relative;
  min-height: 275px;
  padding: 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.035), transparent 60%);
}

.system-map article:nth-child(3n) {
  border-right: 0;
}

.system-map article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.system-map article::after {
  position: absolute;
  right: 25px;
  bottom: 25px;
  width: 58px;
  height: 58px;
  content: "";
  border-right: 1px solid rgba(182, 243, 124, 0.18);
  border-bottom: 1px solid rgba(182, 243, 124, 0.18);
}

.system-map h3 {
  margin-top: 47px;
  color: var(--white);
}

.system-map p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.system-code {
  display: inline-flex;
  min-width: 58px;
  min-height: 31px;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  border: 1px solid rgba(182, 243, 124, 0.25);
  border-radius: 7px;
  color: var(--accent);
  background: rgba(182, 243, 124, 0.05);
  font-size: 0.66rem;
  font-weight: 880;
  letter-spacing: 0.1em;
}

.protocol-overview {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.protocol-pass {
  position: relative;
  min-height: 450px;
  padding: 34px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
}

.protocol-pass:last-child {
  border-right: 0;
}

.protocol-pass > span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 880;
  letter-spacing: 0.14em;
}

.protocol-pass h3 {
  margin-top: 64px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
}

.protocol-pass > p {
  min-height: 118px;
  color: var(--muted);
  font-size: 0.92rem;
}

.protocol-layers {
  display: grid;
  gap: 8px;
  margin-top: 28px;
}

.protocol-layers b {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #dce9e4;
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.72rem;
  letter-spacing: 0.025em;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 35px;
}

.exposure-scanner {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background: var(--ink-950);
  box-shadow: var(--shadow);
  grid-template-columns: 1.3fr 0.7fr;
}

.scanner-questions {
  display: grid;
  padding: 26px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.scanner-questions label {
  display: flex;
  min-height: 94px;
  align-items: flex-start;
  gap: 12px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: #d8e4df;
  background: rgba(255, 255, 255, 0.026);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.48;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.scanner-questions label:hover,
.scanner-questions label.is-selected {
  border-color: rgba(182, 243, 124, 0.55);
  background: rgba(182, 243, 124, 0.075);
  transform: translateY(-1px);
}

.scanner-questions input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  accent-color: var(--accent-strong);
}

.scanner-output {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-left: 1px solid var(--line);
  background:
    radial-gradient(circle at 85% 12%, rgba(69, 216, 178, 0.16), transparent 32%),
    linear-gradient(160deg, #0c211a, #050b09 70%);
}

.scanner-output::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 280px;
  height: 280px;
  content: "";
  border: 1px solid rgba(182, 243, 124, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 36px rgba(182, 243, 124, 0.025), 0 0 0 72px rgba(69, 216, 178, 0.018);
}

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

.scanner-status {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(182, 243, 124, 0.06);
  font-size: 0.65rem;
  font-weight: 880;
  letter-spacing: 0.1em;
}

.scanner-score {
  margin: 32px 0 20px;
  color: var(--accent);
  font-size: clamp(4.8rem, 8vw, 8rem);
  font-weight: 850;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.scanner-output h3 {
  margin-top: 28px;
  color: var(--white);
}

.scanner-output p {
  color: var(--muted);
  font-size: 0.9rem;
}

.scanner-paths {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.scanner-paths a {
  display: block;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
}

.scanner-paths a:hover {
  border-color: rgba(182, 243, 124, 0.45);
}

.scanner-paths span,
.scanner-paths small {
  display: block;
}

.scanner-paths span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 800;
}

.scanner-paths small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.4;
}

.comparison-panel {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
}

.comparison-head {
  color: var(--white);
  background: var(--ink-900);
}

.comparison-head span {
  padding: 18px 20px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-head span:last-child {
  color: var(--accent);
  border-left: 1px solid var(--line);
}

.comparison-row {
  border-top: 1px solid var(--line-dark);
}

.comparison-row span,
.comparison-row strong {
  padding: 19px 20px;
  font-size: 0.86rem;
  line-height: 1.45;
}

.comparison-row span {
  color: #7b8984;
}

.comparison-row strong {
  color: var(--ink-900);
  border-left: 1px solid var(--line-dark);
  background: rgba(63, 126, 40, 0.045);
}

.text-link {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
}

.section-light .text-link,
.section-white .text-link {
  color: #2f6c20;
}

.evidence-grid,
.principles-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evidence-grid article,
.principles-grid article {
  min-height: 285px;
  padding: 30px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.evidence-grid article:nth-child(3n),
.principles-grid article:nth-child(3n) {
  border-right: 0;
}

.evidence-grid article:nth-last-child(-n + 3),
.principles-grid article:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.evidence-grid article > span,
.principles-grid article > span,
.proof-grid article > span {
  color: #3e7b27;
  font-size: 0.68rem;
  font-weight: 870;
  letter-spacing: 0.11em;
}

.evidence-grid article h3,
.principles-grid article h3,
.proof-grid article h3 {
  margin-top: 44px;
}

.evidence-grid article p,
.principles-grid article p,
.proof-grid article p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.claim-file {
  overflow: hidden;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 5%, rgba(69, 216, 178, 0.13), transparent 30%),
    rgba(4, 10, 8, 0.88);
  box-shadow: var(--shadow);
}

.claim-file-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 21px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 840;
  letter-spacing: 0.09em;
}

.claim-file-head b {
  color: var(--accent);
}

.claim-line {
  display: grid;
  align-items: center;
  grid-template-columns: 58px 1fr;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.claim-line:last-child {
  border-bottom: 0;
}

.claim-line > span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 850;
}

.claim-line b,
.claim-line small {
  display: block;
}

.claim-line b {
  color: var(--white);
}

.claim-line small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.timeline {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.timeline-step {
  position: relative;
  min-height: 285px;
  padding: 25px;
  border-right: 1px solid var(--line-dark);
}

.timeline-step:last-child {
  border-right: 0;
}

.timeline-step::after {
  position: absolute;
  top: 42px;
  right: -6px;
  z-index: 2;
  width: 11px;
  height: 11px;
  content: "";
  border: 2px solid #4c902f;
  border-radius: 50%;
  background: var(--white);
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-step > b {
  color: #3e7b27;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
}

.timeline-step h3 {
  margin-top: 54px;
  font-size: 1.28rem;
}

.timeline-step p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.8rem;
}

.demand-gauge {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(69, 216, 178, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 216, 178, 0.045) 1px, transparent 1px),
    rgba(4, 10, 8, 0.88);
  background-size: 30px 30px;
  box-shadow: var(--shadow);
}

.gauge-label {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 870;
  letter-spacing: 0.12em;
}

.gauge-bars {
  display: flex;
  height: 250px;
  align-items: flex-end;
  gap: 12px;
  margin: 42px 0 22px;
  padding: 0 5px;
  border-bottom: 1px solid rgba(182, 243, 124, 0.28);
}

.gauge-bars i {
  flex: 1;
  min-width: 20px;
  border: 1px solid rgba(182, 243, 124, 0.35);
  border-bottom: 0;
  background: linear-gradient(to top, rgba(69, 216, 178, 0.2), rgba(182, 243, 124, 0.75));
}

.gauge-bars i:nth-last-child(3) {
  box-shadow: 0 0 26px rgba(182, 243, 124, 0.22);
}

.gauge-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gauge-legend span {
  padding: 7px 9px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.65rem;
}

.gauge-peak {
  position: absolute;
  top: 82px;
  right: 32px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 142, 125, 0.36);
  border-radius: 7px;
  color: var(--danger);
  background: rgba(255, 142, 125, 0.07);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
}

.opportunity-ladder {
  display: grid;
  gap: 12px;
}

.opportunity-ladder article {
  display: grid;
  align-items: center;
  grid-template-columns: 105px 0.55fr 1.45fr;
  gap: 22px;
  padding: 23px 25px;
  border: 1px solid var(--line-dark);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(7, 17, 15, 0.06);
}

.opportunity-ladder article:nth-child(2) { margin-left: 3%; }
.opportunity-ladder article:nth-child(3) { margin-left: 6%; }
.opportunity-ladder article:nth-child(4) { margin-left: 9%; }
.opportunity-ladder article:nth-child(5) { margin-left: 12%; }

.opportunity-ladder article > span {
  color: #3e7b27;
  font-size: 0.67rem;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.opportunity-ladder h3,
.opportunity-ladder p {
  margin: 0;
}

.opportunity-ladder p {
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.sequence-console {
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(69, 216, 178, 0.14), transparent 32%),
    rgba(4, 10, 8, 0.9);
  box-shadow: var(--shadow);
}

.sequence-console ol {
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.sequence-console li {
  display: grid;
  align-items: center;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.sequence-console li:last-child {
  border-bottom: 0;
}

.sequence-console li b {
  color: var(--accent);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.sequence-console li span {
  color: #dce9e4;
  font-weight: 730;
}

.economics-grid,
.trigger-grid,
.proof-grid {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.economics-grid article,
.trigger-grid article,
.proof-grid article {
  min-height: 255px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.economics-grid article:last-child,
.trigger-grid article:last-child,
.proof-grid article:last-child {
  border-right: 0;
}

.economics-grid article > span,
.trigger-grid article > span {
  display: inline-flex;
  padding: 6px 8px;
  border: 1px solid rgba(63, 126, 40, 0.22);
  border-radius: 6px;
  color: #3e7b27;
  background: rgba(63, 126, 40, 0.05);
  font-size: 0.65rem;
  font-weight: 850;
}

.economics-grid h3,
.trigger-grid h3,
.proof-grid h3 {
  margin-top: 42px;
}

.economics-grid p,
.trigger-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.84rem;
}

.water-path {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.water-path article {
  position: relative;
  min-height: 265px;
  padding: 25px 21px;
  border-right: 1px solid var(--line-dark);
}

.water-path article:last-child {
  border-right: 0;
}

.water-path article:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 42px;
  right: -13px;
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  content: "→";
  border: 1px solid rgba(63, 126, 40, 0.25);
  border-radius: 50%;
  color: #3e7b27;
  background: var(--white);
  font-size: 0.7rem;
}

.water-path article > span {
  color: #3e7b27;
  font-size: 0.67rem;
  font-weight: 860;
  letter-spacing: 0.09em;
}

.water-path h3 {
  margin-top: 49px;
  font-size: 1.25rem;
}

.water-path p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.79rem;
}

.water-balance-card {
  overflow: hidden;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(69, 216, 178, 0.16), transparent 32%),
    rgba(4, 10, 8, 0.9);
  box-shadow: var(--shadow);
}

.balance-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 21px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 840;
  letter-spacing: 0.08em;
}

.balance-head b {
  color: var(--aqua);
}

.balance-row {
  display: grid;
  align-items: center;
  grid-template-columns: 52px 1fr auto;
  gap: 14px;
  padding: 18px 21px;
  border-bottom: 1px solid var(--line);
}

.balance-row:last-child {
  border-bottom: 0;
}

.balance-row > span {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 850;
}

.balance-row b {
  color: var(--white);
  font-size: 0.9rem;
}

.balance-row small {
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

.control-console {
  overflow: hidden;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background: rgba(4, 10, 8, 0.9);
  box-shadow: var(--shadow);
}

.control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 21px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 840;
  letter-spacing: 0.09em;
}

.control-head b {
  color: var(--accent);
}

.control-row {
  display: grid;
  align-items: center;
  grid-template-columns: 80px 1fr auto;
  gap: 15px;
  padding: 19px 21px;
  border-bottom: 1px solid var(--line);
}

.control-row:last-child {
  border-bottom: 0;
}

.control-row > span {
  display: inline-flex;
  justify-content: center;
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 0.63rem;
  font-weight: 860;
  letter-spacing: 0.08em;
}

.control-row.good > span { color: var(--accent); border-color: rgba(182, 243, 124, 0.28); }
.control-row.watch > span { color: var(--gold); border-color: rgba(212, 174, 98, 0.32); }
.control-row.alert > span { color: var(--danger); border-color: rgba(255, 142, 125, 0.34); }

.control-row b {
  color: var(--white);
  font-size: 0.9rem;
}

.control-row small {
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

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

.section-light .layer-grid-9 .layer {
  border-color: var(--line-dark);
  background: var(--paper);
}

.section-light .layer-grid-9 .layer b {
  color: #3e7b27;
}

.section-light .layer-grid-9 .layer span {
  color: var(--ink-900);
}

.protocol-seal {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid rgba(182, 243, 124, 0.23);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(182, 243, 124, 0.12), transparent 48%),
    rgba(4, 10, 8, 0.82);
  box-shadow: inset 0 0 0 32px rgba(182, 243, 124, 0.018), inset 0 0 0 64px rgba(69, 216, 178, 0.012), var(--shadow);
  text-align: center;
}

.protocol-seal::before,
.protocol-seal::after {
  position: absolute;
  inset: 10%;
  content: "";
  border: 1px dashed rgba(182, 243, 124, 0.2);
  border-radius: 50%;
}

.protocol-seal::after {
  inset: 23%;
  border-color: rgba(69, 216, 178, 0.2);
}

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

.protocol-seal span {
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 880;
  letter-spacing: 0.18em;
}

.protocol-seal strong {
  margin: 22px 0;
  color: var(--white);
  font-size: clamp(5rem, 9vw, 8rem);
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.protocol-seal small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  line-height: 1.8;
}

.decision-file {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.decision-file > div {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
}

.decision-file > div:last-child {
  border-right: 0;
}

.decision-file span {
  color: #3e7b27;
  font-size: 0.68rem;
  font-weight: 870;
}

.decision-file h3 {
  margin-top: 56px;
  font-size: 1.28rem;
}

.decision-file p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.82rem;
}

.status-ladder {
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  counter-reset: result-status;
}

.status-ladder li {
  position: relative;
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  padding: 18px 0 18px 43px;
  border-bottom: 1px solid var(--line);
  counter-increment: result-status;
}

.status-ladder li::before {
  position: absolute;
  top: 22px;
  left: 0;
  display: inline-flex;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  content: counter(result-status);
  border: 1px solid rgba(182, 243, 124, 0.3);
  border-radius: 50%;
  color: var(--accent);
  font-size: 0.63rem;
  font-weight: 850;
}

.status-ladder b {
  color: var(--white);
}

.status-ladder span {
  color: var(--muted);
  font-size: 0.88rem;
}

.brand-manifesto {
  display: flex;
  min-height: 500px;
  overflow: hidden;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 48px;
  border: 1px solid rgba(182, 243, 124, 0.22);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(69, 216, 178, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(69, 216, 178, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 86% 18%, rgba(182, 243, 124, 0.13), transparent 31%),
    rgba(4, 10, 8, 0.9);
  background-size: 32px 32px, 32px 32px, auto, auto;
  box-shadow: var(--shadow);
}

.brand-manifesto span,
.brand-manifesto strong,
.brand-manifesto b,
.brand-manifesto small {
  display: block;
}

.brand-manifesto span {
  color: var(--muted);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 760;
  letter-spacing: 0.12em;
}

.brand-manifesto strong {
  color: var(--white);
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  letter-spacing: -0.07em;
  line-height: 0.93;
}

.brand-manifesto b {
  color: var(--accent);
  font-size: clamp(2.3rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.brand-manifesto small {
  margin-top: 38px;
  color: var(--aqua);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

@media (max-width: 1060px) {
  .signal-tags-3,
  .system-map,
  .protocol-overview,
  .evidence-grid,
  .principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-map article:nth-child(3n),
  .evidence-grid article:nth-child(3n),
  .principles-grid article:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .system-map article:nth-child(2n),
  .evidence-grid article:nth-child(2n),
  .principles-grid article:nth-child(2n) {
    border-right: 0;
  }

  .system-map article:nth-last-child(-n + 3),
  .evidence-grid article:nth-last-child(-n + 3),
  .principles-grid article:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .system-map article:nth-last-child(-n + 2),
  .evidence-grid article:nth-last-child(-n + 2),
  .principles-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .protocol-pass:nth-child(2) {
    border-right: 0;
  }

  .protocol-pass:last-child {
    grid-column: 1 / -1;
    min-height: 350px;
    border-top: 1px solid var(--line);
  }

  .exposure-scanner {
    grid-template-columns: 1fr;
  }

  .scanner-output {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .timeline,
  .water-path,
  .decision-file {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline-step:nth-child(3),
  .timeline-step:nth-child(6),
  .water-path article:nth-child(3),
  .water-path article:nth-child(6),
  .decision-file > div:nth-child(3) {
    border-right: 0;
  }

  .timeline-step:nth-child(-n + 3),
  .water-path article:nth-child(-n + 3),
  .decision-file > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line-dark);
  }

  .decision-file > div:nth-child(5) {
    border-right: 1px solid var(--line-dark);
  }

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

  .economics-grid,
  .trigger-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .economics-grid article,
  .trigger-grid article,
  .proof-grid article {
    border-bottom: 1px solid var(--line-dark);
  }

  .economics-grid article:nth-child(2n),
  .trigger-grid article:nth-child(2n),
  .proof-grid article:nth-child(2n) {
    border-right: 0;
  }

  .economics-grid article:nth-last-child(-n + 2),
  .trigger-grid article:nth-last-child(-n + 2),
  .proof-grid article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 760px) {
  .signature-console {
    min-height: 535px;
  }

  .console-top,
  .console-meta,
  .claim-file-head,
  .balance-head,
  .control-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .console-top {
    gap: 8px;
  }

  .signal-tags-3,
  .system-map,
  .protocol-overview,
  .scanner-questions,
  .evidence-grid,
  .principles-grid,
  .timeline,
  .water-path,
  .decision-file,
  .economics-grid,
  .trigger-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .system-map article,
  .protocol-pass,
  .evidence-grid article,
  .principles-grid article,
  .timeline-step,
  .water-path article,
  .decision-file > div,
  .economics-grid article,
  .trigger-grid article,
  .proof-grid article {
    min-height: auto;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-dark) !important;
  }

  .system-map article:last-child,
  .protocol-pass:last-child,
  .evidence-grid article:last-child,
  .principles-grid article:last-child,
  .timeline-step:last-child,
  .water-path article:last-child,
  .decision-file > div:last-child,
  .economics-grid article:last-child,
  .trigger-grid article:last-child,
  .proof-grid article:last-child {
    border-bottom: 0 !important;
  }

  .protocol-pass {
    min-height: auto;
  }

  .protocol-pass h3,
  .system-map h3,
  .evidence-grid article h3,
  .principles-grid article h3,
  .timeline-step h3,
  .water-path h3,
  .decision-file h3,
  .economics-grid h3,
  .trigger-grid h3,
  .proof-grid h3 {
    margin-top: 28px;
  }

  .protocol-pass > p {
    min-height: auto;
  }

  .scanner-output,
  .scanner-questions,
  .demand-gauge,
  .sequence-console,
  .brand-manifesto {
    padding: 26px;
  }

  .scanner-questions label {
    min-height: auto;
  }

  .comparison-head,
  .comparison-row {
    grid-template-columns: 1fr;
  }

  .comparison-head span:last-child,
  .comparison-row strong {
    border-top: 1px solid var(--line-dark);
    border-left: 0;
  }

  .comparison-head span:last-child {
    border-color: var(--line);
  }

  .opportunity-ladder article {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-left: 0 !important;
  }

  .opportunity-ladder h3 {
    margin-top: 8px;
  }

  .timeline-step::after,
  .water-path article:not(:last-child)::after {
    display: none;
  }

  .layer-grid-9 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .protocol-seal {
    min-height: 340px;
  }

  .brand-manifesto {
    min-height: 390px;
  }

  .claim-line,
  .balance-row,
  .control-row {
    grid-template-columns: 46px 1fr;
  }

  .balance-row small,
  .control-row small {
    grid-column: 2;
    text-align: left;
  }

  .status-ladder li {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
