:root {
  --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Sora", "Plus Jakarta Sans", sans-serif;

  --bg: #f3f8f1;
  --bg-soft: #fbfdf9;
  --surface: #ffffff;
  --surface-muted: #f4f8f1;
  --ink: #132019;
  --ink-soft: #3d4f44;
  --ink-muted: #6d7d73;

  --brand-50: #edf8e3;
  --brand-100: #d9efc5;
  --brand-200: #bde092;
  --brand-400: #6fb23a;
  --brand-500: #5b9830;
  --brand-700: #3a6422;

  --info-100: #e4efff;
  --info-500: #1f69d6;
  --success-100: #e2f6eb;
  --success-500: #227a48;
  --warning-100: #fff3dd;
  --warning-500: #a66a00;
  --danger-100: #ffe7e7;
  --danger-500: #ba2f2f;

  --line: rgba(18, 32, 24, 0.12);
  --line-strong: rgba(18, 32, 24, 0.24);
  --focus: #2c7be5;

  --shadow-sm: 0 10px 22px rgba(26, 42, 29, 0.07);
  --shadow-md: 0 20px 40px rgba(21, 35, 26, 0.09);
  --shadow-lg: 0 30px 64px rgba(18, 28, 22, 0.12);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;

  --text-xs: 12px;
  --text-sm: 14px;
  --text-md: 16px;
  --text-lg: 20px;
  --text-xl: clamp(28px, 3.5vw, 42px);
  --text-hero: clamp(36px, 5.2vw, 64px);
  --arrow-size: 17px;
  --arrow-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M18 12a2 2 0 0 0-.59-1.4l-4.29-4.3a1 1 0 1 0-1.41 1.42L15 11H5a1 1 0 1 0 0 2h10l-3.29 3.29a1 1 0 1 0 1.41 1.42l4.29-4.3A2 2 0 0 0 18 12Z'/%3E%3C/svg%3E");

  --display-letter: -0.03em;
  --display-line: 1.12;
  --body-line: 1.55;

  --container: 1140px;

  --ease-out: cubic-bezier(0.2, 0.8, 0.2, 1);
  --fast: 140ms;
  --normal: 220ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-md);
  line-height: var(--body-line);
  background:
    radial-gradient(circle at 3% -4%, #e5f5d4 0%, transparent 38%),
    radial-gradient(circle at 95% 5%, #dff2c7 0%, transparent 28%),
    linear-gradient(180deg, #f8fcf4 0%, #f3f8f1 34%, #eff5eb 100%);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: var(--display-letter);
  line-height: var(--display-line);
  text-wrap: balance;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

[hidden] {
  display: none !important;
}

a,
button,
summary,
input,
select,
textarea {
  transition:
    color var(--fast) var(--ease-out),
    background-color var(--fast) var(--ease-out),
    border-color var(--fast) var(--ease-out),
    box-shadow var(--normal) var(--ease-out),
    transform var(--normal) var(--ease-out),
    opacity var(--fast) var(--ease-out);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 58%, transparent);
  outline-offset: 2px;
}

.container {
  width: min(var(--container), calc(100% - var(--space-10)));
  margin-inline: auto;
}

.section {
  padding-block: var(--space-16);
}

.section-tight {
  padding-top: var(--space-2);
  padding-bottom: var(--space-6);
}

#why-us.section {
  padding-top: var(--space-10);
}

.hero.section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-8);
}

.site-header {
  padding-top: var(--space-6);
}

.nav-shell {
  border: 1px solid var(--line);
  background: color-mix(in srgb, #ffffff 84%, #eaf6de 16%);
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-4);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--space-3);
  align-items: center;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
}

.brand-mark {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  filter: drop-shadow(0 4px 10px rgba(90, 146, 45, 0.2));
}

