:root {
  --bg: #eef4f1;
  --bg-deep: #0d2d33;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --ink: #13272d;
  --muted: #5c6f73;
  --line: rgba(19, 39, 45, 0.08);
  --teal: #12797a;
  --teal-deep: #0d5d63;
  --green: #79bc42;
  --green-deep: #5c9f2e;
  --white: #f8fcfb;
  --shadow: 0 24px 60px rgba(16, 49, 56, 0.08);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(18, 121, 122, 0.12), transparent 24%),
    radial-gradient(circle at 92% 16%, rgba(121, 188, 66, 0.12), transparent 22%),
    linear-gradient(180deg, #f4f8f4 0%, var(--bg) 100%);
}

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

.page-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 16px auto 20px;
  padding: 16px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(16, 49, 56, 0.07);
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(18, 121, 122, 0.14));
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  font-weight: 800;
}

.brand-text span {
  font-size: 0.84rem;
  color: var(--muted);
}

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

.site-nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--ink);
}

.login-link {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  white-space: nowrap;
}

.login-link:hover {
  color: var(--ink);
}

.mobile-nav {
  display: none;
  position: relative;
  z-index: 140;
}

.mobile-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(19, 39, 45, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 12px 24px rgba(16, 49, 56, 0.08);
}

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

.mobile-nav-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: min(290px, calc(100vw - 32px));
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(19, 39, 45, 0.08);
  box-shadow: 0 28px 56px rgba(16, 49, 56, 0.16);
  z-index: 160;
}

.mobile-nav-links {
  display: grid;
  gap: 10px;
}

.mobile-nav-links a {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  color: var(--ink);
  font-weight: 700;
  background: rgba(19, 39, 45, 0.03);
}

.mobile-nav-links a.nav-cta {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  text-shadow: none;
  opacity: 1 !important;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button-primary {
  background: linear-gradient(145deg, var(--teal), var(--green-deep));
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  box-shadow: 0 16px 28px rgba(17, 103, 97, 0.18);
}

a.nav-cta,
a.nav-cta:link,
a.nav-cta:visited,
a.nav-cta:hover,
a.nav-cta:active,
.site-nav .nav-cta,
.mobile-nav .nav-cta {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  text-shadow: none;
  opacity: 1 !important;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: 28px;
  padding: 30px 0 18px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, #0d2c32, #15515a);
  box-shadow: 0 32px 64px rgba(11, 42, 48, 0.18);
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -70px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(121, 188, 66, 0.25), transparent 66%);
}

.eyebrow,
.section-label,
.card-kicker,
.panel-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.eyebrow,
.panel-label {
  color: #8fd8d0;
}

.section-label {
  color: var(--teal);
}

.card-kicker {
  color: var(--green-deep);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  letter-spacing: -0.04em;
  color: var(--ink);
}

h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(3.1rem, 5.8vw, 5.4rem);
  line-height: 0.95;
  max-width: 10.5ch;
  color: var(--ink);
}

h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.02;
  max-width: 13ch;
}

h3 {
  font-size: 1.28rem;
  line-height: 1.22;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy h1 {
  color: var(--white);
}

.hero-copy .lead {
  color: rgba(241, 251, 250, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0;
}

.proof-list {
  margin: 0;
  padding-left: 20px;
  color: rgba(235, 247, 246, 0.86);
  line-height: 1.8;
}

.proof-list li + li {
  margin-top: 8px;
}

.hero-panel {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.hero-panel-main,
.hero-panel-grid article,
.value-strip article,
.path-card,
.local-copy {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-panel-main {
  padding: 30px;
  border-radius: var(--radius-lg);
}

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

.hero-panel-grid article {
  padding: 22px;
  border-radius: var(--radius-md);
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
}

.hero-panel-grid span {
  display: block;
  margin-bottom: 10px;
  min-height: 2.8em;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.hero-panel-grid strong {
  display: block;
  line-height: 1.45;
}

.value-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 8px 0 4px;
}

.value-strip article {
  padding: 22px;
  border-radius: var(--radius-md);
}

.value-strip span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--teal);
}

.content-section {
  padding: 34px 0 8px;
}

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

.section-head-light .section-label,
.section-head-light h2 {
  color: var(--white);
}

.section-note {
  max-width: 58ch;
}

.path-grid,
.capability-grid {
  display: grid;
  gap: 20px;
}

.two-column,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

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

.path-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.soft-card,
.split-card,
.pricing-card,
.quote-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.soft-card > .two-column {
  margin-top: 20px;
}

.quote-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(300px, 0.42fr);
  align-items: center;
  gap: clamp(24px, 4vw, 58px);
}

.quote-logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 20%, rgba(18, 121, 122, 0.16), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(235, 246, 239, 0.68));
  border: 1px solid rgba(19, 39, 45, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.quote-logo-lockup img {
  display: block;
  width: min(100%, 390px);
  max-height: 430px;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(5, 34, 38, 0.14));
}

