:root {
  color-scheme: light;
  --coral: #ff7658;
  --coral-deep: #ad3927;
  --pink: #f55391;
  --purple: #9b5de5;
  --purple-deep: #30224f;
  --indigo: #32336d;
  --gold: #ffc640;
  --teal: #2cbfa8;
  --ink: #241a33;
  --muted: #695e72;
  --cream: #fff7ed;
  --cream-soft: #fffaf5;
  --white: #ffffff;
  --line: #eadfd8;
  --focus: #146fc1;
  --shadow-soft: 0 18px 50px rgba(66, 36, 80, 0.10);
  --shadow-card: 0 30px 80px rgba(74, 40, 91, 0.14);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --content: 1180px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--cream-soft);
  font-family: "Segoe UI", "Aptos", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--purple);
}

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

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 10px;
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.section {
  padding: 104px 0;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(234, 223, 216, 0.82);
  background: rgba(255, 250, 245, 0.91);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  padding: 4px;
  color: var(--coral-deep);
  background: linear-gradient(145deg, #ffe6d7, #ffd1e2);
  border-radius: 14px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #51475a;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.nav-list a:hover {
  color: var(--ink);
  background: #f3e9e4;
  transform: translateY(-1px);
}

.nav-list a[aria-current="page"] {
  padding-inline: 19px;
  color: var(--white);
  background: var(--ink);
}

.nav-list a[aria-current="page"]:hover {
  color: var(--white);
  background: var(--purple-deep);
}

.product-menu {
  position: relative;
}

.product-menu details {
  position: relative;
}

.product-menu summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 15px;
  border-radius: 999px;
  color: #51475a;
  font-size: 0.91rem;
  font-weight: 750;
  cursor: pointer;
  list-style: none;
}

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

.product-menu summary:hover,
.product-menu details[open] summary {
  color: var(--ink);
  background: #f3e9e4;
}

.product-menu summary span {
  font-size: 0.8em;
  transition: transform 160ms ease;
}

.product-menu details[open] summary span {
  transform: rotate(180deg);
}

.product-dropdown {
  position: absolute;
  z-index: 40;
  top: calc(100% + 7px);
  right: 0;
  display: grid;
  min-width: 170px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--cream-soft);
  box-shadow: 0 16px 34px rgba(44, 29, 63, 0.18);
}

.product-dropdown a {
  display: flex;
  justify-content: flex-start;
  min-height: 40px;
  padding: 8px 10px;
  border-radius: 9px;
  white-space: nowrap;
}

.lang-switch {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  margin-left: 4px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease;
}

