:root {
  --signal-navy: #0b2d4d;
  --clear-teal: #007c7c;
  --deep-teal: #087e8b;
  --charcoal: #263238;
  --slate: #54636b;
  --warm-paper: #faf8f2;
  --mist-blue: #eaf3f5;
  --line-fog: #d8e2e5;
  --porch-amber: #e8a23a;
  --amber-text: #b45309;
  --white: #ffffff;
  --shadow-soft: 0 22px 48px rgba(11, 45, 77, 0.1);
  --font-sans: Manrope, "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  font-family: Manrope, "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-paper);
  color: var(--charcoal);
  font-family: Manrope, "Helvetica Neue", Arial, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
}

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

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--signal-navy);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 242, 0.94);
  border-bottom: 1px solid var(--line-fog);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--signal-navy);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.1;
}

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

.brand strong {
  font-weight: 800;
}

.brand span span {
  color: var(--clear-teal);
  font-weight: 700;
}

.brand-mark {
  width: 48px;
  height: 48px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-fog);
  border-radius: 14px;
  background: var(--white);
  color: var(--signal-navy);
}

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

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  color: var(--signal-navy);
  font-size: 0.95rem;
  font-weight: 700;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--clear-teal);
}

.hero {
  padding: 82px 0 74px;
  background: var(--warm-paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.74fr);
  gap: 56px;
  align-items: center;
}

.location-line,
.section-label {
  margin: 0 0 0.85rem;
  color: var(--clear-teal);
  font-size: 0.95rem;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--signal-navy);
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: 3.55rem;
  font-weight: 800;
}

h2 {
  font-size: 2.25rem;
  font-weight: 800;
}

h3 {
  font-size: 1.12rem;
  font-weight: 800;
}

.hero-lede {
  max-width: 720px;
  margin: 1.35rem 0 0;
  color: var(--slate);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid var(--signal-navy);
  border-radius: 999px;
  padding: 0.74rem 1.05rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
}

.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button-primary {
  background: var(--signal-navy);
  color: var(--white);
}

.button-primary:hover {
  background: #133b5f;
}

.button-secondary {
  background: transparent;
  color: var(--signal-navy);
}

.button-secondary:hover {
  background: var(--mist-blue);
}

.path-card {
  position: relative;
  border: 1px solid var(--line-fog);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border-radius: 22px;
  background: var(--mist-blue);
  transform: translate(18px, 18px);
}

.path-card-header,
.pilot-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.path-card-header {
  border-bottom: 1px solid var(--line-fog);
  padding-bottom: 1rem;
}

.path-card-header p,
.path-card-header span,
.pilot-strip span,
.pilot-strip strong {
  margin: 0;
}

.path-card-header p,
.pilot-strip strong {
  color: var(--signal-navy);
  font-weight: 800;
}

.path-card-header span {
  color: var(--amber-text);
  font-size: 0.9rem;
  font-weight: 800;
}

.path-list {
  position: relative;
  display: grid;
  gap: 1.05rem;
  margin: 1.25rem 0;
  padding: 0;
  list-style: none;
}

.path-list::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--line-fog);
}

.path-list li {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 0.85rem;
}

.path-dot {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  border: 5px solid var(--white);
  border-radius: 50%;
  background: var(--clear-teal);
  box-shadow: 0 0 0 1px var(--line-fog);
}

.path-list strong {
  display: block;
  color: var(--signal-navy);
  font-size: 0.98rem;
  line-height: 1.3;
}

.path-list p {
  margin: 0.22rem 0 0;
  color: var(--slate);
  font-size: 0.93rem;
  line-height: 1.45;
}

.pilot-strip {
  border: 1px solid var(--line-fog);
  border-radius: 16px;
  background: var(--mist-blue);
  padding: 0.95rem 1rem;
}

