@font-face {
  font-family: "Nunito Sans";
  src: url("assets/fonts/NunitoSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --green: #4aa550;
  --green-dark: #347a3a;
  --ink: #202c26;
  --ink-soft: #3f4e46;
  --muted: #68766d;
  --paper: #f8faf7;
  --surface: #ffffff;
  --line: #e2e9df;
  --green-soft: #eaf4e8;
  --shadow: 0 18px 48px rgba(32, 44, 38, 0.11);
  --radius: 8px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

.site-shell {
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 20%, rgba(74, 165, 80, 0.12), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, var(--paper) 62%, #eef5ed 100%);
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--content), calc(100% - 40px));
  min-height: 92px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 13px;
}

.brand-divider {
  width: 2px;
  height: 38px;
  flex: 0 0 auto;
  background: var(--green);
}

.brand-wordmark {
  color: var(--ink);
  font-family: "Nunito Sans", Nunito, "Aptos Display", "Segoe UI", Arial, sans-serif;
  font-size: 31px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 15px;
  font-weight: 650;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
}

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

.nav-links a[aria-current="page"] {
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-menu {
  display: none;
  position: relative;
}

.nav-menu summary {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  box-shadow: 0 10px 24px rgba(32, 44, 38, 0.08);
}

.nav-menu summary::-webkit-details-marker {
  display: none;
}

.menu-icon {
  display: block;
  width: 24px;
  height: 24px;
}

.nav-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 5;
  min-width: 220px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.nav-menu-panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 750;
  text-decoration: none;
}

.nav-menu-panel a:hover,
.nav-menu-panel a:focus-visible {
  background: var(--green-soft);
  color: var(--green-dark);
}

.language-link {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-size: 15px;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(32, 44, 38, 0.18);
}

.button:hover,
.button:focus-visible {
  background: #111b16;
  border-color: #111b16;
}

.button-secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: #cfd9cc;
  box-shadow: none;
}

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

.button-green {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(74, 165, 80, 0.2);
}

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

.hero {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 58px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 84px);
  font-weight: 820;
}

h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 790;
}

h3 {
  font-size: 21px;
  font-weight: 780;
}

p {
  margin: 16px 0 0;
}

.lead {
  max-width: 610px;
  color: var(--ink-soft);
  font-size: 21px;
}

.text-link-row {
  margin-top: 18px;
}

.text-link-row.app-privacy-link {
  margin-bottom: 5px;
}

.text-link-row a {
  color: var(--green-dark);
  font-weight: 750;
}

.protected-email {
  user-select: none;
}

.hero-actions,
.page-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-visual {
  position: relative;
  min-height: 440px;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 0;
  content: "";
  border-radius: 999px;
  background: rgba(74, 165, 80, 0.12);
}

.hero-visual::before {
  width: 360px;
  height: 360px;
  top: 8px;
  right: 44px;
}

.hero-visual::after {
  width: 280px;
  height: 280px;
  right: 0;
  bottom: 22px;
}

.hero-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 22px;
  border-radius: 18px;
}

