@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700&family=Sora:wght@500;600;700;800&display=swap');

:root {
  --bg: #f4f8ef;
  --bg-soft: #edf4e6;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --text: #102113;
  --muted: #4b6251;
  --line: rgba(16, 33, 19, 0.1);
  --line-strong: rgba(16, 33, 19, 0.18);
  --primary: #0f8a43;
  --primary-deep: #0b5f30;
  --accent: #c8f169;
  --accent-deep: #a9dd24;
  --shadow: 0 24px 80px rgba(17, 48, 24, 0.12);
  --shadow-soft: 0 14px 34px rgba(17, 48, 24, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --wrap: min(1120px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: 'IBM Plex Sans', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(169, 221, 36, 0.32), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(15, 138, 67, 0.12), transparent 24%),
    linear-gradient(180deg, #f8fbf4 0%, #edf5e7 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: linear-gradient(rgba(15, 138, 67, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 138, 67, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 80%);
  pointer-events: none;
}

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

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

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

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(244, 248, 239, 0.76);
  border-bottom: 1px solid rgba(16, 33, 19, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-name,
.footer-brand-name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-name {
  font-size: 1.15rem;
}

.brand-tag {
  font-size: 0.73rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(16, 33, 19, 0.07);
  background: rgba(255, 255, 255, 0.46);
}

.nav-link {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible,
.footer-nav a:hover,
.footer-nav a:focus-visible,
.button:hover,
.button:focus-visible,
.link-card:hover,
.link-card:focus-visible,
.contact-item:hover,
.contact-item:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.nav-link[aria-current='page'] {
  color: var(--text);
  background: rgba(15, 138, 67, 0.1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.94rem;
}

.button-primary {
  color: #efffe9;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 12px 24px rgba(15, 138, 67, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(16, 33, 19, 0.1);
}

.button-ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.28);
}

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

.mobile-menu summary {
  list-style: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 33, 19, 0.1);
}

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

.mobile-menu-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(280px, calc(100vw - 32px));
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  border: 1px solid rgba(16, 33, 19, 0.08);
  box-shadow: var(--shadow-soft);
}

.mobile-menu[open] .mobile-menu-panel {
  display: flex;
}

.mobile-menu-panel a {
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 500;
}

.mobile-menu-panel a[aria-current='page'] {
  color: var(--text);
  background: rgba(15, 138, 67, 0.1);
}

.hero,
.page-hero {
  padding: 54px 0 32px;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.story-grid,
.contact-grid,
.cta-grid,
.detail-grid {
  display: grid;
  gap: 28px;
}

.hero-grid,
.page-hero-grid,
.cta-grid,
.detail-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(15, 138, 67, 0.12);
  background: rgba(255, 255, 255, 0.58);
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-deep);
  box-shadow: 0 0 0 6px rgba(169, 221, 36, 0.18);
}

.hero-copy h1,
.page-hero-copy h1,
.section-head h2,
.panel-title,
.cta-band h2,
.footer-brand-name {
  margin: 0;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.05em;
}

.hero-copy h1,
.page-hero-copy h1 {
  margin-top: 18px;
  font-size: clamp(2.35rem, 5.3vw, 4.4rem);
  line-height: 1.02;
}

.hero-copy p,
.page-hero-copy p,
.section-head p,
.panel-body,
.story-card p,
.list-rich,
.value-card p,
.trust-strip p,
.contact-card p,
.footer-text,
.field-note,
.page-note {
  color: var(--muted);
}

.hero-copy p,
.page-hero-copy p {
  margin: 20px 0 0;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.65;
  max-width: 62ch;
}

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

.stat-grid,
.overview-grid,
.feature-grid,
.values-grid,
.contact-stack,
.visual-stack,
.signal-grid,
.principles-grid,
.path-grid {
  display: grid;
  gap: 18px;
}

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

.stat-card,
.glass-card,
.panel,
.story-card,
.value-card,
.contact-card,
.form-shell,
.trust-strip,
.quote-block,
.link-card,
.metric-card,
.path-card,
.principle-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 33, 19, 0.08);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.stat-card,
.metric-card,
.path-card,
.principle-card,
.story-card,
.value-card,
.contact-card {
  padding: 24px;
}

.stat-card strong,
.metric-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.05em;
}

.stat-card span,
.metric-card span,
.mini-label,
.kicker {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
  font-weight: 700;
}

.hero-visual,
.page-visual {
  position: relative;
  min-height: 100%;
}

.hero-dashboard,
.page-visual-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 28px;
  min-height: 100%;
  background: linear-gradient(160deg, rgba(11, 95, 48, 0.96), rgba(15, 138, 67, 0.82));
  box-shadow: var(--shadow);
  color: #efffe9;
}

.hero-dashboard::before,
.page-visual-card::before,
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200, 241, 105, 0.34), transparent 28%),
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.04) 48% 52%, transparent 52% 100%);
  pointer-events: none;
}

.dashboard-top,
.visual-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.dashboard-chip,
.visual-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(239, 255, 233, 0.12);
  border: 1px solid rgba(239, 255, 233, 0.16);
  font-size: 0.84rem;
}

.dashboard-chip strong,
.visual-chip strong {
  font-family: 'Sora', sans-serif;
}

.dashboard-main {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  display: grid;
  gap: 18px;
}

