:root {
  --green-950: #0b3129;
  --green-900: #103f34;
  --green-800: #175545;
  --green-700: #246b57;
  --green-100: #e8f0ec;
  --gold-700: #765016;
  --gold-600: #b98628;
  --gold-500: #c99a3f;
  --gold-200: #ead6a6;
  --gold-100: #f5ead0;
  --ivory: #f7f3e9;
  --paper: #fdfcf8;
  --white: #ffffff;
  --ink: #18362e;
  --muted: #5e6d67;
  --line: #d7d9d1;
  --rust: #944e3d;
  --shadow: 0 18px 52px rgba(11, 49, 41, 0.12);
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}

body,
button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7.2vw, 92px);
  font-weight: 500;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 500;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--green-950);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px max(22px, calc((100% - var(--content)) / 2));
  border-bottom: 1px solid transparent;
  background: rgba(247, 243, 233, 0.92);
  backdrop-filter: blur(12px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(157, 110, 29, 0.2);
  box-shadow: 0 6px 24px rgba(11, 49, 41, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand {
  width: 224px;
  display: block;
}

.brand img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.main-nav a {
  color: var(--green-900);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--gold-700);
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border: 1px solid var(--green-900);
  border-radius: 6px;
  background: var(--green-900);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(11, 49, 41, 0.16);
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.button:hover {
  --sos-button-surface: var(--green-800);
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 49, 41, 0.2);
}

.button:focus-visible,
.mobile-cta:focus-visible,
.text-link:focus-visible,
.main-nav a:focus-visible,
.branch-tab:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--gold-500);
  outline-offset: 3px;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 14px;
}

.button-gold {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--green-950);
}

.button-gold:hover {
  --sos-button-surface: var(--gold-200);
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
  padding: 390px 24px 30px;
  background: var(--ivory);
  border-bottom: 1px solid var(--gold-200);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 28px;
  border: 1px solid rgba(157, 110, 29, 0.34);
  pointer-events: none;
}

.hero-logo-stage {
  position: absolute;
  z-index: 0;
  top: 68px;
  right: 0;
  left: 0;
  height: 330px;
  overflow: hidden;
  pointer-events: none;
}

.hero-logo {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(320px, 30vw, 390px);
  aspect-ratio: 1600 / 1381;
  pointer-events: auto;
  touch-action: pan-y;
  transform: translate(-50%, -50%);
}

.hero-logo > .hero-logo-fallback,
.hero-logo > .hero-logo-reveal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.hero-logo-fallback {
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(11, 49, 41, 0.13));
  opacity: 1;
  transition: opacity 420ms ease;
}

.hero-logo-reveal {
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    #000 0%,
    #000 86%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse at center,
    #000 0%,
    #000 86%,
    transparent 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 420ms ease;
}

.hero-logo.logo-reveal-active > .hero-logo-fallback {
  opacity: 0;
}

.hero-logo.logo-reveal-active > .hero-logo-reveal {
  opacity: 1;
}

.hero-logo.logo-reveal-settled > .hero-logo-fallback {
  opacity: 1;
}

.hero-logo.logo-reveal-settled > .hero-logo-reveal {
  opacity: 0;
}

.hero-logo-lens {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  width: clamp(96px, 8vw, 112px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid rgba(180, 135, 43, 0.96);
  border-radius: 50%;
  background: rgb(247, 241, 230);
  box-shadow:
    0 10px 22px rgba(23, 61, 52, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.92),
    inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.82);
  transition:
    opacity 160ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: left, top, opacity, transform;
}

.hero-logo-lens::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-top: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  pointer-events: none;
  transform: rotate(-24deg);
}

.hero-logo-lens-image {
  position: absolute;
  inset: auto;
  max-width: none;
  object-fit: fill;
  filter: none;
  opacity: 1;
  transition: none;
}

.hero-logo.logo-lens-active .hero-logo-lens {
  opacity: 1;
  transform: scale(1);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--content), 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-copy {
  max-width: 900px;
  margin: 0 auto;
}

.plan-carousel {
  display: grid;
  justify-items: center;
  gap: 7px;
  margin: 0 auto 14px;
}

.plan-carousel-title {
  margin: 0;
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.plan-carousel-row {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--green-900);
  font-size: clamp(16px, 1.65vw, 20px);
  font-weight: 800;
  line-height: 1.15;
}

