:root {
  --gp-primary: #2f6b3a;
  --gp-secondary: #6b8a5d;
  --gp-tertiary: #8b6b3e;
  --gp-surface: #f6f3ed;
  --gp-surface-strong: #ffffff;
  --gp-surface-variant: #e1dad0;
  --gp-outline: #767169;
  --gp-text: #1f231d;
  --gp-text-soft: #485046;
  --gp-border: rgba(118, 113, 105, 0.18);
  --gp-shadow: 0 24px 80px rgba(31, 35, 29, 0.12);
  --gp-radius-xl: 32px;
  --gp-radius-lg: 24px;
  --gp-radius-md: 18px;
  --gp-radius-sm: 12px;
  --gp-max-width: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gp-text);
  background:
    radial-gradient(circle at top left, rgba(107, 138, 93, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(47, 107, 58, 0.12), transparent 18%),
    linear-gradient(180deg, #fbfaf7 0%, var(--gp-surface) 38%, #f3efe7 100%);
}

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

.site-shell {
  min-height: 100vh;
}

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

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0 10px;
}

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

.brand-logo,
.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(47, 107, 58, 0.2);
}

.brand-copy,
.footer-left div {
  display: grid;
  gap: 3px;
}

.brand-name {
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.brand-tag,
.header-note,
.footer-left p,
.footer-right {
  color: var(--gp-text-soft);
  font-size: 1rem;
}

.brand-tag {
  line-height: 1.25;
}

.section {
  padding: 44px 0;
}

.section-first {
  padding-top: 8px;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 18px -20px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(118, 113, 105, 0.08);
  border-radius: 40px;
  z-index: -1;
}

.hero,
.plants-grid,
.gps-section,
.intro-grid {
  display: grid;
  gap: 28px;
  align-items: start;
}

.plants-grid,
.gps-section {
  align-items: stretch;
}

.hero,
.plants-grid,
.gps-section {
  grid-template-columns: 1.05fr 0.95fr;
}

.intro-grid {
  grid-template-columns: 1fr 0.95fr;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(47, 107, 58, 0.1);
  color: var(--gp-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 0.92rem;
}

h1,
h2,
h3,
strong {
  letter-spacing: -0.03em;
}

h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.9rem, 5vw, 5rem);
  line-height: 0.96;
  max-width: 12ch;
}

h2 {
  margin: 14px 0 0;
  font-size: clamp(1.9rem, 2.6vw, 2.7rem);
  line-height: 1.08;
  max-width: 24ch;
}

h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

p {
  margin: 0;
  line-height: 1.7;
  color: var(--gp-text-soft);
  font-size: 1.05rem;
}

.hero-lead {
  max-width: 58ch;
  font-size: 1.14rem;
  margin-bottom: 0;
}

.hero-sublead {
  max-width: 56ch;
  padding-top: 1.5rem;
  margin-top: 0;
  margin-bottom: 1.25rem;
}

.hero-kernpunten {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.hero-kernpunt,
.promise-card,
.use-case-card,
.workflow-card {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-md);
  box-shadow: var(--gp-shadow);
}

.hero-kernpunt {
  padding: 16px 16px 18px;
}

.hero-kernpunt strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.hero-kernpunt p {
  font-size: 0.96rem;
  line-height: 1.55;
}

.coming-soon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--gp-border);
  color: var(--gp-text);
  font-size: 0.94rem;
  font-weight: 700;
}

.coming-soon-card {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gp-border);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow);
}

.coming-soon-card strong {
  display: block;
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
}

.hero-visual-stack {
  min-height: 100%;
  padding-right: 30px;
  padding-bottom: 30px;
}

.shot-card,
.proof-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--gp-border);
  border-radius: 30px;
  box-shadow: var(--gp-shadow);
  overflow: hidden;
}

.shot-card-head,
.proof-copy {
  display: grid;
  gap: 6px;
}

.shot-card-head {
  padding: 22px 24px 18px;
}

.shot-card-head.compact {
  padding-bottom: 14px;
}

.shot-card-head small,
.proof-copy p {
  color: var(--gp-text-soft);
  font-size: 0.95rem;
  line-height: 1.6;
}

