﻿:root {
  color-scheme: dark;
  --bg: #02070d;
  --bg-soft: #06100e;
  --card: rgba(9, 20, 22, 0.78);
  --line: rgba(140, 255, 128, 0.16);
  --line-strong: rgba(126, 234, 104, 0.38);
  --text: #f4f7f1;
  --muted: #a9b5ae;
  --green: #7eea68;
  --green-strong: #42c83f;
  --green-dark: #0e6e1f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  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;
  min-width: 320px;
  color: var(--text);
  background:
    radial-gradient(circle at 76% 18%, rgba(49, 160, 25, 0.16), transparent 28%),
    radial-gradient(circle at 18% 88%, rgba(49, 160, 25, 0.09), transparent 30%),
    linear-gradient(180deg, #02070d 0%, #03100e 56%, #041612 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  min-height: 74px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 7, 13, 0.86);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f7f1;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand strong {
  color: var(--green);
  font-weight: 950;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.8vw, 36px);
  color: #dce4de;
  font-size: 0.96rem;
  font-weight: 650;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover {
  color: var(--green);
  opacity: 1;
}

.mobile-menu {
  display: none;
}

.mobile-menu summary,
.content-panel > summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker,
.content-panel > summary::-webkit-details-marker {
  display: none;
}

.header-download,
.primary-cta,
.secondary-cta {
  border-radius: 8px;
  font-weight: 800;
}

.header-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  color: #061008;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  box-shadow: 0 16px 38px rgba(66, 200, 63, 0.28);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  min-height: 650px;
  padding: clamp(48px, 8vw, 92px) clamp(22px, 4vw, 64px) 54px;
  border-bottom: 1px solid rgba(126, 234, 104, 0.14);
}

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

.eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 24px;
  padding: 8px 14px;
  border: 1px solid rgba(126, 234, 104, 0.12);
  border-radius: 999px;
  color: var(--green);
  background: rgba(126, 234, 104, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h1 span {
  display: block;
  color: var(--green);
}

.nowrap {
  white-space: nowrap;
}

.hero-text {
  max-width: 610px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 34px 0 24px;
}

.primary-cta,
.secondary-cta {
  display: grid;
  align-content: center;
  min-height: 76px;
  padding: 0 24px;
}

.primary-cta {
  min-width: 286px;
  color: #071009;
  background: linear-gradient(135deg, #93f36f, #42c83f);
  box-shadow: 0 22px 50px rgba(66, 200, 63, 0.28);
}

.primary-cta span,
.secondary-cta span {
  color: rgba(7, 16, 9, 0.72);
  font-size: 0.88rem;
  font-weight: 650;
}

.secondary-cta {
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  min-width: 230px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.secondary-cta strong,
.secondary-cta span:last-child {
  grid-column: 2;
}

.secondary-cta span:last-child {
  color: var(--muted);
}

.play-icon {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  border-radius: 50%;
  color: #fff !important;
  font-size: 0.75rem !important;
}

.proof-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 0;
  padding: 0;
  color: #f0f6ef;
  list-style: none;
}

.proof-points li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.proof-points li::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #071009;
  background: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 430px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(126, 234, 104, 0.2);
  border-radius: 50%;
}

.orbit-one {
  width: min(38vw, 430px);
  height: min(38vw, 430px);
  box-shadow: 0 0 140px rgba(66, 200, 63, 0.18);
}

.orbit-two {
  width: min(24vw, 270px);
  height: min(24vw, 270px);
  background: radial-gradient(circle, rgba(126, 234, 104, 0.16), transparent 58%);
}

.leaf-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(126, 234, 104, 0.24);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 234, 104, 0.18), rgba(9, 20, 22, 0.4));
  box-shadow: 0 0 80px rgba(66, 200, 63, 0.34);
  overflow: hidden;
}

.leaf-core img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.signal {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.s1 { top: 22%; left: 26%; }
.s2 { right: 21%; top: 36%; }
.s3 { bottom: 24%; left: 49%; }

.integrations,
.pipeline-section,
.feature-band,
.trust-section {
  padding-inline: clamp(22px, 4vw, 64px);
}

.integrations {
  padding-top: 22px;
  padding-bottom: 28px;
}

.integrations > summary {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-align: center;
  text-transform: uppercase;
}

.integrations > summary strong {
  display: none;
}

.integration-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.integration-grid article {
  display: grid;
  gap: 5px;
  min-height: 72px;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.integration-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.pipeline-section {
  padding-top: 30px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, rgba(4, 22, 18, 0.2), rgba(4, 22, 18, 0.72));
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
  cursor: default;
}

.section-heading h2,
.feature-band h2,
.trust-section h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow),
.feature-band p {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.62;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}

