:root {
  --bg: #f5f1ea;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #10202a;
  --surface-ink: #0f1720;
  --text: #10202a;
  --muted: #57636f;
  --line: rgba(16, 32, 42, 0.12);
  --line-strong: rgba(255, 255, 255, 0.12);
  --primary: #14344a;
  --primary-soft: #d9e8ef;
  --accent: #2f6d73;
  --accent-soft: #dcebea;
  --highlight: #c57a3d;
  --positive: #227759;
  --negative: #b6523b;
  --shadow: 0 18px 60px rgba(15, 23, 32, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(197, 122, 61, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(47, 109, 115, 0.12), transparent 24%),
    linear-gradient(180deg, #f8f4ee 0%, #f3eee7 45%, #efe8df 100%);
  min-height: 100vh;
}

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

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 2rem), 760px);
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245, 241, 234, 0.78);
  border-bottom: 1px solid rgba(16, 32, 42, 0.06);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--primary), #224f67);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.brand-text {
  font-size: 1.05rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

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

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-small {
  min-height: 42px;
  padding: 0 1rem;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #224f67);
  box-shadow: 0 18px 32px rgba(20, 52, 74, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 32, 42, 0.1);
}

.button-ghost {
  background: transparent;
  border: 1px solid rgba(16, 32, 42, 0.1);
}

.button-light {
  color: var(--surface-ink);
  background: #fff;
}

.button-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.split-section h2,
.cta-panel h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.05em;
  margin: 0;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.96;
}

.lede {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 1.4rem 0 0;
  max-width: 60ch;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent);
  margin: 0 0 1rem;
}

.trust-row {
  display: flex;
  gap: 1rem;
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.trust-row li {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  border: 1px solid rgba(16, 32, 42, 0.08);
}

.hero-card {
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(197, 122, 61, 0.2), transparent 70%);
  z-index: -1;
}

.dashboard-card,
.feature-card,
.step-card,
.proof-card,
.pricing-card,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.dashboard-card {
  padding: 1.6rem;
}

.card-header,
.market-row,
.pricing-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.dashboard-card h2,
.feature-card h3,
.step-card h3,
.proof-card h3,
.pricing-card h3,
.contact-card h2,
.legal-copy h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  letter-spacing: -0.04em;
}

.dashboard-card h2 {
  margin: 0.8rem 0 0;
  font-size: 1.45rem;
}

.delta,
.market-metric span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.75rem;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
}

.positive {
  color: var(--positive);
  background: rgba(34, 119, 89, 0.12);
}

.negative {
  color: var(--negative);
  background: rgba(182, 82, 59, 0.12);
}

.stat-grid,
.feature-grid,
.proof-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 1.2rem;
}

.stat-grid {
  grid-template-columns: repeat(2, 1fr);
  margin: 1.4rem 0;
}

.stat-panel {
  padding: 1.2rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 32, 42, 0.08);
}

.stat-panel span,
.stat-panel small,
.market-row p,
.feature-card p,
.step-card p,
.proof-card p,
.pricing-card p,
.contact-card p,
.body-copy p,
.legal-copy p,
.site-footer p {
  color: var(--muted);
}

.stat-panel strong {
  display: block;
  font-size: 1.8rem;
  margin: 0.35rem 0;
  font-family: "Plus Jakarta Sans", sans-serif;
}

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

.market-row {
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 42, 0.08);
}

.market-row.warning {
  background: rgba(248, 239, 231, 0.92);
}

.market-row h3,
.market-row p {
  margin: 0;
}

.market-row h3 {
  font-size: 1rem;
}

.market-metric {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.market-metric strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.05rem;
}

.insight-card {
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(20, 52, 74, 0.95), rgba(47, 109, 115, 0.86));
  color: #fff;
}

.insight-card .eyebrow,
.section-heading-light .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.insight-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.section {
  padding: 5rem 0;
}

.section-muted {
  padding-top: 1rem;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #10202a 0%, #122a35 100%);
  color: #fff;
}

.section-accent {
  padding-top: 0;
}

.logo-strip {
  padding: 1rem 0 0;
}

.logo-strip p {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}

.split-section,
.cta-panel {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.split-section {
  grid-template-columns: 0.9fr 1.1fr;
}

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

.section-heading h2,
.split-section h2,
.page-hero h1,
.cta-panel h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

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

.feature-card,
.proof-card,
.contact-card {
  padding: 1.5rem;
}

.feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 18px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 800;
}

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

.step-card {
  padding: 1.4rem;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-strong);
}

.step-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.step-card p,
.section-heading-light p {
  color: rgba(255, 255, 255, 0.72);
}

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

.pricing-card {
  padding: 1.6rem;
}

.pricing-card-featured {
  background: linear-gradient(180deg, rgba(20, 52, 74, 0.96), rgba(27, 67, 88, 0.92));
  color: #fff;
}

.pricing-card-featured p,
.pricing-card-featured li,
.pricing-card-featured .pricing-label {
  color: rgba(255, 255, 255, 0.82);
}

.pricing-label {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.pricing-card h3 {
  margin: 1rem 0 0.8rem;
  font-size: 2.4rem;
}

.pricing-card h3 span {
  font-size: 1rem;
  color: inherit;
  opacity: 0.8;
}

.pricing-card ul {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1.4rem 0;
  list-style: none;
}

.pricing-card li::before {
  content: "•";
  color: var(--highlight);
  margin-right: 0.55rem;
}

.cta-panel {
  background: linear-gradient(135deg, #19394e, #28555d);
  border-radius: 36px;
  padding: 2rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.inner-page {
  padding-bottom: 3rem;
}

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

.legal-copy {
  line-height: 1.8;
}

.legal-copy h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.8fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 32, 42, 0.08);
}

.footer-grid h3 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
}

.footer-grid a {
  display: block;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--text);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-section,
  .proof-grid,
  .footer-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .pricing-grid,
  .contact-grid,
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-copy h1 {
    max-width: 14ch;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(16, 32, 42, 0.08);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .stat-grid,
  .feature-grid,
  .pricing-grid,
  .contact-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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