.service-explainer-head {
  align-items: start;
}

.service-explainer-grid {
  margin-top: 12px;
}

.quote-panel form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.quote-panel label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  color: var(--ink);
}

.quote-panel input,
.quote-panel select,
.quote-panel textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(19, 39, 45, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.quote-panel textarea {
  min-height: 160px;
  resize: vertical;
}

.quote-panel input:focus,
.quote-panel select:focus,
.quote-panel textarea:focus {
  outline: none;
  border-color: rgba(18, 121, 122, 0.45);
  box-shadow: 0 0 0 4px rgba(18, 121, 122, 0.12);
}

.quote-panel .button {
  margin-top: 8px;
}

.quote-panel .button-primary {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white);
}

.quote-panel button,
.quote-panel button.button-primary,
.quote-panel button.button-primary span {
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
}

.quote-panel button[type="submit"] {
  background: linear-gradient(145deg, var(--teal), var(--green-deep)) !important;
  color: var(--white) !important;
  -webkit-text-fill-color: var(--white) !important;
  border: none !important;
  opacity: 1 !important;
}

.path-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 121, 122, 0.22);
}

.path-card h3 {
  max-width: 16ch;
}

.path-card span:last-child {
  display: inline-block;
  margin-top: 6px;
  font-weight: 800;
  color: var(--teal);
}

.button-cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.price-line {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.price-line span {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--muted);
}

