:root {
  --ink-950: #0c1a20;
  --mist-200: #d7e7e6;
  --mist-100: #eef6f4;
  --teal-400: #8fd0c3;
  --teal-300: #b7e4db;
  --sand-300: #ebc88f;
  --line: rgba(183, 228, 219, 0.18);
  --glass: rgba(14, 30, 37, 0.66);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(102, 184, 171, 0.18), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(216, 175, 108, 0.16), transparent 20%),
    linear-gradient(180deg, #11222a 0%, #0c1a20 52%, #081317 100%);
  color: var(--mist-100);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 80%);
  opacity: 0.22;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section-kicker {
  color: var(--sand-300);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-top: 0.9rem;
}

.section-title em {
  font-style: italic;
  color: var(--teal-400);
}

.section-copy {
  margin-top: 1rem;
  max-width: 700px;
  color: rgba(238, 246, 244, 0.78);
  line-height: 1.75;
  font-size: 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(143, 208, 195, 0.2);
  background: rgba(255, 255, 255, 0.04);
  color: var(--mist-200);
  font-size: 0.85rem;
}

.panel-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--teal-300);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.panel-label-sand {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--sand-300);
}

.stat-value {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--mist-100);
  display: block;
  margin: 0.25rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(8, 19, 23, 0.92), rgba(8, 19, 23, 0.72));
  border-bottom: 1px solid rgba(183, 228, 219, 0.08);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1rem;
}

.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  color: var(--mist-100);
}

.brand span {
  color: var(--sand-300);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.desktop-nav a,
.mobile-links a {
  text-decoration: none;
  color: rgba(238, 246, 244, 0.82);
  font-size: 0.92rem;
}

.desktop-nav a:hover,
.mobile-links a:hover {
  color: var(--teal-300);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cta-link:hover {
  transform: translateY(-1px);
}

.cta-link.primary {
  background: linear-gradient(135deg, var(--teal-400), var(--sand-300));
  color: var(--ink-950);
  box-shadow: 0 12px 28px rgba(102, 184, 171, 0.24);
}

.cta-link.secondary {
  border: 1px solid rgba(143, 208, 195, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--mist-100);
}

.mobile-nav {
  display: none;
}

.mobile-nav summary {
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(143, 208, 195, 0.2);
  border-radius: 999px;
  padding: 0.75rem 1rem;
  color: var(--mist-100);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav summary::-webkit-details-marker {
  display: none;
}

.mobile-links {
  position: absolute;
  right: 1rem;
  top: calc(100% + 0.7rem);
  width: min(320px, calc(100vw - 2rem));
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(12, 26, 32, 0.96);
  box-shadow: var(--shadow);
}

.hero,
.problem,
.solution,
.method,
.layer,
.oversight,
.packages,
.process,
.approach,
.cta {
  padding: 5rem 0;
}

.hero {
  padding-top: 0;
  padding-bottom: 0;
}

.solution-grid,
.oversight-grid,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 2rem;
  align-items: center;
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  margin: 1.25rem 0;
  max-width: 11ch;
}

.hero-title em {
  font-style: italic;
  color: var(--teal-400);
}

.hero-copy {
  padding-top: 5rem;
  padding-bottom: 3.5rem;
}

.hero-copy p {
  max-width: 560px;
  color: rgba(238, 246, 244, 0.82);
  line-height: 1.8;
  font-size: 1.05rem;
}

.hero-brand-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.hero-mark {
  width: 50%;
  flex-shrink: 0;
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  font-size: 0.88rem;
  color: var(--teal-400);
  text-decoration: none;
  letter-spacing: 0.02em;
  opacity: 0.82;
  transition: opacity 200ms ease;
}

.hero-cta:hover {
  opacity: 1;
}

.hero-art {
  position: relative;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  height: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(216, 175, 108, 0.28), transparent 24%),
    linear-gradient(180deg, rgba(12, 26, 32, 0.08), rgba(12, 26, 32, 0.32));
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(8, 19, 23, 0.08) 30%, rgba(8, 19, 23, 0.78) 100%),
    radial-gradient(circle at 22% 18%, rgba(143, 208, 195, 0.08), transparent 16%);
  z-index: 1;
}

