:root {
  --river: #176d7a;
  --river-deep: #0d3b46;
  --reed: #7f8f45;
  --moss: #315b40;
  --sand: #f5ead6;
  --paper: #fffaf0;
  --foam: #e5f4ee;
  --ink: #132521;
  --muted: #66736e;
  --line: rgba(19, 37, 33, 0.14);
  --shadow: 0 24px 70px rgba(13, 59, 70, 0.18);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(127, 143, 69, 0.18), transparent 34rem),
    linear-gradient(180deg, #fffaf0 0%, #f4efe1 48%, #e5f4ee 100%);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.site-header {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 12%, rgba(229, 244, 238, 0.62), transparent 24rem),
    linear-gradient(135deg, #f8edd5 0%, #edf3dc 42%, #d8eee8 100%);
}

.site-header::before,
.site-header::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.site-header::before {
  inset: 9rem -12rem auto auto;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  background: rgba(23, 109, 122, 0.12);
}

.site-header::after {
  left: -8rem;
  bottom: -10rem;
  width: 28rem;
  height: 28rem;
  border-radius: 45% 55% 50% 50%;
  background: rgba(127, 143, 69, 0.14);
}

.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(19, 37, 33, 0.12);
  border-radius: 14px;
  background: rgba(255, 250, 240, 0.8);
  box-shadow: 0 10px 30px rgba(13, 59, 70, 0.1);
}

.logo {
  margin-bottom: 24px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

body > .hero {
  color: var(--paper);
  text-align: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(229, 244, 238, 0.22), transparent 20rem),
    linear-gradient(135deg, var(--river-deep), var(--moss));
}

.nav-links {
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(19, 37, 33, 0.78);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.nav-links a:hover {
  background: rgba(255, 250, 240, 0.72);
}

.nav-links .nav-cta {
  color: var(--paper);
  background: var(--river-deep);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 44px 0 78px;
}

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

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--river);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.06;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.85rem, 6vw, 5.2rem);
  font-weight: 800;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 4.5vw, 4.4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.42rem;
}

.subtitle {
  max-width: 650px;
  margin: 20px 0 28px;
  color: rgba(19, 37, 33, 0.78);
  font-size: clamp(1.07rem, 2vw, 1.28rem);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta.primary {
  padding: 15px 26px;
  color: var(--paper);
  background: var(--river-deep);
  box-shadow: 0 14px 35px rgba(13, 59, 70, 0.22);
}

.cta.primary:hover {
  background: #082f38;
  box-shadow: 0 18px 42px rgba(13, 59, 70, 0.28);
}

.cta.secondary {
  padding: 15px 22px;
  color: var(--river-deep);
  border-color: rgba(13, 59, 70, 0.24);
  background: rgba(255, 250, 240, 0.62);
}

.microcopy {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.phone-card {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 30px;
  border: 1px solid rgba(255, 250, 240, 0.68);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.76), rgba(229, 244, 238, 0.48)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.9), transparent 13rem);
  box-shadow: var(--shadow);
}

.phone {
  width: min(100%, 315px);
  padding: 13px;
  border: 9px solid #152420;
  border-radius: 46px;
  background: #152420;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-top {
  width: 88px;
  height: 8px;
  margin: 3px auto 12px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.18);
}

.map-preview {
  position: relative;
  min-height: 455px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(19, 37, 33, 0.06) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(rgba(19, 37, 33, 0.05) 1px, transparent 1px) 0 0 / 36px 36px,
    linear-gradient(135deg, #dfe9cd 0%, #c9dfc2 45%, #b7d9d9 100%);
}

.river,
.parcel,
.spot,
.location-dot {
  position: absolute;
}

.river {
  width: 370px;
  height: 56px;
  border-radius: 999px;
  background: rgba(23, 109, 122, 0.7);
  filter: blur(0.2px);
}

.river-one {
  top: 116px;
  left: -78px;
  transform: rotate(-24deg);
}

.river-two {
  top: 238px;
  right: -124px;
  transform: rotate(31deg);
}

.river-three {
  bottom: 86px;
  left: -110px;
  transform: rotate(13deg);
}

.parcel {
  padding: 7px 10px;
  border: 1px solid rgba(255, 250, 240, 0.7);
  border-radius: 999px;
  color: #0f352e;
  font-size: 0.72rem;
  font-weight: 900;
  background: rgba(245, 234, 214, 0.78);
  backdrop-filter: blur(10px);
}

.parcel-one {
  top: 78px;
  right: 26px;
}

.parcel-two {
  top: 314px;
  left: 28px;
}

.spot {
  padding: 8px 11px;
  border-radius: 12px;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 900;
  background: var(--river-deep);
  box-shadow: 0 12px 25px rgba(13, 59, 70, 0.2);
}

.spot::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 12px;
  height: 12px;
  border-radius: 0 0 3px 0;
  background: var(--river-deep);
  transform: translateX(-50%) rotate(45deg);
}

.spot-one {
  top: 174px;
  left: 42px;
}

.spot-two {
  right: 34px;
  bottom: 170px;
}

.location-dot {
  top: 238px;
  left: 50%;
  width: 22px;
  height: 22px;
  border: 5px solid var(--paper);
  border-radius: 999px;
  background: #d85f35;
  box-shadow: 0 0 0 10px rgba(216, 95, 53, 0.2);
}

.control-panel {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  gap: 9px;
  padding: 14px;
  border: 1px solid rgba(255, 250, 240, 0.68);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 12px 35px rgba(13, 59, 70, 0.12);
  backdrop-filter: blur(12px);
}

