:root {
  color-scheme: light;
  --bg: #f4f6f2;
  --paper: #fbfcfa;
  --paper-strong: #ffffff;
  --ink: #17231a;
  --muted: #657168;
  --line: rgba(23, 35, 26, 0.14);
  --green: #3d7b54;
  --green-dark: #285d3d;
  --sage: #dce8de;
  --gold: #bc8c36;
  --shadow: 0 24px 70px rgba(23, 35, 26, 0.13);
  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;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  padding: 12px 0;
  backdrop-filter: blur(18px);
  background: rgba(244, 246, 242, 0.88);
  box-shadow: 0 1px 0 rgba(23, 35, 26, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand span {
  font-size: 1.15rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.nav a,
.site-footer a,
.text-link {
  text-decoration: none;
}

.nav a:hover,
.site-footer a:hover,
.text-link:hover {
  text-decoration: underline;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #ffffff;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(61, 123, 84, 0.2);
}

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

.button.secondary {
  border: 1px solid rgba(23, 35, 26, 0.2);
  background: rgba(255, 255, 255, 0.76);
}

.hero {
  position: relative;
  min-height: 680px;
  overflow: clip;
  border-top: 1px solid rgba(23, 35, 26, 0.04);
  border-bottom: 1px solid rgba(23, 35, 26, 0.09);
  background: #eef2ed;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 42px;
  width: min(1200px, calc(100% - 32px));
  min-height: 680px;
  margin: 0 auto;
  padding: 52px 0 64px;
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 570px;
}

.product-showcase {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.screen-stage {
  position: relative;
  height: 430px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.product-screen {
  position: absolute;
  inset: 10px 0 auto;
  margin: 0;
  transform-origin: center right;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 450ms ease,
    filter 450ms ease;
}

.product-screen.is-active {
  z-index: 3;
  opacity: 1;
  filter: none;
  transform: translate3d(-10px, 0, 54px) rotateX(1.5deg) rotateY(-8deg);
}

.product-screen.is-next {
  z-index: 2;
  opacity: 0.42;
  filter: saturate(0.78);
  transform: translate3d(38px, 24px, -86px) rotateX(2deg) rotateY(-13deg) scale(0.96);
}

.product-screen.is-prev {
  z-index: 1;
  opacity: 0.18;
  filter: saturate(0.55);
  transform: translate3d(-30px, 34px, -145px) rotateX(1deg) rotateY(-3deg) scale(0.94);
}

.screen-frame {
  overflow: hidden;
  border: 1px solid rgba(23, 35, 26, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(23, 35, 26, 0.2), 0 8px 18px rgba(23, 35, 26, 0.1);
}

.screen-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(23, 35, 26, 0.1);
  background: #f8faf7;
}

.screen-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5cec6;
}

.screen-bar b {
  margin-left: 6px;
  color: #788279;
  font-size: 0.67rem;
  font-weight: 700;
}

.screen-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  object-position: top;
}

.showcase-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 6px 6px 0 18px;
}

.showcase-caption {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px 12px;
  min-width: 0;
}

.showcase-caption > span {
  grid-row: 1 / span 2;
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.showcase-caption strong {
  font-size: 0.94rem;
}

.showcase-caption p {
  overflow: hidden;
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.carousel-controls,
.carousel-dots {
  display: flex;
  align-items: center;
}

.carousel-controls {
  flex: 0 0 auto;
  gap: 10px;
}

.carousel-controls > button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(23, 35, 26, 0.18);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font: inherit;
}

.carousel-controls > button:hover {
  border-color: rgba(40, 93, 61, 0.5);
  background: #ffffff;
}

.carousel-dots {
  gap: 6px;
}

.carousel-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(23, 35, 26, 0.24);
  cursor: pointer;
}

.carousel-dots button[aria-current="true"] {
  width: 18px;
  border-radius: 999px;
  background: var(--green);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 590px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 28px;
  color: #3d493b;
  font-size: 1.18rem;
}

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

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span {
  border: 1px solid rgba(23, 35, 26, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.64);
  color: #3f4b3d;
  font-size: 0.9rem;
  font-weight: 760;
}

.section,
.section-band {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.section-band {
  width: 100%;
  padding-inline: max(16px, calc((100% - 1160px) / 2));
  background: #eef1ec;
}

.problem {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: center;
}

.section-copy p,
.split > div:first-child p,
.privacy-card p,
.final-cta p {
  color: #445142;
  font-size: 1.06rem;
}

.comparison-grid,
.steps,
.audience-grid,
.feature-list {
  display: grid;
  gap: 14px;
}

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

.comparison-grid article,
.steps article,
.audience-grid article,
.feature-list article,
.privacy-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 42px rgba(23, 35, 26, 0.06);
}

.comparison-grid article {
  min-height: 220px;
  padding: 22px;
}

.comparison-grid strong {
  display: block;
  margin: 18px 0 12px;
  font-size: 1.55rem;
  line-height: 1.1;
}

.comparison-grid p,
.steps p,
.feature-list p,
.audience-grid p,
.faq p {
  margin-bottom: 0;
  color: var(--muted);
}

.section-heading {
  max-width: 740px;
  margin-bottom: 34px;
}

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

.steps article {
  padding: 24px;
}

.steps span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #ffffff;
  background: var(--green);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--green-dark);
  font-weight: 850;
}

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

