:root {
  --ink: #0a0f1a;
  --muted: #5e6672;
  --paper: #f9f8f5;
  --white: #ffffff;
  --forest: #166534;
  --forest-dark: #0f3d20;
  --forest-light: #dcf5e7;
  --forest-pale: #f0faf4;
  --warm: #c8956c;
  --warm-light: #f5ebe0;
  --line: #deddd8;
  --shadow: 0 24px 70px rgba(10, 15, 26, 0.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 3%, rgba(26, 107, 60, 0.09), transparent 32rem),
    radial-gradient(circle at 92% 20%, rgba(200, 149, 108, 0.12), transparent 25rem),
    var(--paper);
}

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

h1, h2, h3, .brand, .button, .eyebrow, .stat-value {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

h1, h2, h3, p { margin-top: 0; }
h1, h2 { text-wrap: balance; }
p { line-height: 1.7; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  border-radius: 0.6rem;
  color: var(--white);
  background: var(--forest-dark);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(10, 15, 26, 0.08);
  background: rgba(249, 248, 245, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav,
.container {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  object-fit: contain;
}

.brand span span { color: var(--warm); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-links > a:not(.button) {
  color: #4d5560;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links > a:not(.button):hover { color: var(--ink); }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button:hover { transform: translateY(-1px); }
.button:focus-visible, a:focus-visible { outline: 3px solid rgba(26, 107, 60, 0.3); outline-offset: 3px; }

.button-primary {
  color: var(--white);
  background: var(--forest);
  box-shadow: 0 10px 25px rgba(22, 101, 52, 0.22);
}

.button-primary:hover { background: #14532d; box-shadow: 0 14px 30px rgba(22, 101, 52, 0.27); }

.button-secondary {
  border-color: rgba(10, 15, 26, 0.13);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.78);
}

.button-secondary:hover { background: var(--white); }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7.25rem) 0 3.75rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-image: radial-gradient(rgba(10, 15, 26, 0.17) 0.7px, transparent 0.7px);
  background-size: 21px 21px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.15rem;
  padding: 0.43rem 0.72rem;
  border: 1px solid #b9dec8;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(240, 250, 244, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22a559;
  box-shadow: 0 0 0 4px rgba(34, 165, 89, 0.12);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(2.65rem, 5.7vw, 5rem);
  line-height: 0.99;
  letter-spacing: -0.055em;
}

.hero-copy > p {
  max-width: 650px;
  margin-bottom: 1.7rem;
  color: #4e5763;
  font-size: clamp(1.03rem, 1.5vw, 1.2rem);
  line-height: 1.65;
}

.hero-copy strong { color: var(--ink); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  color: #707780;
  font-size: 0.82rem;
}

.hero-note span::before { content: "✓"; margin-right: 0.35rem; color: var(--forest); font-weight: 800; }

.product-frame {
  position: relative;
  isolation: isolate;
}

.product-frame::before {
  content: "";
  position: absolute;
  inset: 8% 5% -7% 5%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(22, 101, 52, 0.17);
  filter: blur(45px);
}

.product-shell {
  overflow: hidden;
  padding: 0.55rem;
  border: 1px solid rgba(10, 15, 26, 0.1);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transform: rotate(0.65deg);
}

.product-shell img { width: 100%; height: auto; border-radius: 0.85rem; }

.product-badge {
  position: absolute;
  left: -1rem;
  bottom: 1.35rem;
  max-width: 230px;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(10, 15, 26, 0.1);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 15px 35px rgba(10, 15, 26, 0.14);
  font-size: 0.82rem;
  line-height: 1.45;
}

.product-badge strong { display: block; margin-bottom: 0.15rem; color: var(--forest-dark); }

.trust-strip {
  padding: 1.2rem 0;
  border-block: 1px solid rgba(10, 15, 26, 0.08);
  background: rgba(255, 255, 255, 0.45);
}

.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  padding: 0.35rem 1.2rem;
  border-right: 1px solid rgba(10, 15, 26, 0.09);
  text-align: center;
}

.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; margin-bottom: 0.15rem; font-size: 0.9rem; }
.trust-item span { color: #757c85; font-size: 0.78rem; }

.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-white { background: rgba(255, 255, 255, 0.62); }
.section-dark { color: var(--white); background: var(--ink); }

.section-heading { max-width: 720px; margin: 0 auto 2.8rem; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading h2 { margin-bottom: 0.95rem; font-size: clamp(2rem, 4vw, 3.35rem); line-height: 1.08; letter-spacing: -0.04em; }
.section-heading p { margin-bottom: 0; color: var(--muted); font-size: 1.06rem; }
.section-dark .section-heading p { color: #aeb4bd; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }

.card {
  padding: 1.45rem;
  border: 1px solid rgba(10, 15, 26, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 7px 22px rgba(10, 15, 26, 0.045);
}

.card-kicker {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 0.7rem;
  color: var(--forest-dark);
  background: var(--forest-light);
  font-weight: 800;
}

.card h3 { margin-bottom: 0.55rem; font-size: 1.05rem; }
.card p { margin-bottom: 0; color: var(--muted); font-size: 0.9rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; counter-reset: step; }
.step { position: relative; padding: 1.65rem; border-top: 1px solid #c9c8c3; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 1.25rem;
  color: var(--warm);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.step h3 { margin-bottom: 0.55rem; font-size: 1.15rem; }
.step p { margin-bottom: 0; color: var(--muted); font-size: 0.92rem; }

.split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.split-copy h2 { margin-bottom: 1rem; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.08; letter-spacing: -0.04em; }
.split-copy > p { color: var(--muted); }

.check-list { display: grid; gap: 0.75rem; padding: 0; margin: 1.4rem 0 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.8rem; color: #3f4752; line-height: 1.55; }
.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.2rem;
  height: 1.2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--forest);
  background: var(--forest-light);
  font-size: 0.72rem;
  font-weight: 900;
}

.screenshot-card {
  padding: 0.55rem;
  border: 1px solid rgba(10, 15, 26, 0.1);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: var(--shadow);
}
.screenshot-card img { width: 100%; height: auto; border-radius: 0.7rem; }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2.1rem; }
.stat { padding: 1.2rem; border: 1px solid #2c333e; border-radius: 0.9rem; background: #111722; }
.stat-value { display: block; margin-bottom: 0.25rem; color: #76dc9d; font-size: 1.55rem; font-weight: 700; }
.stat span:last-child { color: #aeb4bd; font-size: 0.8rem; }

.comparison-wrap:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 4px;
}

.comparison {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(10, 15, 26, 0.06);
}
.comparison th, .comparison td { padding: 1rem 1.1rem; border-bottom: 1px solid #ecebe7; text-align: left; }
.comparison th { background: #f0efe9; font-family: "Space Grotesk", sans-serif; font-size: 0.85rem; }
.comparison td { color: #4a525c; font-size: 0.9rem; }
.comparison tr:last-child td { border-bottom: 0; }
.comparison .yes { color: var(--forest); font-weight: 700; }
.comparison caption { color: var(--ink); font-family: var(--display); font-size: 1.05rem; font-weight: 700; padding: 0 0 1rem; text-align: left; }

.quote {
  padding: 2rem;
  border: 1px solid rgba(10, 15, 26, 0.1);
  border-radius: 1.15rem;
  background: var(--white);
  box-shadow: 0 12px 35px rgba(10, 15, 26, 0.06);
}
.quote blockquote { margin: 0 0 1.15rem; font-size: 1.08rem; line-height: 1.65; }
.quote footer { color: var(--muted); font-size: 0.82rem; }

.pricing-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 1rem; max-width: 900px; margin: 0 auto; }
.price-card { position: relative; padding: 2rem; border: 1px solid var(--line); border-radius: 1.1rem; background: var(--white); }
.price-card.featured { border: 2px solid var(--forest); box-shadow: 0 20px 55px rgba(22, 101, 52, 0.15); }
.price-badge { position: absolute; top: -0.7rem; right: 1rem; padding: 0.3rem 0.65rem; border-radius: 999px; color: var(--white); background: var(--forest); font-size: 0.69rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.07em; }
.price-card h3 { margin-bottom: 0.4rem; }
.price { margin: 1rem 0 0.3rem; font-family: "Space Grotesk", sans-serif; font-size: 2.8rem; font-weight: 700; letter-spacing: -0.05em; }
.price small { color: var(--muted); font-size: 0.85rem; font-weight: 500; letter-spacing: normal; }
.price-card > p { color: var(--muted); font-size: 0.9rem; }
.price-card .check-list { margin-bottom: 1.5rem; }

.faq { max-width: 850px; margin: 0 auto; }
.faq details { border-bottom: 1px solid #d8d6d1; }
.faq summary { position: relative; padding: 1.25rem 2.25rem 1.25rem 0; cursor: pointer; list-style: none; font-family: "Space Grotesk", sans-serif; font-weight: 700; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; color: var(--forest); font-size: 1.35rem; font-weight: 500; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 2rem 1.25rem 0; margin: 0; color: var(--muted); font-size: 0.92rem; }

.final-cta { padding: clamp(4rem, 9vw, 7rem) 0; text-align: center; }
.final-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 7vw, 5.4rem) 1.5rem;
  border-radius: 1.4rem;
  color: var(--white);
  background: var(--forest-dark);
  box-shadow: 0 30px 70px rgba(15, 61, 32, 0.22);
}
.final-panel::before, .final-panel::after { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); }
.final-panel::before { top: -180px; left: -70px; }
.final-panel::after { right: -100px; bottom: -190px; }
.final-panel h2 { position: relative; max-width: 730px; margin: 0 auto 1rem; font-size: clamp(2rem, 4.8vw, 3.7rem); line-height: 1.06; letter-spacing: -0.045em; }
.final-panel p { position: relative; max-width: 620px; margin: 0 auto 1.7rem; color: #cce9d7; }
.final-panel .button { position: relative; color: var(--forest-dark); background: var(--white); box-shadow: none; }

.site-footer { padding: 2rem 0; border-top: 1px solid rgba(10, 15, 26, 0.09); }
.footer-row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: #7a8088; font-size: 0.78rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; }
  .hero-grid { gap: 3rem; }
  .product-frame { max-width: 720px; margin: 0 auto; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split.reverse .split-copy { order: -1; }
}

@media (max-width: 700px) {
  .nav-links > a:not(.button) { display: none; }
  .nav .button { min-height: 42px; padding: 0.65rem 0.85rem; font-size: 0.82rem; }
  .hero { padding-top: 3.5rem; }
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4rem); }
  .hero-actions .button { width: 100%; }
  .product-badge { position: static; max-width: none; margin-top: 0.75rem; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { margin-bottom: 0.65rem; padding-bottom: 0.9rem; border-bottom: 1px solid rgba(10, 15, 26, 0.08); }
  .card-grid, .steps, .stat-grid, .pricing-grid { grid-template-columns: 1fr; }
  .comparison-wrap { overflow-x: auto; }
  .comparison { min-width: 620px; }
  .footer-row { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
