:root {
  --bg-page: #f5f1e8;
  --bg-soft: #fffaf2;
  --bg-card: rgba(255, 255, 255, 0.82);
  --bg-dark: #163126;
  --bg-lime: #bcff61;
  --bg-lime-soft: #e7f7c9;
  --text-main: #163126;
  --text-muted: rgba(22, 49, 38, 0.74);
  --text-light: rgba(255, 255, 255, 0.78);
  --border-soft: rgba(22, 49, 38, 0.1);
  --shadow-soft: 0 24px 80px rgba(1, 58, 38, 0.08);
  --shadow-card: 0 16px 42px rgba(1, 58, 38, 0.06);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
}

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

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

.lp-page {
  min-height: 100vh;
}

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

.hero-copy,
.scale-copy,
.panel-header > div,
.split-grid > div:first-child {
  min-width: 0;
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(188, 255, 97, 0.24), transparent 36%),
    radial-gradient(circle at bottom right, rgba(1, 58, 38, 0.16), transparent 34%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding-top: 20px;
  padding-bottom: 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.ghost-button,
.primary-button,
.secondary-button,
.lime-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  transition: 180ms ease;
}

.ghost-button {
  border: 1px solid rgba(22, 49, 38, 0.15);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.ghost-button:hover,
.secondary-button:hover {
  border-color: #013a26;
  background: rgba(255, 255, 255, 0.95);
}

.primary-button {
  background: #013a26;
  color: #fff;
}

.primary-button:hover {
  background: #0b5037;
}

.secondary-button {
  border: 1px solid rgba(22, 49, 38, 0.15);
  background: transparent;
}

.lime-button {
  background: var(--bg-lime);
  color: var(--text-main);
}

.lime-button:hover {
  background: #cff98f;
}

.hero-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
  align-items: stretch;
}

.surface-card,
.soft-panel,
.scale-panel,
.dark-banner,
.footer-shell {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
}

.surface-card {
  padding: 28px;
  background: rgba(255, 250, 242, 0.9);
  box-shadow: var(--shadow-soft);
}

.eyebrow,
.section-tag,
.card-tag,
.visual-eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  background: var(--bg-lime-soft);
  border: 1px solid rgba(22, 49, 38, 0.1);
}

.hero-copy h1,
.dark-banner h2,
.soft-panel h2,
.split-grid h2,
.scale-copy h2 {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.dark-banner h2,
.soft-panel h2,
.split-grid h2,
.scale-copy h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.lead,
.section-text,
.dark-banner p,
.feature-card p,
.info-card p,
.scale-panel p,
.footer-copy {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
}

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

.stats-grid {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.mini-card,
.info-card,
.feature-card {
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  background: var(--bg-card);
  box-shadow: var(--shadow-card);
}

.mini-card {
  padding: 18px;
}

.mini-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.mini-card span {
  color: rgba(22, 49, 38, 0.72);
  line-height: 1.6;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-xl);
  background: var(--bg-dark);
  box-shadow: 0 24px 80px rgba(1, 58, 38, 0.14);
  animation: float-in 700ms ease-out both;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(1, 25, 18, 0.05) 0%, rgba(1, 25, 18, 0.34) 45%, rgba(1, 25, 18, 0.78) 100%);
}

.visual-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  color: white;
}

.visual-eyebrow {
  color: var(--bg-lime);
}

.visual-text {
  margin: 10px 0 0;
  max-width: 28ch;
  font-size: 1.05rem;
  line-height: 1.6;
}

.block-spacing {
  padding: 24px 0;
}

.dark-banner {
  display: grid;
  gap: 20px;
  padding: 28px;
  background: var(--bg-dark);
  color: white;
  box-shadow: 0 22px 70px rgba(1, 58, 38, 0.16);
}

.dark-banner p {
  color: var(--text-light);
}

.section-tag {
  color: #4c7711;
}

.section-tag--lime {
  color: var(--bg-lime);
}

.split-grid {
  display: grid;
  gap: 24px;
}

.stack-grid,
.feature-grid,
.scale-points {
  display: grid;
  gap: 16px;
}

.info-card,
.feature-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.info-card h3,
.feature-card h3 {
  margin: 0;
  font-size: 1.2rem;
}

