:root {
  --green-900: #063f2b;
  --green-700: #087345;
  --green-600: #148b53;
  --lime-500: #86cf36;
  --ink: #17221c;
  --muted: #5d6861;
  --line: #dbe5dc;
  --surface: #f8fbf7;
  --white: #ffffff;
  --amber: #d69a21;
  --blue: #226a94;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--surface);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgba(6, 63, 43, 0.1);
  background: rgba(248, 251, 247, 0.92);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--green-700);
}

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.header-action,
.secondary-action {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-900);
}

.primary-action {
  border: 1px solid var(--green-700);
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(6, 63, 43, 0.18);
}

.primary-action:hover {
  background: var(--green-900);
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 680px;
  overflow: hidden;
  padding: 120px clamp(22px, 7vw, 96px) 78px;
  background: #08150f;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.42;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 17, 10, 0.94), rgba(4, 17, 10, 0.5)),
    linear-gradient(0deg, rgba(4, 17, 10, 0.88), rgba(4, 17, 10, 0));
}

.hero-media img {
  width: min(1100px, 115vw);
  max-width: none;
  object-fit: contain;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  min-width: 0;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--lime-500);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(4rem, 13vw, 8.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

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

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 700px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  line-height: 1.5;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 760;
}

.section,
.product-section,
.contact-section {
  padding: 92px clamp(20px, 6vw, 86px);
}

.section-heading {
  max-width: 850px;
  min-width: 0;
  margin-bottom: 38px;
}

.section-heading p,
.product-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

.product-copy,
.contact-section > div {
  min-width: 0;
}

.ecosystem-grid,
.feature-grid,
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  max-width: 100%;
}

.module-card,
.feature-grid article,
.steps article {
  min-width: 0;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.module-card.active {
  border-color: rgba(20, 139, 83, 0.4);
  box-shadow: 0 20px 42px rgba(6, 63, 43, 0.1);
}

.module-status {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.module-card.active .module-status {
  color: var(--green-700);
}

.module-card p,
.feature-grid p,
.steps p {
  color: var(--muted);
  line-height: 1.58;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 430px);
  align-items: start;
  gap: clamp(28px, 7vw, 88px);
  background: var(--white);
}

.pilot-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin-top: 12px;
  padding: 0 14px;
  border: 1px solid rgba(214, 154, 33, 0.36);
  border-radius: 8px;
  background: #fff8ea;
  color: #8a5b08;
  font-weight: 800;
}

.product-list {
  display: grid;
  gap: 12px;
  max-width: 680px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.product-list li {
  position: relative;
  padding-left: 30px;
  color: var(--muted);
  line-height: 1.55;
}

.product-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-700);
  content: "";
  box-shadow: inset 0 0 0 3px #dff3df;
}

.phone-preview {
  min-height: 620px;
  padding: 28px;
  border: 10px solid #101c16;
  border-radius: 34px;
  background: #f7fbf4;
  box-shadow: 0 28px 70px rgba(6, 63, 43, 0.2);
}

.screenshot-preview {
  min-height: 0;
  max-width: 390px;
  padding: 10px;
  overflow: hidden;
  background: #101c16;
}

.screenshot-preview img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  font-weight: 900;
}

.phone-title {
  margin-bottom: 16px;
}

.phone-title small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-weight: 760;
}

.phone-title strong {
  color: var(--green-900);
  font-size: 1.45rem;
}

.phone-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-700);
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 18px;
}

.metric-grid div,
.shortcut-list span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric-grid div {
  padding: 18px;
}

.metric-grid small {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.metric-grid strong {
  color: var(--green-900);
  font-size: 1.22rem;
}

.shortcut-list {
  display: grid;
  gap: 12px;
}

.shortcut-list span {
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 0 18px;
  color: var(--ink);
  font-weight: 780;
}

.phone-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.phone-footer span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: #e7f2e6;
  color: var(--green-900);
  font-size: 0.78rem;
  font-weight: 850;
}

.screens-section {
  padding: 92px clamp(20px, 6vw, 86px);
  background: #f2f8f1;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.screens-grid figure {
  min-width: 0;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 40px rgba(6, 63, 43, 0.08);
}

.screens-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
  background: var(--surface);
}

.screens-grid figcaption {
  padding: 14px 4px 4px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.45;
}

.trust-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 86px);
  background: #d7e5d8;
}

.trust-section article {
  min-height: 260px;
  padding: 38px 32px;
  background: #f1f7f0;
}

.trust-section span {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--amber);
  font-weight: 900;
}

.trust-section p {
  color: var(--muted);
  line-height: 1.62;
}

.compact {
  padding-top: 76px;
  padding-bottom: 76px;
}

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

.pilot-section {
  background: #eef6ee;
}

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

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green-700);
  color: var(--white);
  font-weight: 900;
}

.pilot-note {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid rgba(214, 154, 33, 0.34);
  border-radius: 8px;
  background: #fff8ea;
  color: #6f4a07;
  line-height: 1.6;
}

.faq-section {
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 12px;
  width: 100%;
  max-width: 980px;
}

.faq-list details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  color: var(--green-900);
  font-size: 1.08rem;
  font-weight: 850;
}

.faq-list summary::marker {
  color: var(--green-700);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  background: var(--green-900);
  color: var(--white);
}

.contact-section p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(20px, 6vw, 86px);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer div {
  display: flex;
  gap: 18px;
}

.policy-page {
  background: var(--white);
}

.policy-main {
  max-width: 880px;
  margin: 0 auto;
  padding: 76px 22px 96px;
}

.policy-main h1 {
  color: var(--green-900);
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.policy-main p,
.policy-main li {
  color: var(--muted);
  line-height: 1.7;
}

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

  .ecosystem-grid,
  .feature-grid,
  .trust-section,
  .screens-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .phone-preview {
    max-width: 430px;
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: 66px;
  }

  .header-action {
    display: none;
  }

  .hero {
    min-height: 620px;
    padding: 96px 28px 70px;
  }

  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.08rem;
    line-height: 1.08;
  }

  .hero-content,
  .section-heading,
  .product-copy,
  .contact-section > div {
    width: 100%;
    max-width: 320px;
  }

  .hero-copy {
    max-width: 320px;
    font-size: 1.06rem;
  }

  .section-heading h2,
  .product-copy h2,
  .contact-section h2 {
    max-width: 320px;
  }

  .hero-media img {
    width: 160vw;
  }

  .section,
  .product-section,
  .contact-section,
  .screens-section {
    padding-left: 28px;
    padding-right: 28px;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    max-width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    white-space: normal;
    text-align: center;
  }

  .hero-proof,
  .ecosystem-grid,
  .feature-grid,
  .steps,
  .trust-section,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .module-card,
  .feature-grid article,
  .steps article,
  .trust-section article {
    min-height: auto;
  }

  .trust-section {
    padding-right: 28px;
    padding-left: 28px;
    gap: 12px;
    background: #eef6ee;
  }

  .trust-section article {
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .phone-preview {
    min-height: 540px;
    padding: 20px;
    border-width: 8px;
  }

  .screenshot-preview {
    min-height: 0;
    max-width: 330px;
    padding: 8px;
  }

  .screenshot-preview img {
    border-radius: 22px;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
