:root {
  /* Core GreenPlot palette */
  --gp-primary: #2f6b3a;
  --gp-primary-deep: #1f4f2b;
  --gp-primary-soft: #dfeadb;
  --gp-primary-mist: #eef5eb;
  --gp-secondary: #6b8a5d;
  --gp-tertiary: #8b6b3e;
  --gp-earth: #8b6b3e;
  --gp-earth-soft: #eee5d7;
  --gp-cream: #fbfaf6;
  --gp-cream-strong: #f6f1e8;
  --gp-white-glass: rgba(255, 255, 255, 0.76);
  --gp-surface: #f6f3ed;
  --gp-surface-strong: #ffffff;
  --gp-surface-variant: #e1dad0;
  --gp-outline: #767169;

  /* Text hierarchy */
  --gp-text: #1f231d;
  --gp-text-soft: #485046;
  --gp-text-muted: #667060;
  --gp-text-faint: #858075;

  /* Lines and elevation */
  --gp-border: rgba(118, 113, 105, 0.18);
  --gp-border-soft: rgba(118, 113, 105, 0.12);
  --gp-border-strong: rgba(47, 107, 58, 0.2);
  --gp-glass-border: rgba(255, 255, 255, 0.66);
  --gp-shadow: 0 24px 80px rgba(31, 35, 29, 0.12);
  --gp-shadow-soft: 0 14px 44px rgba(31, 35, 29, 0.08);
  --gp-shadow-card: 0 18px 54px rgba(31, 35, 29, 0.1);
  --gp-shadow-elevated: 0 28px 84px rgba(31, 35, 29, 0.14);
  --gp-shadow-floating: 0 20px 60px rgba(47, 107, 58, 0.16);

  /* Radius and rhythm */
  --gp-radius-2xl: 40px;
  --gp-radius-xl: 32px;
  --gp-radius-lg: 24px;
  --gp-radius-md: 18px;
  --gp-radius-sm: 12px;
  --gp-max-width: 1220px;
  --gp-section-y: 62px;
  --gp-section-y-tight: 38px;
  --gp-card-padding: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gp-text);
  background:
    radial-gradient(circle at 10% -8%, rgba(47, 107, 58, 0.18), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(139, 107, 62, 0.14), transparent 26%),
    linear-gradient(180deg, var(--gp-cream) 0%, var(--gp-surface) 42%, #f1ece4 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 255, 255, 0.82), transparent 24%),
    radial-gradient(circle at 72% 44%, rgba(47, 107, 58, 0.06), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
}

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

.site-shell {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  z-index: 1;
}

main {
  overflow: hidden;
}

.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: 24px 0 12px;
}

.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;
}

.header-note,
.header-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid var(--gp-border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 10px 28px rgba(31, 35, 29, 0.05);
  font-size: 0.94rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-nav,
.header-actions,
.footer-links,
.footer-meta,
.cta-row,
.badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.header-nav a,
.footer-links a {
  color: var(--gp-text-soft);
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease;
}

.header-nav a:hover,
.footer-links a:hover {
  color: var(--gp-primary-deep);
}

.mobile-nav-toggle {
  display: none;
}

.section {
  padding: var(--gp-section-y) 0;
}

.section-tight {
  padding: var(--gp-section-y-tight) 0;
}

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

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 18px -20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.36));
  border: 1px solid rgba(118, 113, 105, 0.08);
  border-radius: var(--gp-radius-2xl);
  z-index: -1;
  box-shadow: 0 24px 70px rgba(31, 35, 29, 0.05);
}

.premium-card,
.glass-card,
.surface-panel,
.soft-panel,
.hero-kernpunt,
.promise-card,
.use-case-card,
.workflow-card,
.shot-card,
.proof-card,
.coming-soon-card,
.plants-points span,
.collab-points span {
  border: 1px solid var(--gp-border-soft);
}

.premium-card,
.hero-kernpunt,
.promise-card,
.use-case-card,
.workflow-card {
  background: rgba(255, 255, 255, 0.78);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.glass-card,
.coming-soon-card,
.coming-soon-inline {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--gp-glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.surface-panel {
  padding: var(--gp-card-padding);
  border-radius: var(--gp-radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58));
  box-shadow: var(--gp-shadow-card);
}

.soft-panel {
  padding: var(--gp-card-padding);
  border-radius: var(--gp-radius-lg);
  background: rgba(255, 255, 255, 0.58);
}

.lift-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero,
.plants-grid,
.gps-section,
.intro-grid {
  display: grid;
  gap: 32px;
  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,
.micro-label,
.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
}

.eyebrow {
  padding: 8px 14px;
  background: rgba(47, 107, 58, 0.1);
  color: var(--gp-primary-deep);
  letter-spacing: 0.04em;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.micro-label {
  padding: 7px 11px;
  background: rgba(47, 107, 58, 0.08);
  color: var(--gp-primary-deep);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill {
  justify-content: center;
  padding: 9px 13px;
  background: var(--gp-primary-mist);
  border: 1px solid rgba(47, 107, 58, 0.16);
  color: var(--gp-primary-deep);
  font-size: 0.86rem;
}

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.72rem);
  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 {
  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: 1px solid var(--gp-border-soft);
  border-radius: 999px;
  color: var(--gp-text);
  font-size: 0.94rem;
  font-weight: 800;
}

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

.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 {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.7)),
    var(--gp-surface-strong);
  border-radius: 30px;
  box-shadow: var(--gp-shadow-card);
}

.shot-card::after,
.proof-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.shot-card-hero {
  box-shadow: var(--gp-shadow-elevated);
}

.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-deep);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.screenshot-frame,
.device-shot {
  overflow: hidden;
  border: 1px solid rgba(118, 113, 105, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #f4efe6 0%, #ece5d8 100%);
}

.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,
.gps-detail-shot,
.collaboration-shot {
  width: 100%;
  object-fit: contain;
  object-position: top center;
  background: linear-gradient(180deg, #f7f2e9 0%, #ebe4d7 100%);
}

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

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

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

.proof-section {
  padding-top: var(--gp-section-y-tight);
}

.proof-grid,
.promise-grid,
.workflow-grid,
.use-case-grid,
.feature-grid,
.persona-grid,
.tutorial-grid,
.faq-shell,
.faq-group {
  display: grid;
  gap: 18px;
}

.proof-grid,
.promise-grid,
.use-case-grid,
.feature-grid,
.persona-grid,
.tutorial-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: 32px;
}

.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,
.section-intro {
  text-wrap: balance;
}

.section-heading p,
.section-intro {
  max-width: 72ch;
}

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

.plants-copy {
  gap: 18px;
}

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

.plants-section {
  padding-top: var(--gp-section-y-tight);
}

.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.72);
  color: var(--gp-text);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.35;
  box-shadow: 0 10px 28px rgba(31, 35, 29, 0.05);
}

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

.promise-card,
.use-case-card,
.feature-card,
.persona-card,
.tutorial-card,
.faq-item {
  padding: var(--gp-card-padding);
}

.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-deep);
  font-size: 0.88rem;
  font-weight: 800;
}

.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,
.tutorial-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-deep);
  font-size: 0.88rem;
  font-weight: 850;
}

.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-quote {
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(139, 107, 62, 0.13), rgba(107, 138, 93, 0.1));
}

.feature-card,
.persona-card,
.tutorial-card,
.faq-item {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-lg);
  box-shadow: var(--gp-shadow-soft);
}

.persona-card {
  display: grid;
  gap: 14px;
}

.persona-card-meta {
  display: flex;
  align-items: flex-start;
  min-height: 2.45em;
  color: var(--gp-primary-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1.22;
  text-transform: uppercase;
}

.persona-card-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--gp-text-soft);
}

.tutorial-card {
  display: grid;
  gap: 12px;
}

.faq-shell {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.faq-group {
  gap: 12px;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--gp-text);
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.faq-answer {
  margin-top: 12px;
  color: var(--gp-text-soft);
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
}

.primary-cta {
  background: var(--gp-primary-deep);
  color: #fff;
  box-shadow: var(--gp-shadow-floating);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--gp-border-soft);
  color: var(--gp-primary-deep);
}

.collaboration-section {
  display: grid;
  gap: 40px;
  align-items: stretch;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
}

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

.collaboration-shot-card {
  width: min(100%, 520px);
  margin-left: auto;
  align-self: stretch;
  display: grid;
  grid-template-rows: auto minmax(620px, 1fr);
}

