:root {
  color-scheme: light dark;
  --bg: var(--tools-bg);
  --surface: var(--tools-surface);
  --surface-soft: var(--tools-surface-soft);
  --text: var(--tools-text);
  --muted: var(--tools-muted);
  --line: var(--tools-line);
  --green: var(--tools-green);
  --green-strong: var(--tools-green-strong);
  --green-soft: var(--tools-green-soft);
  --green-text: var(--tools-green-text);
  --shadow: var(--tools-shadow);
  --radius: var(--tools-radius);
  --container: 1180px;
  --serif: var(--tools-serif);
  --sans: var(--tools-sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 34% 8%, color-mix(in srgb, var(--green) 6%, transparent), transparent 28rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-150%);
}

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

.site-header {
  position: relative;
  z-index: 10;
  padding: 24px 0;
}

.nav-shell,
.brand {
  display: flex;
  align-items: center;
}

.nav-shell {
  justify-content: space-between;
}

.brand {
  gap: 11px;
  text-decoration: none;
  letter-spacing: -.025em;
}

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

.brand strong {
  font-size: 1.03rem;
}

.hero {
  min-height: 495px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding-top: 54px;
  padding-bottom: 54px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  margin: 0 0 16px;
  color: var(--green-text);
  font-size: .83rem;
  font-weight: 750;
  letter-spacing: .005em;
}

.eyebrow {
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--green-soft);
}

.eyebrow span {
  margin-right: 6px;
}

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

h1,
h2,
.featured-tool h3 {
  font-family: var(--serif);
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.1rem, 5.5vw, 5.35rem);
  font-weight: 700;
  line-height: .99;
  letter-spacing: -.052em;
}

h1 em {
  color: var(--green-strong);
  font-style: normal;
}

.hero-lede {
  max-width: 660px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #5c9655, var(--green-strong));
  color: #fff;
  box-shadow: 0 8px 18px rgb(49 101 54 / 23%);
}

.button-primary:hover {
  box-shadow: 0 11px 24px rgb(49 101 54 / 32%);
}

.button-secondary {
  border-color: var(--line);
  background: color-mix(in srgb, var(--surface) 84%, transparent);
}

.click-trigger,
.card-trigger {
  display: block;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .76rem;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgb(35 52 40 / 12%));
}

.hero-glow {
  position: absolute;
  width: 86%;
  aspect-ratio: 1;
  border-radius: 48% 52% 58% 42%;
  background: color-mix(in srgb, var(--green) 8%, var(--surface));
  filter: blur(1px);
  transform: rotate(-9deg);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 16px 10px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: color-mix(in srgb, var(--surface) 82%, transparent);
}

.trust-strip article {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 4px 20px;
}

.trust-strip article + article {
  border-left: 1px solid var(--line);
}

.trust-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--green-strong);
}

.trust-icon .lucide {
  width: 28px;
  height: 28px;
  display: block;
  stroke-width: 1.9;
}

.trust-strip strong,
.trust-strip small {
  display: block;
}

.trust-strip strong {
  font-size: .81rem;
  line-height: 1.3;
}

.trust-strip small {
  margin-top: 2px;
  color: var(--muted);
  font-size: .7rem;
}

.section {
  padding-top: 68px;
}

.section-compact {
  padding-top: 48px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
}

.section-kicker {
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}

.text-link {
  color: var(--green-strong);
  font-size: .83rem;
  font-weight: 750;
  text-decoration: none;
}

.featured-tool {
  overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.featured-tool + .featured-tool {
  margin-top: 18px;
}

.featured-visual {
  min-height: 340px;
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--surface-soft) 86%, transparent), var(--surface)),
    var(--surface-soft);
}

.featured-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  max-height: 310px;
  object-fit: contain;
}

.featured-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(30px, 5vw, 64px);
}

.tool-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-tool h3 {
  margin-bottom: 0;
  font-size: 2.55rem;
  line-height: 1;
}

.badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-text);
  font-size: .67rem;
  font-weight: 800;
}

.featured-copy > p {
  max-width: 560px;
  margin: 15px 0;
  color: var(--muted);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.feature-tags li {
  padding: 7px 10px;
  border-radius: 7px;
  background: var(--surface-soft);
  color: var(--muted);
  font-size: .74rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  min-height: 128px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--surface) 78%, transparent);
}

.steps li > span {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-text);
  font-weight: 800;
}

.steps strong {
  font-size: .92rem;
}

.steps p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: .78rem;
}

.audience-grid,
.soon-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.audience-grid article {
  min-height: 142px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.audience-grid img {
  width: 108px;
  height: auto;
  aspect-ratio: 3 / 2;
  flex: 0 0 auto;
  object-fit: contain;
}

.audience-grid h3,
.soon-grid h3 {
  margin-bottom: 5px;
  font-size: .88rem;
}

.audience-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: .72rem;
}

.soon-grid article {
  min-height: 215px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  text-align: center;
}

.soon-grid img {
  width: 132px;
  height: auto;
  aspect-ratio: 3 / 2;
  margin-bottom: 7px;
  object-fit: contain;
}

.soon-grid span {
  color: var(--green-text);
  font-size: .69rem;
  font-weight: 750;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
  margin-top: 70px;
  padding-top: 30px;
  padding-bottom: 34px;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  max-width: 370px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .76rem;
}

.copyright {
  margin: 0;
  color: var(--muted);
  font-size: .7rem;
  text-align: right;
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--green) 65%, white);
  outline-offset: 3px;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --bg: #07171c;
    --surface: #0c2026;
    --surface-soft: #10272d;
    --text: #f6f7f2;
    --muted: #b3c0bb;
    --line: #294047;
    --green: #77b66d;
    --green-strong: #81bd76;
    --green-soft: #18392c;
    --green-text: #b2df9d;
    --shadow: 0 18px 40px rgb(0 0 0 / 25%);
  }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-art {
    max-width: 590px;
    margin: -25px auto -15px;
  }

  .trust-strip,
  .audience-grid,
  .soon-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-strip article:nth-child(3) {
    border-left: 0;
  }

  .trust-strip article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
    padding-top: 13px;
  }

  .featured-tool {
    grid-template-columns: 1fr;
  }

  .featured-visual {
    min-height: 285px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding: 16px 0;
  }

  .brand strong {
    font-size: .91rem;
  }

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

  .hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
  }

  .hero-actions {
    flex-direction: column;
  }

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

  .hero-art {
    width: 100%;
    max-width: 430px;
    aspect-ratio: 3 / 2;
    margin: 0 auto 12px;
    overflow: hidden;
  }

  .hero-art img {
    width: 100%;
    height: 100%;
  }

  .hero-glow {
    width: 78%;
    height: 100%;
    aspect-ratio: auto;
  }

  .trust-strip,
  .steps,
  .audience-grid,
  .soon-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    padding: 8px 13px;
  }

  .trust-strip article {
    padding: 12px 7px;
  }

  .trust-strip article + article,
  .trust-strip article:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-top: 52px;
  }

  .section-compact {
    padding-top: 38px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading .text-link {
    display: none;
  }

  .featured-visual {
    min-height: 230px;
    padding: 14px;
  }

  .featured-visual img {
    max-height: 235px;
  }

  .featured-copy {
    padding: 28px 22px 31px;
  }

  .featured-tool h3 {
    font-size: 2.15rem;
  }

  .featured-copy .button {
    width: 100%;
  }

  .audience-grid article {
    min-height: 118px;
  }

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

  .soon-grid article {
    min-height: 185px;
  }

  .soon-grid img {
    width: 110px;
    height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .copyright {
    grid-column: auto;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