.feature-list article {
  padding: 22px;
}

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

.audience-grid article {
  min-height: 170px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.55);
}

.privacy {
  padding-bottom: 50px;
}

.privacy-card {
  max-width: 900px;
  padding: 38px;
  background: var(--sage);
}

.faq {
  padding-top: 50px;
}

.faq details {
  padding: 20px 22px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 850;
}

.faq p {
  padding-top: 12px;
}

.final-cta {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto 96px;
  border: 1px solid rgba(61, 123, 84, 0.22);
  border-radius: 8px;
  padding: 54px;
  text-align: center;
  background: var(--paper-strong);
  box-shadow: var(--shadow);
}

.final-cta h2 {
  margin-inline: auto;
  max-width: 760px;
}

.final-cta p {
  max-width: 640px;
  margin: 0 auto 26px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 46px;
  border-top: 1px solid rgba(23, 35, 26, 0.12);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

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

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
    padding: 52px 0 68px;
  }

  .hero-content {
    max-width: 760px;
  }

  .product-showcase {
    width: min(760px, 100%);
    justify-self: center;
  }

  .screen-stage {
    height: 490px;
  }

  h1 {
    max-width: 720px;
    font-size: clamp(3rem, 8vw, 4.6rem);
  }

  .problem,
  .split {
    grid-template-columns: 1fr;
  }

  .comparison-grid,
  .steps,
  .feature-list,
  .audience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: calc(100% - 24px);
    gap: 12px;
  }

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

  .header-cta {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: calc(100% - 24px);
    gap: 34px;
    padding: 38px 0 50px;
  }

  .hero-content {
    width: auto;
  }

  h1 {
    font-size: clamp(2.7rem, 12vw, 3.45rem);
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .screen-stage {
    height: clamp(252px, 72vw, 300px);
  }

  .product-screen {
    top: 4px;
    transform-origin: center;
  }

  .product-screen.is-active {
    transform: translate3d(0, 0, 32px) rotateX(1deg) rotateY(-3deg);
  }

  .product-screen.is-next {
    opacity: 0.24;
    transform: translate3d(18px, 16px, -72px) rotateY(-7deg) scale(0.97);
  }

  .product-screen.is-prev {
    opacity: 0.1;
    transform: translate3d(-14px, 20px, -110px) rotateY(2deg) scale(0.96);
  }

  .screen-bar {
    height: 26px;
    padding-inline: 9px;
  }

  .screen-bar b {
    overflow: hidden;
    max-width: 70%;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .showcase-footer {
    gap: 12px;
    min-height: 60px;
    padding: 2px 0 0;
  }

  .showcase-caption {
    gap: 0 8px;
  }

  .showcase-caption p {
    display: none;
  }

  .showcase-caption > span {
    grid-row: auto;
  }

  .carousel-controls {
    gap: 7px;
  }

  .carousel-controls > button {
    width: 34px;
    height: 34px;
  }

  .section,
  .section-band {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .comparison-grid article,
  .steps article,
  .feature-list article,
  .audience-grid article,
  .privacy-card,
  .final-cta {
    padding: 22px;
  }

  .final-cta {
    margin-bottom: 68px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

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

  .product-screen {
    transition: none;
  }
}

:where(a, button, summary):focus-visible {
  outline: 3px solid rgba(61, 123, 84, 0.38);
  outline-offset: 3px;
}
