:root {
  --bg: #f6f8f4;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: #10211a;
  --text: #122018;
  --muted: #5e6d63;
  --line: rgba(18, 32, 24, 0.08);
  --brand: #0f7b45;
  --brand-strong: #0b5f35;
  --brand-soft: #daf3e5;
  --gold: #d2a01b;
  --ink-soft: #e8f1eb;
  --shadow: 0 18px 48px rgba(19, 38, 27, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 123, 69, 0.17), transparent 30%),
    radial-gradient(circle at right 20%, rgba(210, 160, 27, 0.16), transparent 22%),
    linear-gradient(180deg, #f9fbf7 0%, var(--bg) 44%, #eef4ef 100%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(246, 248, 244, 0.72);
  border-bottom: 1px solid rgba(18, 32, 24, 0.05);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(18, 32, 24, 0.08);
}

.nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  padding: 88px 0 48px;
  isolation: isolate;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.hero-background img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(7, 18, 12, 0.84) 0%, rgba(7, 18, 12, 0.58) 42%, rgba(7, 18, 12, 0.72) 100%),
    linear-gradient(180deg, rgba(15, 123, 69, 0.18), rgba(210, 160, 27, 0.08));
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(246, 248, 244, 0) 0%, var(--bg) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(14px);
  pointer-events: none;
}

.hero-orb-a {
  width: 340px;
  height: 340px;
  left: -90px;
  top: 40px;
  background: rgba(15, 123, 69, 0.1);
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  right: -60px;
  top: 60px;
  background: rgba(210, 160, 27, 0.14);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(18, 32, 24, 0.08);
  color: var(--brand-strong);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: #fff;
}

.hero-copy p,
.section-copy p,
.section-heading p,
.cta-panel p,
.module-card p,
.timeline-step p,
.benefit-card p,
.site-footer p,
.mock-panel p,
.summary-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.hero-copy p {
  margin: 22px 0 0;
  max-width: 60ch;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand) 0%, #0a5832 100%);
  box-shadow: 0 18px 34px rgba(15, 123, 69, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(18, 32, 24, 0.08);
  box-shadow: 0 10px 26px rgba(18, 32, 24, 0.08);
}

.hero-points {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-weight: 600;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0 15%, transparent 16%),
    linear-gradient(135deg, var(--gold), var(--brand));
}

.app-card,
.summary-grid article,
.module-card,
.timeline-step,
.benefit-card,
.cta-panel {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.app-card {
  padding: 24px;
  border-radius: 32px;
}

.hero-highlight {
  display: grid;
  gap: 16px;
}

.hero-highlight-card,
.hero-metric {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  color: #fff;
}

.hero-highlight-card {
  padding: 24px;
  border-radius: 28px;
}

.hero-highlight-card h2 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-family: "Space Grotesk", sans-serif;
  line-height: 1;
  letter-spacing: -0.04em;
}

.hero-highlight-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
}

.hero-highlight-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-metric {
  min-height: 150px;
  padding: 20px;
  border-radius: 24px;
}

.hero-metric small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.hero-metric strong {
  display: block;
  margin-top: 12px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.app-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}

.status-pill,
.mini-badges span {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
}

.status-pill {
  margin-bottom: 10px;
  padding: 8px 12px;
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.app-card-top h2 {
  margin: 0;
  font-size: 1.8rem;
  font-family: "Space Grotesk", sans-serif;
}

.mini-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-badges span {
  padding: 8px 12px;
  color: #eef8f1;
  background: rgba(16, 33, 26, 0.9);
}

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

.mock-stat,
.mock-panel {
  border-radius: 22px;
  padding: 20px;
}

.mock-stat {
  min-height: 132px;
  color: #fff;
  background: linear-gradient(145deg, #163424 0%, #0d1b15 100%);
}

.mock-stat small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.mock-stat strong {
  display: block;
  margin-top: 12px;
  font-size: 2rem;
  line-height: 1.1;
}

.mock-stat.accent {
  background: linear-gradient(145deg, #0f7b45 0%, #1d5d36 100%);
}

.mock-panel {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(18, 32, 24, 0.08);
}

.mock-panel.wide {
  grid-column: span 2;
}

.mock-panel header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mock-panel header span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--brand));
}

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

.stack-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f2f7f3;
}

.stack-list b {
  white-space: nowrap;
}

.stack-list span {
  color: var(--muted);
  text-align: right;
}

.summary-strip {
  padding: 10px 0 18px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.summary-grid article {
  padding: 22px;
  border-radius: 22px;
}

.summary-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(232, 241, 235, 0.7) 100%);
}

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

.section-heading h2,
.cta-panel h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

.section-heading p {
  margin: 16px 0 0;
  max-width: 58ch;
}

.section-copy {
  display: grid;
  gap: 20px;
}

.section-copy p {
  margin: 0;
  font-size: 1.05rem;
}

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

.module-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  min-height: 286px;
  padding: 24px;
  border-radius: 24px;
}

.module-card.is-clickable {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.module-card.is-clickable:hover,
.module-card.is-clickable:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(19, 38, 27, 0.16);
}

.module-card-hitarea {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.module-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
}

.module-icon {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(15, 123, 69, 0.14), rgba(210, 160, 27, 0.18));
}

.module-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--brand-strong);
}

.module-card h3,
.timeline-step h3,
.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
}

.module-card p {
  margin: 0;
}

.module-card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  color: var(--brand-strong);
  background: var(--brand-soft);
}

.embed-card {
  margin-top: 34px;
  padding: 24px;
  border-radius: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.embed-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.embed-card-head strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.embed-card-head span {
  color: var(--muted);
}

.embed-frame-shell {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(18, 32, 24, 0.08);
  background: #f5f7f3;
}

.embed-frame {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.timeline-step {
  padding: 24px;
  border-radius: 24px;
}

.timeline-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  background: linear-gradient(145deg, var(--brand) 0%, #0f5030 100%);
  color: #fff;
}

.timeline-step p,
.benefit-card p {
  margin: 0;
}

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

.benefit-card {
  padding: 28px;
  border-radius: 24px;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 36px;
  border-radius: 30px;
}

.site-footer {
  padding: 0 0 28px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(18, 32, 24, 0.08);
}

.footer-shell strong {
  display: block;
  margin-bottom: 6px;
}

.footer-shell p {
  margin: 0;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
}

.footer-meta a {
  font-weight: 700;
  color: var(--brand-strong);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-section,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-highlight-metrics,
  .summary-grid,
  .modules-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 12px;
    right: 12px;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(18, 32, 24, 0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    padding-top: 54px;
  }

  .hero-grid,
  .summary-grid,
  .modules-grid,
  .timeline,
  .benefits-grid,
  .split-section,
  .mock-grid {
    grid-template-columns: 1fr;
  }

  .mock-panel.wide {
    grid-column: auto;
  }

  .stack-list div,
  .embed-card-head,
  .footer-shell,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header .nav-shell {
    min-height: 74px;
  }

  .section {
    padding: 68px 0;
  }

  .app-card,
  .summary-grid article,
  .module-card,
  .embed-card,
  .timeline-step,
  .benefit-card,
  .cta-panel {
    border-radius: 22px;
  }

  .hero-highlight-card,
  .hero-metric {
    border-radius: 22px;
  }
}