.plan-carousel-prefix {
  width: 68px;
  flex: 0 0 auto;
}

.plan-carousel-prefix img {
  width: 100%;
  height: auto;
}

.plan-carousel-badge {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 5px 25px;
  border-radius: 64px;
  background: #f7f1e6;
  color: var(--gold-700);
  box-shadow: inset 0 0 0 1px rgba(180, 135, 43, 0.2);
  transition: width 450ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
}

.plan-carousel-text {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.hero-inner h1 {
  max-width: 860px;
  margin: 0 auto 12px;
  font-size: clamp(42px, 5.6vw, 76px);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-700);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: var(--gold-200);
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #284b40;
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-weight: 800;
  text-underline-offset: 5px;
}

.hero-trust {
  max-width: 720px;
  margin: 16px auto 0;
  padding-top: 14px;
  border-top: 1px solid rgba(157, 110, 29, 0.35);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.section-inner {
  width: min(var(--content), calc(100% - 44px));
  margin: 0 auto;
}

.band {
  background: var(--ivory);
}

.recognition {
  padding: 84px 0;
}

.recognition-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.recognition-grid h2 {
  margin-bottom: 0;
}

.recognition-copy {
  padding-left: 28px;
  border-left: 3px solid var(--gold-500);
  color: #395149;
  font-size: 19px;
}

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

.convergence-preview {
  position: relative;
  min-height: 520px;
  display: none;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-900);
  color: var(--white);
}

html.has-convergence-preview .convergence-preview {
  display: block;
}

.convergence-preview::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(16, 63, 52, 0.99) 0%,
    rgba(16, 63, 52, 0.97) 32%,
    rgba(16, 63, 52, 0.86) 50%,
    rgba(16, 63, 52, 0.2) 72%,
    rgba(16, 63, 52, 0.03) 100%
  );
  pointer-events: none;
}

.convergence-preview::after {
  content: "";
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(234, 214, 166, 0.55);
}

.convergence-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.convergence-canvas canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.convergence-inner {
  position: relative;
  z-index: 4;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 72px 0;
}

.convergence-copy {
  max-width: 550px;
}

.convergence-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(40px, 4.4vw, 58px);
}

.convergence-copy > p:last-of-type {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
  line-height: 1.62;
}