.pilot-strip span {
  color: var(--signal-navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.pilot-strip strong {
  font-size: 1.35rem;
}

.section {
  padding: 78px 0;
  background: var(--white);
}

.section-soft {
  background: var(--mist-blue);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 54px;
  align-items: start;
}

.split-section p,
.section-heading p,
.offer-summary p,
.sample-layout p,
.scope-panel p,
.final-cta p,
.text-stack p {
  color: var(--slate);
}

.split-section p,
.offer-summary p,
.sample-layout p,
.scope-panel p,
.final-cta p,
.text-stack p {
  margin: 1rem 0 0;
}

.question-list {
  display: grid;
  gap: 0.85rem;
}

.question-list div {
  border: 1px solid var(--line-fog);
  border-radius: 16px;
  background: var(--warm-paper);
  color: var(--signal-navy);
  padding: 0.9rem 1rem;
  font-weight: 800;
}

.section-heading {
  max-width: 740px;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 680px;
}

.niche-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.niche-grid article,
.steps-grid article,
.sample-board article {
  border: 1px solid var(--line-fog);
  border-radius: 18px;
  background: var(--white);
  padding: 1.1rem;
}

.niche-grid article {
  min-height: 230px;
}

.niche-grid p,
.steps-grid p,
.sample-board p,
.included-panel li,
.boundary-list li {
  margin: 0.55rem 0 0;
  color: var(--slate);
  font-size: 0.96rem;
  line-height: 1.55;
}

.icon-circle {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid var(--line-fog);
  border-radius: 50%;
  background: var(--mist-blue);
  color: var(--clear-teal);
}

.icon-circle svg {
  width: 25px;
  height: 25px;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: 54px;
  align-items: start;
}

.price-block {
  display: grid;
  gap: 0.2rem;
  width: fit-content;
  margin-top: 1.4rem;
  border-left: 5px solid var(--porch-amber);
  background: var(--warm-paper);
  padding: 1rem 1.15rem;
}

.price-block strong {
  color: var(--signal-navy);
  font-size: 2.35rem;
  line-height: 1;
}

.price-block span {
  color: var(--slate);
  font-size: 0.95rem;
  font-weight: 700;
}

.scope-note {
  border-top: 1px solid var(--line-fog);
  padding-top: 1rem;
}

.included-panel {
  border: 1px solid var(--line-fog);
  border-radius: 20px;
  background: var(--mist-blue);
  padding: 1.35rem;
}

.check-list,
.boundary-list {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.boundary-list li {
  position: relative;
  padding-left: 1.6rem;
}

.check-list li::before,
.boundary-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--clear-teal);
}

.section-navy {
  background: var(--signal-navy);
  color: var(--white);
}

.section-navy .section-label,
.section-navy h2,
.section-navy h3 {
  color: var(--white);
}

.section-navy .section-heading p,
.section-navy .steps-grid p {
  color: #d9e8ec;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.steps-grid article {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
}

.steps-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--porch-amber);
  color: var(--signal-navy);
  font-weight: 800;
}

.sample-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
}

.sample-disclaimer {
  display: inline-flex;
  margin-top: 1.25rem;
  border: 1px solid var(--line-fog);
  border-radius: 999px;
  background: var(--mist-blue);
  padding: 0.55rem 0.85rem;
  color: var(--signal-navy) !important;
  font-size: 0.9rem;
  font-weight: 800;
}

.sample-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.sample-board article {
  background: var(--warm-paper);
}

.sample-link {
  width: fit-content;
}

.sample-hero {
  padding: 82px 0 74px;
  background: var(--warm-paper);
}

.sample-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.68fr);
  gap: 56px;
  align-items: center;
}

.sample-snapshot,
.quote-card,
.suggestion-panel {
  border: 1px solid var(--line-fog);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 1.35rem;
}

.sample-snapshot h2 {
  font-size: 1.35rem;
}

.sample-snapshot dl {
  display: grid;
  gap: 1rem;
  margin: 1.1rem 0 0;
}

.sample-snapshot dl div {
  border-top: 1px solid var(--line-fog);
  padding-top: 1rem;
}