.collaboration-shot {
  height: 100%;
  min-height: 620px;
  padding: 14px;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 24px 0 42px;
  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;
}


/* W1 premium hero and navigation layer */
.brand-mark {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: relative;
  align-items: center;
  flex-wrap: wrap;
}

.header-nav {
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--gp-border-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  box-shadow: 0 14px 34px rgba(31, 35, 29, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.94rem;
}

.header-nav a:hover {
  background: rgba(47, 107, 58, 0.08);
}

#product,
#ervaring,
#voor-wie {
  scroll-margin-top: 28px;
}

.hero {
  align-items: center;
  padding-bottom: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 52ch;
  color: var(--gp-text);
  font-size: clamp(1.15rem, 1.55vw, 1.34rem);
  line-height: 1.58;
}

.hero-sublead {
  max-width: 58ch;
  color: var(--gp-text-soft);
}

.hero-actions {
  margin: 8px 0 28px;
}

.hero-actions .primary-cta,
.hero-actions .secondary-cta {
  min-height: 52px;
  padding-inline: 20px;
}

.launch-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--gp-glass-border);
  border-radius: var(--gp-radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--gp-shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.launch-copy {
  display: grid;
  gap: 4px;
}

.launch-copy strong {
  font-size: 1.05rem;
}

.launch-copy p {
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-stage {
  position: relative;
  width: min(100%, 490px);
  margin-left: auto;
  padding: 24px 26px 34px;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 8px 0 0 38px;
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.92), transparent 24%),
    linear-gradient(145deg, rgba(47, 107, 58, 0.16), rgba(139, 107, 62, 0.12));
  box-shadow: 0 32px 95px rgba(47, 107, 58, 0.16);
}

.hero-stage .shot-card-hero {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
}



/* W2 product pillars */
.product-pillars-section {
  position: relative;
  padding-top: var(--gp-section-y-tight);
}

.product-pillars-section::before {
  content: "";
  position: absolute;
  inset: 30px -24px 18px;
  z-index: -1;
  border: 1px solid rgba(118, 113, 105, 0.08);
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 12% 14%, rgba(47, 107, 58, 0.1), transparent 28%),
    radial-gradient(circle at 86% 34%, rgba(139, 107, 62, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0.3));
  box-shadow: 0 26px 80px rgba(31, 35, 29, 0.05);
}

.product-heading {
  max-width: 840px;
}

.product-pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-pillar-card,
.product-pillar-card-highlight {
  grid-column: auto;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
}

.product-pillar-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border-bottom: 1px solid rgba(118, 113, 105, 0.12);
  border-radius: 0;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.82), transparent 22%),
    linear-gradient(180deg, #f7f2e9 0%, #ebe4d7 100%);
}

.product-pillar-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-pillar-shot {
  width: 100%;
  height: 560px;
  padding: 12px;
  object-fit: contain;
  object-position: top center;
  background: transparent;
}

.product-pillar-copy {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px 20px 22px;
}

.product-pillar-copy h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.7vw, 1.55rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.product-pillar-copy p {
  font-size: 0.98rem;
  line-height: 1.62;
}

.product-pillar-list {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.product-pillar-list li {
  position: relative;
  padding-left: 20px;
  color: var(--gp-text-soft);
  font-size: 0.94rem;
  line-height: 1.42;
}

.product-pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gp-primary);
  box-shadow: 0 0 0 4px rgba(47, 107, 58, 0.1);
}

.product-pillar-visual-soft {
  display: grid;
  place-items: center;
  padding: 22px;
}

.product-signal-stack {
  display: grid;
  gap: 12px;
  width: min(100%, 360px);
}

.product-signal-stack span {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 107, 58, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gp-primary-deep);
  font-size: 0.94rem;
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(31, 35, 29, 0.06);
}

.product-signal-stack span:nth-child(even) {
  transform: translateX(20px);
}

@media (hover: hover) {
  .lift-card:hover,
  .promise-card:hover,
  .use-case-card:hover,
  .workflow-card:hover,
  .feature-card:hover,
  .persona-card:hover,
  .tutorial-card:hover,
  .faq-item:hover {
    transform: translateY(-3px);
    border-color: var(--gp-border-strong);
    box-shadow: var(--gp-shadow-card);
  }
}

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

@media (max-width: 1100px) {
  :root {
    --gp-section-y: 54px;
    --gp-section-y-tight: 32px;
  }

  .hero,
  .plants-grid,
  .gps-section,
  .intro-grid,
  .proof-grid,
  .promise-grid,
  .use-case-grid,
  .feature-grid,
  .persona-grid,
  .tutorial-grid,
  .faq-shell,
  .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);
  }

  .collaboration-shot-card {
    grid-template-rows: auto minmax(560px, 1fr);
  }

  .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) {
  :root {
    --gp-section-y: 44px;
    --gp-section-y-tight: 28px;
    --gp-card-padding: 20px;
  }

  .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;
  }

  .header-note,
  .header-pill {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  h1 {
    max-width: 100%;
  }

  h2 {
    max-width: 100%;
  }

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

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

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

  .stack-shot,
  .gps-detail-shot {
    height: 340px;
  }

  .collaboration-shot {
    height: 100%;
    min-height: 560px;
  }

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

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

@media (max-width: 480px) {
  :root {
    --gp-section-y: 38px;
    --gp-card-padding: 18px;
  }

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

  .brand-logo,
  .footer-logo {
    width: 48px;
    height: 48px;
    border-radius: 14px;
  }

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

  .brand-tag,
  .header-note,
  .footer-left p,
  .footer-right {
    font-size: 0.94rem;
  }

  .shot-card,
  .proof-card {
    border-radius: 24px;
  }

  .shot-card-head,
  .proof-copy {
    padding-inline: 18px;
  }

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

  .proof-shot {
    height: 220px;
  }

  .stack-shot,
  .gps-detail-shot {
    height: 310px;
  }

  .collaboration-shot-card {
    grid-template-rows: auto minmax(500px, 1fr);
  }

  .collaboration-shot {
    height: 100%;
    min-height: 500px;
    padding: 10px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}


/* W1 responsive refinements */
@media (max-width: 1100px) {
  .header-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero-stage {
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .header-actions,
  .header-nav {
    width: 100%;
  }

  .header-nav {
    justify-content: flex-start;
    overflow-x: auto;
    padding: 8px;
  }

  .header-nav a {
    white-space: nowrap;
  }

  .hero {
    padding-bottom: 28px;
  }

  .hero-actions {
    align-items: stretch;
    width: 100%;
  }

  .hero-actions .primary-cta,
  .hero-actions .secondary-cta {
    width: 100%;
  }

  .launch-panel {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    display: grid;
    gap: 12px;
    padding: 0;
  }

  .hero-stage::before {
    display: none;
  }

  .hero-stage .shot-card-hero {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-lead {
    font-size: 1.08rem;
  }

  .hero-actions .primary-cta,
  .hero-actions .secondary-cta {
    min-height: 48px;
  }
}


/* W2 product pillar responsive refinements */
@media (max-width: 1100px) {
  .product-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-pillar-visual {
    min-height: 520px;
  }

  .product-pillar-shot {
    height: 520px;
  }
}

@media (max-width: 760px) {
  .product-pillars-section::before {
    inset: 18px -14px 10px;
    border-radius: var(--gp-radius-xl);
  }

  .product-pillar-grid {
    grid-template-columns: 1fr;
  }

  .product-pillar-visual {
    min-height: 500px;
  }

  .product-pillar-shot {
    height: 500px;
  }

  .product-pillar-copy {
    padding: 18px;
  }

  .product-signal-stack span:nth-child(even) {
    transform: none;
  }
}

@media (max-width: 480px) {
  .product-pillar-visual {
    min-height: 430px;
  }

  .product-pillar-shot {
    height: 430px;
    padding: 8px;
  }

  .product-pillar-copy p,
  .product-pillar-list li {
    font-size: 0.92rem;
  }
}

/* W3 start paths and workflow route */
.start-paths-section {
  position: relative;
}

.start-paths-heading {
  max-width: 860px;
}

.start-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.start-path-card {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gp-shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.start-path-card::after {
  content: "";
  position: absolute;
  inset: auto -42px -52px auto;
  width: 138px;
  height: 138px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 107, 58, 0.1), transparent 68%);
  pointer-events: none;
}

.start-path-card-feature {
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 24px;
  align-items: stretch;
  padding: 20px;
  background:
    radial-gradient(circle at 14% 12%, rgba(47, 107, 58, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.82);
}

.start-path-card-secondary {
  grid-column: span 2;
  min-height: 230px;
}

.start-path-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(118, 113, 105, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, #f7f2e9 0%, #ebe4d7 100%);
}

.start-path-shot {
  width: 100%;
  height: 430px;
  padding: 12px;
  object-fit: contain;
  object-position: top center;
  background: transparent;
}

.start-path-copy {
  display: grid;
  gap: 12px;
  align-content: center;
}

.start-path-card h3,
.workflow-strip h3,
.target-card h3 {
  margin: 0;
  font-size: clamp(1.18rem, 1.7vw, 1.48rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.start-path-card p,
.workflow-strip p,
.target-card p,
.target-audience-note p {
  color: var(--gp-text-soft);
  font-size: 0.97rem;
  line-height: 1.62;
}

.start-path-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(47, 107, 58, 0.16);
  border-radius: 999px;
  background: rgba(47, 107, 58, 0.09);
  color: var(--gp-primary-deep);
  font-size: 0.92rem;
  font-weight: 900;
}

.inline-code {
  display: inline-flex;
  padding: 1px 6px;
  border: 1px solid rgba(47, 107, 58, 0.14);
  border-radius: 7px;
  background: rgba(47, 107, 58, 0.07);
  color: var(--gp-primary-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
  font-weight: 800;
}

.workflow-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: start;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-xl);
  background:
    radial-gradient(circle at 88% 16%, rgba(139, 107, 62, 0.1), transparent 30%),
    rgba(255, 255, 255, 0.7);
  box-shadow: var(--gp-shadow-soft);
}

.workflow-strip-copy {
  display: grid;
  gap: 12px;
}

.workflow-steps-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: 14px;
  align-items: center;
  padding: 13px 14px;
  border: 1px solid rgba(47, 107, 58, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.workflow-steps-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--gp-primary-deep);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
}

.workflow-steps-list strong {
  color: var(--gp-text);
  font-size: 0.97rem;
}

.workflow-steps-list small {
  color: var(--gp-text-soft);
  font-size: 0.9rem;
  line-height: 1.35;
}

/* W4 target audience layer */
.target-audience-section {
  position: relative;
  padding-top: var(--gp-section-y-tight);
  padding-bottom: var(--gp-section-y-tight);
}

.target-audience-section::before {
  content: "";
  position: absolute;
  inset: 0 -24px;
  z-index: -1;
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 8% 20%, rgba(47, 107, 58, 0.08), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(139, 107, 62, 0.09), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.28));
  border: 1px solid rgba(118, 113, 105, 0.08);
  box-shadow: 0 26px 80px rgba(31, 35, 29, 0.05);
}

.target-audience-heading {
  max-width: 830px;
  margin-bottom: 30px;
}

.target-audience-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.target-card,
.target-card:nth-child(1),
.target-card:nth-child(2) {
  grid-column: auto;
}

.target-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 318px;
  padding: 28px;
  gap: 14px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
}

