:root {
  --teal: #155e63;
  --teal-dark: #07454a;
  --teal-soft: #e8f3f1;
  --sage: #d9e8e4;
  --sage-2: #f1f7f5;
  --ivory: #fbfcf7;
  --paper: #ffffff;
  --ink: #203233;
  --muted: #607070;
  --amber: #c97b12;
  --amber-2: #f4a261;
  --coral: #e76f51;
  --border: #c9dcda;
  --shadow: 0 18px 48px rgba(17, 58, 61, 0.12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: linear-gradient(90deg, var(--teal-dark), var(--teal));
  color: #fff;
  box-shadow: 0 6px 24px rgba(4, 42, 45, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  font-size: 22px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
}

.nav a {
  color: rgba(255, 255, 255, 0.86);
}

.nav a:hover,
.nav a:focus {
  color: #fff;
}

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

.button,
button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 22px;
  background: var(--teal);
  color: #fff;
  font: inherit;
  font-weight: 750;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
  background: var(--teal-dark);
}

.button.secondary {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal);
}

.button.secondary:hover,
.button.secondary:focus {
  background: var(--teal-soft);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.46);
  background: transparent;
  color: #fff;
}

.button.amber {
  background: var(--amber);
}

.button.amber:hover,
.button.amber:focus {
  background: #a9660e;
}

.hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
  padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px) 44px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 85% 22%, rgba(217, 232, 228, 0.84), transparent 32%),
    linear-gradient(180deg, #fffdf7 0%, var(--ivory) 100%);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--teal-dark);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 740px;
  font-size: clamp(48px, 7vw, 92px);
}

h2 {
  font-size: clamp(34px, 4.2vw, 56px);
}

h3 {
  font-size: 24px;
}

p {
  margin: 0;
}

.lead {
  max-width: 680px;
  margin-top: 22px;
  color: #263b3d;
  font-size: clamp(19px, 2.1vw, 25px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 700;
}

.icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--teal);
}

.hero-media {
  position: relative;
}

.hero-image {
  overflow: hidden;
  border: 1px solid rgba(21, 94, 99, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.framework-float {
  position: absolute;
  left: -42px;
  bottom: -32px;
  width: min(360px, 72%);
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
}

.framework-mini {
  display: grid;
  width: 220px;
  height: 220px;
  margin: 10px auto 0;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  background: var(--sage-2);
}

.framework-mini span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.scope-note {
  display: grid;
  max-width: 720px;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 30px;
  border: 1px solid rgba(231, 111, 81, 0.32);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff7f3;
  color: #5e3028;
  font-size: 14px;
}

.page-section {
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--border);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.section-intro p {
  max-width: 460px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
}

.panel,
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(17, 58, 61, 0.06);
}

.panel {
  padding: clamp(22px, 3vw, 34px);
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  overflow: hidden;
}

.split-panel > * {
  padding: 30px;
}

.split-panel > * + * {
  border-left: 1px solid var(--border);
}

.inline-form {
  display: flex;
  gap: 0;
  margin-top: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.consent-line {
  display: block;
  margin: 22px 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(248, 244, 235, 0.8);
  font-size: 0.95rem;
  line-height: 1.5;
}

.consent-line input {
  width: auto;
  margin-right: 8px;
}

.inline-form input {
  border-radius: var(--radius) 0 0 var(--radius);
}

.inline-form .button {
  border-radius: 0 var(--radius) var(--radius) 0;
}

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

.small {
  font-size: 13px;
}

.path {
  display: grid;
  grid-template-columns: repeat(7, minmax(84px, 1fr));
  gap: 12px;
}

.path-step {
  min-height: 90px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px;
  background: #fff;
}

.path-step strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

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

.tier {
  padding: 30px;
}

.tier.featured {
  border-color: rgba(201, 123, 18, 0.42);
  background: #fffbf3;
}

.price {
  margin: 14px 0 18px;
  color: var(--teal-dark);
  font-size: 32px;
  font-weight: 850;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 28px;
  color: #2b4244;
}

.tick-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--teal);
  content: "+";
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(30px, 5vw, 52px) clamp(20px, 5vw, 72px);
  background: var(--teal);
  color: #fff;
}

.cta-band h2 {
  color: #fff;
}

.cta-band p {
  max-width: 760px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(20px, 5vw, 72px);
  background: var(--teal-dark);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.form-page {
  max-width: 1060px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 28px;
  margin-top: 34px;
}

.question {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.question label {
  display: block;
  margin-bottom: 10px;
  font-weight: 750;
}

.radio-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.radio-row input {
  width: auto;
}

.radio-row span {
  display: block;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 8px;
  background: #fff;
  text-align: center;
  font-size: 13px;
}

.result-box {
  display: none;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--sage-2);
}

.result-box.is-visible {
  display: block;
}

.page-hero {
  padding: clamp(46px, 7vw, 86px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 88% 10%, rgba(217, 232, 228, 0.8), transparent 32%),
    var(--ivory);
}

.page-hero .lead {
  max-width: 780px;
}

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

.card {
  padding: 24px;
}

.timeline {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  border-left: 4px solid var(--sage);
  padding: 4px 0 14px 18px;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.placeholder-link {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.status {
  margin-top: 12px;
  color: var(--teal);
  font-weight: 800;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  .hero,
  .section-grid,
  .form-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .framework-float {
    position: static;
    width: 100%;
    margin-top: 16px;
  }

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

@media (max-width: 660px) {
  .site-header {
    position: static;
  }

  .header-actions,
  .hero-actions,
  .inline-form,
  .split-panel,
  .tiers,
  .two-col,
  .proof-row,
  .path,
  .cards-grid,
  .radio-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .split-panel > * + * {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .inline-form input,
  .inline-form .button {
    width: 100%;
    border-radius: var(--radius);
  }

  h1 {
    font-size: 46px;
  }

  .footer {
    flex-direction: column;
  }
}
