:root {
  --bg: #ffffff;
  --ink: #111614;
  --muted: #5c6964;
  --line: #dfe7e2;
  --panel: #f6f9f7;
  --panel-strong: #eef5f1;
  --green: #76b900;
  --green-dark: #387400;
  --cyan: #19a7b8;
  --shadow: 0 24px 80px rgba(20, 32, 28, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 18px clamp(20px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(223, 231, 226, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 720;
  line-height: 1;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  border-radius: 7px;
}

.nav-links {
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover,
.contact-card a:hover,
.intro-strip a:hover {
  color: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
}

.header-cta {
  color: var(--ink);
  border: 1px solid var(--line);
}

.section-shell {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(48px, 7vw, 88px) 0 42px;
}

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

.hero h1 {
  margin: 0;
  font-size: clamp(56px, 8vw, 116px);
  font-weight: 820;
  line-height: 0.92;
}

.hero-lede {
  margin: 28px 0 0;
  color: #34413c;
  font-size: clamp(18px, 2.1vw, 22px);
  line-height: 1.55;
}

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

.button.primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 12px 28px rgba(17, 22, 20, 0.16);
}

.button.secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
}

.status-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 42px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-list div {
  padding: 18px 16px 18px 0;
}

.status-list div + div {
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.status-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.status-list dd {
  margin: 4px 0 0;
  font-size: 14px;
  font-weight: 720;
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  inset: 12% -4% -8% 12%;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(118, 185, 0, 0.12), rgba(25, 167, 184, 0.1)),
    repeating-linear-gradient(0deg, transparent 0 31px, rgba(17, 22, 20, 0.06) 32px),
    repeating-linear-gradient(90deg, transparent 0 31px, rgba(17, 22, 20, 0.06) 32px);
  border-radius: 8px;
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro-strip p {
  max-width: 760px;
  margin: 0;
  color: #26312d;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

.intro-strip a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 780;
  white-space: nowrap;
}

.split-section,
.honesty-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(76px, 9vw, 120px) 0;
}

h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 810;
  line-height: 1;
}

h3 {
  margin: 20px 0 10px;
  font-size: 22px;
  line-height: 1.18;
}

.split-section p,
.approach-layout p,
.stage-copy p,
.contact-layout p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.focus-grid {
  display: grid;
  gap: 14px;
}

.focus-card {
  padding: 24px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.focus-card p {
  margin: 0;
  color: var(--muted);
}

.card-index {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 820;
}

.approach-band {
  background:
    linear-gradient(180deg, #f8fbfa 0%, #eef5f1 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 76px);
  padding: clamp(76px, 9vw, 112px) 0;
}

.process-list {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.process-list li {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
}

.process-list strong {
  font-size: 18px;
}

.process-list span {
  color: var(--muted);
}

.honesty-section {
  align-items: start;
}

.signal-panel {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.signal-panel div {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 22px 24px;
  color: #2c3834;
  background: #ffffff;
}

.signal-panel div + div {
  border-top: 1px solid var(--line);
}

.signal-dot {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex: 0 0 auto;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(118, 185, 0, 0.12);
}

.contact-section {
  color: #ffffff;
  background: #111614;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 6vw, 74px);
  align-items: start;
  padding: clamp(72px, 9vw, 110px) 0;
}

.contact-layout p {
  color: #c8d4cf;
  max-width: 650px;
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 26px;
  background: #18211d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.contact-card span {
  color: #94a59e;
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.contact-card a {
  color: #ffffff;
  font-weight: 760;
  overflow-wrap: anywhere;
}

.contact-card a + span {
  margin-top: 16px;
}

.site-footer {
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 4vw, 48px);
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--line);
}

@media (max-width: 820px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero,
  .split-section,
  .approach-layout,
  .honesty-section,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .status-list {
    grid-template-columns: 1fr;
  }

  .status-list div + div {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .process-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

@media (max-width: 520px) {
  .section-shell {
    width: min(100% - 28px, var(--max));
  }

  .header-cta {
    min-height: 38px;
    padding: 0 14px;
  }

  .hero h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  .hero-visual img {
    aspect-ratio: 1;
  }

  .hero-visual::before {
    inset: 10% 0 -5% 6%;
  }

  .focus-card,
  .contact-card {
    padding: 20px;
  }
}
