:root {
  --ink: #101d1b;
  --ink-soft: #293936;
  --muted: #63716d;
  --line: #dfe7e2;
  --panel: #ffffff;
  --paper: #fbfaf6;
  --mist: #eff7f3;
  --mint: #cfe9dc;
  --green: #0c7054;
  --green-dark: #073f34;
  --blue: #264b70;
  --gold: #b78a3c;
  --coral: #c96f57;
  --shadow-soft: 0 18px 50px rgba(16, 29, 27, 0.1);
  --shadow-strong: 0 28px 80px rgba(16, 29, 27, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(207, 233, 220, 0.46), transparent 34rem),
    linear-gradient(180deg, #fffefb 0%, #f7fbf8 44%, #fbfaf6 100%);
  font-family: "Aptos", "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px);
  background: rgba(255, 254, 251, 0.82);
  border-bottom: 1px solid rgba(223, 231, 226, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(135deg, var(--green-dark), var(--blue));
  box-shadow: 0 12px 26px rgba(7, 63, 52, 0.18);
  font-weight: 850;
}

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

.brand strong {
  color: var(--ink-soft);
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 2.5vw, 32px);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
  content: "";
}

.site-nav a:hover {
  color: var(--green-dark);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  min-height: calc(100vh - 81px);
  overflow: hidden;
}

.hero > *,
.split > *,
.section-heading > *,
.signup > *,
.pricing-grid > *,
.feature-band > *,
.steps > * {
  min-width: 0;
}

.hero::before {
  position: absolute;
  inset: auto auto 7% -13%;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(183, 138, 60, 0.15);
  border-radius: 999px;
  content: "";
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 84px);
}

.eyebrow,
.section-kicker,
.card-topline {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5.65rem);
  line-height: 0.97;
}

h2 {
  max-width: 930px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.25vw, 3.45rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 11px;
  color: var(--ink-soft);
  font-size: 1.18rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 610px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.7vw, 1.24rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-dark), #0b6750);
  box-shadow: 0 14px 28px rgba(7, 63, 52, 0.2);
}

.button.primary:hover {
  background: linear-gradient(135deg, #052e27, #075742);
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(7, 63, 52, 0.16);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin: 0;
}

.hero-stats div {
  padding: 16px;
  border: 1px solid rgba(223, 231, 226, 0.86);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 12px 34px rgba(16, 29, 27, 0.06);
}

.hero-stats dt {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
  min-height: 560px;
  padding: clamp(22px, 4vw, 58px) clamp(20px, 4vw, 62px) clamp(30px, 5vw, 76px) 0;
}

.hero-media::before {
  position: absolute;
  inset: 8% 0 4% 10%;
  border-radius: 8px 0 0 8px;
  background: linear-gradient(135deg, rgba(12, 112, 84, 0.16), rgba(183, 138, 60, 0.14));
  content: "";
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 246, 0.84), rgba(251, 250, 246, 0.12) 32%, rgba(251, 250, 246, 0));
  pointer-events: none;
  content: "";
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border-radius: 8px 0 0 8px;
  object-fit: cover;
  box-shadow: var(--shadow-strong);
}

.hero-note {
  position: absolute;
  right: clamp(22px, 5vw, 72px);
  bottom: clamp(34px, 7vw, 92px);
  z-index: 2;
  display: grid;
  gap: 4px;
  width: min(330px, calc(100% - 44px));
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 8px;
  color: #fff;
  background: rgba(7, 63, 52, 0.82);
  box-shadow: 0 18px 38px rgba(7, 63, 52, 0.28);
  backdrop-filter: blur(12px);
}

.hero-note span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.section {
  padding: clamp(70px, 9vw, 120px) clamp(20px, 5vw, 76px);
}

.intro {
  background: #fff;
}