.feature-list {
  margin: 18px 0 22px;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 8px;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(121, 188, 66, 0.14);
  color: var(--green-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.featured-tier {
  border-color: rgba(18, 121, 122, 0.18);
  box-shadow: 0 28px 56px rgba(16, 49, 56, 0.12);
}

.pricing-button-light,
.pricing-button-dark {
  border-color: rgba(19, 39, 45, 0.12);
  background: rgba(19, 39, 45, 0.04);
  color: var(--ink);
}

.pricing-button-row {
  margin-top: 22px;
}

.capability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.capability-grid article {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.capability-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
}

.journey-section {
  padding: 30px 0 8px;
}

.accent-band {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 245, 0.96));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.journey-band {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #10786d, #539c2e);
  color: var(--white);
  box-shadow: 0 28px 56px rgba(16, 120, 109, 0.18);
}

.journey-steps {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.journey-steps article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.journey-steps article:first-child {
  padding-top: 0;
  border-top: 0;
}

.journey-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.journey-steps h3,
.journey-steps p {
  color: var(--white);
}

.pricing-callout,
.pricing-offer {
  display: grid;
  gap: 10px;
}

.table-wrap {
  overflow-x: auto;
}

.pricing-table,
.comparison-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.pricing-list {
  display: grid;
  gap: 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}

.pricing-list-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.pricing-list-row span {
  color: var(--ink);
  font-weight: 600;
  line-height: 1.35;
}

.pricing-list-row strong {
  white-space: nowrap;
  color: var(--ink);
}

.pricing-table th,
.pricing-table td,
.comparison-table th,
.comparison-table td {
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-table tbody tr:first-child th,
.pricing-table tbody tr:first-child td,
.comparison-table tbody tr:first-child th,
.comparison-table tbody tr:first-child td {
  border-top: 0;
}

.pricing-table th,
.comparison-table th {
  color: var(--ink);
  font-weight: 700;
}

.pricing-table td,
.comparison-table td {
  color: var(--muted);
}

.comparison-table thead th {
  border-top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(19, 39, 45, 0.03);
}

.comparison-stack {
  display: grid;
  gap: 20px;
}

.assessment-note {
  margin: 14px 0 0;
  color: var(--muted);
}

.assessment-card .section-head {
  margin-bottom: 14px;
}

.assessment-card h2 {
  max-width: 14ch;
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.topology-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.topology-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 39, 45, 0.05);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}

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

.local-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: start;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding: 24px 0 10px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.footer-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.local-copy {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.final-cta {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: linear-gradient(155deg, #0d2c32, #15515a);
  box-shadow: 0 28px 56px rgba(11, 42, 48, 0.18);
}

.final-cta h2,
.final-cta p,
.final-cta .eyebrow {
  color: var(--white);
}

.final-cta h2 {
  max-width: 13ch;
}

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

.blog-card {
  display: block;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(18, 121, 122, 0.22);
}

.blog-card h3 {
  max-width: 18ch;
}

.post-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}

.blog-prose {
  max-width: 760px;
}

.blog-prose h2 {
  margin-top: 34px;
  max-width: 100%;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}

.blog-prose ul {
  margin: 0 0 18px;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.8;
}

.blog-prose li + li {
  margin-top: 8px;
}

.blog-prose blockquote {
  margin: 24px 0;
  padding: 22px 24px;
  border-left: 4px solid var(--teal);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.7;
}

.inline-cta {
  margin-top: 34px;
}

@media (max-width: 1020px) {
  .site-header,
  .section-head,
  .hero,
  .path-grid,
  .value-strip,
  .capability-grid,
  .local-grid,
  .two-column,
  .quote-hero-grid,
  .pricing-grid,
  .faq-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .section-head {
    align-items: start;
  }

  .site-header {
    position: static;
    border-radius: 28px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px 18px;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .pricing-list-row {
    align-items: start;
  }

  .assessment-card h2 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 0 16px 32px;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 18px;
    z-index: 10000;
    align-items: start;
    gap: 16px;
  }

  .site-nav {
    display: none;
  }

  .login-link {
    display: none;
  }

  .mobile-nav {
    display: block;
    position: relative;
    margin-left: 0;
    width: auto;
    justify-self: end;
    align-self: start;
  }

  .mobile-nav[open] .mobile-nav-panel {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: auto;
    width: min(320px, calc(100vw - 64px));
    max-width: 320px;
    max-height: 70vh;
    overflow: auto;
    margin-top: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.985);
    border: 1px solid rgba(19, 39, 45, 0.12);
    box-shadow: 0 32px 64px rgba(16, 49, 56, 0.22);
    z-index: 10001;
  }

  .mobile-nav summary {
    font-size: 1.5rem;
    line-height: 1;
  }

  .mobile-nav-links {
    gap: 12px;
  }

  .mobile-nav-links a,
  .mobile-nav-links a:link,
  .mobile-nav-links a:visited,
  .mobile-nav-links a:hover,
  .mobile-nav-links a:active {
    display: block;
    padding: 14px 16px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(19, 39, 45, 0.08);
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
    text-shadow: none;
    opacity: 1 !important;
  }

  .mobile-nav-links a.nav-cta,
  .mobile-nav-links a.nav-cta:link,
  .mobile-nav-links a.nav-cta:visited,
  .mobile-nav-links a.nav-cta:hover,
  .mobile-nav-links a.nav-cta:active {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    background: linear-gradient(145deg, var(--teal), var(--green-deep)) !important;
    border: none !important;
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    font-weight: 800;
  }

  .brand {
    min-width: 0;
    align-items: start;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text span {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .hero-copy,
  .hero-panel-main,
  .hero-panel-grid article,
  .value-strip article,
  .path-card,
  .soft-card,
  .split-card,
  .pricing-card,
  .quote-panel,
  .quote-logo-lockup,
  .accent-band,
  .journey-band,
  .local-copy,
  .final-cta {
    padding: 22px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.5rem, 11vw, 3.8rem);
    max-width: 100%;
  }

  h2 {
    max-width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button-cluster {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .quote-panel button,
  .quote-panel .button,
  .quote-panel .button-primary {
    background: linear-gradient(145deg, var(--teal), var(--green-deep)) !important;
    color: var(--white) !important;
    -webkit-text-fill-color: var(--white) !important;
    text-shadow: none;
    opacity: 1 !important;
  }

  .pricing-list-row {
    flex-direction: column;
    gap: 6px;
  }

  .assessment-card .section-head {
    margin-bottom: 12px;
  }
}

/* 2026 HomeField visual pass */
.section {
  padding: 34px 0 8px;
}

.narrow {
  max-width: 62ch;
}

.next-site {
  max-width: 1320px;
}

.launch-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 24px;
  min-height: 690px;
  overflow: hidden;
  padding: 44px;
  border-radius: 42px;
  background: #062a2f;
  box-shadow: 0 34px 90px rgba(5, 34, 38, 0.26);
  isolation: isolate;
}

.launch-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 75%, rgba(121, 188, 66, 0.28), transparent 30%),
    radial-gradient(circle at 74% 20%, rgba(52, 203, 204, 0.20), transparent 28%),
    linear-gradient(110deg, rgba(4, 23, 27, 0.92) 0%, rgba(5, 33, 38, 0.78) 48%, rgba(5, 35, 37, 0.52) 100%);
}

.launch-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.launch-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.02);
}