.lang-switch:hover {
  color: var(--ink);
  border-color: var(--muted);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 198, 64, 0.22), transparent 28%),
    linear-gradient(145deg, #fffaf4 0%, #fff0e7 45%, #f8edff 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  right: -80px;
  bottom: -210px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(155, 93, 229, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(155, 93, 229, 0.04),
    0 0 0 140px rgba(255, 118, 88, 0.035);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero-glow-one {
  top: 9%;
  left: -90px;
  width: 250px;
  height: 250px;
  background: rgba(255, 198, 64, 0.19);
  animation: glow-drift 10s ease-in-out infinite;
}

.hero-glow-two {
  top: 12%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(245, 83, 145, 0.12);
  animation: glow-drift 13s ease-in-out -4s infinite reverse;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(400px, 0.98fr);
  align-items: center;
  min-height: 720px;
  padding-top: 54px;
  padding-bottom: 72px;
  gap: 60px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  animation: hero-arrive 700ms cubic-bezier(.2, .85, .3, 1) both;
}

.eyebrow,
.section-kicker {
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
  padding: 8px 14px;
  color: #6a3435;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 75, 49, 0.14);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(109, 56, 73, 0.06);
}

.eyebrow span {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 118, 88, 0.13);
}

h1 {
  max-width: 690px;
  margin-bottom: 24px;
  font-size: clamp(3.55rem, 6.5vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero-title-accent {
  display: inline-block;
  color: transparent;
  background: linear-gradient(115deg, var(--coral-deep), var(--pink) 48%, var(--purple) 95%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: #5f5368;
  font-size: clamp(1.06rem, 1.65vw, 1.27rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}

/* Feedback spotlight ("Wat andere deelnemers ervaren") — same feature as
   workshop.jijkanmeer.nl's own hero (see that repo's AGENTS.md for the full
   design history); this copy pulls the same live data same-origin via
   feedback_data.php (which reads the shared hf139245_workshop database
   directly, same credentials admin/lib.php already uses) rather than a
   cross-origin call to the workshop site. Hidden entirely
   (feedback-spotlight.js sets .hidden) when there's no approved feedback -
   never a placeholder or fabricated review. Light glass-panel treatment to
   match this hero's soft background, unlike workshop-site's dark gradient. */

.feedback-spotlight {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  margin: 0 0 28px;
  /* Fixed height, not min-height: reviews vary a lot in length, and a
     growing/shrinking box here would shift the CTA buttons below it as the
     spotlight loops. feedback-body clamps to 3 lines to fit this. */
  height: 140px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 75, 49, 0.14);
  box-shadow: 0 8px 24px rgba(109, 56, 73, 0.06);
  overflow: hidden;
}

.feedback-spotlight .field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Three columns: avatar | name+rating stacked | feedback text. */
.feedback-card {
  display: none;
  align-items: center;
  gap: 12px;
}

.feedback-card.is-active {
  display: flex;
  animation: feedback-card-in 500ms ease both;
}

@keyframes feedback-card-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .feedback-card.is-active { animation: none; }
}

.feedback-avatar,
.feedback-avatar-fallback {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.feedback-avatar {
  object-fit: cover;
  background: var(--cream);
}

.feedback-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--muted);
}

.feedback-avatar-fallback svg {
  width: 20px;
  height: 20px;
}

.feedback-meta {
  flex: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  max-width: 92px;
  min-width: 0;
}

.feedback-name {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.feedback-card-stars {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.feedback-body {
  flex: 1;
  min-width: 0;
  margin: 0;
  color: var(--ink);
  font-size: 0.88rem;
  line-height: 1.5;
  /* Clamp instead of grow: a long review truncates with an ellipsis rather
     than resizing the fixed-height box above. */
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 24px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(67, 37, 75, 0.10);
  transition: transform 180ms cubic-bezier(.2, .8, .3, 1.4), box-shadow 180ms ease, background 180ms ease;
}

.button svg,
.choice-links svg {
  width: 19px;
  height: 19px;
  margin-left: 8px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 160ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 17px 34px rgba(67, 37, 75, 0.17);
}

.button:hover svg,
.choice-links a:hover svg {
  transform: translateX(3px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-warm {
  color: var(--white);
  background: linear-gradient(120deg, #a8323c, #81376f);
}

.button-light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(36, 26, 51, 0.10);
  box-shadow: none;
}

.button-light:hover {
  background: var(--white);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  margin: 25px 0 0;
  padding: 0;
  color: #6f6376;
  font-size: 0.88rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-proof li::before {
  width: 7px;
  height: 7px;
  content: "";
  background: var(--teal);
  border-radius: 50%;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 540px;
  animation: hero-arrive 760ms 120ms cubic-bezier(.2, .85, .3, 1) both;
}

.hero-visual::before {
  position: absolute;
  inset: 9% 3% 2% 8%;
  content: "";
  background:
    radial-gradient(circle at 32% 22%, rgba(255, 255, 255, 0.9), transparent 18%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 46% 54% 46% 54% / 56% 43% 57% 44%;
  box-shadow: var(--shadow-card);
  transform: rotate(-3deg);
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px dashed rgba(155, 93, 229, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.orbit::before,
.orbit::after {
  position: absolute;
  content: "";
  border-radius: 50%;
}

.orbit-one {
  width: 430px;
  height: 430px;
  transform: rotate(16deg);
}

.orbit-one::before {
  top: 38px;
  right: 54px;
  width: 13px;
  height: 13px;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(255, 198, 64, 0.16);
}

.orbit-one::after {
  bottom: 42px;
  left: 53px;
  width: 10px;
  height: 10px;
  background: var(--teal);
}

.orbit-two {
  width: 340px;
  height: 500px;
  transform: rotate(-23deg);
}

.guide-character-wrap {
  position: relative;
  z-index: 3;
  width: min(66%, 280px);
  aspect-ratio: 1 / 1;
  margin-top: 20px;
  margin-left: 8%;
  border-radius: 50%;
  /* A static first-frame poster sits behind both videos, filling the
     circle - any momentary gap in a video's own rendering (a browser
     re-decode stutter after a paused clip resumes, not something CSS
     opacity timing alone can fully hide) shows the blob instead of a
     flash of the page background, which is what read as a flicker. */
  background: url("/avatar-poster.jpg") center / cover;
  transform-origin: center bottom;
  animation: character-bob 4s ease-in-out infinite;
}

.guide-character {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid var(--cream);
  box-shadow: var(--shadow-card);
  opacity: 0;
  transition: opacity 500ms ease;
}

.guide-character.is-active {
  opacity: 1;
}

.idea-chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(36, 26, 51, 0.08);
  border-radius: 999px;
  box-shadow: 0 13px 30px rgba(64, 37, 72, 0.13);
  font-size: 0.84rem;
  font-weight: 850;
  animation: chip-float 5s ease-in-out infinite;
}

.idea-chip::before {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  content: "";
  border-radius: 50%;
}

.chip-create {
  top: 19%;
  right: -1%;
  animation-delay: -1s;
}

.chip-create::before {
  background: var(--pink);
}

.chip-learn {
  top: 30%;
  left: -2%;
  animation-delay: -3s;
}

.chip-learn::before {
  background: var(--purple);
}

.chip-do {
  right: 5%;
  bottom: 13%;
  animation-delay: -2s;
}

.chip-do::before {
  background: var(--teal);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--coral-deep);
}

.choice-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(2.25rem, 4.3vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.choice-panel > div > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(0, 1fr);
  align-items: start;
  gap: 52px;
}

.about-photo img,
.about-photo video {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid var(--cream);
  box-shadow: var(--shadow-card);
}

.about-copy h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.6vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.about-copy p {
  max-width: 620px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

.choice {
  background: var(--white);
}

.choice-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  padding: 58px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 198, 64, 0.23), transparent 25%),
    linear-gradient(125deg, #963827, #842b5b 50%, #58349f);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  gap: 48px;
}

.choice-panel::before {
  position: absolute;
  top: -80px;
  right: 28%;
  width: 200px;
  height: 200px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 0 0 45px rgba(255, 255, 255, 0.04);
}

.choice-panel > * {
  position: relative;
  z-index: 1;
}

.choice-panel .section-kicker {
  color: #fff4b9;
}

.choice-panel h2 {
  margin-bottom: 15px;
}

.choice-panel > div > p:last-child {
  color: rgba(255, 255, 255, 0.86);
}

.choice-links {
  display: grid;
  gap: 12px;
}

.choice-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 14px 20px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 17px;
  font-weight: 850;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease;
}

.choice-links a:hover {
  background: var(--white);
  transform: translateX(4px);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(.2, .8, .3, 1);
}

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

@keyframes hero-arrive {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glow-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, 18px) scale(1.08); }
}

@keyframes character-bob {
  0%, 100% { transform: translateY(0) rotate(-0.5deg); }
  50% { transform: translateY(-8px) rotate(0.5deg); }
}

@keyframes chip-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}

@media (max-width: 1020px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    min-height: 660px;
    gap: 28px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .orbit-one {
    width: 380px;
    height: 380px;
  }

  .choice-panel {
    padding: 48px;
  }
}

@media (max-width: 860px) {
  .section {
    padding: 84px 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 48px;
    gap: 18px;
  }

  .hero-copy {
    max-width: 720px;
    text-align: center;
    justify-self: center;
  }

  .eyebrow {
    justify-content: center;
  }

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

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
    width: min(100%, 560px);
    min-height: 340px;
    justify-self: center;
  }

  .guide-character-wrap {
    width: min(62%, 240px);
    margin-top: 0;
  }

  .orbit-two {
    width: 280px;
    height: 380px;
  }

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

  .about-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 28px;
  }

  .about-copy p {
    margin-inline: auto;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(calc(100% - 32px), var(--content));
  }

  .nav-wrap {
    min-height: 70px;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-mark {
    width: 37px;
    height: 37px;
    border-radius: 12px;
  }

  .nav-list li:first-child {
    display: none;
  }

  /* ...unless it's the current page - that one must stay visible so the
     "you are here" state is never hidden, on any screen size. */
  .nav-list li:has(a[aria-current="page"]) {
    display: flex;
  }

  .nav-list a {
    min-height: 42px;
    padding-inline: 11px;
    font-size: 0.82rem;
  }

  .nav-list a[aria-current="page"] {
    padding-inline: 13px;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 5.1rem);
  }

  .hero-visual {
    min-height: 320px;
  }

  .guide-character-wrap {
    width: min(70%, 230px);
  }

  .orbit-one {
    width: 300px;
    height: 300px;
  }

  .orbit-two {
    width: 240px;
    height: 320px;
  }

  .chip-create {
    right: 0;
  }

  .chip-learn {
    left: 0;
  }

  .choice-panel {
    padding: 38px 25px;
    border-radius: 28px;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 16px;
  }

  .site-header {
    position: relative;
  }

  .nav-wrap {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-top: 12px;
    padding-bottom: 12px;
    gap: 7px;
  }

  /* Brand stays flush left and lang-switch flush right on their own row;
     nav is pushed after lang-switch (order) so it wraps onto a full-width
     row underneath instead of breaking the left/right pinning. */
  .lang-switch {
    order: 1;
  }

  .nav-wrap nav {
    order: 2;
    width: 100%;
  }

  .nav-list {
    justify-content: center;
    gap: 2px;
  }

  .nav-list a {
    padding-inline: 9px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-grid {
    padding-top: 22px;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    justify-content: start;
    max-width: 255px;
    margin-inline: auto;
    text-align: left;
  }

  .hero-visual {
    min-height: 270px;
  }

  .hero-visual::before {
    inset: 8% 0 0;
  }

  .orbit-one {
    width: 230px;
    height: 230px;
  }

  .orbit-two {
    width: 190px;
    height: 260px;
  }

  .guide-character-wrap {
    width: min(68%, 200px);
  }

  .idea-chip {
    min-height: 36px;
    padding: 7px 11px;
    font-size: 0.74rem;
  }

  .chip-create {
    top: 20%;
  }

  .chip-learn {
    top: 34%;
  }

  .chip-do {
    bottom: 12%;
  }

  .section {
    padding: 70px 0;
  }

  .button {
    min-height: 52px;
    padding-inline: 19px;
  }

  .choice-links a {
    min-height: 72px;
    padding: 14px 16px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

/* 404 page - avoids inline style="" attributes, which the page's own CSP
   (style-src 'self') blocks. */
.notfound { text-align: center; }
.notfound .shell { max-width: 640px; }
.notfound .section-kicker { justify-content: center; }
.notfound h1 { font-size: clamp(2.4rem, 6vw, 4rem); margin-bottom: 20px; }
.notfound .hero-lead { margin-inline: auto; }
.notfound .hero-actions { justify-content: center; }