.overlay-label {
  display: block;
  margin-bottom: 6px;
  color: var(--gp-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.shot-card-hero,
.plants-shot-card,
.gps-shot-card,
.intro-shot-card {
  width: min(100%, 400px);
  margin-left: auto;
}

.hero-shot,
.plants-shot,
.intro-shot,
.gps-shot-contained {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: #ebe7de;
}

.hero-detail-card {
  position: absolute;
  width: min(64%, 280px);
  right: 0;
  bottom: 0;
}

.plants-detail-card {
  position: static;
  width: min(100%, 400px);
  margin-top: auto;
}

.plants-showcase {
  position: relative;
  padding-right: 26px;
  padding-bottom: 26px;
}

.stack-shot,
.workflow-shot,
.proof-shot {
  width: 100%;
  background: linear-gradient(180deg, #f4efe6 0%, #ece5d8 100%);
}

.stack-shot,
.workflow-shot,
.proof-shot {
  object-fit: contain;
  object-position: top center;
}

.stack-shot {
  height: 395px;
  padding: 10px;
}

.gps-detail-card {
  position: static;
  width: min(100%, 400px);
  margin-top: auto;
}

.gps-detail-shot {
  width: 100%;
  height: 395px;
  padding: 10px;
  object-fit: contain;
  object-position: top center;
  background: linear-gradient(180deg, #f4efe6 0%, #ece5d8 100%);
}

.proof-section {
  padding-top: 18px;
}

.proof-grid,
.promise-grid,
.workflow-grid,
.use-case-grid {
  display: grid;
  gap: 18px;
}

.proof-grid,
.promise-grid,
.use-case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card {
  display: grid;
  grid-template-rows: 610px auto;
}

.proof-shot {
  height: 600px;
  padding: 12px;
}

.proof-copy {
  padding: 18px 18px 20px;
}

.proof-copy h3 {
  margin-bottom: 0;
  font-size: 1.12rem;
  line-height: 1.15;
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 28px;
}

.section-heading.narrow {
  max-width: 760px;
}

.section-heading.center {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
}

.section-heading h2,
.section-heading.narrow h2 {
  text-wrap: balance;
}

section:has(.promise-grid) .section-heading h2 {
  max-width: 31ch;
}

.plants-copy {
  gap: 18px;
}

.plants-copy h2 {
  max-width: 28ch;
}

.plants-section {
  padding-top: 18px;
}

.plants-points,
.collab-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.plants-points span,
.collab-points span {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--gp-border);
  color: var(--gp-text);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
}

.intro-block .section-heading h2 {
  max-width: 24ch;
}

.promise-card {
  padding: 24px;
}

.promise-visual {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.promise-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(47, 107, 58, 0.08);
  border: 1px solid rgba(47, 107, 58, 0.14);
  color: var(--gp-primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.workflow-card {
  padding: 16px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  gap: 12px;
  height: 100%;
}

.workflow-card h3 {
  font-size: 1.02rem;
  line-height: 1.18;
  margin: 0;
}

.workflow-card p {
  font-size: 0.94rem;
  line-height: 1.55;
}

.workflow-step {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(47, 107, 58, 0.1);
  color: var(--gp-primary);
  font-size: 0.88rem;
  font-weight: 800;
}

.workflow-shot {
  height: 400px;
  border-radius: 22px;
  border: 1px solid rgba(118, 113, 105, 0.12);
  padding: 10px;
}

.plants-copy,
.gps-copy {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin-bottom: 0;
}

.gps-copy {
  gap: 18px;
}

.plants-shot-card,
.gps-shot-card {
  align-self: end;
}

.use-case-card {
  padding: 24px;
}

.use-case-quote {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(139, 107, 62, 0.13), rgba(107, 138, 93, 0.1));
}

.collaboration-section {
  display: grid;
  gap: 28px;
  align-items: stretch;
  grid-template-columns: 1.05fr 0.95fr;
}

.collaboration-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
  margin-bottom: 0;
}

.collaboration-shot-card {
  width: min(100%, 400px);
  margin-left: auto;
  align-self: end;
}

.collaboration-shot {
  width: 100%;
  height: 395px;
  padding: 10px;
  object-fit: contain;
  object-position: top center;
  background: linear-gradient(180deg, #f4efe6 0%, #ece5d8 100%);
}

.final-section {
  padding-bottom: 36px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 0 40px;
  border-top: 1px solid rgba(118, 113, 105, 0.14);
}

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

.footer-left p {
  margin-top: 3px;
  font-size: 0.95rem;
}

.desktop-break {
  display: none;
}

@media (min-width: 980px) {
  .desktop-break {
    display: block;
  }
}

@media (max-width: 1100px) {
  .hero,
  .plants-grid,
  .gps-section,
  .intro-grid,
  .proof-grid,
  .promise-grid,
  .use-case-grid,
  .collaboration-section {
    grid-template-columns: 1fr;
  }

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

  .shot-card-hero,
  .plants-shot-card,
  .gps-shot-card,
  .intro-shot-card,
  .collaboration-shot-card {
    margin: 0 auto;
    width: min(100%, 620px);
  }

  .hero-visual-stack,
  .plants-showcase {
    padding-right: 0;
    padding-bottom: 0;
  }

  .hero-detail-card {
    position: absolute;
    width: min(64%, 280px);
    right: 0;
    bottom: 0;
  }


  .proof-card {
    grid-template-columns: 220px 1fr;
    grid-template-rows: none;
    align-items: stretch;
  }

  .proof-shot {
    height: 100%;
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-footer,
  .section {
    width: min(calc(100% - 28px), var(--gp-max-width));
  }

  .site-header,
  .site-footer,
  .coming-soon-card {
    flex-direction: column;
    align-items: flex-start;
  }

  h1 {
    max-width: 100%;
  }

  .hero-kernpunten,
  .plants-points,
  .collab-points {
    grid-template-columns: 1fr;
  }

  .proof-card {
    grid-template-columns: 1fr;
    grid-template-rows: 240px auto;
  }

  .proof-shot {
    height: 240px;
    min-height: 0;
  }

  .stack-shot {
    height: 340px;
  }

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

  .workflow-shot {
    height: 280px;
  }
}
