:root {
  color-scheme: light;
  --ink: #121917;
  --muted: #5c6964;
  --line: #d9e0dc;
  --surface: #ffffff;
  --surface-alt: #f3f6f4;
  --green: #159447;
  --green-dark: #0c6831;
  --blue: #2767dc;
  --coral: #e66f75;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(217, 224, 220, 0.92);
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
}

nav {
  display: flex;
  gap: 26px;
  font-size: 14px;
  font-weight: 650;
}

nav a,
.footer-links a,
.text-link {
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--green-dark);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(650px, calc(100vh - 68px));
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #f7f9f8;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #f7f9f8 0%, #f7f9f8 47%, rgba(247, 249, 248, 0.9) 55%, rgba(247, 249, 248, 0.02) 78%);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0 0 0 43%;
  background-image: url("/assets/product-preview.png");
  background-position: right center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(580px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - 1180px) / 2));
  padding: 72px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 560px;
  margin-bottom: 22px;
  font-size: clamp(48px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 30px;
  color: #35413c;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 10px 18px;
  font-weight: 760;
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button-primary {
  color: #ffffff;
  background: var(--green);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--green-dark);
}

.button-secondary {
  border-color: #b8c4be;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  margin: 0;
  padding: 0;
  color: #43504b;
  font-size: 14px;
  font-weight: 650;
  list-style: none;
}

.trust-list li::before {
  margin-right: 7px;
  color: var(--green);
  content: "\2713";
}

.section {
  padding: 92px 24px;
}

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

.section-light {
  background: var(--surface);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 46px;
}

.section-heading h2,
.privacy-layout h2,
.support-layout h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading > p:last-child,
.privacy-copy p {
  color: var(--muted);
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-grid article {
  min-height: 250px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.feature-number {
  display: block;
  margin-bottom: 44px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.feature-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

.feature-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.privacy-band {
  color: #ffffff;
  background: #16221e;
}

.privacy-band .eyebrow {
  color: #75d899;
}

.privacy-layout,
.support-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: start;
}

.privacy-layout h2 {
  max-width: 600px;
  margin-bottom: 0;
}

.privacy-copy p {
  color: #c8d2ce;
}

.text-link {
  color: #9ee6b8;
  font-weight: 740;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
  gap: 80px;
  align-items: center;
}

.pricing-heading {
  margin-bottom: 0;
}

.pricing-card {
  border: 1px solid #a9b8b0;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(24, 45, 34, 0.09);
}

.pricing-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-topline h3 {
  margin-bottom: 0;
  font-size: 21px;
}

.pricing-topline span {
  border: 1px solid #a8b8b0;
  border-radius: 999px;
  padding: 4px 9px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
}

.price {
  margin: 25px 0;
  font-size: 54px;
  font-weight: 850;
  line-height: 1;
}

.price span,
.price small {
  font-size: 16px;
  font-weight: 750;
}

.pricing-card ul {
  display: grid;
  gap: 11px;
  margin: 0 0 28px;
  padding-left: 20px;
  color: #39463f;
}

.button-wide {
  width: 100%;
}

.pricing-note {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.support-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef3ff;
}

.support-layout {
  align-items: center;
}

.support-layout h2 {
  margin-bottom: 0;
}

.support-email {
  justify-self: end;
  color: #124a9f;
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 760;
  overflow-wrap: anywhere;
  text-underline-offset: 5px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 36px;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  color: #50605a;
  font-size: 14px;
  background: #ffffff;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  margin-bottom: 4px;
  color: var(--ink);
}

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

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
}

.legal-main {
  min-height: calc(100vh - 68px);
  padding: 76px 24px 100px;
  background: var(--surface-alt);
}

.legal-page {
  width: min(820px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 64px);
  background: #ffffff;
}

.legal-page h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 6vw, 64px);
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-page p,
.legal-page li {
  color: #43504b;
}

.legal-meta {
  margin-bottom: 36px;
  color: var(--muted);
}

.legal-page code {
  border-radius: 4px;
  padding: 2px 5px;
  background: #eef2f0;
}

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

  nav {
    gap: 16px;
  }

  .hero {
    min-height: 720px;
    align-items: start;
  }

  .hero::after {
    background: linear-gradient(180deg, #f7f9f8 0%, #f7f9f8 58%, rgba(247, 249, 248, 0.18) 86%);
  }

  .hero-visual {
    inset: 40% -10% -5% 28%;
    background-size: auto 100%;
  }

  .hero-content {
    width: min(650px, calc(100% - 48px));
    padding-top: 58px;
  }

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

  .privacy-layout,
  .pricing-layout,
  .support-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .support-email {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    display: block;
    padding: 14px 18px;
  }

  nav {
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .hero {
    min-height: 640px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 44px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-visual {
    inset: 56% 0 -3% 0;
    opacity: 0.88;
  }

  .trust-list {
    display: none;
  }

  .hero::after {
    background: linear-gradient(180deg, #f7f9f8 0%, #f7f9f8 52%, rgba(247, 249, 248, 0.04) 82%);
  }

  .section {
    padding: 68px 18px;
  }

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

  .feature-grid article {
    min-height: 210px;
  }

  .pricing-card {
    padding: 24px;
  }

  .pricing-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 36px 18px;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .site-footer > p {
    grid-column: auto;
  }

  .legal-main {
    padding: 28px 14px 60px;
  }
}

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

  .button {
    transition: none;
  }
}