.pipeline article,
.feature-band article,
.trust-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.pipeline article {
  position: relative;
  min-height: 250px;
  padding: 24px;
}

.pipeline article > span {
  color: var(--green);
  font-weight: 950;
}

.step-icon {
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  margin: 16px 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--green);
  background: rgba(126, 234, 104, 0.08);
  font-size: 1.8rem;
  font-weight: 900;
}

.pipeline h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.pipeline p {
  color: var(--muted);
  line-height: 1.56;
}

.feature-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 26px;
  padding-bottom: 26px;
}

.feature-band > summary {
  display: none;
}

.feature-band article {
  padding: clamp(24px, 4vw, 42px);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  max-width: 1240px;
  margin: 36px auto 70px;
  padding: clamp(26px, 4vw, 44px);
}

.trust-section > summary {
  cursor: default;
}

.trust-section ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-section li {
  padding: 14px 16px;
  border: 1px solid rgba(126, 234, 104, 0.14);
  border-radius: 8px;
  color: #e9f3e8;
  background: rgba(126, 234, 104, 0.055);
}

.page-links,
.page-main,
.page-grid,
.page-list,
.page-integrations,
.page-pipeline {
  padding-inline: clamp(22px, 4vw, 64px);
}

.page-links {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 28px;
  padding-bottom: 54px;
}

.page-links a,
.page-grid article,
.page-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.page-links a {
  display: grid;
  gap: 7px;
  min-height: 110px;
  padding: 18px;
}

.page-links span,
.page-list strong {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-links strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.page-main {
  padding-top: clamp(44px, 8vw, 90px);
  padding-bottom: 70px;
}

.page-hero {
  max-width: 900px;
  margin-bottom: 34px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-inline: 0;
}

.page-grid article {
  padding: clamp(22px, 4vw, 38px);
}

.page-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.page-list {
  display: grid;
  gap: 14px;
  max-width: 960px;
  padding-inline: 0;
}

.page-list article {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
}

.page-list span {
  color: var(--muted);
  line-height: 1.55;
}

.page-list code {
  color: #f4f7f1;
  font-weight: 850;
}

.page-integrations,
.page-pipeline {
  padding-inline: 0;
}

.page-pipeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.docs-download {
  margin-top: 28px;
}

.docs-download .primary-cta {
  display: inline-grid;
}

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

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

  .hero-visual {
    min-height: 280px;
  }

  .integration-grid,
  .pipeline,
  .page-links,
  .page-pipeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-band,
  .trust-section,
  .page-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero {
    display: block;
    min-height: auto;
  }

  .hero-visual {
    display: none;
  }
}