.control-panel span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--river-deep);
  font-size: 0.78rem;
  font-weight: 900;
}

.control-panel span::before {
  content: "";
  width: 30px;
  height: 17px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--river) 48%, #d2e0b3 48%);
}

.floating-note {
  position: absolute;
  right: -18px;
  bottom: 74px;
  display: grid;
  width: 182px;
  gap: 3px;
  padding: 16px;
  border: 1px solid rgba(19, 37, 33, 0.08);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 18px 40px rgba(13, 59, 70, 0.16);
}

.floating-note strong {
  font-size: 0.92rem;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.proof-strip,
.features,
.scenario,
.trust,
.legal,
.final-cta {
  padding: 92px 0;
}

.proof-strip {
  padding: 34px 0;
  background: var(--river-deep);
  color: var(--paper);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.proof-item {
  display: grid;
  gap: 2px;
}

.proof-item strong {
  font-size: 1.34rem;
  line-height: 1.1;
}

.proof-item span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.92rem;
}

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

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

.feature {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 18px 45px rgba(13, 59, 70, 0.08);
}

.feature-large {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(13, 59, 70, 0.92), rgba(49, 91, 64, 0.9)),
    var(--river-deep);
  color: var(--paper);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 52px;
  color: var(--reed);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.feature-large .feature-number {
  color: #bdd18a;
}

.feature h3 {
  margin-bottom: 12px;
}

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

.feature-large p {
  max-width: 600px;
  color: rgba(255, 250, 240, 0.78);
}

.scenario {
  background:
    linear-gradient(135deg, rgba(245, 234, 214, 0.86), rgba(229, 244, 238, 0.9)),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(19, 37, 33, 0.04) 28px 29px);
}

.scenario-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 14px;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  padding: 22px 24px 22px 68px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 12px 35px rgba(13, 59, 70, 0.08);
  counter-increment: steps;
}

.steps li::before {
  position: absolute;
  top: 19px;
  left: 20px;
  content: counter(steps);
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 999px;
  color: var(--paper);
  font-weight: 900;
  background: var(--river);
}

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

.trust-card {
  min-height: 380px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 250, 240, 0.76);
  box-shadow: 0 20px 55px rgba(13, 59, 70, 0.09);
}

.trust-card.accent {
  color: var(--paper);
  background:
    radial-gradient(circle at 100% 0%, rgba(229, 244, 238, 0.22), transparent 16rem),
    var(--river-deep);
}

.trust-card h2 {
  margin-bottom: 20px;
}

.trust-card p {
  color: var(--muted);
}

.trust-card.accent p {
  color: rgba(255, 250, 240, 0.72);
}

.trust-card a {
  display: inline-flex;
  margin-top: 24px;
  color: #f5d795;
  font-weight: 900;
}

.legal {
  padding-top: 20px;
}

.legal-box {
  padding: 38px;
  border: 2px solid rgba(13, 59, 70, 0.24);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(245, 234, 214, 0.92), rgba(255, 250, 240, 0.92)),
    var(--paper);
  box-shadow: 0 24px 60px rgba(13, 59, 70, 0.1);
}

.legal-box h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.4rem);
}

.legal-box p:last-child {
  max-width: 900px;
  color: rgba(19, 37, 33, 0.78);
  font-size: 1.08rem;
  font-weight: 700;
}

.final-cta {
  padding-top: 30px;
}

.final-card {
  padding: 52px;
  overflow: hidden;
  border-radius: 38px;
  color: var(--paper);
  background:
    radial-gradient(circle at 86% 20%, rgba(245, 234, 214, 0.22), transparent 16rem),
    linear-gradient(135deg, var(--river-deep), var(--moss));
  box-shadow: var(--shadow);
}

.final-card h2 {
  max-width: 820px;
  margin-bottom: 16px;
}

.final-card p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 1.1rem;
}

.final-card .eyebrow {
  color: #d4e39d;
}

footer {
  padding: 34px 0;
  color: rgba(255, 250, 240, 0.72);
  background: #132521;
  font-size: 0.88rem;
}

footer a {
  color: var(--paper);
  font-weight: 800;
}

.footer-layout {
  display: grid;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero-layout,
  .scenario-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
  }

  .phone-card {
    max-width: 460px;
    margin: 0 auto;
  }

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

  .feature-large {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 4px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .hero {
    padding: 30px 0 54px;
  }

  .hero-layout {
    gap: 28px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.45rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .subtitle {
    margin: 18px 0 24px;
    font-size: 1.02rem;
  }

  .cta {
    width: auto;
    min-height: 50px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .cta-group {
    gap: 10px;
  }

  .phone-card {
    max-width: 340px;
    padding: 16px;
    border-radius: 30px;
  }

  .phone {
    width: 100%;
    border-width: 7px;
    border-radius: 38px;
  }

  .map-preview {
    min-height: 360px;
    border-radius: 26px;
  }

  .floating-note {
    display: none;
  }

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

  .feature-large {
    grid-column: auto;
  }

  .proof-strip,
  .features,
  .scenario,
  .trust,
  .legal,
  .final-cta {
    padding: 62px 0;
  }

  .proof-strip {
    padding: 28px 0;
  }

  .feature,
  .trust-card,
  .legal-box,
  .final-card {
    padding: 26px;
  }

  .steps li {
    padding-right: 18px;
  }
}

@media (max-width: 520px) {
  .brand {
    font-size: 0.94rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav-links .nav-cta {
    padding: 10px 13px;
  }

  h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
  }

  .cta {
    width: 100%;
  }

  .phone-card {
    max-width: 300px;
  }

  .map-preview {
    min-height: 330px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
