:root {
  color-scheme: light dark;
  --background: #fbf9f4;
  --surface: #ffffff;
  --surface-soft: #f3f1ea;
  --text: #1c1e1a;
  --muted: #5c6058;
  --subtle: #8a8e84;
  --green: #2f8f5b;
  --green-dark: #1f6840;
  --green-soft: #e4f2e9;
  --orange: #e08a2b;
  --line: rgba(28, 30, 26, 0.1);
  --shadow: 0 18px 50px rgba(28, 30, 26, 0.09);
  --radius: 22px;
  --content: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(47, 143, 91, 0.10), transparent 28rem),
    var(--background);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--green-dark);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--green);
}

a:focus-visible,
summary:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(224, 138, 43, 0.55);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  top: -80px;
  left: 18px;
  z-index: 100;
  border-radius: 12px;
  background: var(--text);
  color: var(--surface);
  padding: 10px 16px;
  transition: top 160ms ease;
}

.skip-link:focus {
  top: 18px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 249, 244, 0.90);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  width: min(calc(100% - 40px), var(--content));
  min-height: 72px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(28, 30, 26, 0.11);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: var(--green-dark);
}

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

.hero {
  display: grid;
  min-height: 520px;
  padding: 88px 0 74px;
  align-content: center;
  grid-template-columns: minmax(0, 760px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.15;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 5.4rem);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 4vw, 2.65rem);
}

h3 {
  margin-bottom: 9px;
  font-size: 1.18rem;
}

.lede {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 20px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #ffffff;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

.button:hover {
  background: var(--green-dark);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(47, 143, 91, 0.22);
  transform: translateY(-1px);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.button.secondary:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 26px;
  box-shadow: 0 8px 26px rgba(28, 30, 26, 0.045);
}

.card p,
.policy-section p,
.policy-section li {
  color: var(--muted);
}

.icon {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 14px;
  background: var(--green-soft);
  color: var(--green-dark);
  font-size: 1.2rem;
  font-weight: 850;
}

.page-hero {
  padding: 86px 0 52px;
}

.updated {
  margin-top: 18px;
  color: var(--subtle);
  font-size: 0.92rem;
}

.policy-layout {
  display: grid;
  padding-bottom: 100px;
  align-items: start;
  grid-template-columns: 250px minmax(0, 760px);
  gap: 64px;
}

.policy-nav {
  position: sticky;
  top: 105px;
  border-left: 2px solid var(--line);
  padding-left: 20px;
}

.policy-nav strong {
  display: block;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.policy-nav a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.9rem;
  text-decoration: none;
}

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

.policy-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 105px;
}

.policy-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-section ul {
  padding-left: 1.2em;
}

.notice {
  border-left: 4px solid var(--orange);
  border-radius: 0 16px 16px 0;
  background: #fbefdd;
  padding: 18px 20px;
  color: #62421d;
}

.support-grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  display: flex;
  min-height: 230px;
  flex-direction: column;
  align-items: flex-start;
}

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

.support-card .contact-address {
  margin: -4px 0 20px;
  overflow-wrap: anywhere;
  font-size: 0.95rem;
  font-weight: 650;
}

.support-card .copy-email {
  margin-top: 10px;
  cursor: pointer;
  font: inherit;
}

.support-card .copy-status {
  min-height: 1.5em;
  margin: 8px 0 0;
  color: var(--green-dark);
  font-size: 0.88rem;
}

.faq-section {
  max-width: 820px;
  padding: 20px 0 100px;
}

.faq-section > p {
  margin-bottom: 28px;
  color: var(--muted);
}

details {
  border-top: 1px solid var(--line);
  background: transparent;
}

details:last-of-type {
  border-bottom: 1px solid var(--line);
}

summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 6px;
  color: var(--green-dark);
  content: "+";
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: -6px 0 22px;
  padding-right: 40px;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface-soft);
}

.footer-inner {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-inner p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

@media (max-width: 780px) {
  .hero {
    min-height: auto;
    padding: 62px 0;
  }

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

  .policy-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .policy-nav {
    position: static;
    display: none;
  }
}

@media (max-width: 560px) {
  .nav {
    width: min(calc(100% - 28px), var(--content));
    min-height: 66px;
  }

  .container {
    width: min(calc(100% - 30px), var(--content));
  }

  .brand span {
    display: none;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 0.88rem;
  }

  .page-hero {
    padding: 58px 0 38px;
  }

  .footer-inner {
    padding: 30px 0;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --background: #0e0f0d;
    --surface: #1b1d1a;
    --surface-soft: #151713;
    --text: #f4f3ee;
    --muted: #adb0a7;
    --subtle: #7c8075;
    --green: #4fb783;
    --green-dark: #79d3a5;
    --green-soft: #1e2e24;
    --line: rgba(255, 255, 255, 0.10);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.42);
  }

  body {
    background:
      radial-gradient(circle at 12% 8%, rgba(79, 183, 131, 0.11), transparent 28rem),
      var(--background);
  }

  .site-header {
    background: rgba(14, 15, 13, 0.90);
  }

  .notice {
    background: #2e2417;
    color: #f2d1a6;
  }
}

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

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