.info-card p,
.feature-card p {
  margin: 12px 0 0;
}

.soft-panel,
.scale-panel {
  padding: 28px;
  background: var(--bg-soft);
}

.panel-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-grid {
  margin-top: 32px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 18px;
  background: var(--bg-lime-soft);
  font-weight: 800;
}

.table-shell {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid var(--border-soft);
  border-radius: 28px;
  background: white;
  box-shadow: 0 18px 50px rgba(1, 58, 38, 0.08);
}

.comparison-table {
  min-width: 760px;
}

.table-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(22, 49, 38, 0.08);
  font-size: 0.94rem;
  color: rgba(22, 49, 38, 0.78);
}

.table-row > div {
  padding: 18px 16px;
}

.table-row--head {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.table-label {
  color: var(--text-main);
  font-weight: 700;
}

.table-highlight {
  background: var(--bg-lime);
  color: var(--text-main);
}

.table-socio {
  background: #f7ffef;
  color: var(--text-main);
  font-weight: 700;
}

.scale-panel {
  background: #e9efe7;
}

.scale-grid {
  display: grid;
  gap: 16px;
  margin-top: 32px;
}

.info-card--wide {
  padding: 24px;
}

.card-tag {
  color: #4c7711;
}

.scale-panel .primary-button {
  margin-top: 32px;
}

.footer-spacing {
  padding-top: 16px;
  padding-bottom: 48px;
}

.footer-shell {
  padding: 28px;
  background: var(--bg-dark);
  color: white;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-logo {
  height: 36px;
  width: auto;
}

.footer-copy {
  max-width: 58ch;
  color: var(--text-light);
}

.footer-links {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.footer-links a {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.8);
  transition: 180ms ease;
}

.footer-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 700px) {
  .container {
    width: min(calc(100% - 48px), var(--container));
  }

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

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

@media (min-width: 700px) and (max-width: 899px) {
  .hero-shell {
    padding-top: 24px;
    padding-bottom: 52px;
  }

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

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

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

  .scale-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .panel-header .secondary-button,
  .dark-banner .lime-button,
  .scale-panel .primary-button,
  .footer-grid .lime-button {
    width: fit-content;
    max-width: 100%;
  }
}

@media (min-width: 900px) {
  .hero-shell {
    padding-top: 24px;
    padding-bottom: 56px;
  }

  .hero-grid {
    margin-top: 40px;
    gap: 32px;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  }

  .dark-banner {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .split-grid--ecosystem {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
  }

  .split-grid--comparison {
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  }

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

  .panel-header {
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
  }

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

  .scale-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .footer-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 699px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero-shell {
    padding-top: 12px;
    padding-bottom: 32px;
  }

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

  .brand-logo {
    height: 40px;
  }

  .surface-card,
  .soft-panel,
  .scale-panel,
  .dark-banner,
  .footer-shell {
    border-radius: 28px;
  }

  .surface-card,
  .soft-panel,
  .scale-panel,
  .dark-banner,
  .footer-shell,
  .info-card,
  .feature-card {
    padding: 20px;
  }

  .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
    line-height: 1;
  }

  .dark-banner h2,
  .soft-panel h2,
  .split-grid h2,
  .scale-copy h2 {
    font-size: clamp(1.8rem, 9vw, 2.5rem);
    line-height: 1.08;
  }

  .ghost-button,
  .primary-button,
  .secondary-button,
  .lime-button {
    width: 100%;
    padding: 14px 18px;
  }

  .hero-actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .stats-grid,
  .stack-grid,
  .feature-grid,
  .scale-grid,
  .scale-points,
  .footer-grid,
  .footer-links {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .visual-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 16px;
    border-radius: 22px;
  }

  .visual-text {
    max-width: none;
    font-size: 0.98rem;
  }

  .block-spacing {
    padding: 16px 0;
  }

  .panel-header,
  .footer-grid {
    gap: 18px;
  }

  .comparison-table {
    min-width: 640px;
  }

  .table-row {
    font-size: 0.88rem;
  }

  .table-row > div {
    padding: 14px 12px;
  }

  .footer-links {
    margin-top: 24px;
  }

  .footer-links a {
    padding: 13px 14px;
  }
}