.split,
.section-heading,
.signup {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 1.08fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.copy-stack {
  color: var(--muted);
  font-size: 1.08rem;
}

.copy-stack p {
  max-width: 680px;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 4vw, 42px) clamp(20px, 5vw, 76px);
  background:
    linear-gradient(180deg, #fff, rgba(239, 247, 243, 0.9)),
    var(--mist);
}

.feature-band article {
  min-height: 240px;
  padding: clamp(25px, 4vw, 42px);
  border: 1px solid rgba(223, 231, 226, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(16, 29, 27, 0.07);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border: 1px solid rgba(12, 112, 84, 0.18);
  border-radius: 8px;
  color: var(--green-dark);
  background: linear-gradient(180deg, #f8fffb, var(--mint));
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.feature-band p,
.steps,
.section-heading p,
.muted,
.signup-copy p,
.form-note {
  color: var(--muted);
}

.process {
  background:
    linear-gradient(120deg, rgba(7, 63, 52, 0.94), rgba(20, 53, 61, 0.94)),
    var(--green-dark);
  color: #fff;
}

.process .section-kicker {
  color: #bee5d4;
}

.process h2 {
  color: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  list-style: none;
  counter-reset: steps;
}

.steps li {
  position: relative;
  min-height: 220px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.075);
  counter-increment: steps;
}

.steps li::before {
  display: block;
  margin-bottom: 36px;
  color: #e4c183;
  font-size: 0.84rem;
  font-weight: 850;
  content: "Step " counter(steps);
}

.steps strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
}

.pricing {
  background: var(--paper);
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(223, 231, 226, 0.95);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.price-card::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  border-radius: 999px;
  background: rgba(183, 138, 60, 0.42);
  content: "";
}

.price-card.highlighted {
  border-color: rgba(12, 112, 84, 0.34);
  box-shadow: var(--shadow-strong);
}

.price-card.highlighted::before {
  background: linear-gradient(90deg, var(--green), var(--gold));
}

.price {
  margin-bottom: 5px;
}

.price span {
  color: var(--green-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 26px 0;
  padding-left: 20px;
}

.price-card li::marker {
  color: var(--green);
}

.addon,
.notice {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding: 17px 18px;
  border: 1px solid rgba(183, 138, 60, 0.28);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  background: #fff8e8;
  color: #4b3c22;
}

.signup {
  background:
    linear-gradient(120deg, rgba(7, 63, 52, 0.96), rgba(22, 46, 63, 0.94)),
    var(--green-dark);
  color: #fff;
}

.signup .section-kicker,
.signup .signup-copy p {
  color: #d9efe6;
}

.notice {
  max-width: 560px;
  margin-top: 28px;
  color: #14372b;
  background: #edf8f2;
}

.signup-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow-strong);
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  font-weight: 800;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 10px;
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cbd8d2;
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
.button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(183, 138, 60, 0.38);
  outline-offset: 2px;
}

.choice,
.agreement {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: #fff;
  font-weight: 700;
}

.choice input,
.agreement input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.form-button {
  width: 100%;
}

.form-note {
  margin: -8px 0 0;
  font-size: 0.9rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 5vw, 76px);
  color: #fff;
  background: #101816;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .section-heading,
  .signup {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
    padding-left: clamp(20px, 5vw, 76px);
    order: -1;
  }

  .hero-media::before {
    inset: 12% 3% 7% 3%;
    border-radius: 8px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(251, 250, 246, 0.08), rgba(251, 250, 246, 0.66));
  }

  .hero-media img {
    border-radius: 8px;
  }

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

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

@media (max-width: 680px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px 24px;
  }

  h1 {
    font-size: 2.45rem;
    max-width: 342px;
    overflow-wrap: break-word;
  }

  .hero-copy {
    width: 100%;
    max-width: 390px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-text,
  .copy-stack p,
  .section-heading p,
  .signup-copy p {
    max-width: 342px;
    overflow-wrap: break-word;
  }

  .hero-stats,
  .feature-band,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 330px;
    padding-right: 20px;
    padding-bottom: 18px;
    padding-left: 20px;
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    max-width: 342px;
    margin: -68px 16px 0;
    overflow-wrap: break-word;
  }

  .button {
    width: 100%;
  }

  .steps li {
    min-height: auto;
  }

  .site-footer {
    flex-direction: column;
  }
}