.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.stats-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 2rem;
  z-index: 2;
}

.hero-overlay {
  position: absolute;
  inset: auto 1.25rem 1.25rem 1.25rem;
  z-index: 2;
  display: grid;
  gap: 1rem;
}

.signal-panel,
.stats-strip,
.problem-grid,
.method-grid,
.packages-grid,
.proof-grid {
  display: grid;
  gap: 1rem;
}

.signal-panel,
.stats-strip {
  grid-template-columns: repeat(3, 1fr);
}

.problem-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(4, 1fr);
}

.method-grid,
.packages-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, 1fr);
}

.proof-grid {
  margin-top: 2rem;
  grid-template-columns: 1.2fr 0.8fr 1fr;
}

.layer-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 1rem;
}

.signal-card,
.glass-panel,
.problem-card,
.layer-card,
.proof-card,
.package-card,
.method-card,
.oversight-card,
.cta-panel {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.signal-card,
.glass-panel,
.problem-card,
.layer-card,
.proof-card,
.method-card,
.oversight-card,
.cta-panel,
.package-top,
.package-body {
  padding: 1.4rem;
}

.signal-card strong,
.layer-card strong,
.package-label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--teal-300);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.problem-card h3,
.method-card h3,
.proof-card h3,
.package-card h3,
.oversight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
  color: var(--mist-100);
}

.problem-card p,
.method-card p,
.layer-card p,
.proof-card p,
.package-card p,
.package-card li,
.oversight-card p,
.oversight-copy p,
.cta-panel p,
.signal-card span,
.glass-panel p {
  color: rgba(238, 246, 244, 0.78);
  line-height: 1.75;
}

.method-card .index {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
  color: rgba(183, 228, 219, 0.34);
}

.solution-list,
.oversight-list,
.package-card ul,
.proof-list {
  list-style: none;
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.solution-list li,
.oversight-list li,
.package-card li,
.proof-list li {
  padding-left: 1.2rem;
  position: relative;
}

.solution-list li::before,
.oversight-list li::before,
.package-card li::before,
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-400), var(--sand-300));
}

.package-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.package-top {
  border-bottom: 1px solid var(--line);
}

.package-top.starter {
  background: linear-gradient(135deg, rgba(102, 184, 171, 0.16), rgba(102, 184, 171, 0.03));
}

.package-top.accelerator {
  background: linear-gradient(135deg, rgba(216, 175, 108, 0.16), rgba(102, 184, 171, 0.04));
}

.package-top.mastery {
  background: linear-gradient(135deg, rgba(216, 175, 108, 0.1), rgba(255, 255, 255, 0.03));
}

.package-badge {
  display: inline-block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--sand-300);
  margin-bottom: 0.8rem;
}

.package-price {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  margin-top: 0.9rem;
}

.package-price span {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.9rem;
  color: rgba(238, 246, 244, 0.72);
  margin-top: 0.35rem;
}

.package-body {
  display: grid;
  gap: 1.2rem;
  flex: 1;
}

.packages-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
}

.packages-intro {
  margin-top: 0;
  max-width: 420px;
}

.oversight-copy,
.contact-lines {
  display: grid;
  gap: 1rem;
}

.contact-lines--spaced {
  margin-top: 1rem;
}

.oversight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.oversight-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
}

.cta-panel {
  background:
    linear-gradient(135deg, rgba(102, 184, 171, 0.08), rgba(216, 175, 108, 0.08)),
    rgba(12, 26, 32, 0.72);
}

.cta-note {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: rgba(238, 246, 244, 0.45);
}

.contact-lines strong {
  color: var(--mist-100);
  display: block;
  margin-bottom: 0.2rem;
}

.site-footer {
  padding: 1.7rem 0 2.5rem;
  color: rgba(238, 246, 244, 0.58);
  font-size: 0.92rem;
}

.site-footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(183, 228, 219, 0.1);
  padding-top: 1.5rem;
}