.sample-snapshot dt {
  color: var(--clear-teal);
  font-size: 0.92rem;
  font-weight: 800;
}

.sample-snapshot dd {
  margin: 0.25rem 0 0;
  color: var(--slate);
}

.audit-grid,
.comparison-grid,
.deliverable-grid,
.faq-grid,
.handoff-list {
  display: grid;
  gap: 1rem;
}

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

.audit-grid article,
.comparison-card,
.faq-grid article,
.handoff-list article {
  border: 1px solid var(--line-fog);
  border-radius: 18px;
  background: var(--white);
  padding: 1.15rem;
}

.audit-grid article:nth-child(3),
.after-card,
.handoff-list article {
  background: var(--warm-paper);
}

.plain-list,
.numbered-list {
  margin: 0.8rem 0 0;
  padding-left: 1.2rem;
}

.plain-list li,
.numbered-list li {
  color: var(--slate);
  margin-top: 0.5rem;
}

.comparison-grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
}

.comparison-card h3 {
  margin-bottom: 0.8rem;
}

.comparison-card p,
.quote-layout p,
.profile-layout p,
.handoff-layout p,
.deliverable-grid p,
.faq-grid p {
  margin: 0.8rem 0 0;
  color: var(--slate);
}

.before-card {
  background: var(--white);
}

.after-card {
  border-left: 5px solid var(--clear-teal);
}

.quote-layout,
.profile-layout,
.handoff-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 52px;
  align-items: start;
}

.quote-card h3,
.suggestion-panel h3 {
  margin-bottom: 0.3rem;
}

.deliverable-grid {
  grid-template-columns: minmax(0, 0.8fr) repeat(2, minmax(0, 1fr));
  align-items: start;
}

.section-navy .deliverable-grid p {
  color: #d9e8ec;
}

.message-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  padding: 1.15rem;
}

.message-card p {
  color: #d9e8ec;
}

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

.handoff-layout {
  align-items: start;
}

.handoff-list {
  grid-template-columns: 1fr;
}

.text-stack {
  border-left: 5px solid var(--porch-amber);
  padding-left: 1.25rem;
}

.scope-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.74fr);
  gap: 48px;
  align-items: start;
  border: 1px solid var(--line-fog);
  border-radius: 20px;
  background: var(--warm-paper);
  padding: 2rem;
}

.boundary-list {
  border: 1px solid var(--line-fog);
  border-radius: 18px;
  background: var(--white);
  padding: 1.15rem;
}

.boundary-list li {
  color: var(--signal-navy);
  font-weight: 800;
}

.final-cta {
  padding: 68px 0;
  background: var(--mist-blue);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.final-cta-inner > div {
  max-width: 720px;
}

:focus-visible {
  outline: 3px solid var(--porch-amber);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.95rem;
  }

  .hero-grid,
  .sample-hero-grid,
  .split-section,
  .offer-layout,
  .sample-layout,
  .quote-layout,
  .profile-layout,
  .handoff-layout,
  .scope-panel {
    grid-template-columns: 1fr;
  }

  .audit-grid,
  .comparison-grid,
  .deliverable-grid {
    grid-template-columns: 1fr;
  }

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

  .path-card::before {
    transform: translate(10px, 10px);
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .header-inner {
    min-height: auto;
    align-items: flex-start;
    padding: 1rem 0;
  }

  .primary-nav {
    display: none;
  }

  .hero,
  .sample-hero {
    padding: 54px 0 58px;
  }

  .hero-grid,
  .sample-hero-grid {
    gap: 38px;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.68rem;
  }

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

  .button {
    width: 100%;
  }

  .section {
    padding: 58px 0;
  }

  .niche-grid,
  .steps-grid,
  .sample-board,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .path-card {
    padding: 1rem;
  }

  .path-card-header,
  .pilot-strip {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.35rem;
  }

  .scope-panel {
    padding: 1.25rem;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