.target-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
}

.target-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -68px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  pointer-events: none;
  background: radial-gradient(circle, rgba(47, 107, 58, 0.12), transparent 68%);
}

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

.target-card .persona-card-meta {
  min-height: auto;
  margin-bottom: 2px;
}

.target-card h3 {
  max-width: 24ch;
  margin: 0;
  line-height: 1.16;
}

.target-card p {
  margin: 0;
  line-height: 1.62;
}

.target-card .persona-card-list {
  align-self: end;
  padding-top: 4px;
  padding-left: 0;
  list-style: none;
}

.target-card .persona-card-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.45;
}

.target-card .persona-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gp-primary);
  box-shadow: 0 0 0 4px rgba(47, 107, 58, 0.09);
}

.target-card-voedselbos::after,
.target-card-kwekerijen::after {
  background: radial-gradient(circle, rgba(107, 138, 93, 0.16), transparent 68%);
}

.target-card-agrarisch::after,
.target-card-akkerbouw::after {
  background: radial-gradient(circle, rgba(139, 107, 62, 0.14), transparent 68%);
}

.target-audience-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid var(--gp-glass-border);
  border-radius: var(--gp-radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gp-shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.target-audience-note p {
  margin: 0;
}

@media (hover: hover) {
  .start-path-card:hover,
  .target-card:hover {
    transform: translateY(-3px);
    border-color: var(--gp-border-strong);
    box-shadow: var(--gp-shadow-card);
  }
}

@media (max-width: 1100px) {
  .start-path-grid,
  .target-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .start-path-card-feature,
  .start-path-card-secondary,
  .target-card,
  .target-card:nth-child(1),
  .target-card:nth-child(2) {
    grid-column: auto;
  }

  .target-card {
    min-height: 340px;
  }

  .start-path-card-feature,
  .workflow-strip {
    grid-template-columns: 1fr;
  }

  .start-path-shot {
    height: 380px;
  }
}

@media (max-width: 760px) {
  .start-path-grid,
  .target-audience-grid {
    grid-template-columns: 1fr;
  }

  .target-audience-section::before {
    inset: 0 -14px;
    border-radius: 30px;
  }

  .target-card {
    min-height: auto;
    grid-template-rows: auto;
  }

  .target-card .persona-card-list {
    align-self: auto;
  }

  .target-card .persona-card-meta {
    min-height: auto;
  }

  .start-path-card,
  .target-card,
  .workflow-strip {
    padding: 18px;
  }

  .start-path-shot {
    height: 320px;
  }

  .workflow-steps-list li {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .workflow-steps-list small {
    grid-column: 2;
  }

  .target-audience-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .start-path-card,
  .target-card,
  .workflow-strip {
    border-radius: 22px;
  }

  .start-path-shot {
    height: 290px;
    padding: 8px;
  }

  .workflow-steps-list li {
    padding: 12px;
  }
}

/* W5 homepage FAQ layer */
.faq-section {
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 28px -24px 54px;
  z-index: -1;
  border: 1px solid rgba(118, 113, 105, 0.08);
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 12% 14%, rgba(47, 107, 58, 0.12), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(139, 107, 62, 0.1), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
  box-shadow: 0 26px 80px rgba(31, 35, 29, 0.05);
}

.faq-section .faq-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 34px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 24px;
  margin-bottom: 0;
}

.faq-highlight-panel {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--gp-glass-border);
  border-radius: var(--gp-radius-lg);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--gp-shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.faq-highlight-panel p {
  margin: 0;
  color: var(--gp-text-soft);
  font-size: 0.96rem;
  line-height: 1.58;
}

.faq-section .faq-group {
  display: grid;
  gap: 12px;
}

.faq-section .faq-item {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.faq-section .faq-item[open] {
  border-color: rgba(47, 107, 58, 0.2);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--gp-shadow-card);
}

.faq-section .faq-question {
  min-height: 62px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.faq-section .faq-question::-webkit-details-marker {
  display: none;
}

.faq-section .faq-question span:first-child {
  line-height: 1.28;
}

.faq-section .faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(47, 107, 58, 0.16);
  border-radius: 999px;
  background: var(--gp-primary-mist);
}

.faq-section .faq-icon::before,
.faq-section .faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--gp-primary-deep);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-section .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-section .faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-section .faq-answer {
  margin: 0;
  padding: 0 20px 20px;
}

.faq-section .faq-answer p {
  max-width: 68ch;
  margin: 0;
  color: var(--gp-text-soft);
  font-size: 0.98rem;
  line-height: 1.62;
}

@media (hover: hover) {
  .faq-section .faq-item:hover {
    transform: translateY(-2px);
    border-color: var(--gp-border-strong);
    box-shadow: var(--gp-shadow-card);
  }
}

@media (max-width: 1100px) {
  .faq-section .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }
}

@media (max-width: 760px) {
  .faq-section::before {
    inset: 16px -14px 36px;
    border-radius: 28px;
  }

  .faq-section .faq-shell {
    gap: 22px;
  }

  .faq-section .faq-question {
    min-height: 58px;
    padding: 16px;
  }

  .faq-section .faq-answer {
    padding: 0 16px 17px;
  }

  .faq-highlight-panel {
    padding: 18px;
  }
}

@media (max-width: 480px) {
  .faq-section .faq-item {
    border-radius: 20px;
  }

  .faq-section .faq-question {
    align-items: flex-start;
    gap: 12px;
  }

  .faq-section .faq-icon {
    width: 26px;
    height: 26px;
    margin-top: -2px;
  }
}

