:root {
  --ink: #18211f;
  --muted: #5d6b66;
  --paper: #f8f7f2;
  --panel: #ffffff;
  --line: #d9ddd2;
  --mint: #d7f0df;
  --moss: #2f6b4f;
  --moss-dark: #1e4c39;
  --copper: #c97941;
  --sky: #d9ecf7;
  --shadow: 0 18px 60px rgba(24, 33, 31, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(248, 247, 242, 0.88);
  border-bottom: 1px solid rgba(217, 221, 210, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 5px 16px rgba(24, 33, 31, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--ink);
}

.nav-cta {
  padding: 9px 14px;
  background: var(--ink);
  border-radius: 8px;
  color: white;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 130px clamp(20px, 6vw, 76px) 58px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(248, 247, 242, 0.98) 0%, rgba(248, 247, 242, 0.85) 42%, rgba(248, 247, 242, 0.3) 72%),
    linear-gradient(0deg, rgba(248, 247, 242, 0.42), rgba(248, 247, 242, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 13px;
  color: var(--moss-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 9rem);
  line-height: 0.85;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: #2d3935;
  font-size: clamp(1.1rem, 2vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.primary:hover {
  background: var(--moss-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(47, 107, 79, 0.28);
  color: var(--moss-dark);
}

.section {
  padding: clamp(58px, 9vw, 108px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro {
  background: var(--panel);
}

.intro-grid,
.plans-grid,
.support-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.intro p:not(.section-kicker),
.support p,
.plans p,
.feature-card p,
.faq p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.feature-card,
.plan-card {
  min-height: 230px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-icon {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.plans {
  background: var(--sky);
}

.plan-list {
  display: grid;
  gap: 14px;
}

.plan-card {
  min-height: 160px;
  box-shadow: none;
}

.plan-card.emphasized {
  background: var(--ink);
  border-color: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.plan-card.emphasized p {
  color: rgba(255, 255, 255, 0.76);
}

.support {
  background: var(--panel);
}

.support-email {
  display: inline-flex;
  margin-top: 8px;
  color: var(--moss-dark);
  font-size: 1.1rem;
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd1c4;
  border-radius: 8px;
  background: white;
  color: var(--ink);
  font: inherit;
  padding: 12px 13px;
}

textarea {
  resize: vertical;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.policy-hero {
  padding-top: 150px;
  background: var(--panel);
}

.policy-shell {
  max-width: 860px;
}

.policy-shell h1 {
  margin-bottom: 16px;
  color: #315d55;
  font-size: clamp(3rem, 9vw, 6.5rem);
}

.policy-shell h2 {
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.policy-shell p {
  color: var(--muted);
  font-size: 1.04rem;
}

.policy-shell ul {
  margin: 0 0 18px;
  padding-left: 24px;
  color: var(--muted);
  font-size: 1.04rem;
}

.policy-shell li + li {
  margin-top: 8px;
}

.policy-updated {
  color: var(--moss-dark);
  font-weight: 800;
}

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

.policy-card {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.policy-card a,
.faq a {
  color: var(--moss-dark);
  font-weight: 800;
}

details {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px 20px;
}

summary {
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

details p {
  margin: 12px 0 0;
}

.site-footer {
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
}

.footer-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    position: absolute;
  }

  .nav {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 150px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(248, 247, 242, 0.98) 0%, rgba(248, 247, 242, 0.88) 62%, rgba(248, 247, 242, 0.55) 100%),
      linear-gradient(0deg, rgba(248, 247, 242, 0.38), rgba(248, 247, 242, 0.16));
  }

  .intro-grid,
  .plans-grid,
  .support-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    display: grid;
    gap: 14px;
  }

  .nav {
    justify-content: flex-start;
    font-size: 0.86rem;
  }

  .nav-cta {
    padding: 7px 10px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 170px;
  }

  h1 {
    font-size: clamp(3.5rem, 22vw, 6.5rem);
  }

  .hero-copy {
    font-size: 1.03rem;
  }

  .button {
    width: 100%;
  }

  .feature-card,
  .plan-card,
  .contact-form {
    padding: 18px;
  }

  .footer-inner {
    display: grid;
  }
}