.launch-hero-copy {
  align-self: end;
  max-width: 760px;
}

.launch-hero h1 {
  max-width: 9ch;
  color: var(--white);
  font-size: clamp(4rem, 8.6vw, 8.4rem);
  line-height: 0.83;
  letter-spacing: -0.07em;
}

.launch-hero .lead {
  max-width: 65ch;
  color: rgba(245, 252, 250, 0.88);
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: rgba(245, 252, 250, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
}

.command-deck {
  align-self: end;
  padding: 22px;
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(11, 58, 63, 0.90), rgba(13, 45, 51, 0.72)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.deck-topline,
.deck-status,
.deck-grid {
  display: grid;
  gap: 12px;
}

.deck-topline {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 16px;
  color: rgba(245, 252, 250, 0.70);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deck-topline strong {
  color: #a9f075;
}

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

.deck-status div,
.deck-grid article {
  min-height: 112px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.deck-status span,
.deck-grid span {
  display: block;
  margin-bottom: 8px;
  color: rgba(245, 252, 250, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.deck-status strong {
  display: block;
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 2rem;
  line-height: 1;
}

.deck-status small {
  display: block;
  margin-top: 8px;
  color: rgba(245, 252, 250, 0.72);
  font-weight: 700;
}

.deck-path {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.deck-path span {
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.deck-path span.is-active {
  background: linear-gradient(90deg, #66d6d4, #a6df4d);
  box-shadow: 0 0 28px rgba(121, 188, 66, 0.34);
}

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

.deck-grid article {
  min-height: 0;
}

.deck-grid strong {
  color: var(--white);
  font-size: 1.05rem;
}

.pain-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0 52px;
  position: relative;
  z-index: 2;
}

.pain-strip article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(19, 39, 45, 0.08);
  box-shadow: 0 18px 46px rgba(5, 34, 38, 0.14);
}

.pain-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pain-strip strong {
  color: var(--ink);
  line-height: 1.35;
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.image-feature-media,
.split-image-card {
  overflow: hidden;
  border-radius: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.image-feature-media img,
.split-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-feature-copy {
  padding: 34px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 14%, rgba(121, 188, 66, 0.16), transparent 32%),
    linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 244, 0.86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.feature-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.feature-list-grid span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(19, 39, 45, 0.05);
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal);
  font-weight: 900;
}

.text-link::after {
  content: "->";
}

.operating-grid,
.split-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.operating-card {
  padding: 28px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 245, 0.86));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.operating-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--teal), var(--green-deep));
  color: var(--white);
  font-weight: 900;
}

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

.split-image-card {
  display: grid;
  grid-template-rows: 290px 1fr;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 244, 0.92));
}

.split-image-media {
  position: relative;
  overflow: hidden;
  min-height: 290px;
}

.split-image-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 26, 30, 0.06), rgba(6, 29, 34, 0.18) 55%, rgba(7, 32, 36, 0.42) 100%);
}

.split-image-copy {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 244, 0.92));
}