/* W6 release support pages: privacy, support, account deletion */
.page-legal .site-header {
  padding-bottom: 18px;
}

.page-legal .header-pill {
  background: rgba(255, 255, 255, 0.7);
}

.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: stretch;
}

.legal-hero-copy,
.legal-summary-card,
.legal-side-card,
.legal-article-card,
.support-topic-card,
.support-checklist-card {
  border: 1px solid var(--gp-border-soft);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gp-shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.legal-hero-copy {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--gp-radius-2xl);
}

.legal-hero-copy::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: 290px;
  height: 290px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 107, 58, 0.16), transparent 68%);
  pointer-events: none;
}

.legal-hero-copy h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 10px 0 16px;
  color: var(--gp-primary-deep);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.legal-hero-copy p {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  color: var(--gp-text-soft);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.62;
}

.legal-meta-row,
.legal-center-actions {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.legal-summary-card {
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--gp-radius-xl);
}

.legal-summary-card h2 {
  margin: 0;
  color: var(--gp-primary-deep);
  font-size: clamp(1.45rem, 2vw, 2rem);
  letter-spacing: -0.035em;
}

.legal-summary-card p,
.legal-summary-card li {
  color: var(--gp-text-soft);
  line-height: 1.58;
}

.legal-summary-card ul,
.legal-article-section ul,
.support-checklist-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-content-section {
  padding-top: 18px;
}

.legal-content-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.legal-side-card {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 16px;
  padding: 22px;
  border-radius: var(--gp-radius-lg);
}

.legal-toc {
  display: grid;
  gap: 8px;
}

.legal-toc a {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--gp-text-soft);
  font-weight: 760;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.legal-toc a:hover {
  color: var(--gp-primary-deep);
  background: var(--gp-primary-mist);
  border-color: rgba(47, 107, 58, 0.14);
}

.legal-article-card {
  display: grid;
  gap: 30px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--gp-radius-2xl);
}

.legal-article-section {
  scroll-margin-top: 28px;
}

.legal-article-section + .legal-article-section {
  padding-top: 28px;
  border-top: 1px solid var(--gp-border-soft);
}

.legal-article-section h2,
.support-topic-card h2,
.support-checklist-card h3 {
  margin: 0 0 12px;
  color: var(--gp-primary-deep);
  letter-spacing: -0.035em;
}

.legal-article-section h2 {
  font-size: clamp(1.55rem, 2vw, 2.2rem);
}

.legal-article-section h3 {
  margin: 0 0 8px;
  color: var(--gp-text);
  font-size: 1.02rem;
}

.legal-article-section p,
.legal-article-section li,
.support-topic-card p,
.support-checklist-card li {
  color: var(--gp-text-soft);
  font-size: 1rem;
  line-height: 1.64;
}

.legal-article-section p {
  margin: 0 0 14px;
}

.legal-article-section p:last-child {
  margin-bottom: 0;
}

.legal-article-section a,
.support-topic-card a,
.support-checklist-card a {
  color: var(--gp-primary-deep);
  font-weight: 800;
  text-decoration-color: rgba(47, 107, 58, 0.3);
  text-underline-offset: 3px;
}

.legal-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.legal-info-grid article {
  padding: 18px;
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-md);
  background: rgba(246, 243, 237, 0.58);
}

.legal-info-grid p {
  margin: 0;
  font-size: 0.96rem;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.support-topic-card,
.support-checklist-card {
  padding: 24px;
  border-radius: var(--gp-radius-xl);
}

.support-topic-card h2 {
  font-size: 1.35rem;
}

.support-topic-card p {
  margin: 0;
}

.support-detail-section .section-heading {
  margin-bottom: 24px;
}

.support-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-checklist-card h3 {
  font-size: 1.26rem;
}

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

.legal-steps-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-md);
  background: rgba(246, 243, 237, 0.58);
}

.legal-steps-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--gp-primary-deep);
  border-radius: 999px;
  font-weight: 850;
}

.legal-steps-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gp-text);
}

.legal-steps-list p {
  margin: 0;
}

.legal-final-section .section-heading {
  display: grid;
  justify-items: center;
}

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

.footer-meta {
  justify-content: flex-end;
  text-align: right;
}

.footer-meta #current-year,
.footer-legal-line,
.footer-registration-line {
  width: 100%;
}

.footer-legal-line,
.footer-registration-line {
  color: var(--gp-text-faint);
  line-height: 1.45;
}

.footer-legal-line {
  font-size: 0.9rem;
}

.footer-registration-line {
  font-size: 0.78rem;
  opacity: 0.82;
}

@media (hover: hover) {
  .support-topic-card:hover,
  .support-checklist-card:hover {
    transform: translateY(-2px);
    border-color: var(--gp-border-strong);
    box-shadow: var(--gp-shadow-card);
  }
}

@media (max-width: 1100px) {
  .legal-hero,
  .legal-content-grid {
    grid-template-columns: 1fr;
  }

  .legal-side-card {
    position: static;
  }

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

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

@media (max-width: 760px) {
  .legal-hero-copy,
  .legal-summary-card,
  .legal-article-card,
  .support-topic-card,
  .support-checklist-card {
    border-radius: 24px;
  }

  .legal-hero-copy,
  .legal-summary-card,
  .legal-article-card {
    padding: 20px;
  }

  .legal-hero-copy h1 {
    font-size: clamp(2.2rem, 15vw, 3.3rem);
  }

  .legal-meta-row,
  .legal-center-actions {
    align-items: stretch;
  }

  .legal-meta-row > *,
  .legal-center-actions > * {
    width: 100%;
  }

  .legal-toc,
  .legal-info-grid,
  .support-grid,
  .support-checklist-grid {
    grid-template-columns: 1fr;
  }

  .support-topic-card,
  .support-checklist-card {
    padding: 20px;
  }

  .site-footer {
    gap: 22px;
  }

  .footer-meta {
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .legal-steps-list li {
    grid-template-columns: 1fr;
  }

  .legal-steps-list li > span {
    width: 30px;
    height: 30px;
  }
}


/* W7 handleiding / tutorial hub */
.page-guide .site-header {
  padding-bottom: 18px;
}

.guide-hero .legal-hero-copy h1 {
  max-width: 820px;
}

.guide-summary-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.guide-route-grid,
.guide-category-grid,
.guide-detail-grid,
.guide-screenshot-grid {
  display: grid;
  gap: 18px;
}

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

.guide-route-card,
.guide-category-card,
.guide-detail-card,
.guide-screenshot-card {
  border: 1px solid var(--gp-border-soft);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gp-shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.guide-route-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 24px;
  border-radius: var(--gp-radius-xl);
}

.guide-route-card h3,
.guide-category-card h3,
.guide-detail-card h3,
.guide-screenshot-card h3 {
  margin: 0;
  color: var(--gp-primary-deep);
  letter-spacing: -0.035em;
}

.guide-route-card p,
.guide-detail-card p,
.guide-screenshot-card p,
.guide-blueprint-list p,
.guide-link-list a,
.guide-detail-card li {
  color: var(--gp-text-soft);
  line-height: 1.62;
}

.guide-route-card p,
.guide-screenshot-card p {
  margin: 0;
}

.guide-route-card a,
.guide-link-list a {
  color: var(--gp-primary-deep);
  font-weight: 850;
  text-decoration-color: rgba(47, 107, 58, 0.3);
  text-underline-offset: 3px;
}

.guide-blueprint-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 30px;
  align-items: start;
}

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

.guide-blueprint-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-lg);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--gp-shadow-soft);
}

.guide-blueprint-list li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: var(--gp-primary-deep);
  border-radius: 999px;
  font-weight: 850;
}

.guide-blueprint-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gp-text);
}

.guide-blueprint-list p {
  margin: 0;
}

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

.guide-category-card {
  display: grid;
  gap: 18px;
  padding: 26px;
  border-radius: var(--gp-radius-xl);
}

.guide-category-head {
  display: grid;
  gap: 8px;
}

.guide-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-link-list a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(47, 107, 58, 0.12);
  border-radius: 999px;
  background: var(--gp-primary-mist);
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.guide-detail-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 24px;
  border-radius: var(--gp-radius-xl);
  scroll-margin-top: 28px;
}

.guide-detail-card p {
  margin: 0;
}

.guide-detail-card ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
}