.dashboard-main strong {
  display: block;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.chart-card,
.ledger-card,
.projection-card {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 150px;
  margin-top: 18px;
}

.chart-bars span {
  flex: 1;
  border-radius: 16px 16px 4px 4px;
  background: linear-gradient(180deg, rgba(200, 241, 105, 0.94), rgba(239, 255, 233, 0.14));
}

.ledger-list,
.bullet-list,
.footer-nav,
.benefits-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ledger-list li,
.bullet-list li,
.benefits-list li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.ledger-list li + li,
.bullet-list li + li,
.benefits-list li + li {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ledger-value {
  color: #d9ff8d;
  font-weight: 700;
}

.info-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.info-list li {
  display: grid;
  gap: 6px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.info-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.info-list p {
  margin: 0;
  color: rgba(239, 255, 233, 0.78);
  line-height: 1.55;
}

.section {
  padding: 28px 0 74px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

.section-head p {
  max-width: 56ch;
  line-height: 1.72;
}

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

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

.link-card {
  padding: 28px;
  display: grid;
  gap: 20px;
  min-height: 100%;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.link-card:hover,
.link-card:focus-visible,
.contact-item:hover,
.contact-item:focus-visible {
  border-color: rgba(15, 138, 67, 0.24);
  box-shadow: 0 20px 38px rgba(15, 138, 67, 0.12);
}

.card-icon,
.value-icon,
.contact-icon,
.path-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(15, 138, 67, 0.16), rgba(200, 241, 105, 0.26));
}

.card-icon svg,
.value-icon svg,
.contact-icon svg,
.path-icon svg,
.brand-mark svg {
  width: 24px;
  height: 24px;
}

.link-card h3,
.panel-title,
.story-card h3,
.value-card h3,
.contact-card h3,
.path-card h3,
.principle-card h3 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.1;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.link-card p,
.story-card p,
.value-card p,
.contact-card p,
.path-card p,
.principle-card p {
  margin: 0;
  line-height: 1.72;
}

.card-link {
  color: var(--primary-deep);
  font-weight: 700;
}

.trust-strip {
  display: grid;
  gap: 22px;
  padding: 28px;
  background: linear-gradient(160deg, rgba(16, 33, 19, 0.94), rgba(11, 95, 48, 0.94));
  color: #f7ffec;
}

.trust-strip p {
  color: rgba(247, 255, 236, 0.72);
}

.trust-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-pill {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 255, 236, 0.14);
  background: rgba(247, 255, 236, 0.08);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.split-grid,
.story-grid,
.contact-grid,
.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.panel,
.quote-block,
.form-shell {
  padding: 30px;
}

.panel-title {
  font-size: 2rem;
}

.panel-body,
.list-rich,
.quote-block p {
  margin-top: 16px;
  line-height: 1.78;
}

.bullet-list li {
  justify-content: flex-start;
}

.bullet-list li::before,
.benefits-list li::before {
  content: '';
  flex: none;
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent-deep));
}

.quote-block {
  background: linear-gradient(135deg, rgba(200, 241, 105, 0.24), rgba(15, 138, 67, 0.08));
}

.quote-block strong {
  display: block;
  margin-top: 18px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary-deep);
}

.value-card {
  display: grid;
  gap: 20px;
}

.value-accent {
  position: absolute;
  inset: auto -36px -42px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 241, 105, 0.22), transparent 70%);
}

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

.path-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: rgba(15, 138, 67, 0.1);
  color: var(--primary-deep);
  font-weight: 700;
}

.page-note {
  margin-top: 18px;
  padding-left: 16px;
  border-left: 3px solid rgba(15, 138, 67, 0.24);
}

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

.principle-card {
  min-height: 100%;
}

.visual-stack {
  position: relative;
  z-index: 1;
}

.visual-note {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.visual-note strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.visual-note p,
.dashboard-main p,
.page-visual-card p {
  color: rgba(239, 255, 233, 0.78);
}

.contact-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(16, 33, 19, 0.08);
  background: rgba(255, 255, 255, 0.62);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-item strong,
.metric-card strong,
.signal-card strong {
  display: block;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.04em;
}

.form-shell form {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 10px;
}

.field label {
  font-size: 0.92rem;
  font-weight: 600;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(16, 33, 19, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 2px solid rgba(15, 138, 67, 0.22);
  border-color: rgba(15, 138, 67, 0.4);
}

.field-note {
  margin: 0;
  font-size: 0.9rem;
}

.cta-band {
  position: relative;
  padding: 34px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  color: #efffe9;
  box-shadow: 0 22px 48px rgba(11, 95, 48, 0.2);
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.96;
  position: relative;
  z-index: 1;
}

.cta-band p {
  position: relative;
  z-index: 1;
  color: rgba(239, 255, 233, 0.82);
  line-height: 1.72;
}

.cta-band .button-ghost {
  color: #efffe9;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer {
  padding: 26px 0 34px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(16, 33, 19, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  display: grid;
  gap: 16px;
}

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

.footer-text,
.footer-nav a,
.footer-contact {
  line-height: 1.7;
}

.footer-title {
  margin: 0 0 14px;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.footer-nav a {
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 33, 19, 0.08);
}

.accent {
  color: var(--primary);
}

.muted {
  color: var(--muted);
}

@media (max-width: 920px) {
  .main-nav,
  .topbar-cta {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .story-grid,
  .contact-grid,
  .cta-grid,
  .detail-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .overview-grid,
  .feature-grid,
  .values-grid,
  .path-grid,
  .signal-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  :root {
    --wrap: min(1120px, calc(100% - 20px));
  }

  .topbar-inner {
    min-height: 76px;
  }

  .hero,
  .page-hero {
    padding-top: 34px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }

  .panel,
  .quote-block,
  .form-shell,
  .hero-dashboard,
  .page-visual-card,
  .cta-band,
  .link-card,
  .stat-card,
  .story-card,
  .value-card,
  .contact-card,
  .metric-card,
  .path-card,
  .principle-card {
    padding: 22px;
    border-radius: 24px;
  }

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

  .hero-actions,
  .page-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }
}