:root {
  --ink: #18212a;
  --ink-soft: #31404d;
  --paper: #f6f1e8;
  --paper-strong: #fffbf4;
  --sand: #e7dbc8;
  --sand-deep: #cab79d;
  --copper: #c66b3d;
  --copper-deep: #8b4727;
  --teal: #2f857b;
  --teal-soft: #d8ece8;
  --line: rgba(24, 33, 42, 0.12);
  --line-strong: rgba(24, 33, 42, 0.2);
  --panel: rgba(255, 251, 244, 0.8);
  --shadow:
    0 1.6rem 3.2rem rgba(34, 45, 57, 0.08),
    0 0.75rem 1.2rem rgba(34, 45, 57, 0.08);
  --font-sans:
    "IBM Plex Sans", "Avenir Next", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-display:
    "Fraunces", "Iowan Old Style", "Palatino Linotype", "Book Antiqua", serif;
  --font-mono:
    "IBM Plex Mono", "Cascadia Code", "Consolas", monospace;

  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  font-weight: 400;
  background:
    radial-gradient(circle at top left, rgba(198, 107, 61, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 8%, rgba(47, 133, 123, 0.12), transparent 18rem),
    linear-gradient(180deg, #faf6ef 0%, #f3ece0 100%);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

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

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

p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

h3 {
  font-size: 1.35rem;
}

code {
  padding: 0.12rem 0.42rem;
  border-radius: 0.45rem;
  background: rgba(24, 33, 42, 0.08);
  color: var(--ink);
  font-family: var(--font-mono);
}

:target {
  scroll-margin-top: 7rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 200;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--paper-strong);
}

.skip-link:focus {
  top: 1rem;
}

.page-chrome {
  position: relative;
  overflow: clip;
}

.page-chrome::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(24, 33, 42, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 33, 42, 0.032) 1px, transparent 1px);
  background-size: 2.2rem 2.2rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 85%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 1.25rem 0;
}

.site-header-shell,
.section-shell,
.site-footer-shell {
  width: min(72rem, calc(100vw - 2rem));
  margin: 0 auto;
}

.site-header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 0.75rem 0.9rem 0.75rem 1rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.94), rgba(244, 237, 226, 0.88)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.brand-mark {
  width: 2.45rem;
  height: 2.45rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 0.45rem 0.7rem rgba(24, 33, 42, 0.14));
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 0.08rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-wordmark span {
  color: var(--copper-deep);
  font-family: var(--font-sans);
  font-size: 0.76em;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.site-nav a:not(.button-nav):hover,
.site-nav a:not(.button-nav):focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--copper-deep);
}

.nav-toggle,
.nav-toggle-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.8rem 1.25rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary,
.button-nav {
  color: #fff8ef;
  background: linear-gradient(135deg, var(--ink), var(--copper));
  box-shadow: 0 1rem 1.8rem rgba(24, 33, 42, 0.18);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: var(--line);
}

.button-block {
  width: 100%;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--copper-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-soft {
  color: var(--teal);
}

.hero {
  padding: 4.5rem 0 2rem;
}

.hero-shell,
.mapper-shell,
.problem-grid,
.final-cta,
.site-footer-shell {
  display: grid;
  gap: 1.5rem;
}

.hero-shell,
.mapper-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
}

.hero-copy,
.hero-visual,
.section-heading,
.problem-copy,
.problem-aside,
.feature-card,
.step-card,
.mapper-copy,
.fit-card,
.plan-card,
.boundary-card,
.faq-item,
.legal-shell,
.final-cta {
  animation: fadeUp 640ms ease both;
}

.hero-copy {
  max-width: 42rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.hero-brand-mark {
  width: 4.9rem;
  height: 4.9rem;
  flex: 0 0 auto;
  filter: drop-shadow(0 1rem 1.4rem rgba(24, 33, 42, 0.16));
}

.hero-brand-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-brand-name span {
  color: var(--copper-deep);
  font-family: var(--font-sans);
  font-size: 0.64em;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-brand-note {
  margin: 0.22rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-lead,
.hero-proof,
.section-copy,
.problem-copy,
.problem-aside,
.feature-card p,
.step-card p,
.mapper-copy p,
.fit-card,
.plan-summary,
.boundary-card,
.faq-item p,
.legal-shell,
.footer-brand,
.footer-contact {
  color: var(--ink-soft);
}

.hero-lead {
  margin-top: 1.2rem;
  font-size: clamp(1.1rem, 2vw, 1.32rem);
  max-width: 36rem;
}

.hero-actions {
  margin-top: 1.55rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-proof {
  margin-top: 1rem;
  font-size: 0.98rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.42rem 0.72rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.tag {
  border: 1px solid rgba(47, 133, 123, 0.2);
  background: rgba(255, 255, 255, 0.62);
  color: var(--teal);
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 8% 10% auto auto;
  width: 11rem;
  height: 11rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 107, 61, 0.18), transparent 70%);
  filter: blur(12px);
}

.hero-visual img {
  width: min(40rem, 100%);
  margin-left: auto;
  filter: drop-shadow(0 2rem 2.5rem rgba(24, 33, 42, 0.12));
  animation: floatCard 7s ease-in-out infinite;
}

.section-block {
  padding: 1.75rem 0 2.25rem;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 1rem 0 auto;
  height: calc(100% - 2rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.2));
  border-block: 1px solid rgba(255, 255, 255, 0.5);
  z-index: -1;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.4rem;
}

.section-heading-wide {
  max-width: none;
}

.section-heading p {
  margin-top: 0.65rem;
}

.problem-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
}

.card-surface {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(245, 237, 227, 0.88)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.problem-aside,
.feature-card,
.step-card,
.fit-card,
.plan-card,
.boundary-card,
.faq-item,
.legal-shell {
  padding: 1.35rem;
}

.compact-list,
.chip-list,
.legal-list {
  display: grid;
  gap: 0.7rem;
  padding-left: 1.2rem;
}

.compact-list li::marker,
.legal-list li::marker {
  color: var(--copper);
}

.chip-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.9rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.chip-list li {
  border: 1px solid rgba(47, 133, 123, 0.16);
  border-radius: 1rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.68);
}

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

.feature-card {
  display: grid;
  gap: 0.8rem;
}

.feature-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.15rem;
  height: 3.15rem;
  border: 1px solid rgba(198, 107, 61, 0.14);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 237, 226, 0.88)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.feature-icon {
  width: 2rem;
  height: 2rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 999px;
  background: rgba(198, 107, 61, 0.12);
  color: var(--copper-deep);
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 700;
}

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

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