.guide-screenshot-note {
  padding: 14px;
  border: 1px solid rgba(47, 107, 58, 0.12);
  border-radius: var(--gp-radius-md);
  background: var(--gp-primary-mist);
  color: var(--gp-primary-deep) !important;
  font-size: 0.94rem;
  font-weight: 760;
}

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

.guide-screenshot-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: var(--gp-radius-xl);
}

.guide-mini-shot {
  width: 118px;
  height: 160px;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(118, 113, 105, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, #f7f2e9 0%, #ebe4d7 100%);
  box-shadow: 0 16px 34px rgba(31, 35, 29, 0.08);
}

.guide-screenshot-card div {
  display: grid;
  gap: 8px;
}

@media (hover: hover) {
  .guide-route-card:hover,
  .guide-category-card:hover,
  .guide-detail-card:hover,
  .guide-screenshot-card:hover {
    transform: translateY(-2px);
    border-color: var(--gp-border-strong);
    box-shadow: var(--gp-shadow-card);
  }

  .guide-link-list a:hover {
    color: #fff;
    background: var(--gp-primary-deep);
    border-color: var(--gp-primary-deep);
  }
}

@media (max-width: 1100px) {
  .guide-route-grid,
  .guide-detail-grid,
  .guide-screenshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guide-blueprint-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .guide-route-grid,
  .guide-category-grid,
  .guide-detail-grid,
  .guide-screenshot-grid,
  .guide-link-list {
    grid-template-columns: 1fr;
  }

  .guide-route-card,
  .guide-category-card,
  .guide-detail-card {
    padding: 20px;
    border-radius: 24px;
  }

  .guide-blueprint-list li {
    padding: 16px;
  }

  .guide-screenshot-card {
    grid-template-columns: 96px minmax(0, 1fr);
    padding: 16px;
    border-radius: 24px;
  }

  .guide-mini-shot {
    width: 96px;
    height: 132px;
    border-radius: 18px;
  }
}

@media (max-width: 480px) {
  .guide-blueprint-list li,
  .guide-screenshot-card {
    grid-template-columns: 1fr;
  }

  .guide-mini-shot {
    width: 100%;
    height: 210px;
  }
}


/* W8 launch polish, SEO-ready CTA and store placeholders */
.launch-store-panel {
  width: min(100%, 860px);
  margin: 28px auto 0;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 18px;
  align-items: center;
  text-align: left;
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(238, 245, 235, 0.7)),
    radial-gradient(circle at 12% 0%, rgba(47, 107, 58, 0.14), transparent 38%);
  box-shadow: var(--gp-shadow-card);
}

.launch-store-copy {
  display: grid;
  gap: 6px;
}

.launch-store-copy strong {
  font-size: 1.08rem;
  letter-spacing: -0.01em;
}

.launch-store-copy p {
  margin: 0;
  color: var(--gp-text-soft);
  line-height: 1.55;
}

.store-placeholder-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.store-placeholder-card {
  min-width: 138px;
  padding: 13px 15px;
  display: grid;
  gap: 2px;
  border: 1px solid rgba(31, 79, 43, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 32px rgba(31, 35, 29, 0.07);
}

.store-placeholder-card small {
  color: var(--gp-text-muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-placeholder-card strong {
  color: var(--gp-primary-deep);
  font-size: 1rem;
}

.store-placeholder-card em {
  color: var(--gp-text-soft);
  font-size: 0.86rem;
  font-style: normal;
}

@media (max-width: 760px) {
  .launch-store-panel {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .store-placeholder-row {
    justify-content: stretch;
  }

  .store-placeholder-card {
    flex: 1 1 150px;
  }
}

@media (max-width: 480px) {
  .launch-store-panel {
    padding: 15px;
    border-radius: var(--gp-radius-lg);
  }

  .store-placeholder-card {
    min-width: 100%;
  }
}

/* W8e support feature cards: larger inline screenshots for plant dossier and search */
.plants-copy,
.gps-copy {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  height: 100%;
  margin-bottom: 0;
}

.support-feature-card.plants-detail-card,
.support-feature-card.gps-detail-card {
  width: 100%;
  max-width: none;
  margin-top: auto;
  display: grid;
  grid-template-columns: minmax(255px, 0.92fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 420px;
}

.support-feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  border-right: 1px solid rgba(118, 113, 105, 0.12);
  background: linear-gradient(180deg, #f4efe6 0%, #ebe4d7 100%);
}

.support-feature-shot.stack-shot,
.support-feature-shot.gps-detail-shot {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 460px;
  padding: 14px;
  object-fit: contain;
  object-position: top center;
  background: transparent;
}

.support-feature-copy {
  align-content: center;
  padding: 24px 26px;
}

.support-feature-copy strong {
  max-width: 18ch;
  font-size: 1.12rem;
  line-height: 1.25;
}

.support-feature-copy small {
  max-width: 30ch;
}

@media (max-width: 1100px) {
  .support-feature-card.plants-detail-card,
  .support-feature-card.gps-detail-card {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .support-feature-card.plants-detail-card,
  .support-feature-card.gps-detail-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .support-feature-visual {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid rgba(118, 113, 105, 0.12);
  }

  .support-feature-shot.stack-shot,
  .support-feature-shot.gps-detail-shot {
    height: 330px;
    min-height: 330px;
    max-height: 330px;
    padding: 12px;
  }

  .support-feature-copy {
    padding: 20px 22px 22px;
  }

  .support-feature-copy strong,
  .support-feature-copy small {
    max-width: none;
  }
}

@media (max-width: 480px) {
  .support-feature-visual {
    min-height: 300px;
  }

  .support-feature-shot.stack-shot,
  .support-feature-shot.gps-detail-shot {
    height: 300px;
    min-height: 300px;
    max-height: 300px;
  }
}

/* W8j plant dossier alignment: match lower edge with the main plants screenshot card */
@media (min-width: 1101px) {
  .plants-section .plants-copy {
    padding-bottom: 26px;
  }
}

/* W9 schematisch starten tutorial detail page */
.page-tutorial-detail .site-header {
  padding-bottom: 18px;
}

.tutorial-hero-section {
  padding-top: 22px;
}

.tutorial-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(47, 107, 58, 0.11), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(247, 242, 233, 0.76));
  box-shadow: var(--gp-shadow-soft);
  overflow: hidden;
}

.tutorial-hero-copy {
  display: grid;
  gap: 18px;
  max-width: 760px;
}

.back-link {
  width: fit-content;
  color: var(--gp-primary-deep);
  font-weight: 850;
  text-decoration: none;
  text-decoration-color: rgba(47, 107, 58, 0.26);
  text-underline-offset: 4px;
}

.tutorial-hero-copy h1 {
  margin: 0;
  color: var(--gp-text);
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.tutorial-hero-copy p,
.tutorial-context-card p,
.tutorial-step-copy p,
.tutorial-next-card p {
  margin: 0;
  color: var(--gp-text-soft);
  line-height: 1.72;
}

.tutorial-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.tutorial-badge-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(47, 107, 58, 0.13);
  border-radius: 999px;
  background: var(--gp-primary-mist);
  color: var(--gp-primary-deep);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.tutorial-hero-shot {
  display: flex;
  justify-content: center;
}

.tutorial-phone-frame {
  width: min(100%, 330px);
  padding: 14px;
  border: 1px solid rgba(118, 113, 105, 0.14);
  border-radius: 36px;
  background: linear-gradient(180deg, #f7f2e9 0%, #ebe4d7 100%);
  box-shadow: 0 24px 58px rgba(31, 35, 29, 0.12);
}

.tutorial-phone-frame-large {
  width: min(100%, 360px);
}

.tutorial-phone-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  object-position: top center;
  border-radius: 24px;
  box-shadow: inset 0 0 0 1px rgba(31, 35, 29, 0.08);
}

.tutorial-context-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 18px;
}

.tutorial-context-card,
.tutorial-next-card {
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-xl);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--gp-shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.tutorial-context-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
}

.tutorial-context-card h2 {
  margin: 0;
  color: var(--gp-text);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.tutorial-context-card-muted {
  background:
    radial-gradient(circle at 88% 18%, rgba(47, 107, 58, 0.09), transparent 36%),
    rgba(255, 255, 255, 0.76);
}

.tutorial-context-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tutorial-context-card li {
  position: relative;
  padding-left: 24px;
  color: var(--gp-text-soft);
  line-height: 1.56;
}

.tutorial-context-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gp-primary);
  box-shadow: 0 0 0 4px rgba(47, 107, 58, 0.1);
}

.tutorial-step-list {
  display: grid;
  gap: 22px;
}

.tutorial-step-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.54fr);
  gap: clamp(24px, 4vw, 50px);
  align-items: center;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--gp-border-soft);
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 92% 12%, rgba(47, 107, 58, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--gp-shadow-soft);
}