.problem-layout {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.problem-image {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.problem-list {
  display: flex;
  flex-direction: column;
}

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

.problem-item:first-child {
  border-top: 1px solid var(--line);
}

.problem-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.3rem 0;
  text-align: left;
  color: var(--mist-100);
}

.problem-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: rgba(183, 228, 219, 0.28);
  flex-shrink: 0;
  width: 2.2rem;
  line-height: 1;
  transition: color 300ms ease;
}

.problem-title-text {
  flex: 1;
  font-size: 0.98rem;
  font-weight: 600;
  color: rgba(238, 246, 244, 0.75);
  line-height: 1.4;
  transition: color 300ms ease;
}

.problem-toggle {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(143, 208, 195, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  transition: transform 350ms ease, border-color 300ms ease, background 300ms ease;
}

.problem-item.active .problem-toggle {
  transform: rotate(45deg);
  border-color: var(--teal-400);
  background: rgba(143, 208, 195, 0.08);
}

.problem-item.active .problem-num {
  color: var(--teal-400);
}

.problem-item.active .problem-title-text {
  color: var(--mist-100);
}

.problem-item.active .problem-trigger {
  padding-bottom: 0.6rem;
}

.problem-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 420ms ease;
  padding-left: 3.3rem;
}

.problem-item.active .problem-body {
  max-height: 160px;
}

.problem-body-inner {
  padding-bottom: 1.4rem;
}

.problem-body p {
  color: rgba(238, 246, 244, 0.68);
  font-size: 0.91rem;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}

.problem-impact {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--teal-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-left: 2px solid var(--teal-400);
  padding-left: 0.6rem;
}

.layer-image-full {
  width: min(var(--max), calc(100% - 2rem));
  margin: 2.5rem auto;
  border-radius: var(--radius-xl);
  line-height: 0;
  overflow: hidden;
}

.layer-image-full img {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.layer-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.layer-tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(238, 246, 244, 0.72);
  cursor: pointer;
  transition: background 250ms ease, border-color 250ms ease, color 250ms ease;
}

.layer-tab:hover {
  border-color: rgba(143, 208, 195, 0.4);
  color: var(--mist-100);
}

.layer-tab.active {
  background: rgba(143, 208, 195, 0.12);
  border-color: var(--teal-400);
  color: var(--teal-300);
}

.layer-panel {
  border: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(14px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 1.8rem 2rem;
  min-height: 130px;
}

.layer-panel-content {
  display: none;
}

.layer-panel-content.active {
  display: block;
  animation: panelFadeIn 300ms ease;
}

@keyframes panelFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.layer-panel-content p {
  color: rgba(238, 246, 244, 0.78);
  line-height: 1.8;
  font-size: 0.96rem;
  margin-top: 0.6rem;
}

.approach-list {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}

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

.approach-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
  text-align: left;
  color: var(--mist-100);
}

.approach-item.active .approach-trigger {
  padding-bottom: 0.8rem;
}

.approach-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: rgba(183, 228, 219, 0.2);
  line-height: 1;
  transition: color 300ms ease;
}

.approach-item.active .approach-num {
  color: rgba(143, 208, 195, 0.55);
}

.approach-header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.approach-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: rgba(238, 246, 244, 0.82);
  line-height: 1.1;
  transition: color 300ms ease;
}

.approach-item.active .approach-title {
  color: var(--mist-100);
}

.approach-sub {
  font-size: 0.86rem;
  color: rgba(238, 246, 244, 0.42);
  font-weight: 400;
  transition: color 300ms ease;
}

.approach-item.active .approach-sub {
  color: var(--teal-300);
}

.approach-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(143, 208, 195, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  transition: transform 350ms ease, border-color 300ms ease, background 300ms ease;
}

.approach-item.active .approach-toggle {
  transform: rotate(45deg);
  border-color: var(--teal-400);
  background: rgba(143, 208, 195, 0.08);
}

.approach-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 450ms ease;
  padding-left: 5rem;
}

.approach-item.active .approach-body {
  max-height: 360px;
}

.approach-body-inner {
  padding-bottom: 2.2rem;
}