.proof-points {
  width: min(var(--content), calc(100% - 40px));
  margin: -24px auto 72px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.proof {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.proof-icon,
.card-icon {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
}

.proof h3 {
  font-size: 17px;
}

.proof p,
.card p,
.document p,
.document li {
  color: var(--muted);
}

.section {
  padding: 74px 0;
}

.section-white {
  background: rgba(255, 255, 255, 0.72);
  border-block: 1px solid var(--line);
}

.section-inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
}

.cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

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

.card {
  min-height: 220px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.card h3 {
  margin-top: 20px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.24em;
}

.inline-link {
  color: var(--green-dark);
  font-weight: 700;
  text-decoration-line: underline;
  text-decoration-color: rgba(72, 126, 68, 0.42);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.inline-link:hover,
.inline-link:focus-visible {
  text-decoration-color: currentColor;
}

.page-hero {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 10px;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 66px);
}

.page-hero + .section {
  padding-top: 44px;
}

.document {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 82px;
}

.document section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.document h2 {
  font-size: 28px;
}

.document ul {
  margin: 16px 0 0;
  padding-left: 21px;
  color: var(--muted);
}

.document p,
.document ul {
  max-width: 920px;
}

.contact-form {
  display: grid;
  max-width: 760px;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 750;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-weight: 450;
  padding: 13px 14px;
  box-shadow: inset 0 1px 0 rgba(32, 44, 38, 0.03);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button {
  justify-self: start;
  margin-top: 4px;
}

.product-strip {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.products-list {
  display: grid;
  gap: 24px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.product-card {
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(32, 44, 38, 0.09);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-3px);
  border-color: #b6d2b4;
  box-shadow: 0 22px 46px rgba(32, 44, 38, 0.14);
}

.product-card-top {
  min-height: 44px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-card-kind {
  padding-top: 8px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-card-arrow {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid #d6e4d4;
  border-radius: 50%;
  background: #f4f8f3;
  color: var(--green-dark);
  font-size: 0;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.product-card-arrow::before,
.product-card-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 2px);
}

.product-card-arrow::before {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.product-card-arrow::after {
  width: 7px;
  height: 7px;
  margin-left: 5px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(-50%, -50%) rotate(45deg);
}

.product-card:hover .product-card-arrow,
.product-card:focus-visible .product-card-arrow {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: #fff;
}

.product-card-main {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.product-card-main img {
  width: 96px;
  height: 96px;
  border-radius: 20px;
}

.product-card h2 {
  font-size: clamp(28px, 3vw, 36px);
}

.product-card p {
  margin-top: 14px;
  color: var(--muted);
}

.product-page-hero {
  padding-top: 54px;
  padding-bottom: 48px;
}

.product-page-hero h1 {
  margin-top: 10px;
}

.product-intro {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.gda-intro {
  grid-template-columns: 1fr;
  max-width: none;
  margin-inline: auto;
  padding-top: 54px;
  padding-bottom: 58px;
}

.gda-intro .product-intro-copy {
  max-width: 760px;
}

.product-intro h1 {
  font-size: clamp(46px, 6.5vw, 76px);
}

.gda-inline-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 15px;
  font-weight: 750;
  list-style: none;
}

.gda-inline-facts li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.gda-inline-facts li::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.feature-split.gda-feature-split {
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.gda-wide-media {
  border-radius: 24px;
  background: #061a25;
}

.gda-screenshot-gallery {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
}

.gda-screenshot-gallery img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: top;
  border: 8px solid #08202d;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.nova-product-hero {
  width: min(var(--content), calc(100% - 40px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  align-items: center;
  gap: 64px;
  padding-bottom: 58px;
}

.nova-hero-icon {
  justify-self: end;
  width: min(100%, 320px);
  padding: 10px;
  border-radius: 18px;
  background: #080b0a;
  box-shadow: var(--shadow);
}

.nova-hero-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 10px;
}

.nova-settings-banner {
  width: 100%;
  margin: 0 auto 56px;
  padding: 10px;
  border-radius: 18px;
  background: #080b0a;
  box-shadow: var(--shadow);
}

.nova-settings-banner img {
  width: 100%;
  border-radius: 10px;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 52px;
}

.feature-split-media {
  overflow: hidden;
  border-radius: 16px;
  background: #050706;
  box-shadow: var(--shadow);
}

.feature-split-media img {
  width: 100%;
}

.feature-copy h2 {
  margin-bottom: 22px;
}

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

.product-gallery {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.product-gallery figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid #202724;
  border-radius: 14px;
  background: #050706;
  box-shadow: var(--shadow);
}

.product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.store-note {
  max-width: 760px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 15px;
}

.product-strip img {
  width: 84px;
  height: 84px;
  border-radius: 18px;
}

.meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  margin-top: 26px;
  padding: 0;
  list-style: none;
}

.meta-list li {
  display: flex;
  gap: 10px;
  color: var(--ink-soft);
}

.meta-list li::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 10px;
  border-radius: 50%;
  background: var(--green);
}

.footer {
  background: var(--ink);
  color: #edf5ec;
}

.footer-inner {
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.footer-brand {
  max-width: 460px;
  color: #c9d7cf;
  font-size: 15px;
  font-weight: 750;
}

.footer-brand span {
  color: #9eb0a5;
  font-weight: 650;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-end;
  font-size: 15px;
}

.footer-links a {
  color: #edf5ec;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #bde4bf;
}

:focus-visible {
  outline: 3px solid rgba(74, 165, 80, 0.45);
  outline-offset: 4px;
}

@media (max-width: 940px) {
  .nav {
    min-height: 104px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .nav-menu {
    display: block;
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .product-intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .nova-product-hero {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .nova-hero-icon {
    justify-self: start;
    width: min(100%, 340px);
  }

  .hero-visual {
    min-height: 0;
  }

  .proof-points,
  .cards,
  .cards.two {
    grid-template-columns: 1fr;
  }

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

  .product-card {
    min-height: 0;
  }

  .product-strip {
    grid-template-columns: 72px minmax(0, 1fr);
  }

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

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

  .product-strip .button {
    grid-column: 1 / -1;
    width: max-content;
  }
}

@media (max-width: 620px) {
  body {
    font-size: 16px;
  }

  .nav,
  .hero,
  .proof-points,
  .section-inner,
  .page-hero,
  .document,
  .footer-inner {
    width: min(100% - 48px, var(--content));
  }

  .brand-lockup {
    gap: 12px;
  }

  .brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 11px;
  }

  .brand-divider {
    height: 32px;
  }

  .brand-wordmark {
    font-size: 27px;
  }

  .nav-menu-panel {
    right: 0;
    min-width: min(260px, calc(100vw - 48px));
  }

  h1 {
    font-size: 45px;
  }

  .lead {
    font-size: 19px;
  }

  .button {
    width: 100%;
  }

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

  .card {
    padding: 24px;
  }

  .product-card {
    padding: 24px;
  }

  .product-card-main {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  .product-card-main img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  .meta-list {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

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

  .product-intro {
    width: min(100% - 48px, var(--content));
    padding: 48px 0 58px;
  }

  .nova-product-hero {
    width: min(100% - 48px, var(--content));
  }

  .nova-hero-icon,
  .nova-settings-banner {
    padding: 7px;
    border-radius: 12px;
  }

  .gda-screenshot-gallery {
    grid-template-columns: repeat(3, minmax(210px, 1fr));
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .gda-screenshot-gallery img {
    max-height: 500px;
    border-width: 6px;
    border-radius: 22px;
  }

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