.tutorial-step-copy {
  display: grid;
  gap: 14px;
  max-width: 660px;
}

.tutorial-step-copy h3,
.tutorial-next-card h3 {
  margin: 0;
  color: var(--gp-text);
  letter-spacing: -0.045em;
}

.tutorial-step-copy h3 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.tutorial-step-card .tutorial-phone-frame {
  justify-self: center;
}

.tutorial-next-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tutorial-next-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-card-link {
  width: fit-content;
  color: var(--gp-primary-deep);
  font-weight: 850;
  text-decoration-color: rgba(47, 107, 58, 0.3);
  text-underline-offset: 3px;
}

@media (hover: hover) {
  .back-link:hover,
  .guide-card-link:hover {
    text-decoration: underline;
  }

  .tutorial-next-card:hover {
    transform: translateY(-2px);
    border-color: var(--gp-border-strong);
    box-shadow: var(--gp-shadow-card);
  }
}

@media (max-width: 1100px) {
  .tutorial-hero-grid,
  .tutorial-step-card,
  .tutorial-context-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-hero-shot,
  .tutorial-step-card .tutorial-phone-frame {
    justify-self: center;
  }

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

@media (max-width: 760px) {
  .tutorial-hero-grid,
  .tutorial-step-card {
    padding: 22px;
    border-radius: 28px;
  }

  .tutorial-hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.5rem);
  }

  .tutorial-next-grid {
    grid-template-columns: 1fr;
  }

  .tutorial-phone-frame,
  .tutorial-phone-frame-large {
    width: min(100%, 310px);
    border-radius: 30px;
  }

  .tutorial-phone-frame img {
    max-height: 610px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .tutorial-hero-grid,
  .tutorial-step-card,
  .tutorial-context-card,
  .tutorial-next-card {
    padding: 18px;
  }

  .tutorial-badge-row span {
    width: 100%;
    justify-content: center;
  }
}


/* P10 memory walk landingpage: premium app proof + terrain-memory story */
.page-memory-walk #ervaring,
.page-memory-walk #bewijs,
.page-memory-walk #product,
.page-memory-walk #voor-wie,
.page-memory-walk #faq {
  scroll-margin-top: 32px;
}

.page-memory-walk .site-shell {
  background:
    radial-gradient(circle at 78% 4%, rgba(47, 107, 58, 0.08), transparent 24%),
    radial-gradient(circle at 14% 15%, rgba(139, 107, 62, 0.08), transparent 28%);
}

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

.mw-section-heading.center {
  justify-items: center;
  text-align: center;
  margin-inline: auto;
  max-width: 820px;
}

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

.mw-section-heading-row {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  align-items: end;
  gap: clamp(24px, 5vw, 70px);
}

.mw-section-heading h2,
.mw-origin-copy h2,
.mw-final-panel h2 {
  margin-top: 12px;
  max-width: 18ch;
  letter-spacing: -0.055em;
}

.mw-section-heading p,
.mw-origin-copy p {
  max-width: 68ch;
}

.mw-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
  min-height: calc(100vh - 104px);
  padding-bottom: 42px;
}

.mw-hero-copy {
  position: relative;
  z-index: 2;
}

.mw-hero h1 {
  max-width: 9.6ch;
  margin: 20px 0 18px;
  font-size: clamp(3.45rem, 7vw, 6.8rem);
  line-height: 0.88;
  letter-spacing: -0.078em;
}

.mw-hero .hero-lead {
  max-width: 54ch;
  color: #252c24;
  font-size: clamp(1.2rem, 1.6vw, 1.42rem);
  line-height: 1.55;
}

.mw-hero .hero-sublead {
  max-width: 60ch;
  padding-top: 1.15rem;
  margin-bottom: 0;
}

.mw-hero .hero-actions {
  margin: 28px 0 0;
}

.mw-hero-note {
  display: grid;
  gap: 8px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid rgba(118, 113, 105, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--gp-shadow-soft);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mw-hero-note strong {
  color: var(--gp-primary-deep);
  font-size: 1.04rem;
}

.mw-hero-note span {
  color: var(--gp-text-soft);
  line-height: 1.58;
}

.mw-hero-visual {
  position: relative;
}

.mw-hero-stage {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 720px;
  padding: 28px 0;
}

.mw-hero-stage::before {
  content: "";
  position: absolute;
  inset: 32px 44px 48px;
  border-radius: 54px;
  background:
    radial-gradient(circle at 38% 12%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(135deg, rgba(47, 107, 58, 0.13), rgba(139, 107, 62, 0.12));
  box-shadow: 0 34px 110px rgba(31, 35, 29, 0.13);
}

.mw-hero-main-card,
.mw-hero-mini-card,
.mw-proof-card,
.mw-scene-shot-card,
.mw-origin-visuals figure,
.mw-start-grid article,
.mw-problem-panel,
.mw-origin-panel,
.mw-final-panel {
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--gp-shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mw-hero-main-card,
.mw-hero-mini-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin: 0;
  border-radius: 36px;
}

.mw-hero-main-card {
  width: min(100%, 430px);
  padding: 18px 18px 0;
}

.mw-hero-main-shot,
.mw-hero-mini-shot,
.mw-proof-shot,
.mw-scene-shot,
.mw-origin-visuals img,
.mw-start-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  background: linear-gradient(180deg, #f7f2e9 0%, #ebe4d7 100%);
}

.mw-hero-main-shot {
  border-radius: 26px 26px 0 0;
}

.mw-hero-main-card .overlay-label {
  position: absolute;
  left: 34px;
  top: 32px;
  z-index: 4;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
}

.mw-hero-main-card figcaption,
.mw-hero-mini-card figcaption {
  color: var(--gp-text-soft);
  font-weight: 800;
  line-height: 1.45;
}

.mw-hero-main-card figcaption {
  padding: 16px 18px 18px;
}

.mw-hero-mini-card {
  position: absolute;
  width: 190px;
  padding: 10px 10px 0;
}

.mw-hero-mini-card figcaption {
  padding: 10px 12px 12px;
  font-size: 0.9rem;
}

.mw-hero-mini-shot {
  max-height: 245px;
  border-radius: 20px 20px 0 0;
}

.mw-hero-mini-card-top {
  right: 8px;
  top: 74px;
}

.mw-hero-mini-card-bottom {
  left: 8px;
  bottom: 74px;
}

.mw-proof-strip-section {
  padding-top: 34px;
}

.mw-proof-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.mw-proof-card {
  display: grid;
  grid-template-rows: 430px auto;
  overflow: hidden;
  border-radius: 30px;
}

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

.mw-proof-card div {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.mw-proof-card span,
.mw-scene-number,
.mw-compare-label {
  color: var(--gp-primary-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mw-proof-card strong {
  font-size: 1.12rem;
}

.mw-proof-card small {
  color: var(--gp-text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.mw-problem-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 8% 8%, rgba(47, 107, 58, 0.08), transparent 32%),
    rgba(255, 255, 255, 0.66);
}

.mw-problem-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mw-problem-compare article {
  padding: 22px;
  border: 1px solid var(--gp-border-soft);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
}

.mw-problem-compare ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 1.1rem;
  color: var(--gp-text-soft);
  line-height: 1.58;
}

.mw-compare-positive {
  background: rgba(238, 245, 235, 0.82) !important;
}

.mw-scene-list {
  display: grid;
  gap: 24px;
}

.mw-scene-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid rgba(118, 113, 105, 0.1);
  border-radius: var(--gp-radius-2xl);
  background: rgba(255, 255, 255, 0.44);
}

.mw-scene-card-reverse {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
}

.mw-scene-card-reverse .mw-scene-shot-card {
  order: 2;
}

.mw-scene-card-reverse .mw-scene-copy {
  order: 1;
}

.mw-scene-shot-card {
  overflow: hidden;
  margin: 0;
  padding: 14px 14px 0;
  border-radius: 34px;
}

.mw-scene-shot {
  max-height: 640px;
  border-radius: 24px 24px 0 0;
}

.mw-scene-copy {
  display: grid;
  gap: 14px;
  max-width: 640px;
}

.mw-scene-copy h3 {
  margin: 0;
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.mw-scene-copy p {
  max-width: 54ch;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
}

.mw-origin-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.8fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 107, 58, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.46));
}

.mw-origin-copy {
  display: grid;
  gap: 18px;
}

.mw-origin-copy blockquote {
  margin: 8px 0 0;
  color: var(--gp-primary-deep);
  font-size: clamp(1.45rem, 2.4vw, 2.25rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.mw-origin-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: end;
}

.mw-origin-visuals figure {
  overflow: hidden;
  margin: 0;
  padding: 12px 12px 0;
  border-radius: 30px;
}

.mw-origin-visuals img {
  max-height: 540px;
  border-radius: 20px 20px 0 0;
}

.mw-trust-grid,
.mw-pillars-grid,
.mw-audience-grid {
  display: grid;
  gap: 16px;
}

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

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

.mw-audience-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.mw-trust-grid article,
.mw-pillars-grid article,
.mw-audience-grid article {
  padding: 22px;
  border: 1px solid var(--gp-border-soft);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--gp-shadow-soft);
}

.mw-trust-grid article {
  min-height: 190px;
}

.mw-pillars-grid article,
.mw-audience-grid article {
  min-height: 168px;
}

.mw-trust-grid h3,
.mw-pillars-grid h3,
.mw-audience-grid h3 {
  margin: 0 0 10px;
  line-height: 1.15;
}

.mw-trust-grid p,
.mw-pillars-grid p,
.mw-audience-grid p {
  font-size: 0.96rem;
  line-height: 1.58;
}

.mw-start-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.mw-start-grid article {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: 18px;
  border-radius: 32px;
}

.mw-start-grid img {
  max-height: 410px;
  padding: 10px;
  border-radius: 24px;
}

.mw-start-grid article div {
  display: grid;
  gap: 12px;
}

.mw-start-grid h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
}