.convergence-direction {
  max-width: 430px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 32px;
  color: var(--gold-200);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.convergence-direction i {
  height: 1px;
  display: block;
  background: linear-gradient(90deg, rgba(234, 214, 166, 0.22), var(--gold-500));
}

.convergence-direction strong {
  color: var(--gold-500);
}

.process,
.branches,
.responsibility,
.pricing {
  padding: 110px 0;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 54px;
}

.section-heading.narrow {
  max-width: 650px;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 19px;
}

.steps {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.steps li {
  min-width: 0;
  padding: 30px 24px 0;
  border-right: 1px solid var(--line);
}

.steps li:first-child {
  padding-left: 0;
}

.steps li:last-child {
  padding-right: 0;
  border-right: 0;
}

.step-number {
  display: block;
  margin-bottom: 42px;
  color: var(--gold-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.steps h3 {
  font-size: 23px;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.band-dark {
  position: relative;
  padding: 74px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-900);
  color: var(--white);
}

.diagnostic-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.diagnostic-layout h2 {
  margin-bottom: 14px;
}

.diagnostic-layout p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #dce8e3;
}

.diagnostic-action {
  min-width: 270px;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-left: 48px;
  border-left: 1px solid rgba(234, 214, 166, 0.42);
}

.large-number {
  color: var(--gold-200);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
}

.branches {
  overflow: hidden;
}

.branch-tabs {
  width: 100%;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 12px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.branch-tabs::-webkit-scrollbar {
  display: none;
}

.branch-tab {
  min-height: 46px;
  flex: 0 0 auto;
  scroll-snap-align: start;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  color: var(--green-900);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.branch-tab.is-active {
  border-color: var(--green-900);
  --sos-button-surface: var(--green-900);
  color: var(--white);
}

.branch-stage {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(340px, 0.95fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
  margin-top: 32px;
  padding: 48px 0;
  border-top: 1px solid var(--gold-200);
  border-right: 0;
  border-bottom: 1px solid var(--gold-200);
  border-left: 0;
  border-radius: 0;
  background: transparent;
}

.branch-image-wrap {
  min-height: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid var(--gold-200);
  border-radius: 4px;
  background: #e7e3d9;
}

.branch-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  transition: opacity 150ms ease, transform 240ms ease;
}

.branch-image-wrap img.is-changing {
  opacity: 0;
  transform: scale(1.01);
}

.branch-kicker {
  margin-bottom: 10px;
  color: var(--rust);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.branch-copy h3 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.branch-copy > p {
  color: var(--muted);
}

.branch-visual-note {
  max-width: 860px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
}

.branch-example {
  margin: 26px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--gold-200);
}

.deliverables {
  padding: 110px 0 120px;
}

.preview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 90px;
  align-items: center;
}

.preview-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
  padding: 24px 24px 18px;
  border-top: 1px solid #c9c0ad;
  border-bottom: 1px solid #c9c0ad;
  background: #e7e1d6;
}

.preview-stack:focus-visible {
  outline: 3px solid var(--green-950);
  outline-offset: 4px;
}

.preview-page {
  margin: 0;
}

.preview-sheet {
  overflow: hidden;
  border: 1px solid rgba(79, 75, 66, 0.22);
  border-radius: 2px;
  background: var(--white);
  box-shadow: 0 14px 28px rgba(43, 51, 46, 0.16);
}

.preview-sheet img {
  width: 100%;
  height: auto;
}

.preview-page figcaption {
  margin-top: 10px;
  color: #5f615b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.deliverable-list {
  border-top: 1px solid var(--line);
}

.deliverable-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.deliverable-list span {
  grid-row: 1 / 3;
  color: var(--gold-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.deliverable-list h3,
.deliverable-list p {
  margin-bottom: 0;
}

.deliverable-list p {
  color: var(--muted);
  font-size: 15px;
}

.responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.responsibility-grid > div {
  padding: 38px 44px 40px 0;
}

.responsibility-grid > div + div {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.responsibility-grid h3 {
  margin-bottom: 20px;
}

.responsibility-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.responsibility-grid li {
  position: relative;
  margin-top: 13px;
  padding-left: 25px;
}

.responsibility-grid li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 900;
}

.included li::before {
  content: "✓";
  color: var(--green-700);
}

.not-included li::before {
  content: "×";
  color: var(--rust);
}

.your-work {
  max-width: 820px;
  margin: 48px auto 0;
  padding: 26px 30px;
  border-left: 4px solid var(--gold-500);
  background: var(--gold-100);
}

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

.plan-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 0;
  background: var(--green-900);
  color: var(--white);
}

.sos-flow-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.66;
  pointer-events: none;
}

.plan-showcase-inner {
  position: relative;
  z-index: 2;
}

.plan-showcase-heading {
  max-width: 850px;
}

.plan-showcase-heading .eyebrow {
  color: var(--gold-200);
}

.plan-showcase-heading h2 {
  color: var(--white);
}

.plan-showcase-heading > p:last-child {
  color: #dce8e3;
}

.plan-cover-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.plan-cover-list li {
  min-width: 0;
}

.plan-cover {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(180, 135, 43, 0.56);
  border-radius: 4px;
  background: var(--ivory);
  color: var(--green-950);
  text-align: left;
  box-shadow: 0 16px 34px rgba(4, 28, 23, 0.2);
  cursor: pointer;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 260ms ease;
}

.plan-cover-media {
  position: relative;
  display: block;
  aspect-ratio: 0.707;
  overflow: hidden;
  background: var(--ivory);
}

.plan-cover-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  pointer-events: none;
}

.plan-cover-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.plan-cover-label {
  min-height: 68px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: start;
  padding: 12px 11px 13px;
  border-top: 1px solid rgba(180, 135, 43, 0.34);
}

.plan-cover-code {
  padding-top: 2px;
  color: var(--gold-700);
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.plan-cover strong {
  color: var(--green-900);
  font-size: 13px;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.plan-cover:hover,
.plan-cover:focus-visible {
  border-color: var(--gold-200);
  box-shadow:
    0 20px 42px rgba(4, 28, 23, 0.28),
    0 0 0 2px rgba(180, 135, 43, 0.3);
  transform: translateY(-5px);
}

.plan-cover:hover .plan-cover-media img,
.plan-cover:focus-visible .plan-cover-media img,
.plan-cover.is-active .plan-cover-media img {
  transform: scale(1.018);
}

.plan-cover:focus-visible {
  outline: 3px solid var(--gold-200);
  outline-offset: 3px;
}

.plan-cover.is-active {
  border: 3px solid var(--gold-500);
  box-shadow:
    0 22px 46px rgba(4, 28, 23, 0.34),
    0 0 26px rgba(180, 135, 43, 0.2);
  transform: translateY(-7px);
}

.plan-detail {
  display: grid;
  grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.35fr);
  gap: 34px 58px;
  align-items: start;
  margin-top: 56px;
  padding: 34px 0;
  border-top: 1px solid rgba(180, 135, 43, 0.7);
  border-bottom: 1px solid rgba(180, 135, 43, 0.34);
}

.plan-detail-code {
  margin: 0 0 8px;
  color: var(--gold-200);
  font-size: 13px;
  font-weight: 900;
}

.plan-detail-heading h3 {
  margin: 0;
  color: var(--white);
  font-size: 32px;
  line-height: 1.08;
}

.plan-detail-branch {
  margin: 18px 0 0;
  color: #dce8e3;
  font-size: 14px;
}

.plan-detail-branch strong {
  color: var(--gold-200);
}

.plan-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.plan-detail-grid > div {
  min-width: 0;
  padding: 0 22px;
  border-left: 1px solid rgba(180, 135, 43, 0.34);
}

.plan-detail-grid > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.plan-detail-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--gold-200);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-detail-grid p {
  margin: 0;
  color: #edf3f0;
  font-size: 15px;
  line-height: 1.55;
}

.plan-detail-cta {
  grid-column: 2;
  justify-self: start;
}

.pricing {
  background: var(--paper);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 92px;
  align-items: center;
}

.pricing-copy h2 {
  font-size: clamp(38px, 5vw, 64px);
}

.pricing-copy > p:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
}

.pricing-note {
  display: grid;
  gap: 3px;
  margin-top: 30px;
  padding: 20px 22px;
  border-left: 4px solid var(--gold-500);
  background: var(--gold-100);
}

.pricing-note span {
  color: var(--muted);
  font-size: 15px;
}

.price-panel {
  padding: 36px;
  border: 1px solid var(--gold-200);
  border-radius: 8px;
  background: var(--ivory);
  box-shadow: var(--shadow);
}

.price-label {
  margin-bottom: 10px;
  color: var(--green-700);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  color: var(--green-950);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 66px;
  line-height: 1;
}

.price span {
  font-size: 34px;
}

.price-panel .button {
  width: 100%;
  margin: 14px 0;
}

.price-panel small {
  display: block;
  color: var(--muted);
  text-align: center;
}

.pack-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pack-strip div {
  display: grid;
  gap: 4px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.pack-strip div:first-child {
  padding-left: 0;
}

.pack-strip div:nth-child(3) {
  padding-right: 0;
  border-right: 0;
}

.pack-strip span {
  color: var(--gold-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}

.pack-strip > p {
  grid-column: 1 / -1;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.purchase-facts {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.purchase-facts > div {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  padding: 20px 18px;
  border-right: 1px solid var(--line);
}

.purchase-facts > div:first-child {
  padding-left: 0;
}

.purchase-facts > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.purchase-facts strong {
  color: var(--green-900);
  font-size: 13px;
  text-transform: uppercase;
}

.purchase-facts span {
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.faq {
  padding: 110px 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 90px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  color: var(--green-900);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 16px;
  right: 6px;
  color: var(--gold-700);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

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

.faq-list details p {
  max-width: 720px;
  margin: 0;
  padding: 0 48px 22px 0;
  color: var(--muted);
}

.final-cta {
  position: relative;
  padding: 92px 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--green-950);
  color: var(--white);
  text-align: center;
}

.final-cta .section-inner {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.sos-rain-canvas {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  opacity: 0.74;
  mix-blend-mode: screen;
}

.convergence-preview > .sos-rain-canvas {
  z-index: 3;
  opacity: 0.42;
}

.band-dark > .section-inner {
  position: relative;
  z-index: 2;
}

.final-cta img {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.final-cta h2 {
  margin-bottom: 12px;
}

.final-cta p:not(.eyebrow) {
  margin-bottom: 28px;
  color: #dce8e3;
  font-size: 20px;
}

.site-footer {
  width: min(var(--content), calc(100% - 44px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin: 0 auto;
  padding: 50px 0;
  color: var(--muted);
  font-size: 13px;
}

.site-footer img {
  width: 210px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

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

.footer-meta {
  display: grid;
  justify-items: end;
  gap: 16px;
  text-align: right;
}

.footer-links {
  max-width: 720px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--gold-dark);
}

.pricing-legal-entry {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 26px;
  padding-top: 24px;
  padding-bottom: 4px;
  text-align: center;
}

.pricing-legal-entry .text-link,
.footer-legal-link {
  color: var(--green);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
  color: var(--gold-dark);
}

.back-to-top {
  min-width: 168px;
}

.mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 210px 1fr auto;
  }

  .main-nav {
    display: none;
  }

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

  .purchase-facts > div,
  .purchase-facts > div:first-child,
  .purchase-facts > div:last-child {
    padding: 18px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .purchase-facts > div:nth-child(2n) {
    border-right: 0;
  }

  .purchase-facts > div:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: 800px;
    padding: 430px 24px 30px;
  }

  .hero-logo-stage {
    top: 68px;
    right: 0;
    left: 0;
    height: 350px;
  }

  .hero-logo {
    width: min(390px, 46vw);
  }

  .hero-inner h1 {
    max-width: 760px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }

  .steps li:nth-child(2) {
    border-right: 0;
  }

  .steps li:nth-child(3) {
    padding-left: 0;
  }

  .branch-stage,
  .preview-layout,
  .pricing-layout,
  .faq-layout {
    gap: 54px;
  }

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-stack {
    width: min(720px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 76px;
  }

  body {
    padding-bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    font-size: 16px;
  }

  .purchase-facts {
    grid-template-columns: 1fr;
  }

  .purchase-facts > div,
  .purchase-facts > div:first-child,
  .purchase-facts > div:last-child,
  .purchase-facts > div:nth-child(2n) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .purchase-facts > div:last-child {
    border-bottom: 0;
  }

  .footer-links {
    justify-content: flex-start;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 36px;
  }

  .site-header {
    height: 68px;
    grid-template-columns: 1fr auto;
    padding: 8px 14px;
  }

  .brand {
    width: 184px;
  }

  .brand img {
    height: 50px;
  }

  .site-header .button {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .hero {
    min-height: 760px;
    padding: 270px 18px 24px;
  }

  .hero::before {
    inset: 12px;
  }

  .hero-logo-stage {
    top: 58px;
    right: 0;
    left: 0;
    height: 190px;
  }

  .hero-logo {
    width: min(230px, 66vw);
  }

  .hero-logo-lens {
    width: 82px;
  }

  .plan-carousel {
    gap: 5px;
    margin-bottom: 12px;
  }

  .plan-carousel-title {
    font-size: 11px;
  }

  .plan-carousel-row {
    width: 100%;
    min-height: 36px;
    gap: 8px;
    font-size: 14px;
  }

  .plan-carousel-prefix {
    width: 50px;
  }

  .plan-carousel-badge {
    min-height: 34px;
    max-width: calc(100% - 58px);
    padding: 4px 8px;
  }

  .hero-inner h1 {
    font-size: 42px;
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

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

  .text-link {
    text-align: center;
  }

  .hero-trust {
    margin-top: 14px;
    padding-top: 12px;
    font-size: 12px;
  }

  .section-inner {
    width: min(100% - 28px, var(--content));
  }

  .recognition,
  .process,
  .branches,
  .responsibility,
  .pricing,
  .deliverables,
  .plan-showcase,
  .faq {
    padding: 72px 0;
  }

  .recognition {
    padding-top: 54px;
  }

  .recognition-grid,
  .diagnostic-layout,
  .branch-stage,
  .responsibility-grid,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .recognition-grid {
    gap: 30px;
  }

  .recognition-copy {
    padding-left: 18px;
    font-size: 17px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading > p:last-child {
    font-size: 17px;
  }

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

  .steps li,
  .steps li:first-child,
  .steps li:nth-child(3) {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .step-number {
    margin-bottom: 18px;
  }

  .diagnostic-layout {
    gap: 30px;
  }

  .diagnostic-action {
    min-width: 0;
    justify-items: stretch;
    padding: 26px 0 0;
    border-top: 1px solid rgba(234, 214, 166, 0.42);
    border-left: 0;
  }

  .large-number {
    text-align: center;
  }

  .branch-stage {
    min-height: 0;
    gap: 28px;
    padding: 26px 0;
  }

  .branch-image-wrap {
    width: 100%;
  }

  .branch-copy h3 {
    font-size: 31px;
  }

  .preview-stack {
    grid-auto-flow: column;
    grid-auto-columns: min(82%, 330px);
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding: 14px 14px 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .preview-page {
    scroll-snap-align: start;
  }

  .responsibility-grid {
    border-bottom: 0;
  }

  .responsibility-grid > div,
  .responsibility-grid > div + div {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
    border-left: 0;
  }

  .your-work {
    margin-top: 36px;
    padding: 22px 20px;
  }

  .plan-cover-list {
    grid-auto-flow: column;
    grid-auto-columns: 184px;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    margin-right: -14px;
    margin-left: -14px;
    padding: 8px 14px 18px;
    scroll-padding-inline: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .plan-cover-list::-webkit-scrollbar {
    display: none;
  }

  .plan-cover-list li {
    scroll-snap-align: start;
  }

  .plan-cover-label {
    min-height: 64px;
    padding: 11px 10px 12px;
  }

  .plan-detail {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 38px;
  }

  .plan-detail-heading h3 {
    font-size: 28px;
  }

  .plan-detail-grid {
    grid-template-columns: 1fr;
  }

  .plan-detail-grid > div,
  .plan-detail-grid > div:first-child {
    padding: 18px 0;
    border-top: 1px solid rgba(180, 135, 43, 0.3);
    border-left: 0;
  }

  .plan-detail-grid > div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .plan-detail-cta {
    grid-column: 1;
    width: 100%;
  }

  .pricing-layout {
    gap: 44px;
  }

  .price-panel {
    padding: 28px 22px;
  }

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

  .pack-strip div,
  .pack-strip div:first-child,
  .pack-strip div:nth-child(3) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pack-strip > p {
    grid-column: auto;
    border-top: 0;
  }

  .faq-layout {
    gap: 14px;
  }

  .site-footer {
    width: min(100% - 28px, var(--content));
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 38px 0;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    z-index: 120;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    left: 10px;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold-500);
    border-radius: 6px;
    background: var(--green-900);
    color: var(--white);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(11, 49, 41, 0.26);
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 18px));
    transition: opacity 180ms ease, transform 220ms ease;
  }

  .mobile-cta.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 43px;
  }

  h2 {
    font-size: 32px;
  }

  .brand {
    width: 164px;
  }

  .preview-stack {
    grid-auto-columns: 88%;
  }
}

@media (max-width: 760px) {
  .convergence-preview,
  .convergence-inner {
    min-height: 610px;
  }

  .convergence-preview::before {
    background: linear-gradient(
      180deg,
      rgba(16, 63, 52, 0.99) 0%,
      rgba(16, 63, 52, 0.97) 48%,
      rgba(16, 63, 52, 0.72) 64%,
      rgba(16, 63, 52, 0.08) 100%
    );
  }

  .convergence-inner {
    align-items: flex-start;
    padding: 54px 0 280px;
  }

  .convergence-copy h2 {
    margin-bottom: 18px;
    font-size: 36px;
  }

  .convergence-copy > p:last-of-type {
    font-size: 16px;
    line-height: 1.55;
  }

  .convergence-direction {
    gap: 10px;
    margin-top: 24px;
    font-size: 11px;
  }
}

@property --sos-button-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:is(.button, .branch-tab, .mobile-cta) {
  --sos-button-angle: 0deg;
  --sos-button-surface: var(--green-900);
  --sos-button-border: rgba(180, 135, 43, 0.28);
  --sos-button-highlight: rgba(255, 232, 174, 0.98);
  --sos-button-accent: rgba(180, 135, 43, 0.94);
  --sos-button-aura: rgba(180, 135, 43, 0.5);
  isolation: isolate;
  overflow: hidden;
  border-width: 3px;
  border-color: transparent;
  background:
    linear-gradient(var(--sos-button-surface), var(--sos-button-surface)) padding-box,
    conic-gradient(
        from var(--sos-button-angle),
        var(--sos-button-border) 0deg,
        var(--sos-button-border) 205deg,
        rgba(255, 255, 255, 0.34) 236deg,
        var(--sos-button-accent) 270deg,
        var(--sos-button-highlight) 306deg,
        var(--sos-button-accent) 336deg,
        var(--sos-button-border) 360deg
      )
      border-box;
  animation: sos-button-border-turn 3.6s linear infinite;
  transition:
    transform 380ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 380ms ease,
    color 180ms ease;
}

.button,
.branch-tab {
  position: relative;
}

:is(.button, .branch-tab, .mobile-cta)::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 3px;
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.62);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24' viewBox='0 0 28 24'%3E%3Cpath fill='black' d='m14 5 .8 2.2L17 8l-2.2.8L14 11l-.8-2.2L11 8l2.2-.8L14 5Zm9 7 .55 1.45L25 14l-1.45.55L23 16l-.55-1.45L21 14l1.45-.55L23 12ZM5 14l.7 1.8 1.8.7-1.8.7L5 19l-.7-1.8-1.8-.7 1.8-.7L5 14Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='24' viewBox='0 0 28 24'%3E%3Cpath fill='black' d='m14 5 .8 2.2L17 8l-2.2.8L14 11l-.8-2.2L11 8l2.2-.8L14 5Zm9 7 .55 1.45L25 14l-1.45.55L23 16l-.55-1.45L21 14l1.45-.55L23 12ZM5 14l.7 1.8 1.8.7-1.8.7L5 19l-.7-1.8-1.8-.7 1.8-.7L5 14Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: repeat;
  mask-repeat: repeat;
  -webkit-mask-size: 28px 24px;
  mask-size: 28px 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}

.button-effect-label {
  position: relative;
  z-index: 2;
  display: block;
}

.button:hover,
.button:focus-visible,
.branch-tab:hover,
.branch-tab:focus-visible,
.mobile-cta:hover,
.mobile-cta:focus-visible {
  transform: translateY(-2px) scale(1.035);
  box-shadow:
    0 10px 24px rgba(11, 49, 41, 0.18),
    0 0 20px var(--sos-button-aura);
}

:is(.button, .branch-tab, .mobile-cta):is(:hover, :focus-visible)::after {
  opacity: 0.28;
}

:is(.button, .branch-tab, .mobile-cta):active {
  transform: translateY(0) scale(0.985);
  transition-duration: 90ms;
}

.button {
  --sos-button-surface: var(--green-900);
}

.button:hover,
.button:focus-visible {
  --sos-button-surface: var(--green-800);
  box-shadow:
    0 14px 28px rgba(11, 49, 41, 0.2),
    0 0 22px var(--sos-button-aura);
}

.button-gold {
  --sos-button-surface: var(--gold-500);
  --sos-button-border: rgba(23, 61, 52, 0.3);
  --sos-button-highlight: rgba(112, 157, 143, 0.98);
  --sos-button-accent: rgba(23, 61, 52, 0.94);
  --sos-button-aura: rgba(23, 61, 52, 0.4);
}

.button-gold:hover,
.button-gold:focus-visible {
  --sos-button-surface: var(--gold-200);
}

.branch-tab {
  --sos-button-surface: var(--white);
  --sos-button-border: rgba(180, 135, 43, 0.26);
  --sos-button-highlight: rgba(255, 232, 174, 0.98);
  --sos-button-accent: rgba(180, 135, 43, 0.94);
  --sos-button-aura: rgba(180, 135, 43, 0.42);
}

.branch-tab.is-active {
  --sos-button-surface: var(--green-900);
  --sos-button-border: rgba(180, 135, 43, 0.28);
  --sos-button-accent: rgba(180, 135, 43, 0.94);
  --sos-button-highlight: rgba(255, 232, 174, 0.98);
  --sos-button-aura: rgba(180, 135, 43, 0.48);
}

.mobile-cta {
  --sos-button-surface: var(--green-900);
}

@keyframes sos-button-border-turn {
  to {
    --sos-button-angle: 360deg;
  }
}

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

  html:not(.motion-enabled) *,
  html:not(.motion-enabled) *::before,
  html:not(.motion-enabled) *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:is(a, button, summary, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px var(--green-950) !important;
}