@media (max-width: 820px) {
  body {
    background:
      radial-gradient(circle at 70% 8%, rgba(126, 234, 104, 0.14), transparent 34%),
      linear-gradient(180deg, #02070d 0%, #03100e 54%, #041612 100%);
  }

  .site-header {
    position: sticky;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 64px;
    padding: 12px 14px;
  }

  .mobile-menu {
    position: relative;
    display: block;
    order: 2;
  }

  .mobile-menu summary {
    display: grid;
    place-items: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(126, 234, 104, 0.22);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .mobile-menu summary span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: #f4f7f1;
  }

  .mobile-menu[open] summary {
    border-color: rgba(126, 234, 104, 0.56);
    background: rgba(126, 234, 104, 0.1);
  }

  .mobile-menu nav {
    position: absolute;
    top: 48px;
    right: 0;
    z-index: 30;
    display: grid;
    gap: 4px;
    width: min(78vw, 260px);
    padding: 10px;
    border: 1px solid rgba(126, 234, 104, 0.2);
    border-radius: 8px;
    background: rgba(3, 15, 13, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  }

  .mobile-menu nav a {
    padding: 12px;
    border-radius: 7px;
    color: #f4f7f1;
    font-weight: 850;
  }

  .mobile-menu nav a:hover {
    background: rgba(126, 234, 104, 0.12);
    color: var(--green);
  }

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

  .brand {
    order: 1;
    gap: 7px;
    font-size: 1.05rem;
  }

  .header-download {
    order: 3;
    min-height: 36px;
    padding-inline: 12px;
    font-size: 0;
    box-shadow: none;
  }

  .header-download::after {
    content: "Download";
    font-size: 0.78rem;
  }

  .header-download span {
    font-size: 0.92rem;
  }

  .hero {
    display: block;
    min-height: auto;
    padding: 28px 18px 26px;
    border-bottom-color: rgba(126, 234, 104, 0.1);
  }

  .hero-copy {
    max-width: none;
  }

  .eyebrow {
    margin-bottom: 16px;
    padding: 7px 10px;
    font-size: 0.66rem;
    letter-spacing: 0.04em;
  }

  h1 {
    margin-bottom: 16px;
    font-size: clamp(2.35rem, 12vw, 3.15rem);
    line-height: 1.02;
  }

  h1 span {
    display: inline;
  }

  .hero-text {
    max-width: none;
    font-size: 1rem;
    line-height: 1.56;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin: 24px 0 18px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    min-width: 0;
    min-height: 62px;
    padding: 0 16px;
  }

  .primary-cta span,
  .secondary-cta span {
    font-size: 0.78rem;
  }

  .play-icon {
    width: 34px;
    height: 34px;
    font-size: 0.65rem !important;
  }

  .proof-points {
    display: grid;
    gap: 10px;
    font-size: 0.9rem;
  }

  .proof-points li::before {
    width: 19px;
    height: 19px;
    font-size: 0.78rem;
  }

  .hero-visual {
    display: none;
  }

  .integrations,
  .pipeline-section,
  .feature-band,
  .trust-section,
  .page-links,
  .page-main {
    margin: 12px 18px 0;
    padding: 0;
  }

  .page-main {
    padding-top: 28px;
    padding-bottom: 34px;
  }

  .page-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 34px;
  }

  .page-links a {
    min-height: auto;
    padding: 15px 16px;
  }

  .page-hero {
    margin-bottom: 22px;
  }

  .page-grid,
  .page-list,
  .page-integrations,
  .page-pipeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-grid article,
  .page-list article {
    padding: 18px;
  }

  .integrations {
    overflow: hidden;
  }

  .content-panel {
    border: 1px solid rgba(126, 234, 104, 0.16);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  }

  .content-panel > summary {
    position: relative;
    display: grid;
    gap: 4px;
    padding: 15px 44px 15px 16px;
    margin: 0;
    color: #f4f7f1;
    text-align: left;
    cursor: pointer;
  }

  .content-panel > summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: var(--green);
    font-size: 1.4rem;
    font-weight: 900;
  }

  .content-panel[open] > summary::after {
    content: "-";
  }

  .content-panel > summary span,
  .content-panel > summary .eyebrow {
    margin: 0;
    font-size: 0.68rem;
    letter-spacing: 0.13em;
    text-align: left;
    color: var(--green);
    text-transform: uppercase;
  }

  .content-panel > summary strong {
    display: block;
    font-size: 1.05rem;
    letter-spacing: 0;
    text-transform: none;
  }

  .integration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin: 0;
    padding: 0 14px 14px;
    overflow: visible;
  }

  .integration-grid article {
    min-height: 64px;
    padding: 12px;
  }

  .integration-grid strong {
    font-size: 0.92rem;
  }

  .integration-grid span {
    font-size: 0.78rem;
  }

  .pipeline-section {
    background: rgba(255, 255, 255, 0.03);
  }

  .section-heading {
    text-align: left;
  }

  .section-heading h2,
  .feature-band h2,
  .trust-section h2 {
    font-size: clamp(1.5rem, 7vw, 2rem);
    line-height: 1.08;
  }

  .content-panel > .section-heading h2,
  .content-panel > summary h2 {
    margin: 0;
    font-size: 1.08rem;
  }

  .content-panel > summary p:not(.eyebrow) {
    display: none;
  }

  .section-heading p:not(.eyebrow),
  .feature-band p {
    font-size: 0.98rem;
    line-height: 1.56;
  }

  .pipeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0 14px 14px;
  }

  .pipeline article {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    min-height: auto;
    padding: 16px;
  }

  .pipeline article > span {
    grid-column: 1;
    align-self: center;
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    color: #061008;
    background: var(--green);
    font-size: 0.78rem;
  }

  .step-icon {
    display: none;
  }

  .pipeline h3,
  .pipeline p {
    grid-column: 2;
  }

  .pipeline h3 {
    margin: 0 0 5px;
    font-size: 1.02rem;
  }

  .pipeline p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.48;
  }

  .feature-band {
    display: block;
  }

  .feature-band > summary {
    display: grid;
  }

  .feature-band article {
    margin: 0 14px 14px;
    padding: 20px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  }

  .trust-section {
    display: block;
    gap: 18px;
    margin-bottom: 34px;
    padding: 0;
  }

  .trust-section ul {
    gap: 9px;
    padding: 0 14px 14px;
  }

  .trust-section li {
    padding: 12px 13px;
    font-size: 0.92rem;
  }
}