.mw-faq-section .faq-intro a {
  color: var(--gp-primary-deep);
  font-weight: 850;
}

.mw-final-panel {
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 50% 0%, rgba(47, 107, 58, 0.13), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.5));
}

.mw-final-panel .store-placeholder-row {
  justify-content: center;
  margin-top: 8px;
}

@media (hover: hover) {
  .mw-proof-card,
  .mw-scene-card,
  .mw-trust-grid article,
  .mw-pillars-grid article,
  .mw-audience-grid article,
  .mw-start-grid article {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .mw-proof-card:hover,
  .mw-trust-grid article:hover,
  .mw-pillars-grid article:hover,
  .mw-audience-grid article:hover,
  .mw-start-grid article:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 107, 58, 0.2);
    box-shadow: var(--gp-shadow-card);
  }
}

@media (max-width: 1180px) {
  .mw-pillars-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

@media (max-width: 1100px) {
  .mw-hero,
  .mw-problem-panel,
  .mw-origin-panel,
  .mw-section-heading-row {
    grid-template-columns: 1fr;
  }

  .mw-hero {
    min-height: auto;
  }

  .mw-hero-stage {
    min-height: 680px;
  }

  .mw-proof-strip,
  .mw-trust-grid,
  .mw-pillars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mw-scene-card,
  .mw-scene-card-reverse {
    grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  }

  .mw-scene-card-reverse .mw-scene-shot-card,
  .mw-scene-card-reverse .mw-scene-copy {
    order: initial;
  }

  .mw-start-grid,
  .mw-problem-compare {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .page-memory-walk .section {
    padding: 46px 0;
  }

  .mw-hero h1 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .mw-hero .hero-actions,
  .mw-final-panel .legal-center-actions {
    align-items: stretch;
  }

  .mw-hero .primary-cta,
  .mw-hero .secondary-cta,
  .mw-final-panel .primary-cta,
  .mw-final-panel .secondary-cta {
    width: 100%;
  }

  .mw-hero-stage {
    min-height: auto;
    padding: 0;
  }

  .mw-hero-stage::before {
    inset: 30px 8px;
  }

  .mw-hero-main-card {
    width: min(100%, 380px);
  }

  .mw-hero-mini-card {
    position: relative;
    inset: auto;
    width: min(100%, 300px);
    margin-top: 14px;
  }

  .mw-proof-strip,
  .mw-trust-grid,
  .mw-pillars-grid,
  .mw-audience-grid,
  .mw-scene-card,
  .mw-scene-card-reverse,
  .mw-start-grid article,
  .mw-origin-visuals {
    grid-template-columns: 1fr;
  }

  .mw-proof-card {
    grid-template-rows: 320px auto;
  }

  .mw-proof-shot {
    height: 320px;
  }

  .mw-scene-card {
    padding: 18px;
    border-radius: 30px;
  }

  .mw-scene-shot {
    max-height: 560px;
  }

  .mw-problem-panel,
  .mw-origin-panel,
  .mw-final-panel {
    padding: 24px;
    border-radius: 30px;
  }

  .mw-start-grid img {
    max-height: 360px;
  }
}

@media (max-width: 480px) {
  .mw-hero h1 {
    font-size: clamp(2.72rem, 17vw, 3.9rem);
  }

  .mw-section-heading h2,
  .mw-origin-copy h2,
  .mw-final-panel h2 {
    max-width: 100%;
  }

  .mw-hero-main-card,
  .mw-hero-mini-card,
  .mw-proof-card,
  .mw-scene-shot-card,
  .mw-origin-visuals figure {
    border-radius: 24px;
  }

  .mw-proof-card {
    grid-template-rows: 280px auto;
  }

  .mw-proof-shot {
    height: 280px;
  }

  .mw-scene-shot {
    max-height: 500px;
  }
}


/* W10 hero overlap fix: structured product wall instead of fragile absolute overlays */
@media (min-width: 861px) {
  .page-memory-walk .mw-hero-visual {
    overflow: visible;
  }

  .page-memory-walk .mw-hero-stage,
  .page-memory-walk .mw-hero-stage-grid {
    display: grid;
    grid-template-columns: minmax(350px, 440px) minmax(142px, 178px);
    grid-template-rows: auto auto;
    gap: 18px;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 24px 0 26px;
  }

  .page-memory-walk .mw-hero-main-card {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    width: 100%;
    max-width: 440px;
    justify-self: end;
    z-index: 2;
  }

  .page-memory-walk .mw-hero-main-card .overlay-label {
    position: static;
    width: fit-content;
    margin: 0 0 10px;
  }

  .page-memory-walk .mw-hero-mini,
  .page-memory-walk .mw-hero-mini-card,
  .page-memory-walk .mw-hero-mini-card-top,
  .page-memory-walk .mw-hero-mini-card-bottom {
    position: relative;
    inset: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 178px;
    transform: none;
    z-index: 3;
  }

  .page-memory-walk .mw-hero-mini-card-top,
  .page-memory-walk .mw-hero-mini:first-of-type {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    justify-self: start;
  }

  .page-memory-walk .mw-hero-mini-card-bottom,
  .page-memory-walk .mw-hero-mini:last-of-type {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: start;
  }

  .page-memory-walk .mw-hero-mini img,
  .page-memory-walk .mw-hero-mini-shot {
    max-height: 205px;
    object-fit: contain;
    object-position: top center;
  }

  .page-memory-walk .mw-hero-mini figcaption,
  .page-memory-walk .mw-hero-mini-caption {
    padding: 10px 12px 12px;
    font-size: 0.82rem;
    line-height: 1.35;
  }
}

@media (min-width: 861px) and (max-width: 1120px) {
  .page-memory-walk .mw-hero-stage,
  .page-memory-walk .mw-hero-stage-grid {
    grid-template-columns: minmax(310px, 390px) minmax(132px, 160px);
    gap: 14px;
  }

  .page-memory-walk .mw-hero-main-card {
    max-width: 390px;
  }

  .page-memory-walk .mw-hero-mini,
  .page-memory-walk .mw-hero-mini-card,
  .page-memory-walk .mw-hero-mini-card-top,
  .page-memory-walk .mw-hero-mini-card-bottom {
    max-width: 160px;
  }

  .page-memory-walk .mw-hero-mini img,
  .page-memory-walk .mw-hero-mini-shot {
    max-height: 185px;
  }
}

@media (max-width: 860px) {
  .page-memory-walk .mw-hero-stage,
  .page-memory-walk .mw-hero-stage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: center;
    min-height: auto;
  }

  .page-memory-walk .mw-hero-main-card,
  .page-memory-walk .mw-hero-mini,
  .page-memory-walk .mw-hero-mini-card,
  .page-memory-walk .mw-hero-mini-card-top,
  .page-memory-walk .mw-hero-mini-card-bottom {
    position: relative;
    inset: auto;
    width: min(100%, 390px);
    max-width: 390px;
    transform: none;
  }
}


/* W11 hero simplification: no mini-screenshots in the hero */
.page-memory-walk .mw-hero-stage,
.page-memory-walk .mw-hero-stage-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  min-height: auto;
  padding: 24px 0 26px;
}