.split-image-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(8, 38, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.split-image-card h3,
.split-image-card p:not(.section-label),
.split-image-card .text-link {
  color: var(--ink);
}

.split-image-copy h3 {
  max-width: 18ch;
}

.split-image-copy p:not(.section-label) {
  max-width: 48ch;
}

.split-image-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 18px;
}

.split-image-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 39, 45, 0.06);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.next-journey {
  background:
    radial-gradient(circle at 76% 12%, rgba(168, 230, 82, 0.22), transparent 28%),
    linear-gradient(135deg, #082c33, #106e69 58%, #5c9f2e);
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 28px;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 18%, rgba(121, 188, 66, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(239, 247, 244, 0.88));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(26px, 4vw, 56px);
  padding: clamp(30px, 4.5vw, 58px);
  border-radius: 42px;
  background:
    radial-gradient(circle at 78% 22%, rgba(121, 188, 66, 0.18), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(52, 203, 204, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(19, 39, 45, 0.08);
  box-shadow: 0 30px 80px rgba(5, 34, 38, 0.12);
}

.brand-showcase-copy {
  max-width: 680px;
}

.brand-showcase-copy h2 {
  max-width: 13ch;
}

.brand-showcase-copy p:not(.section-label) {
  max-width: 62ch;
  color: var(--muted);
}

.brand-showcase-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(235, 246, 239, 0.62)),
    radial-gradient(circle at 50% 20%, rgba(18, 121, 122, 0.16), transparent 38%);
  border: 1px solid rgba(19, 39, 45, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.brand-showcase-logo img {
  display: block;
  width: min(100%, 540px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 24px 42px rgba(5, 34, 38, 0.16));
}

.brand-showcase-compact {
  grid-template-columns: minmax(0, 0.82fr) minmax(260px, 0.5fr);
}

.brand-showcase-compact .brand-showcase-logo {
  min-height: 340px;
}

.brand-showcase-compact .brand-showcase-logo img {
  width: min(100%, 420px);
}

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

.proof-metrics article {
  padding: 16px;
  border-radius: 20px;
  background: rgba(19, 39, 45, 0.05);
}

.proof-metrics strong,
.proof-metrics span {
  display: block;
}

.proof-metrics strong {
  color: var(--ink);
  font-family: "Fraunces", serif;
  font-size: 1.6rem;
  line-height: 1;
}

.proof-metrics span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 22%, rgba(121, 188, 66, 0.28), transparent 26%),
    linear-gradient(145deg, #0d2c32, #15515a);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 64px rgba(11, 42, 48, 0.18);
}

.cta-band h2,
.cta-band p,
.cta-band .eyebrow {
  color: var(--white);
}

.cta-band h2 {
  max-width: 14ch;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(121, 188, 66, 0.72);
  outline-offset: 4px;
}

@media (max-width: 1020px) {
  .launch-hero,
  .image-feature,
  .proof-panel,
  .brand-showcase,
  .brand-showcase-compact {
    grid-template-columns: 1fr;
  }

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

  .command-deck {
    align-self: stretch;
  }

  .pain-strip,
  .operating-grid,
  .split-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .next-site {
    width: 100%;
    max-width: 100vw;
    padding: 0 14px 32px;
    overflow-x: hidden;
  }

  .next-site .site-header {
    position: relative;
    grid-template-columns: 1fr !important;
    gap: 8px;
    padding: 14px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .next-site .brand {
    overflow: hidden;
    max-width: calc(100vw - 118px);
  }

  .next-site .brand-logo {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
  }

  .next-site .brand-text span {
    display: none;
  }

  .next-site .mobile-nav summary {
    min-width: 44px;
    padding: 10px;
  }

  .next-site .mobile-nav {
    position: fixed;
    right: 26px;
    top: 30px;
    z-index: 10002;
  }

  .launch-hero {
    padding: 26px;
    border-radius: 30px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .launch-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4.25rem);
    line-height: 0.9;
    letter-spacing: -0.055em;
    overflow-wrap: break-word;
  }

  .launch-hero .lead {
    max-width: 100%;
    font-size: 0.98rem;
    overflow-wrap: break-word;
  }

  .hero-proof-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-proof-row span {
    max-width: 100%;
  }

  .command-deck {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .launch-hero-copy,
  .command-deck {
    width: min(100%, calc(100vw - 92px));
    max-width: calc(100vw - 92px);
  }

  .launch-hero-copy,
  .deck-status div,
  .deck-grid article,
  .pain-strip article,
  .operating-card,
  .split-image-card,
  .proof-panel,
  .brand-showcase,
  .cta-band {
    min-width: 0;
    max-width: 100%;
  }

  .deck-topline {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .deck-topline strong {
    white-space: normal;
  }

  .deck-status,
  .deck-grid,
  .pain-strip,
  .operating-grid,
  .split-showcase,
  .proof-metrics {
    grid-template-columns: 1fr;
  }

  .pain-strip {
    margin: 14px 0 0;
  }

  .image-feature-copy,
  .proof-panel,
  .brand-showcase,
  .cta-band {
    padding: 24px;
    border-radius: 26px;
  }

  .brand-showcase-logo,
  .brand-showcase-compact .brand-showcase-logo {
    min-height: 300px;
  }

  .split-image-card {
    grid-template-rows: 210px 1fr;
  }

  .split-image-media {
    min-height: 210px;
  }

  .split-image-copy {
    padding: 22px;
  }

  .split-image-badge {
    left: 14px;
    bottom: 14px;
    max-width: calc(100% - 28px);
    font-size: 0.72rem;
  }
}

@media (max-width: 720px) {
  .next-site .launch-hero-copy,
  .next-site .command-deck {
    width: 100%;
    max-width: 100%;
  }

  .next-site .launch-hero .lead {
    max-width: 100%;
  }
}

/* Final send polish: keep the homepage hero and proof cards from colliding. */
.next-site .site-header {
  position: relative;
  top: auto;
}

.next-site .launch-hero {
  align-items: end;
  min-height: clamp(640px, 67vw, 760px);
  padding: clamp(40px, 4vw, 58px);
}

.next-site .launch-hero h1 {
  max-width: 10ch;
  font-size: clamp(4.2rem, 7.2vw, 7.6rem);
  line-height: 0.88;
}

.next-site .launch-hero .lead {
  max-width: 58ch;
}

.next-site .command-deck {
  margin-bottom: 0;
}

.next-site .pain-strip {
  margin: 20px 0 52px;
  z-index: 1;
}

.next-site .pain-strip article {
  background: rgba(255, 255, 255, 0.94);
}

@media (max-width: 1020px) {
  .next-site .launch-hero {
    min-height: auto;
  }

  .next-site .pain-strip {
    margin: 18px 0 42px;
  }
}

@media (max-width: 720px) {
  .next-site .site-header,
  .next-site .launch-hero {
    width: 100%;
    max-width: 100%;
  }

  .next-site .launch-hero {
    padding: 20px;
    gap: 16px;
  }

  .next-site .launch-hero::before {
    background:
      linear-gradient(180deg, rgba(4, 20, 24, 0.62) 0%, rgba(5, 29, 34, 0.48) 42%, rgba(7, 34, 39, 0.58) 100%),
      radial-gradient(circle at 18% 14%, rgba(121, 188, 66, 0.14), transparent 30%);
  }

  .next-site .launch-hero-bg img {
    filter: brightness(0.72) saturate(1) contrast(1.02);
    object-position: 62% center;
  }

  .next-site .launch-hero-copy {
    align-self: start;
    padding: 18px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(9, 40, 45, 0.52), rgba(9, 38, 43, 0.36));
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
  }

  .next-site .launch-hero-copy .eyebrow,
  .next-site .launch-hero h1,
  .next-site .launch-hero .lead {
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.22);
  }

  .next-site .launch-hero h1 {
    max-width: 100%;
    font-size: clamp(2.9rem, 13vw, 4.1rem);
    line-height: 0.92;
  }

  .next-site .pain-strip {
    margin: 16px 0 34px;
  }

  .next-site .hero-actions {
    grid-template-columns: 1fr;
  }

  .next-site .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .next-site .hero-proof-row span {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .next-site .command-deck {
    padding: 18px;
    border-radius: 24px;
  }
}