.brand-text {
  font-size: var(--text-sm);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav-links {
  justify-self: center;
  display: flex;
  gap: var(--space-1);
  padding: var(--space-1);
  border-radius: var(--radius-pill);
  background: color-mix(in srgb, #f3f9ed 84%, #ffffff 16%);
  border: 1px solid color-mix(in srgb, var(--line) 85%, #dce8d2 15%);
  position: relative;
}

.nav-links a {
  color: #2b3a32;
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 700;
  border-radius: var(--radius-pill);
  padding: 0 var(--space-4);
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.nav-links a:hover {
  background: color-mix(in srgb, var(--brand-100) 45%, white);
  color: #15211a;
}

.nav-links a:active {
  transform: translateY(1px) scale(0.99);
}

.nav-links a.active {
  color: #f4f8f2;
}

.nav-links:not(.is-pill-ready) a.active {
  background: #13201a;
}

.nav-active-pill {
  display: none;
}

.nav-links.is-pill-ready .nav-active-pill {
  display: block;
  position: absolute;
  top: var(--space-1);
  left: 0;
  height: calc(100% - (var(--space-1) * 2));
  border-radius: var(--radius-pill);
  background: #13201a;
  pointer-events: none;
  transition:
    transform var(--normal) var(--ease-out),
    width var(--normal) var(--ease-out);
}

.nav-links.is-pill-ready a {
  transition:
    color var(--fast) var(--ease-out),
    transform var(--normal) var(--ease-out);
}

.nav-links.is-pill-ready a.active {
  background: transparent;
}

.nav-links.is-pill-ready a:hover {
  background: transparent;
}

.nav-cta,
.primary-cta,
.footer-cta-link,
.btn-primary {
  text-decoration: none;
  border-radius: var(--radius-pill);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 800;
  padding: 0 var(--space-4);
  border: 1px solid #0f1914;
  background: #14211a;
  color: #f7fbf5;
  box-shadow: 0 12px 26px rgba(18, 32, 24, 0.16);
}

.nav-cta::after,
.primary-cta::after,
.footer-cta-link::after {
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  margin-left: 8px;
  flex: 0 0 var(--arrow-size);
  background-color: currentColor;
  -webkit-mask-image: var(--arrow-mask);
  mask-image: var(--arrow-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.nav-cta {
  border-color: var(--brand-500);
  background: var(--brand-400);
  color: #112018;
  box-shadow: 0 14px 26px rgba(106, 168, 54, 0.22);
}

.mobile-sticky-cta {
  display: none;
  position: fixed;
  left: var(--space-2);
  right: var(--space-2);
  bottom: calc(var(--space-3) + env(safe-area-inset-bottom));
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(118%);
  pointer-events: none;
  transition:
    visibility var(--normal) var(--ease-out),
    opacity var(--normal) var(--ease-out),
    transform var(--normal) var(--ease-out);
}

.mobile-sticky-cta-link {
  width: 100%;
  min-height: 50px;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-cta:hover,
.primary-cta:hover,
.footer-cta-link:hover,
.btn-primary:hover {
  transform: translateY(-1px);
}

.nav-cta:hover {
  background: var(--brand-500);
  color: #f7fbf5;
}

.primary-cta:hover,
.footer-cta-link:hover,
.btn-primary:hover {
  background: #1b2b23;
}

.footer-cta-link:hover {
  color: #f7fbf5;
}

.nav-cta:active,
.primary-cta:active,
.footer-cta-link:active,
.btn-primary:active {
  transform: translateY(1px) scale(0.99);
}

.nav-cta.active {
  border-color: #111a14;
  background: #111a14;
  color: #f6fbf4;
}

.secondary-cta,
.text-link-cta,
.project-link,
.back-link,
.btn-ghost {
  text-decoration: none;
  color: #213228;
  font-size: var(--text-sm);
  font-weight: 700;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.secondary-cta,
.btn-ghost {
  border-color: color-mix(in srgb, var(--line) 88%, #dce8d4 12%);
  background: color-mix(in srgb, white 65%, #edf7e4 35%);
}

.secondary-cta:hover,
.text-link-cta:hover,
.project-link:hover,
.back-link:hover,
.btn-ghost:hover {
  color: #14231a;
  border-color: color-mix(in srgb, var(--brand-400) 40%, var(--line) 60%);
  background: color-mix(in srgb, var(--brand-100) 34%, #ffffff 66%);
}

.secondary-cta:active,
.text-link-cta:active,
.project-link:active,
.back-link:active,
.btn-ghost:active {
  transform: translateY(1px) scale(0.99);
}

.button-disabled,
button:disabled,
input:disabled,
select:disabled,
textarea:disabled,
[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.56;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: var(--space-4);
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--surface) 70%, #eff8e8 30%);
  box-shadow: var(--shadow-md);
}

.hero-copy {
  padding: var(--space-8);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(123, 181, 59, 0.17) 0%, transparent 40%),
    linear-gradient(140deg, transparent 54%, rgba(210, 236, 181, 0.25) 100%);
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--brand-700);
  font-size: var(--text-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
}

#hero-title {
  margin-top: var(--space-3);
  font-size: clamp(30px, 4.3vw, 56px);
  max-width: 14ch;
}

.hero-qualifier {
  margin-top: var(--space-2);
  color: #334a3b;
  font-size: var(--text-sm);
  font-weight: 700;
}

.subtitle {
  margin-top: var(--space-4);
  color: var(--ink-soft);
  font-size: var(--text-md);
  max-width: 52ch;
}

.hero-bullets {
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.hero-bullets li {
  color: #27392f;
  font-size: var(--text-md);
  position: relative;
  padding-left: 26px;
}

.hero-bullets li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-400);
  position: absolute;
  left: 2px;
  top: 0.62em;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--brand-100) 85%, transparent);
}

.hero-actions {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.panel-dark {
  color: #f4f8f2;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(144, 203, 83, 0.24);
  background:
    radial-gradient(circle at 12% 12%, rgba(139, 200, 75, 0.28) 0%, transparent 36%),
    linear-gradient(150deg, #152019 0%, #0f1813 55%, #111c16 100%);
  position: relative;
  overflow: hidden;
}

.panel-dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 14, 11, 0.04) 0%, rgba(8, 14, 11, 0.3) 100%);
  pointer-events: none;
}

.hero-card {
  padding: var(--space-7);
  display: grid;
  gap: var(--space-4);
  min-height: 420px;
  box-shadow: var(--shadow-lg);
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card .meta {
  font-size: var(--text-sm);
  color: #d4dfd1;
}

#hero-card-title {
  font-size: clamp(26px, 3.2vw, 36px);
  max-width: 18ch;
}

.bars {
  margin-top: auto;
  margin-left: auto;
  min-height: 126px;
  display: flex;
  align-items: flex-end;
  gap: var(--space-2);
}

.bar {
  width: clamp(34px, 7vw, 62px);
  border-radius: 8px 8px 0 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.b1 {
  height: 56%;
  background: #b8dd8f;
}

.b2 {
  height: 78%;
  background: #91c95d;
}

.b3 {
  height: 100%;
  background: #6aac38;
}

.hero-timeline {
  margin: var(--space-1) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-3);
}

.hero-timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  color: #e7eee4;
  font-size: var(--text-sm);
}

.hero-time {
  color: #b1e17b;
  font-weight: 800;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.proof-strip {
  padding: var(--space-4) var(--space-5);
  display: grid;
  gap: var(--space-3);
}

.proof-strip p {
  font-size: var(--text-sm);
  font-weight: 800;
  color: #223228;
}

.proof-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.proof-badges span {
  border-radius: var(--radius-pill);
  border: 1px solid color-mix(in srgb, var(--line) 90%, #dbe7d2 10%);
  background: color-mix(in srgb, #ffffff 82%, var(--brand-50) 18%);
  padding: 6px 10px;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #36493f;
}

.why-panel {
  padding: var(--space-8);
}

.section-head {
  display: grid;
  gap: var(--space-2);
}

.section-head h1 {
  font-size: var(--text-xl);
}

.section-head h2 {
  font-size: clamp(30px, 3.8vw, 46px);
}

#why-us .section-head h2 {
  font-size: clamp(30px, 3.2vw, 40px);
}

.inline-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-4);
}

.text-link-cta {
  font-size: var(--text-sm);
  font-weight: 800;
}

.text-link-cta::after {
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  flex: 0 0 var(--arrow-size);
  background-color: currentColor;
  -webkit-mask-image: var(--arrow-mask);
  mask-image: var(--arrow-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.lead {
  color: var(--ink-soft);
  font-size: var(--text-md);
  line-height: 1.62;
  max-width: 70ch;
}

.collab-note {
  margin-top: var(--space-1);
  color: #2f4438;
  font-size: var(--text-sm);
  font-weight: 700;
}

.why-list {
  margin: var(--space-6) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.why-list li {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fcfefb;
  padding: var(--space-5);
}

.why-list h3 {
  font-size: var(--text-lg);
}

.why-list p {
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  color: var(--ink-soft);
  font-weight: 600;
}

.roadmap-grid {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-stage {
  margin-top: var(--space-6);
  background: linear-gradient(145deg, #deefc8 0%, #d2e8b7 46%, #f4faeb 100%);
  border-radius: 28px;
  border: 1px solid rgba(14, 20, 8, 0.1);
  padding: var(--space-6);
  box-shadow: 0 22px 46px rgba(73, 101, 40, 0.11);
}

.stage-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.slot-note {
  font-size: var(--text-sm);
  color: #243617;
  font-weight: 800;
}

.timeline-grid {
  padding-top: 0;
}

.roadmap-step {
  border: 1px solid rgba(25, 32, 18, 0.11);
  border-radius: var(--radius-md);
  background: rgba(251, 254, 247, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  padding: var(--space-5);
  min-height: 204px;
}

.roadmap-step .phase {
  color: var(--brand-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
  font-weight: 800;
}

.roadmap-step h3 {
  margin-top: var(--space-3);
  font-size: 22px;
}

.roadmap-step .timeline {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #647364;
}

.roadmap-step p {
  margin-top: var(--space-2);
  color: var(--ink-soft);
  font-size: var(--text-sm);
}

.mini-list {
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.mini-list li {
  font-size: var(--text-xs);
  color: #37483e;
  border: 1px solid rgba(10, 16, 18, 0.14);
  border-radius: var(--radius-sm);
  padding: 6px 9px;
  background: #f8fcef;
}

.trust-grid {
  margin-top: var(--space-4);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #f9fdf4;
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
}

.trust-card .label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
  color: var(--ink-muted);
  font-weight: 800;
}

.trust-card h3 {
  margin-top: var(--space-3);
  font-size: clamp(24px, 3vw, 32px);
}

.trust-card p {
  margin-top: var(--space-2);
  color: var(--ink-soft);
  font-size: var(--text-sm);
}

.tag-filters {
  margin-top: var(--space-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.tag-btn {
  border: 1px solid color-mix(in srgb, var(--line) 90%, #dce8d2 10%);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  min-height: 38px;
  background: #f4f9ee;
  color: #263830;
  font-size: var(--text-sm);
  font-weight: 700;
  cursor: pointer;
}

.tag-btn:hover {
  background: color-mix(in srgb, var(--brand-100) 30%, #ffffff);
}

.tag-btn:active {
  transform: translateY(1px) scale(0.99);
}

.tag-btn.active,
.tag-btn[aria-pressed="true"] {
  background: #122019;
  border-color: #122019;
  color: #eef6ea;
}

.project-grid {
  margin-top: var(--space-6);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #f9fdf5;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: var(--shadow-sm);
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 34px rgba(19, 33, 24, 0.13);
}

.project-card:active {
  transform: translateY(-1px);
}

.project-card:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 56%, transparent);
  outline-offset: 3px;
}

.project-preview {
  min-height: 155px;
  position: relative;
  overflow: hidden;
}

.project-preview-image,
.project-gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-preview.has-image::before,
.project-preview.has-image::after {
  content: none;
}

.project-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 14, 12, 0.55) 2%, rgba(9, 14, 12, 0) 52%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 46%);
}

.project-preview::after {
  content: "";
  position: absolute;
  inset: auto -20% -50% -20%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, transparent 66%);
}

.project-poster-line {
  position: absolute;
  left: var(--space-3);
  right: var(--space-3);
  bottom: var(--space-3);
  background: rgba(9, 14, 16, 0.74);
  color: #f2f7f0;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 1;
}

.project-body {
  padding: var(--space-5);
}

.project-meta {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #66766d;
}

.project-card h3 {
  margin-top: var(--space-3);
  font-size: 24px;
}

.project-summary {
  margin-top: var(--space-2);
  color: var(--ink-soft);
  font-size: var(--text-sm);
  line-height: 1.52;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-outcome {
  margin-top: var(--space-3);
  color: #3f5146;
  font-size: var(--text-sm);
  line-height: 1.52;
}

.project-highlights {
  margin: var(--space-3) 0 0;
  padding-left: var(--space-4);
  display: grid;
  gap: 5px;
}

.project-highlights li {
  color: #41544a;
  font-size: var(--text-sm);
}

.project-bottom {
  margin-top: var(--space-4);
  border-top: 1px solid rgba(11, 17, 18, 0.11);
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: nowrap;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-width: 0;
}

.chip,
.status-chip {
  border: 1px solid rgba(10, 16, 18, 0.14);
  border-radius: var(--radius-pill);
  font-size: var(--text-xs);
  padding: 4px 9px;
  background: #edf7e3;
  color: #33483e;
  font-weight: 700;
}

.status-chip.info {
  background: var(--info-100);
  color: var(--info-500);
  border-color: color-mix(in srgb, var(--info-500) 25%, transparent);
}

.status-chip.success {
  background: var(--success-100);
  color: var(--success-500);
  border-color: color-mix(in srgb, var(--success-500) 25%, transparent);
}

.status-chip.warning {
  background: var(--warning-100);
  color: var(--warning-500);
  border-color: color-mix(in srgb, var(--warning-500) 25%, transparent);
}

.status-chip.danger {
  background: var(--danger-100);
  color: var(--danger-500);
  border-color: color-mix(in srgb, var(--danger-500) 25%, transparent);
}

.duration {
  font-size: var(--text-xs);
  color: #667770;
  font-weight: 700;
  white-space: nowrap;
}

.project-link {
  font-size: var(--text-sm);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex: 0 0 auto;
}

.inline-arrow-icon {
  width: var(--arrow-size);
  height: var(--arrow-size);
  fill: currentColor;
  flex: 0 0 var(--arrow-size);
}

.project-card.is-compact .project-highlights {
  display: none;
}

.project-card.is-compact .chips .chip:nth-child(n + 3) {
  display: none;
}

.faq-list {
  margin-top: var(--space-2);
  border-top: 1px solid rgba(10, 16, 18, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(10, 16, 18, 0.12);
  border-radius: var(--space-1);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  line-height: 24px;
  padding: var(--space-4) var(--space-8) var(--space-4) 0;
  position: relative;
}

.faq-item summary:hover {
  color: #1f3025;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(10, 16, 18, 0.2);
  color: #2b3c32;
  background: #f5f9f1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
  background: #17251d;
  color: #f2f7f0;
  border-color: #17251d;
}

.faq-item[open] {
  background: rgba(247, 251, 242, 0.8);
}

.faq-item ul {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
  display: grid;
  gap: var(--space-2);
}

.faq-item li {
  color: var(--ink-soft);
  font-size: var(--text-sm);
  max-width: 70ch;
}

.faq-shell {
  padding: var(--space-8);
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: var(--space-10);
}

.faq-left .lead {
  margin-top: var(--space-4);
}

.faq-left .text-link-cta {
  margin-top: var(--space-5);
}

.call-list {
  margin: var(--space-5) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.call-list li {
  color: #2e4036;
  font-size: var(--text-sm);
  padding-left: var(--space-4);
  position: relative;
}

.call-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-400);
  position: absolute;
  left: 0;
  top: 0.52em;
}

.footer-cta {
  padding: var(--space-8);
}

.footer-cta h2 {
  font-size: clamp(34px, 5vw, 52px);
}

.footer-cta-link {
  margin-top: var(--space-4);
  background: #f6faf3;
  color: #0f1914;
  border-color: transparent;
  box-shadow: none;
}

.footer-subline {
  margin-top: var(--space-3);
  color: #d3dfcd;
  font-size: var(--text-sm);
}

.footer-grid {
  margin-top: var(--space-4);
  padding: var(--space-6);
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--space-5);
}

.footer-label {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: var(--text-xs);
  color: #64747d;
  font-weight: 800;
}

.footer-brand {
  margin-top: var(--space-2);
  font-size: var(--text-md);
  font-weight: 800;
}

.footer-copy {
  margin-top: var(--space-2);
  color: var(--ink-soft);
  font-size: var(--text-sm);
}

.page-shell {
  padding: var(--space-8);
}

.page-shell h1 {
  margin-top: var(--space-3);
  font-size: clamp(36px, 4.8vw, 54px);
}

.page-shell .lead {
  margin-top: var(--space-4);
}

.founder-grid {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-4);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.founder-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfef9;
  padding: var(--space-5);
}

.founder-avatar {
  width: 86px;
  height: 86px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 25% 20%, #e9fad5 0%, transparent 40%),
    linear-gradient(145deg, #a8d76c 0%, #e7f5d0 55%, #748a5f 100%);
  border: 1px solid rgba(35, 49, 30, 0.14);
  color: #152110;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 26px;
}

.founder-card h3 {
  margin-top: var(--space-4);
  font-size: var(--text-lg);
}

.muted {
  color: var(--ink-soft);
  font-size: var(--text-sm);
}

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

.muted a:hover {
  text-decoration: underline;
}

.founder-blurb {
  margin-top: var(--space-3);
  color: #37454b;
  font-size: var(--text-sm);
  line-height: 1.55;
}

.intake-shell {
  max-width: 840px;
}

.lead-flow-wrap {
  margin-top: var(--space-6);
  border: 1px solid rgba(11, 17, 18, 0.12);
  border-radius: 20px;
  background: rgba(250, 252, 248, 0.92);
  padding: var(--space-5);
}

.lead-progress {
  display: grid;
  gap: var(--space-2);
}

.lead-progress-track {
  width: 100%;
  height: 10px;
  border-radius: var(--radius-pill);
  overflow: hidden;
  background: #e2ead7;
}

.lead-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #71af35 0%, #98cf5b 100%);
  transition: width var(--normal) var(--ease-out);
}

.lead-progress-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #4d5b56;
}

.lead-form {
  margin-top: var(--space-4);
}

.lead-step h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  margin-bottom: var(--space-4);
}

.choice-grid {
  display: grid;
  gap: var(--space-2);
}

.choice-card {
  border: 1px solid rgba(10, 16, 18, 0.15);
  border-radius: var(--radius-sm);
  background: #f9fcf5;
  padding: var(--space-4);
  display: flex;
  gap: var(--space-3);
  align-items: flex-start;
  cursor: pointer;
}

.choice-card input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand-500);
}

.choice-card.is-selected {
  border-color: #77b83d;
  background: #eef7e2;
}

.input-label {
  display: block;
  margin-bottom: var(--space-2);
  color: #354047;
  font-size: var(--text-sm);
  font-weight: 700;
}

.lead-form textarea,
.lead-form input[type="text"],
.lead-form input[type="email"] {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(10, 16, 18, 0.16);
  background: #fdfefb;
  color: #0f1518;
  font-family: inherit;
  font-size: var(--text-md);
  padding: 10px 12px;
}

.lead-form textarea {
  resize: vertical;
  min-height: 120px;
}

.lead-field-grid {
  display: grid;
  gap: var(--space-2);
}

.lead-actions {
  margin-top: var(--space-4);
  display: flex;
  justify-content: flex-end;
  gap: var(--space-3);
}

.lead-actions .ghost-btn {
  margin-right: auto;
}

.primary-btn,
.ghost-btn {
  min-height: 44px;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: var(--text-sm);
  font-weight: 800;
  cursor: pointer;
}

.primary-btn {
  border: 1px solid #0f1416;
  background: #0f1416;
  color: #eff5eb;
}

.primary-btn:disabled,
.ghost-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ghost-btn {
  border: 1px solid rgba(11, 17, 18, 0.2);
  background: #f7fbf2;
  color: #24362c;
}

.form-error {
  min-height: 20px;
  margin-top: var(--space-3);
  color: #8f221f;
  font-size: var(--text-sm);
  font-weight: 700;
}

.lead-success {
  margin-top: var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10, 16, 18, 0.13);
  background: #f3fae8;
  padding: var(--space-5);
  display: grid;
  gap: var(--space-3);
}

.lead-success h2 {
  font-size: clamp(30px, 3.2vw, 38px);
}

.hp-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.contact-form {
  margin-top: var(--space-8);
  display: grid;
  gap: var(--space-4);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.field {
  display: grid;
  gap: var(--space-2);
}

.field-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #23362c;
}

.field-help {
  font-size: var(--text-xs);
  color: var(--ink-muted);
}

.field-input,
.field-select,
.field-textarea {
  width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid color-mix(in srgb, var(--line) 86%, #d7e5ce 14%);
  background: #fbfef9;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-md);
  line-height: 24px;
  padding: 10px 12px;
}

.field-input:hover,
.field-select:hover,
.field-textarea:hover {
  border-color: color-mix(in srgb, var(--brand-400) 34%, var(--line) 66%);
}

.field-input:focus-visible,
.field-select:focus-visible,
.field-textarea:focus-visible {
  border-color: color-mix(in srgb, var(--focus) 62%, transparent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--info-100) 90%, transparent);
  outline: none;
}

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

.field.is-error .field-input,
.field.is-error .field-select,
.field.is-error .field-textarea {
  border-color: color-mix(in srgb, var(--danger-500) 65%, transparent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--danger-100) 90%, transparent);
}

.field-error {
  font-size: var(--text-xs);
  color: var(--danger-500);
  font-weight: 700;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
}

.form-note {
  font-size: var(--text-xs);
  color: var(--ink-muted);
}

.project-shell {
  padding: var(--space-8);
}

.back-link {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #40652a;
  padding-left: 0;
  gap: 6px;
}

.back-link::before {
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  flex: 0 0 var(--arrow-size);
  background-color: currentColor;
  -webkit-mask-image: var(--arrow-mask);
  mask-image: var(--arrow-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  transform: rotate(180deg);
}

.project-shell h1 {
  margin-top: var(--space-2);
  font-size: clamp(36px, 4.2vw, 54px);
}

.project-detail-grid {
  margin-top: var(--space-6);
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: var(--space-4);
}

.project-preview.large {
  min-height: 340px;
  border-radius: var(--radius-md);
}

.project-preview.large.is-swipeable {
  touch-action: pan-y;
  user-select: none;
}

.project-gallery-shell {
  display: grid;
  gap: var(--space-3);
}

.project-gallery-controls {
  display: flex;
  justify-content: space-between;
  gap: var(--space-2);
}

.gallery-nav-btn {
  border: 1px solid rgba(10, 16, 18, 0.18);
  background: #f4f8ef;
  border-radius: var(--radius-pill);
  padding: 8px 14px;
  min-height: 38px;
  cursor: pointer;
  font-weight: 700;
  font-size: var(--text-sm);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gallery-nav-btn:hover {
  background: #eaf4e2;
  border-color: rgba(10, 16, 18, 0.3);
}

.gallery-nav-btn:active {
  transform: translateY(1px);
}

#gallery-prev::before,
#gallery-next::after {
  content: "";
  width: var(--arrow-size);
  height: var(--arrow-size);
  flex: 0 0 var(--arrow-size);
  background-color: currentColor;
  -webkit-mask-image: var(--arrow-mask);
  mask-image: var(--arrow-mask);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

#gallery-prev::before {
  transform: rotate(180deg);
}

.project-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: var(--space-2);
}

.gallery-thumb {
  border: 1px solid rgba(10, 16, 18, 0.15);
  background: #f7fbf2;
  border-radius: var(--radius-sm);
  padding: 3px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.gallery-thumb.active {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand-300) 45%, transparent);
}

