:root {
  --paper: #f7f4ee;
  --ink: #102a43;
  --muted: #64727a;
  --green: #236b54;
  --green-dark: #18513f;
  --line: rgba(16, 42, 67, .14);
  --soft-line: rgba(16, 42, 67, .1);
  --shadow: 0 10px 24px rgba(16, 42, 67, .08);
  --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}
button { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.shell { width: min(1120px, calc(100% - 64px)); margin-inline: auto; }
.site-header {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 760;
  letter-spacing: -.035em;
  text-decoration: none;
}
.brand img { display: block; }
.brand span { font-size: 1.08rem; }
.site-nav, .footer-links { display: flex; align-items: center; gap: 28px; }
.site-nav a, .footer-links a {
  font-size: .88rem;
  font-weight: 650;
  text-decoration: none;
}
.site-nav > a:not(.button):hover, .footer-links a:hover, .text-link:hover { color: var(--green); }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  font-weight: 720;
  text-decoration: none;
  transition: background-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-small { min-height: 40px; padding: 0 19px; color: var(--paper); background: var(--green); }
.button-small:hover, .button-primary:hover { background: var(--green-dark); }
.button-primary {
  min-height: 52px;
  padding: 0 23px;
  color: var(--paper);
  background: var(--green);
}
.button-primary span { font-size: 1.1em; font-weight: 400; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: .93rem;
  font-weight: 700;
  text-underline-offset: 4px;
}
.text-link span { font-size: 1.18em; transition: transform .18s ease; }
.text-link:hover span { transform: translateX(3px); }
h1, h2, h3, p { margin-top: 0; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
.hero {
  max-width: 850px;
  padding-top: 78px;
  padding-bottom: 78px;
  text-align: center;
}
.hero .eyebrow { margin-bottom: 17px; }
.hero h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: clamp(3.5rem, 7vw, 4.25rem);
  font-weight: 780;
  letter-spacing: -.075em;
  line-height: 1.02;
}
.hero-lede {
  max-width: 700px;
  margin: 0 auto 29px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 23px; flex-wrap: wrap; }
.product-section { padding-bottom: 27px; }
.product-section h2 {
  margin-bottom: 20px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -.02em;
  text-align: center;
}
.carousel { outline: none; }
.carousel-frame {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 20px;
}
.carousel-viewport { min-width: 0; touch-action: pan-y; }
.carousel-slide { margin: 0; }
.carousel-slide img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow);
  opacity: 1;
  transition: opacity .2s ease, transform .2s ease;
}
.carousel-slide img.is-switching { opacity: .55; transform: translateX(3px); }
.carousel-control {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.carousel-control:hover { border-color: var(--green); color: var(--green); background: rgba(35, 107, 84, .06); }
.carousel-control span { font-size: 1.2rem; line-height: 1; }
.carousel-navigation {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.carousel-dots { display: flex; align-items: center; gap: 10px; }
.carousel-dot {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.carousel-dot span {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: rgba(16, 42, 67, .28);
  transition: width .18s ease, border-radius .18s ease, background-color .18s ease;
}
.carousel-dot:hover span { background: var(--green); }
.carousel-dot.is-active span { width: 22px; border-radius: 99px; background: var(--green); }
.carousel-count { color: var(--muted); font-size: .76rem; font-variant-numeric: tabular-nums; letter-spacing: .08em; }
.trust-line {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .88rem;
}
.trust-line > span:nth-of-type(even) { color: rgba(16, 42, 67, .35); }
.trust-line .text-link { margin-left: 12px; font-size: .85rem; }
.final-cta { padding-top: 116px; padding-bottom: 120px; text-align: center; }
.final-cta h2 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: clamp(2.25rem, 5vw, 3.7rem);
  font-weight: 760;
  letter-spacing: -.07em;
  line-height: 1.05;
}
.final-cta > p { margin-bottom: 26px; color: var(--muted); font-size: 1.06rem; }
.site-footer {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.site-footer .brand { color: var(--ink); }
.site-footer .brand span { font-size: .95rem; }
.site-footer p { margin: 0; font-size: .78rem; }

.policy-page { max-width: 1120px; padding-top: 70px; padding-bottom: 88px; }
.policy-heading { max-width: 820px; margin: 0 auto 54px; text-align: center; }
.policy-heading h1 {
  max-width: 820px;
  margin-bottom: 14px;
  font-size: clamp(2.8rem, 6vw, 4.4rem);
  font-weight: 780;
  letter-spacing: -.075em;
  line-height: 1.04;
}
.updated { margin: 0; color: var(--muted); font-size: .88rem; }
.policy-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 760px);
  gap: 52px;
  align-items: start;
  max-width: 990px;
  margin-inline: auto;
}
.policy-aside {
  position: sticky;
  top: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 2px solid var(--green);
  padding-left: 15px;
}
.policy-aside span {
  margin-bottom: 8px;
  color: var(--green);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.policy-aside a { color: var(--muted); font-size: .78rem; line-height: 1.35; text-decoration: none; }
.policy-aside a:hover { color: var(--green); }
.policy-content section { border-top: 1px solid var(--line); padding: 31px 0 34px; scroll-margin-top: 24px; }
.policy-content section:first-child { border-top: 0; padding-top: 0; }
.policy-content h2 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 1.34rem;
  letter-spacing: -.035em;
  line-height: 1.2;
}
.policy-content p { margin-bottom: 15px; color: #44565f; font-size: .96rem; }
.policy-content p:last-child { margin-bottom: 0; }
.policy-content ul { margin: 0 0 17px; padding-left: 22px; color: #44565f; font-size: .96rem; }
.policy-content li { margin: 6px 0; padding-left: 4px; }
.policy-content a { color: var(--green-dark); font-weight: 700; text-underline-offset: 3px; }
.two-column-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px 30px; padding-left: 22px; }
.permissions { margin: 0 0 18px; }
.permissions div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 17px;
  border-bottom: 1px solid var(--soft-line);
  padding: 14px 0;
}
.permissions div:first-child { border-top: 1px solid var(--soft-line); }
.permissions dt { color: var(--green-dark); font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .77rem; font-weight: 700; }
.permissions dd { margin: 0; color: #44565f; font-size: .89rem; line-height: 1.5; }
.contact-section { margin-top: 12px; }
.contact-email { display: inline-block; color: var(--green-dark); font-size: 1.08rem; }

@media (max-width: 900px) {
  .hero { padding-top: 65px; padding-bottom: 65px; }
  .carousel-frame { gap: 12px; }
  .policy-layout { grid-template-columns: 1fr; gap: 36px; }
  .policy-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-left: 0;
    border-bottom: 2px solid var(--green);
    padding: 0 0 17px;
  }
  .policy-aside span { grid-column: 1 / -1; margin-bottom: 2px; }
}
@media (max-width: 620px) {
  .shell { width: min(100% - 36px, 520px); }
  .site-header { min-height: 74px; }
  .site-nav { gap: 14px; }
  .site-nav > a:not(.button) { display: none; }
  .button-small { min-height: 38px; padding: 0 15px; font-size: .8rem; }
  .hero { padding-top: 53px; padding-bottom: 56px; }
  .hero h1 { font-size: clamp(2.9rem, 14vw, 4rem); }
  .hero-lede { font-size: 1.05rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 17px; }
  .hero-actions .button { width: 100%; }
  .product-section { padding-bottom: 19px; }
  .product-section h2 { margin-bottom: 16px; }
  .carousel-frame {
    grid-template-columns: 1fr 1fr;
    gap: 13px 12px;
  }
  .carousel-viewport { grid-column: 1 / -1; grid-row: 1; }
  .carousel-control { width: 42px; height: 42px; }
  .carousel-frame .carousel-control:first-child { grid-column: 1; grid-row: 2; justify-self: start; }
  .carousel-frame .carousel-control:last-child { grid-column: 2; grid-row: 2; justify-self: end; }
  .carousel-navigation { min-height: 43px; gap: 13px; }
  .carousel-count { display: none; }
  .trust-line {
    min-height: 0;
    flex-wrap: wrap;
    gap: 7px 9px;
    padding: 19px 0;
    text-align: center;
  }
  .trust-line .text-link { width: 100%; justify-content: center; margin: 5px 0 0; }
  .final-cta { padding-top: 84px; padding-bottom: 88px; }
  .final-cta h2 { font-size: clamp(2.35rem, 11vw, 3.4rem); }
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: 25px;
    padding-bottom: 29px;
  }
  .footer-links { align-items: flex-start; flex-direction: column; gap: 6px; }
  .policy-page { padding-top: 51px; padding-bottom: 64px; }
  .policy-heading { margin-bottom: 43px; }
  .policy-heading h1 { font-size: clamp(2.8rem, 13.5vw, 4rem); }
  .policy-aside { grid-template-columns: repeat(2, 1fr); gap: 9px 15px; }
  .two-column-list { grid-template-columns: 1fr; }
  .permissions div { grid-template-columns: 1fr; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .text-link span, .carousel-slide img, .carousel-dot span, .carousel-control { transition: none; }
}