.page-memory-walk .mw-hero-main-card {
  grid-column: 1;
  grid-row: auto;
  width: min(100%, 460px);
  max-width: 460px;
  justify-self: center;
}

.page-memory-walk .mw-hero-stage::before,
.page-memory-walk .mw-hero-stage-grid::before {
  inset: 30px 34px 44px;
}

@media (max-width: 760px) {
  .page-memory-walk .mw-hero-main-card {
    width: min(100%, 390px);
    max-width: 390px;
  }

  .page-memory-walk .mw-hero-stage,
  .page-memory-walk .mw-hero-stage-grid {
    padding: 0;
  }
}



/* GreenPlot header typography lock: keep the logo text identical on every public page. */
.site-header .brand-name,
.site-header .brand-tag {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Mobile navigation fix: keep the primary navigation as a compact horizontal chip rail instead of a tall wrapped blob. */
@media (max-width: 760px) {
  .site-header {
    gap: 12px;
    padding-top: 18px;
  }

  .site-header .brand-mark {
    width: 100%;
    min-width: 0;
  }

  .header-actions {
    order: 2;
  }

  .header-nav {
    order: 3;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 8px;
    border-radius: 24px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .header-nav::-webkit-scrollbar {
    display: none;
  }

  .header-nav a {
    flex: 0 0 auto;
    white-space: nowrap;
    scroll-snap-align: start;
  }
}

@media (max-width: 480px) {
  .header-nav {
    margin-inline: -2px;
    width: calc(100% + 4px);
    padding: 7px;
    border-radius: 22px;
  }

  .header-nav a {
    padding: 8px 10px;
    font-size: 0.9rem;
  }
}

/* Mobile navigation menu fix: replace the hidden horizontal scroll rail with an explicit Menu button. */
@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
  }

  .site-header .brand-mark {
    grid-column: 1;
    width: auto;
    min-width: 0;
  }

  .mobile-nav-toggle {
    grid-column: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 15px;
    border: 1px solid var(--gp-border-soft);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--gp-primary-deep);
    box-shadow: 0 10px 26px rgba(31, 35, 29, 0.07);
    font: inherit;
    font-size: 0.94rem;
    font-weight: 850;
    cursor: pointer;
    white-space: nowrap;
  }

  .mobile-nav-toggle::after {
    content: "";
    width: 0.52em;
    height: 0.52em;
    margin-left: 9px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 180ms ease;
  }

  .site-header.is-nav-open .mobile-nav-toggle::after {
    transform: rotate(225deg) translateY(-1px);
  }

  .header-actions {
    grid-column: 1 / -1;
    order: initial;
    width: 100%;
  }

  .header-pill {
    width: 100%;
  }

  .js-enabled .site-header .header-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    max-width: 100%;
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 10px;
    border-radius: 24px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .js-enabled .site-header.is-nav-open .header-nav {
    display: grid;
  }

  .site-header .header-nav a {
    width: 100%;
    padding: 12px 14px;
    text-align: left;
    white-space: normal;
  }
}

@media (max-width: 480px) {
  .mobile-nav-toggle {
    min-height: 40px;
    padding: 9px 13px;
    font-size: 0.9rem;
  }

  .site-header .brand-logo {
    width: 64px;
    height: 64px;
  }

  .site-header .brand-tag {
    font-size: 1.1rem;
    line-height: 1.25;
  }
}

/* Mobile hero label fix: keep "Levend overzicht" above the screenshot instead of overlaying the image. */
@media (max-width: 760px) {
  .page-memory-walk .mw-hero-main-card .overlay-label {
    position: static;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 10px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
  }

  .page-memory-walk .mw-hero-main-shot {
    display: block;
  }
}


/* W12 Weer & Water homepage feature */
.mw-weather-section {
  position: relative;
}

.mw-weather-section::before {
  content: "";
  position: absolute;
  inset: 4% -8% auto auto;
  width: min(380px, 40vw);
  height: min(380px, 40vw);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(47, 107, 58, 0.16), transparent 68%);
  pointer-events: none;
}

.mw-weather-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 64px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--gp-radius-2xl);
  background:
    radial-gradient(circle at 12% 12%, rgba(47, 107, 58, 0.14), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(79, 127, 70, 0.1), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(248, 244, 236, 0.62));
  box-shadow: var(--gp-shadow-card);
  overflow: hidden;
}

.mw-weather-copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
}

.mw-weather-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 5.1rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.mw-weather-copy > p {
  max-width: 62ch;
  font-size: clamp(1.04rem, 1.35vw, 1.18rem);
  line-height: 1.62;
}

.mw-weather-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.mw-weather-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(47, 107, 58, 0.18);
  border-radius: 999px;
  background: rgba(238, 245, 235, 0.88);
  color: var(--gp-primary-deep);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mw-weather-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.mw-weather-points article {
  padding: 18px;
  border: 1px solid rgba(118, 113, 105, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
}

.mw-weather-points strong {
  display: block;
  margin-bottom: 7px;
  color: #242b22;
  line-height: 1.22;
}

.mw-weather-points p {
  margin: 0;
  color: var(--gp-text-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.mw-weather-visuals {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(210px, 0.74fr);
  gap: clamp(16px, 2.6vw, 28px);
  align-items: center;
}

.mw-weather-visuals::before {
  content: "";
  position: absolute;
  inset: 7% 4% 7% 3%;
  z-index: -1;
  border-radius: 48px;
  background:
    radial-gradient(circle at 48% 16%, rgba(255, 255, 255, 0.92), transparent 28%),
    linear-gradient(145deg, rgba(47, 107, 58, 0.14), rgba(139, 107, 62, 0.1));
  box-shadow: 0 34px 110px rgba(31, 35, 29, 0.13);
}

.mw-weather-shot-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 14px 14px 0;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--gp-shadow-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mw-weather-total-shot-card {
  align-self: center;
  border-radius: 28px;
}

.mw-weather-shot {
  display: block;
  width: 100%;
  height: auto;
  max-height: 610px;
  object-fit: contain;
  object-position: top center;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(180deg, #f7f2e9 0%, #ebe4d7 100%);
}

.mw-weather-total-shot-card .mw-weather-shot {
  max-height: 520px;
}

.mw-weather-shot-card .overlay-label {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
}

.mw-weather-shot-card figcaption {
  padding: 14px 16px 16px;
  color: var(--gp-text-soft);
  font-weight: 800;
  line-height: 1.45;
}

@media (hover: hover) {
  .mw-weather-points article,
  .mw-weather-shot-card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .mw-weather-points article:hover,
  .mw-weather-shot-card:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 107, 58, 0.2);
    box-shadow: var(--gp-shadow-card);
  }
}

@media (max-width: 1180px) {
  .mw-weather-panel {
    grid-template-columns: 1fr;
  }

  .mw-weather-visuals {
    max-width: 760px;
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .mw-weather-panel {
    padding: 24px;
    border-radius: 30px;
  }

  .mw-weather-copy h2 {
    max-width: 100%;
  }

  .mw-weather-points {
    grid-template-columns: 1fr;
  }

  .mw-weather-visuals {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mw-weather-visuals::before {
    inset: 24px 4px;
  }

  .mw-weather-shot-card,
  .mw-weather-total-shot-card {
    width: min(100%, 360px);
    margin-inline: auto;
    border-radius: 26px;
  }

  .mw-weather-shot,
  .mw-weather-total-shot-card .mw-weather-shot {
    max-height: 560px;
  }
}

@media (max-width: 480px) {
  .mw-weather-shot-card,
  .mw-weather-total-shot-card {
    border-radius: 24px;
    padding: 10px 10px 0;
  }

  .mw-weather-shot-card .overlay-label {
    max-width: 100%;
  }

  .mw-weather-badges span {
    width: 100%;
    justify-content: center;
  }
}