.gallery-status {
  margin: 0;
  color: var(--ink-muted);
  font-size: var(--text-xs);
}

.gallery-gesture-hint {
  margin: 0;
  font-size: var(--text-xs);
  font-weight: 700;
  color: #3b4d43;
}

.project-side-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fbfef9;
  padding: var(--space-5);
}

.project-side-card h2 {
  font-size: clamp(26px, 3vw, 34px);
}

.duration-line {
  margin-top: var(--space-3);
  color: var(--ink-soft);
  font-size: var(--text-sm);
}

.project-side-card h3 {
  margin-top: var(--space-5);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-side-card ul {
  margin: var(--space-3) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-2);
}

.project-side-card li {
  border: 1px solid rgba(11, 17, 18, 0.12);
  border-radius: var(--radius-sm);
  padding: var(--space-3);
  color: #46564d;
  background: #f5f9ef;
  font-size: var(--text-sm);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out);
}

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

@media (max-width: 1024px) {
  .section {
    padding-block: var(--space-12);
  }

  .hero.section {
    padding-top: var(--space-8);
    padding-bottom: var(--space-6);
  }

  .nav-shell {
    border-radius: 22px;
    grid-template-columns: 1fr;
    gap: var(--space-2);
    padding: var(--space-4);
  }

  .nav-links {
    justify-self: stretch;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .hero-grid,
  .roadmap-grid,
  .trust-grid,
  .project-detail-grid,
  .founder-grid,
  .why-list,
  .faq-shell,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-copy,
  .hero-card,
  .why-panel,
  .faq-shell,
  .page-shell,
  .project-shell,
  .footer-cta,
  .footer-grid {
    padding: var(--space-6);
  }
}

@media (max-width: 640px) {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    padding-top: var(--space-3);
    padding-bottom: var(--space-2);
    background: color-mix(in srgb, #f2f8ed 86%, transparent);
    backdrop-filter: blur(10px);
  }

  .section {
    padding-block: var(--space-8);
  }

  .hero.section {
    padding-top: var(--space-6);
    padding-bottom: var(--space-5);
  }

  .section-tight {
    padding-top: var(--space-3);
    padding-bottom: var(--space-4);
  }

  #why-us.section {
    padding-top: var(--space-8);
  }

  .container {
    width: calc(100% - var(--space-4));
  }

  .nav-shell {
    padding: var(--space-3);
    border-radius: 24px;
    gap: var(--space-3);
    transition:
      padding var(--normal) var(--ease-out),
      border-radius var(--normal) var(--ease-out),
      gap var(--normal) var(--ease-out),
      box-shadow var(--normal) var(--ease-out);
  }

  .brand {
    min-height: 36px;
  }

  .nav-links {
    justify-self: stretch;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 6px;
    border-radius: 24px;
  }

  #hero-title {
    font-size: clamp(32px, 10vw, 48px);
  }

  .section-head h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

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

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

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

  .lead-flow-wrap {
    padding: var(--space-4);
    border-radius: var(--radius-md);
  }

  .lead-actions {
    flex-direction: column-reverse;
  }

  .primary-btn,
  .ghost-btn {
    width: 100%;
  }

  .project-gallery-controls {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-gallery-thumbs {
    display: flex;
    overflow-x: auto;
    gap: var(--space-2);
    padding-bottom: 2px;
    scroll-snap-type: x proximity;
  }

  .gallery-thumb {
    flex: 0 0 96px;
    scroll-snap-align: start;
  }

  .gallery-nav-btn {
    width: 100%;
    justify-content: center;
  }

  .gallery-gesture-hint {
    text-align: center;
  }

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

  .nav-links a,
  .primary-cta,
  .footer-cta-link,
  .secondary-cta,
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .nav-links a {
    width: auto;
    min-height: 44px;
    padding: 0 var(--space-2);
  }

  .nav-cta {
    width: 100%;
    min-height: 48px;
  }

  body.mobile-header-collapsed .site-header {
    padding-top: var(--space-2);
    padding-bottom: var(--space-1);
  }

  body.mobile-header-collapsed .nav-shell {
    padding: var(--space-2);
    border-radius: 18px;
    gap: var(--space-2);
    box-shadow: 0 8px 16px rgba(18, 32, 24, 0.12);
  }

  body.mobile-header-collapsed .brand,
  body.mobile-header-collapsed .site-header .nav-cta {
    display: none;
  }

  body.mobile-header-collapsed .nav-links {
    margin: 0;
  }

  .mobile-sticky-cta {
    display: block;
  }

  .nav-links.is-pill-ready .nav-active-pill {
    display: none;
  }

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

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .lead-step h2 {
    font-size: clamp(24px, 7.2vw, 30px);
    margin-bottom: var(--space-3);
  }

  .choice-card {
    min-height: 56px;
    padding: var(--space-3) var(--space-4);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