.approach-body-inner > p {
  color: rgba(238, 246, 244, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 660px;
  margin-bottom: 1.4rem;
}

.approach-outcomes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem 3rem;
}

.approach-outcomes li {
  padding-left: 1.1rem;
  position: relative;
  font-size: 0.85rem;
  color: rgba(238, 246, 244, 0.55);
  line-height: 1.5;
}

.approach-outcomes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal-400), var(--sand-300));
}

.why-strip {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 5rem;
}

.why-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mist-100);
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 0.87rem;
  color: rgba(238, 246, 244, 0.58);
  line-height: 1.7;
}

.process {
  padding: 5rem 0;
}

.process-steps {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.process-item {
  border-right: 1px solid var(--line);
  transition: background 300ms ease;
}

.process-item:last-child {
  border-right: none;
}

.process-item.active {
  background: rgba(143, 208, 195, 0.04);
}

.process-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 1.8rem 1.5rem 1.5rem;
  text-align: left;
  color: var(--mist-100);
}

.process-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: rgba(183, 228, 219, 0.2);
  line-height: 1;
  transition: color 300ms ease;
}

.process-item.active .process-num {
  color: rgba(143, 208, 195, 0.55);
}

.process-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(238, 246, 244, 0.75);
  line-height: 1.2;
  transition: color 300ms ease;
}

.process-item.active .process-title {
  color: var(--mist-100);
}

.process-toggle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(143, 208, 195, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-400);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1;
  margin-top: 0.4rem;
  transition: transform 350ms ease, border-color 300ms ease, background 300ms ease;
}

.process-item.active .process-toggle {
  transform: rotate(45deg);
  border-color: var(--teal-400);
  background: rgba(143, 208, 195, 0.08);
}

.process-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease;
}

.process-item.active .process-body {
  max-height: 600px;
}

.process-body-inner {
  padding: 0 1.5rem 1.8rem;
  border-top: 1px solid var(--line);
}

.step-sub {
  font-size: 0.78rem;
  color: var(--teal-300);
  font-weight: 500;
  margin: 1rem 0 0.75rem;
  line-height: 1.4;
}

.process-body-inner > p {
  color: rgba(238, 246, 244, 0.65);
  font-size: 0.83rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

.step-deliverable {
  border-top: 1px solid var(--line);
  padding-top: 0.75rem;
}

.step-deliverable strong {
  display: block;
  color: var(--sand-300);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
  font-weight: 700;
}

.step-deliverable p {
  font-size: 0.78rem;
  color: rgba(238, 246, 244, 0.38);
  line-height: 1.6;
}

.roi-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  margin-bottom: 3.5rem;
}

.roi-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--mist-100);
  margin-bottom: 0.35rem;
}

.roi-item p {
  font-size: 0.83rem;
  color: rgba(238, 246, 244, 0.55);
  line-height: 1.65;
}

.roi-note {
  grid-column: 1 / -1;
  font-size: 0.82rem;
  color: var(--teal-400);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 0.25rem;
  font-style: italic;
}

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

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

@media (max-width: 1100px) {
  .hero-grid,
  .solution-grid,
  .oversight-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .problem-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem-image {
    position: static;
    max-height: 420px;
  }

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

  .hero-art {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
  }

  .hero-copy {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 15vw, 4.9rem);
  }

  .hero-art {
    height: 480px;
  }

  .stats-strip {
    padding: 1rem 1.25rem;
  }

  .signal-panel,
  .stats-strip,
  .problem-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .why-strip {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .approach-body {
    padding-left: 0;
  }

  .approach-trigger {
    grid-template-columns: 2.5rem 1fr auto;
    gap: 1rem;
  }

  .approach-num {
    font-size: 2rem;
  }

  .layer-tabs {
    gap: 0.5rem;
  }

  .layer-tab {
    font-size: 0.78rem;
    padding: 0.48rem 0.9rem;
  }

  .section-title {
    font-size: clamp(2.2rem, 10vw, 3.6rem);
  }

  .packages-header,
  .site-footer .wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-steps {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

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

  .process-item:last-child {
    border-bottom: none;
  }

  .roi-strip {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