.step-card {
  display: grid;
  gap: 0.75rem;
}

.mapper-visual-stack {
  display: grid;
  gap: 1rem;
}

.mapper-visual,
.mini-visual {
  padding: 0.8rem;
}

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

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

.fit-card-muted,
.boundary-card-muted {
  background:
    linear-gradient(180deg, rgba(252, 247, 242, 0.94), rgba(238, 229, 216, 0.9)),
    var(--panel);
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.plan-card .button {
  margin-top: auto;
}

.plan-card-featured {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(47, 133, 123, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(244, 237, 226, 0.92));
}

.plan-card-featured::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 107, 61, 0.18), transparent 72%);
}

.plan-name {
  margin: 0;
  color: var(--copper-deep);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.plan-price {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.95;
}

.plan-price span {
  font-size: 1rem;
  color: var(--ink-soft);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--ink);
}

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

.faq-item[open] summary {
  margin-bottom: 0.75rem;
}

.final-cta {
  grid-template-columns: minmax(0, 1.15fr) auto;
  align-items: center;
  padding: 1.75rem 1.85rem;
}

.final-cta h2 {
  margin-bottom: 1.2rem;
}

.final-cta p {
  max-width: 38rem;
  margin-bottom: 0;
}

.page-hero {
  padding: 3rem 0 1rem;
}

.page-hero .section-shell {
  max-width: 44rem;
}

.legal-block {
  padding-top: 0.75rem;
}

.legal-shell {
  max-width: 52rem;
}

.legal-shell h2 {
  margin-top: 1.8rem;
  font-size: 1.9rem;
}

.legal-shell h3 {
  margin-top: 1.2rem;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

.site-footer {
  padding: 2rem 0 2.25rem;
}

.site-footer-shell {
  grid-template-columns: minmax(0, 1.2fr) auto auto;
  align-items: start;
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.94), rgba(241, 233, 222, 0.9)),
    var(--panel);
  box-shadow: var(--shadow);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-links a {
  border: 1px solid rgba(24, 33, 42, 0.14);
  border-radius: 999px;
  padding: 0.5rem 0.82rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(244, 237, 226, 0.9));
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 0.4rem 0.9rem rgba(24, 33, 42, 0.06);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.footer-contact p,
.footer-note {
  color: var(--ink-soft);
}

.footer-note {
  width: min(72rem, calc(100vw - 2rem));
  margin: 0.9rem auto 0;
  font-size: 0.92rem;
  text-align: center;
}

.footer-disclaimer {
  width: min(72rem, calc(100vw - 2rem));
  margin: 0.85rem auto 0;
  color: rgba(49, 64, 77, 0.9);
  font-size: 0.73rem;
  line-height: 1.55;
  text-align: center;
}

.footer-contact a {
  color: var(--copper-deep);
  font-weight: 700;
}

@media (min-width: 64rem) {
  .section-heading-wide h2 {
    white-space: nowrap;
    font-size: clamp(2rem, 3.1vw, 3rem);
  }
}

.reveal:nth-of-type(2) {
  animation-delay: 70ms;
}

.reveal:nth-of-type(3) {
  animation-delay: 140ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .hero-shell,
  .mapper-shell,
  .problem-grid,
  .final-cta,
  .site-footer-shell {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid,
  .boundary-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding-inline: 0.8rem;
  }

  .site-header-shell {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-toggle-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid var(--line);
    padding: 0.7rem 0.9rem;
    font-size: 0.92rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.68);
    cursor: pointer;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    padding-top: 0.6rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .button-nav {
    width: 100%;
  }

  .chip-list,
  .fit-grid,
  .mini-visual-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header-shell,
  .section-shell,
  .site-footer-shell,
  .footer-disclaimer,
  .footer-note {
    width: min(72rem, calc(100vw - 1rem));
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-brand {
    gap: 0.8rem;
  }

  .hero-brand-mark {
    width: 4rem;
    height: 4rem;
  }

  .hero-brand-name {
    font-size: 1.75rem;
  }

  .hero-brand-note {
    font-size: 0.76rem;
  }

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

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

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

  .button-row .button {
    width: 100%;
  }

  .problem-aside,
  .feature-card,
  .step-card,
  .fit-card,
  .plan-card,
  .boundary-card,
  .faq-item,
  .legal-shell,
  .final-cta,
  .site-footer-shell {
    padding: 1.1rem;
  }
}
