:root {
  color-scheme: light;
  --ink: #111827;
  --ink-2: #243244;
  --muted: #667085;
  --line: #e7ebf0;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --soft-green: #ecfdf5;
  --green: #16a34a;
  --green-dark: #067647;
  --blue: #1685d8;
  --navy: #0f172a;
  --navy-2: #121c2e;
  --shadow-card: 0 18px 45px rgba(15, 23, 42, 0.08);
  --shadow-stage: 0 30px 85px rgba(15, 23, 42, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(22, 133, 216, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #ffffff 32%, #f7f9fb 100%);
}

a {
  color: var(--green-dark);
  font-weight: 800;
}

.site-header,
main,
.footer {
  width: min(1080px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 72px;
}

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

.brand img {
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(22, 133, 216, 0.18);
}

.brand span {
  font-size: 0.96rem;
  font-weight: 900;
}

.nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.nav-links a {
  color: #526071;
  font-size: 0.86rem;
  text-decoration: none;
}

.header-cta {
  justify-self: end;
  border-radius: 999px;
  padding: 11px 18px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.82rem;
  text-decoration: none;
}

.hero {
  padding: 54px 0 92px;
  text-align: center;
}

.kicker {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin: 0 auto 20px;
  font-size: clamp(3.25rem, 8vw, 5.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h1 span {
  color: var(--blue);
}

h2 {
  max-width: 720px;
  margin: 0 auto 14px;
  font-size: clamp(2.05rem, 5vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-lead,
.section-lead {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

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

.button.primary {
  background: var(--navy);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
}

.button.primary.green {
  background: var(--green);
  box-shadow: 0 14px 34px rgba(22, 163, 74, 0.25);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
}

.button.ghost {
  border: 1px solid transparent;
  background: #f7f9fb;
  color: var(--ink-2);
}

.button.dark {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(22, 133, 216, 0.28);
  outline-offset: 4px;
}

.trust-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.trust-row span {
  border: 1px solid rgba(22, 163, 74, 0.18);
  border-radius: 999px;
  padding: 8px 12px;
  background: var(--soft-green);
  color: var(--green-dark);
  font-size: 0.83rem;
  font-weight: 900;
}

.product-stage {
  position: relative;
  max-width: 900px;
  margin: 54px auto 0;
  border-radius: 22px;
  padding: 10px;
  background: #ffffff;
  box-shadow: var(--shadow-stage);
}

.product-stage::before {
  position: absolute;
  inset: -42px 12% auto;
  z-index: -1;
  height: 120px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.18);
  filter: blur(40px);
  content: "";
}

.product-stage img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.product-stage figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.centered {
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.feature-grid article,
.privacy-cards article,
.price-card,
.cards article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.feature-grid article {
  min-height: 180px;
  padding: 24px;
  text-align: left;
}

.feature-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  background: var(--soft-green);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
}

.feature-grid p,
.privacy-cards span,
.price-card li,
.price-card > p,
.faq p,
.footer p,
.copy p,
.copy li {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.feature-grid p {
  margin-bottom: 0;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 36px;
  align-items: center;
  border-radius: 26px;
  padding: 46px;
  background: var(--soft);
}

.split-panel h2,
.split-panel .kicker,
.split-panel p {
  margin-left: 0;
  text-align: left;
}

.split-panel > div > p:last-child {
  color: var(--muted);
  line-height: 1.7;
}

.privacy-cards {
  display: grid;
  gap: 12px;
}

.privacy-cards article {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.privacy-cards strong {
  color: var(--ink);
}

code {
  border-radius: 6px;
  padding: 2px 6px;
  background: rgba(22, 163, 74, 0.1);
  color: var(--green-dark);
  font-weight: 900;
}

.pricing {
  text-align: center;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 42px auto 0;
  text-align: left;
}

.price-card {
  position: relative;
  padding: 28px;
}

.price-card.highlighted {
  border-color: rgba(22, 163, 74, 0.48);
  box-shadow:
    0 0 0 1px rgba(22, 163, 74, 0.16),
    0 24px 60px rgba(22, 163, 74, 0.14);
}

.plan-label {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  padding: 6px 10px;
  background: var(--soft-green);
  color: var(--green-dark);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 1.15rem;
}

.faq {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 36px;
  text-align: left;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}

.faq-list summary {
  min-height: 56px;
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.final-cta {
  margin: 64px calc(50% - 50vw) 0;
  padding: 84px 20px;
  background:
    radial-gradient(circle at 50% 20%, rgba(22, 163, 74, 0.18), transparent 320px),
    linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #ffffff;
  text-align: center;
}

.final-cta h2 {
  max-width: 620px;
}

.final-cta .kicker,
.final-cta .section-lead {
  color: rgba(255, 255, 255, 0.72);
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  padding: 42px 0 56px;
}

.footer-brand {
  margin-bottom: 12px;
}

.footer p {
  max-width: 280px;
  margin: 0;
}

.footer nav {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 28px;
  align-content: start;
}

.footer a {
  text-decoration: none;
}

.policy {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 72px;
}

.top-link {
  margin-bottom: 22px;
}

.policy-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.app-icon.small {
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(22, 133, 216, 0.2);
}

.policy-header h1 {
  margin-bottom: 0;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 0.92;
}

.copy {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(24px, 5vw, 48px);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

.copy h2 {
  margin: 30px 0 10px;
  font-size: 1.08rem;
}

.copy h2:first-child {
  margin-top: 0;
}

.copy ul {
  margin: 0 0 18px;
  padding-left: 1.2rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
    padding: 18px 0;
  }

  .header-cta {
    justify-self: center;
  }

  .feature-grid,
  .split-panel,
  .price-grid,
  .footer {
    grid-template-columns: 1fr;
  }

  .split-panel {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  .site-header,
  main,
  .footer {
    width: min(100% - 28px, 1080px);
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    padding: 38px 0 70px;
  }

  h1 {
    font-size: clamp(2.9rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-stage {
    margin-top: 38px;
    padding: 6px;
    border-radius: 18px;
  }

  .product-stage img {
    border-radius: 12px;
  }

  .section {
    padding: 66px 0;
  }

  .feature-grid article,
  .price-card {
    padding: 22px;
  }

  .final-cta {
    padding: 68px 20px;
  }

  .footer nav {
    grid-template-columns: 1fr;
  }
}

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

  .button {
    transition: none;
  }

  .button:hover {
    transform: none;
  }
}
