/* =============================================================
   Grokkist landing — shared & per-direction styles
   Built on top of colors_and_type.css (must be imported first)
   ============================================================= */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--fg-1);
  background: var(--ground-paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* =============================================================
   Artboard scaffold — both directions live in fixed-width frames
   inside the design canvas.
   ============================================================= */
.gk-page {
  position: relative;
  width: 1280px;
  background: var(--ground-paper);
  color: var(--ground-aubergine);
  overflow: hidden; /* no horizontal bleed in the artboard */
}
.gk-page--teal     { background: var(--ground-teal); color: var(--ground-cream); }
.gk-page--aubergine { background: var(--ground-aubergine); color: var(--ground-cream); }

/* =============================================================
   Header — minimal, sits over hero
   ============================================================= */
.gk-h {
  display: flex; align-items: center; gap: 32px;
  padding: 22px 64px;
  position: relative; z-index: 10;
}
.gk-h-logo img { height: 32px; display: block; }
.gk-h-nav { display: flex; gap: 28px; flex: 1; padding-left: 8px; }
.gk-h-nav a {
  color: currentColor; text-decoration: none;
  font-size: 14px; font-weight: 500;
  opacity: 0.85;
  transition: color var(--dur-base) var(--ease-emerge), opacity var(--dur-base);
}
.gk-h-nav a:hover { opacity: 1; color: var(--signal-magenta); }
.gk-h-actions { display: flex; align-items: center; gap: 18px; }
.gk-h-actions .signin {
  color: currentColor; text-decoration: none; font-size: 14px; font-weight: 500; opacity: 0.85;
}
.gk-h-actions .signin:hover { opacity: 1; }

/* =============================================================
   Buttons
   ============================================================= */
.gk-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 999px;
  font-family: var(--font-sans); font-weight: 500; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform var(--dur-base) var(--ease-emerge),
              background var(--dur-base) var(--ease-emerge),
              box-shadow var(--dur-base) var(--ease-emerge),
              border-color var(--dur-base);
  white-space: nowrap;
}
.gk-btn .arr { font-size: 0.95em; line-height: 1; transform: translateY(-1px); display: inline-block; }
.gk-btn-primary { background: var(--ground-aubergine); color: var(--ground-cream); }
.gk-btn-primary:hover { background: #3D2A55; transform: translateY(-1px); box-shadow: var(--shadow-2); }
.gk-btn-cream { background: var(--ground-cream); color: var(--ground-aubergine); }
.gk-btn-cream:hover { transform: translateY(-1px); box-shadow: var(--shadow-2); }
.gk-btn-ghost {
  background: transparent; color: currentColor;
  border: 1px solid currentColor;
}
.gk-btn-ghost:hover { background: rgba(43, 27, 64, 0.05); transform: translateY(-1px); }
.gk-page--teal .gk-btn-ghost:hover,
.gk-page--aubergine .gk-btn-ghost:hover { background: rgba(248, 242, 230, 0.08); }

/* =============================================================
   Eyebrow + Hairlines
   ============================================================= */
.gk-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--biome-stone);
  display: inline-flex; align-items: center; gap: 12px;
}
.gk-page--teal .gk-eyebrow,
.gk-page--aubergine .gk-eyebrow { color: rgba(248, 242, 230, 0.65); }
.gk-eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor; opacity: 0.5;
}
.gk-rainbow-hr {
  height: 2px; width: 88px;
  background: var(--signal-rainbow);
  border-radius: 999px;
  display: block;
}
.gk-duet-hr {
  height: 1px; background: var(--signal-duet); width: 56px; border: 0; margin: 0;
}

/* =============================================================
   Typography helpers
   ============================================================= */
.gk-display {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 64px; line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ground-aubergine);
  margin: 0; text-wrap: balance;
}
.gk-h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 44px; line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ground-aubergine);
  margin: 0; text-wrap: balance;
}
.gk-h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 28px; line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ground-aubergine);
  margin: 0; text-wrap: balance;
}
.gk-lede {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.45;
  color: var(--biome-stone);
  margin: 0;
}
.gk-body {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 18px; line-height: 1.65;
  color: var(--fg-1);
  margin: 0;
}
.gk-page--teal .gk-display,
.gk-page--teal .gk-h2,
.gk-page--teal .gk-h3 { color: var(--ground-cream); }
.gk-page--teal .gk-body { color: rgba(248, 242, 230, 0.86); }
.gk-page--teal .gk-lede { color: rgba(248, 242, 230, 0.78); }
.gk-page--aubergine .gk-display,
.gk-page--aubergine .gk-h2,
.gk-page--aubergine .gk-h3 { color: var(--ground-cream); }
.gk-page--aubergine .gk-body { color: rgba(248, 242, 230, 0.86); }
.gk-page--aubergine .gk-lede { color: rgba(248, 242, 230, 0.78); }

/* =============================================================
   HERO — typewriter centerpiece (shared scaffolding)
   ============================================================= */
.gk-hero {
  position: relative;
  padding: 72px 64px 120px;
  min-height: 720px;
  display: flex; flex-direction: column; justify-content: center;
  text-align: center;
}
.gk-hero-eyebrow {
  align-self: center;
  margin-bottom: 56px;
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--biome-stone);
}
.gk-page--teal .gk-hero-eyebrow,
.gk-page--aubergine .gk-hero-eyebrow { color: rgba(248, 242, 230, 0.55); }
.gk-hero-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--signal-rainbow);
  background-size: 200% 100%;
}
.gk-typing-stage {
  font-family: var(--font-sans); font-weight: 400;
  font-size: clamp(40px, 4.4vw, 60px); line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ground-aubergine);
  min-height: 1.4em;
  text-wrap: balance;
}
.gk-typing-stage em {
  font-style: normal; font-weight: 400;
  background: linear-gradient(180deg, transparent 70%, rgba(248, 176, 0, 0.28) 70%);
  padding: 0 2px;
}
.gk-typing-stage strong {
  font-weight: 700;
  background: linear-gradient(180deg, transparent 65%, rgba(230, 69, 143, 0.32) 65%);
  padding: 0 3px;
}
.gk-page--teal .gk-typing-stage,
.gk-page--aubergine .gk-typing-stage { color: var(--ground-cream); }
.gk-page--teal .gk-typing-stage em,
.gk-page--aubergine .gk-typing-stage em {
  background: linear-gradient(180deg, transparent 70%, rgba(248, 176, 0, 0.35) 70%);
}
.gk-page--teal .gk-typing-stage strong,
.gk-page--aubergine .gk-typing-stage strong {
  background: linear-gradient(180deg, transparent 65%, rgba(230, 69, 143, 0.42) 65%);
}
/* TypeIt cursor */
.ti-cursor {
  font-weight: 200 !important;
  opacity: 0.75;
  color: var(--signal-magenta);
}

/* Optional subhead under typewriter (only in 'stanzas' or 'cta' hero variants) */
.gk-hero-sub {
  margin-top: 56px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.5;
  color: var(--biome-stone);
  max-width: 640px; align-self: center;
  text-wrap: balance;
}
.gk-page--teal .gk-hero-sub,
.gk-page--aubergine .gk-hero-sub { color: rgba(248, 242, 230, 0.78); }
.gk-hero-cta-row {
  margin-top: 48px;
  display: inline-flex; gap: 16px; align-self: center;
}

/* Hero ambient mark (a quiet, ground-tinted glyph behind the typewriter) */
.gk-hero-ambient {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.gk-hero-ambient svg {
  position: absolute; opacity: 0.06;
}

/* =============================================================
   GENERIC SECTION CONTAINER
   ============================================================= */
.gk-section {
  position: relative;
  padding: 96px 64px;
}
.gk-section--tight { padding-top: 64px; padding-bottom: 64px; }
.gk-section--inv { background: var(--ground-teal); color: var(--ground-cream); }
.gk-section--inv .gk-display,
.gk-section--inv .gk-h2,
.gk-section--inv .gk-h3 { color: var(--ground-cream); }
.gk-section--inv .gk-body { color: rgba(248, 242, 230, 0.86); }
.gk-section--inv .gk-lede { color: rgba(248, 242, 230, 0.78); }
.gk-section--inv .gk-eyebrow { color: rgba(248, 242, 230, 0.6); }
.gk-section--paper { background: var(--ground-paper); }
.gk-section--cream { background: var(--ground-cream); }

.gk-section-inner {
  max-width: 980px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.gk-section-inner-wide { max-width: 1100px; }
.gk-section-head {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 12px;
}

/* Compact density modifier (Tweaks: density=compact) */
.gk-density--compact .gk-section { padding-top: 64px; padding-bottom: 64px; }
.gk-density--compact .gk-hero { padding-top: 56px; padding-bottom: 80px; min-height: 600px; }
.gk-density--compact .gk-section-inner { gap: 20px; }

/* =============================================================
   STANZA LIST (manifesto poetry)
   ============================================================= */
.gk-stanzas {
  display: flex; flex-direction: column; gap: 24px;
}
.gk-stanza {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 22px; line-height: 1.5;
  color: var(--ground-aubergine);
  margin: 0; text-wrap: balance;
}
.gk-stanza--lede { font-size: 26px; font-weight: 500; line-height: 1.4; }
.gk-stanza em {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--biome-stone);
}
.gk-page--teal .gk-stanza,
.gk-page--aubergine .gk-stanza,
.gk-section--inv .gk-stanza { color: var(--ground-cream); }
.gk-page--teal .gk-stanza em,
.gk-page--aubergine .gk-stanza em,
.gk-section--inv .gk-stanza em { color: rgba(248, 242, 230, 0.65); }

/* =============================================================
   ECOSYSTEM / WAYPOINTS / CARDS — directional, see per-direction styles
   ============================================================= */

/* =============================================================
   NEWSLETTER
   ============================================================= */
.gk-newsletter {
  position: relative;
  padding: 96px 64px;
  background-image: url("../assets/textures/newsletter-texture.png");
  background-size: cover; background-position: center;
  color: var(--ground-cream);
  isolation: isolate;
}
.gk-newsletter::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14, 42, 42, 0.05), rgba(14, 42, 42, 0.5));
  z-index: -1;
}
.gk-newsletter-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.gk-newsletter h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.02em;
  color: var(--ground-cream); margin: 0 0 16px;
  text-wrap: balance;
}
.gk-newsletter-sub {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; line-height: 1.45;
  color: rgba(248, 242, 230, 0.85);
  margin: 0 0 36px; text-wrap: balance;
}
.gk-newsletter-form {
  display: flex; gap: 10px; max-width: 460px; margin: 0 auto;
}
.gk-newsletter-form input {
  flex: 1; padding: 14px 18px; border-radius: 999px; border: none;
  background: rgba(248, 242, 230, 0.96); color: var(--ground-aubergine);
  font-family: var(--font-sans); font-size: 15px;
}
.gk-newsletter-form input:focus { outline: 2px solid var(--signal-amber); outline-offset: 2px; }
.gk-newsletter-form .gk-btn { background: var(--ground-cream); color: var(--ground-aubergine); }
.gk-newsletter-foot {
  margin-top: 18px;
  font-size: 13px; color: rgba(248, 242, 230, 0.65);
}

/* =============================================================
   FOOTER
   ============================================================= */
.gk-footer {
  background: var(--ground-forest);
  color: var(--ground-cream);
  padding: 96px 64px 32px;
}
.gk-footer-top {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 2.5fr; gap: 80px;
}
.gk-footer-brand img { height: 36px; display: block; }
.gk-footer-brand p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 16px; line-height: 1.55;
  color: rgba(248, 242, 230, 0.82);
  margin: 22px 0 24px;
  max-width: 320px;
}
.gk-footer-rainbow {
  height: 2px; width: 120px; border-radius: 999px;
  background: var(--signal-rainbow);
  margin: 0;
}
.gk-footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.gk-footer-cols h4 {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500; color: rgba(248, 242, 230, 0.55);
  margin: 0 0 16px;
}
.gk-footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.gk-footer-cols a {
  color: var(--ground-cream); text-decoration: none;
  font-size: 14px; line-height: 1.4;
  transition: color var(--dur-base);
}
.gk-footer-cols a:hover { color: var(--signal-amber); }
.gk-footer-bottom {
  max-width: 1180px; margin: 56px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule-on-dark);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(248, 242, 230, 0.55);
}

/* =============================================================
   DIRECTION A — THRESHOLD (calm paper, literary)
   ============================================================= */
.gk-a {
  background: var(--ground-paper);
}
.gk-a .gk-hero {
  background:
    radial-gradient(ellipse 800px 400px at 50% 30%, rgba(248, 176, 0, 0.06), transparent 70%),
    var(--ground-paper);
}
/* Subtle paper texture via background — a faint horizon line under the typewriter */
.gk-a .gk-hero::after {
  content: ""; position: absolute;
  left: 50%; bottom: 80px; transform: translateX(-50%);
  width: 96px; height: 1px;
  background: var(--signal-duet);
  opacity: 0.5;
}

.gk-a-manifesto {
  padding: 112px 64px 96px;
  background: var(--ground-paper);
}
.gk-a-manifesto-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 36px;
}
.gk-a-manifesto .gk-rainbow-hr { margin-bottom: 8px; }
.gk-a-manifesto h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 52px; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ground-aubergine); margin: 0 0 8px;
  text-wrap: balance;
}
.gk-a-manifesto p {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 20px; line-height: 1.65;
  color: var(--fg-1); margin: 0;
  text-wrap: pretty;
}
.gk-a-manifesto p em {
  font-style: italic; font-family: var(--font-serif);
  color: var(--biome-stone);
}
.gk-a-manifesto p strong {
  font-weight: 600; color: var(--ground-aubergine);
}

.gk-a-divider {
  text-align: center; padding: 24px 0;
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--biome-stone);
}
.gk-a-divider::before, .gk-a-divider::after {
  content: ""; display: inline-block; width: 80px; height: 1px;
  background: var(--rule-strong); vertical-align: middle; margin: 0 18px;
}

.gk-a-image-band {
  padding: 56px 64px;
  background: var(--ground-paper);
}
.gk-a-image-band-inner {
  max-width: 1100px; margin: 0 auto;
  aspect-ratio: 16/7; border-radius: 22px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-2);
  position: relative; overflow: hidden;
}
.gk-a-image-band-cap {
  position: absolute; bottom: 24px; left: 28px;
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: rgba(248, 242, 230, 0.92);
  padding: 8px 14px;
  background: rgba(14, 42, 42, 0.55);
  backdrop-filter: blur(8px);
  border-radius: 999px;
}

.gk-a-pull {
  padding: 64px 64px;
  background: var(--ground-cream);
}
.gk-a-pull-inner {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 16px;
}
.gk-a-pull blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 30px; line-height: 1.35;
  color: var(--ground-aubergine);
  margin: 0; padding: 0 0 0 28px;
  border-left: 2px solid var(--signal-magenta);
  text-wrap: balance;
}
.gk-a-pull-attr {
  font-family: var(--font-sans); font-size: 13px;
  color: var(--biome-stone); padding-left: 28px;
  letter-spacing: 0.04em;
}

/* Start cards row (where-to-start) */
.gk-a-start {
  padding: 96px 64px;
  background: var(--ground-paper);
}
.gk-a-start-inner { max-width: 1180px; margin: 0 auto; }
.gk-a-start-head { max-width: 720px; margin: 0 0 56px; }
.gk-a-start-head h2 {
  font-size: 44px; font-weight: 700; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ground-aubergine); margin: 12px 0 16px;
  text-wrap: balance;
}
.gk-a-start-head p {
  font-family: var(--font-serif); font-style: italic; font-size: 20px;
  color: var(--biome-stone); margin: 0;
}
.gk-a-start-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.gk-a-start-card {
  background: var(--ground-cream);
  border-radius: 18px;
  padding: 32px 26px 28px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease-emerge),
              box-shadow var(--dur-base) var(--ease-emerge);
  text-decoration: none;
  color: var(--ground-aubergine);
  min-height: 240px;
}
.gk-a-start-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.gk-a-start-card .num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--biome-stone);
}
.gk-a-start-card h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 22px; line-height: 1.2; letter-spacing: -0.01em;
  margin: 0; color: var(--ground-aubergine);
}
.gk-a-start-card p {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.55;
  color: var(--biome-stone); margin: 0; flex: 1;
}
.gk-a-start-card .arr {
  font-size: 14px; font-weight: 500;
  color: var(--ground-aubergine);
  display: inline-flex; align-items: center; gap: 6px;
}
.gk-a-start-card:hover .arr { color: var(--signal-magenta); }

/* Ecosystem strip — 4 quiet rows */
.gk-a-eco {
  padding: 112px 64px 96px;
  background: var(--ground-cream);
}
.gk-a-eco-head { max-width: 760px; margin: 0 auto 72px; text-align: center; }
.gk-a-eco-head h2 {
  font-size: 44px; font-weight: 700; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ground-aubergine); margin: 16px 0 12px;
  text-wrap: balance;
}
.gk-a-eco-head .gk-lede { color: var(--biome-stone); }
.gk-a-eco-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.gk-a-eco-card {
  background: var(--ground-paper);
  border-radius: 22px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.gk-a-eco-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.gk-a-eco-img {
  aspect-ratio: 16/8; background-size: cover; background-position: center;
  position: relative;
}
.gk-a-eco-img-cap {
  position: absolute; left: 24px; top: 50%; transform: translateY(-50%);
  background: var(--ground-charcoal); color: var(--ground-cream);
  padding: 8px 16px; border-radius: 4px;
  font-weight: 700; font-size: 22px; letter-spacing: -0.01em;
  display: inline-flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-2);
}
.gk-a-eco-img-cap img { height: 1em; width: auto; }
.gk-a-eco-body { padding: 26px 30px 32px; display: flex; flex-direction: column; gap: 10px; }
.gk-a-eco-body .eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--biome-stone); font-weight: 500;
}
.gk-a-eco-body h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 22px; line-height: 1.2; margin: 0;
  color: var(--ground-aubergine);
}
.gk-a-eco-body p {
  font-size: 15px; line-height: 1.6; color: var(--biome-stone); margin: 0;
}

/* =============================================================
   DIRECTION B — WAYSTATION (atmospheric, threshold-crossing)
   ============================================================= */
.gk-b { background: var(--ground-paper); }

/* Hero with horizon → fades into teal at bottom */
.gk-b .gk-hero {
  background:
    radial-gradient(ellipse 900px 360px at 50% 28%, rgba(248, 176, 0, 0.10), transparent 65%),
    var(--ground-paper);
  padding-bottom: 160px;
  min-height: 740px;
}
.gk-b .gk-hero::after {
  /* horizon at the bottom of the hero */
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0; height: 160px;
  background:
    linear-gradient(180deg, transparent, rgba(15, 62, 64, 0.04) 30%, rgba(15, 62, 64, 0.18) 70%, rgba(15, 62, 64, 0.32));
  pointer-events: none;
}

/* The "passage" — first section under the hero, deep teal */
.gk-b-passage {
  position: relative;
  background: var(--ground-teal);
  color: var(--ground-cream);
  padding: 120px 64px 128px;
  overflow: hidden;
}
.gk-b-passage::before {
  /* ambient drift on top — a faint rainbow line transitioning the hero */
  content: ""; position: absolute; left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--signal-rainbow);
  opacity: 0.55;
}
.gk-b-passage-inner {
  position: relative;
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 200px 1fr; gap: 64px;
  align-items: start;
}
.gk-b-waymark {
  position: sticky; top: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.gk-b-waymark .roman {
  font-family: var(--font-serif); font-style: italic;
  font-size: 42px; line-height: 1; color: rgba(248, 242, 230, 0.5);
  letter-spacing: 0.02em;
}
.gk-b-waymark .label {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(248, 242, 230, 0.7);
}
.gk-b-waymark .rule {
  width: 56px; height: 1px;
  background: var(--signal-rainbow);
  opacity: 0.7;
  margin-top: 12px;
}
.gk-b-passage h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 56px; line-height: 1.04; letter-spacing: -0.025em;
  color: var(--ground-cream); margin: 0 0 32px;
  text-wrap: balance;
}
.gk-b-passage .stanza-list {
  display: flex; flex-direction: column; gap: 26px;
}
.gk-b-passage .stanza-list p {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 22px; line-height: 1.55;
  color: rgba(248, 242, 230, 0.92);
  margin: 0; text-wrap: pretty;
}
.gk-b-passage .stanza-list em {
  font-style: italic; font-family: var(--font-serif);
  color: rgba(248, 176, 0, 0.92);
}
.gk-b-passage .stanza-list strong {
  font-weight: 500;
  color: var(--ground-cream);
}

/* Subtle constellation dots on the teal — ambient sparkle */
.gk-b-passage .dot {
  position: absolute; border-radius: 999px; background: var(--ground-cream);
  opacity: 0.18; pointer-events: none;
}

/* Waystation section — split with empty-realms-map */
.gk-b-waystation {
  padding: 128px 64px;
  background: var(--ground-paper);
}
.gk-b-waystation-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px;
  align-items: center;
}
.gk-b-waystation-art {
  aspect-ratio: 4/3; border-radius: 22px;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-2);
  position: relative; overflow: hidden;
}
.gk-b-waystation-art::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 22px;
  box-shadow: inset 0 0 80px rgba(43, 27, 64, 0.18);
}
.gk-b-waystation-text { display: flex; flex-direction: column; gap: 24px; }
.gk-b-waystation-text h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ground-aubergine); margin: 0;
  text-wrap: balance;
}
.gk-b-waystation-text p {
  font-family: var(--font-sans); font-size: 19px; line-height: 1.65;
  color: var(--fg-1); margin: 0;
}
.gk-b-waystation-text p em {
  font-style: italic; font-family: var(--font-serif); color: var(--biome-stone);
}

/* Why people end up here — card grid */
.gk-b-why {
  padding: 120px 64px;
  background: var(--ground-cream);
}
.gk-b-why-inner { max-width: 1180px; margin: 0 auto; }
.gk-b-why-head { max-width: 720px; margin: 0 auto 72px; text-align: center; }
.gk-b-why-head h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ground-aubergine); margin: 16px 0 14px;
  text-wrap: balance;
}
.gk-b-why-head p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; line-height: 1.5;
  color: var(--biome-stone); margin: 0;
}
.gk-b-why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.gk-b-why-card {
  background: var(--ground-paper);
  border-radius: 18px; padding: 36px 30px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow-1);
  position: relative;
}
.gk-b-why-card .icon-rule {
  width: 32px; height: 2px; border-radius: 999px;
  background: var(--signal-rainbow);
  margin-bottom: 6px;
}
.gk-b-why-card h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 20px; line-height: 1.2; margin: 0;
  color: var(--ground-aubergine);
}
.gk-b-why-card p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.6;
  color: var(--fg-1); margin: 0;
}
.gk-b-why-quote {
  margin-top: 56px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 32px;
  padding: 36px 0 0;
  border-top: 1px solid var(--rule);
}
.gk-b-why-quote .lbl {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--biome-stone); font-weight: 500;
}
.gk-b-why-quote blockquote {
  font-family: var(--font-serif); font-style: italic;
  font-size: 26px; line-height: 1.4;
  color: var(--ground-aubergine);
  margin: 0; text-wrap: balance;
}

/* Loving encounters — full-bleed painterly */
.gk-b-encounters {
  position: relative;
  padding: 144px 64px;
  background-image: url("../assets/imagery/forest-mycelium.jpg");
  background-size: cover; background-position: center;
  color: var(--ground-cream);
  isolation: isolate;
  overflow: hidden;
}
.gk-b-encounters::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14, 42, 42, 0.55) 0%, rgba(14, 42, 42, 0.35) 40%, rgba(14, 42, 42, 0.7) 100%);
  z-index: -1;
}
.gk-b-encounters-inner {
  max-width: 880px; margin: 0 auto;
}
.gk-b-encounters .gk-eyebrow {
  color: rgba(248, 242, 230, 0.7);
}
.gk-b-encounters h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 56px; line-height: 1.04; letter-spacing: -0.025em;
  color: var(--ground-cream); margin: 16px 0 32px;
  text-wrap: balance;
}
.gk-b-encounters p {
  font-family: var(--font-sans); font-size: 21px; line-height: 1.55;
  color: rgba(248, 242, 230, 0.92); margin: 0 0 22px;
  max-width: 720px; text-wrap: pretty;
}
.gk-b-encounters p em {
  font-style: italic; font-family: var(--font-serif);
  color: rgba(248, 176, 0, 0.92);
}
.gk-b-encounters .closer {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: rgba(248, 242, 230, 0.85);
  margin-top: 32px; padding-top: 28px;
  border-top: 1px solid rgba(248, 242, 230, 0.2);
  max-width: 600px;
}

/* Coddiwompling — a quiet section with compass treatment */
.gk-b-coddi {
  padding: 128px 64px;
  background: var(--ground-paper);
}
.gk-b-coddi-inner {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.2fr; gap: 80px;
  align-items: center;
}
.gk-b-coddi-art {
  aspect-ratio: 1/1; position: relative;
  display: flex; align-items: center; justify-content: center;
}
.gk-b-coddi-art svg { width: 100%; height: 100%; }
.gk-b-coddi-text { display: flex; flex-direction: column; gap: 22px; }
.gk-b-coddi-text h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 48px; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--ground-aubergine); margin: 0;
  text-wrap: balance;
}
.gk-b-coddi-text .definition {
  font-family: var(--font-serif); font-style: italic;
  font-size: 24px; line-height: 1.45;
  color: var(--biome-stone);
  padding-left: 22px; border-left: 2px solid var(--signal-amber);
  text-wrap: balance;
}
.gk-b-coddi-text p {
  font-family: var(--font-sans); font-size: 18px; line-height: 1.65;
  color: var(--fg-1); margin: 0;
}

/* Trailhead — start cards as routes */
.gk-b-trailhead {
  padding: 128px 64px 144px;
  background: var(--ground-cream);
  position: relative;
}
.gk-b-trailhead-inner { max-width: 1180px; margin: 0 auto; }
.gk-b-trailhead-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  margin-bottom: 72px; align-items: end;
}
.gk-b-trailhead-head h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 56px; line-height: 1.02; letter-spacing: -0.025em;
  color: var(--ground-aubergine); margin: 16px 0 0;
  text-wrap: balance;
}
.gk-b-trailhead-head .right {
  font-family: var(--font-serif); font-style: italic;
  font-size: 20px; line-height: 1.5; color: var(--biome-stone);
  text-wrap: balance;
}
.gk-b-trailhead-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.gk-b-trail-card {
  background: var(--ground-paper);
  border-radius: 18px; overflow: hidden;
  text-decoration: none;
  color: var(--ground-aubergine);
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
  min-height: 320px;
}
.gk-b-trail-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.gk-b-trail-card .top {
  height: 140px;
  background-size: cover; background-position: center;
  position: relative;
}
.gk-b-trail-card .route {
  position: absolute; top: 14px; left: 14px;
  background: rgba(14, 42, 42, 0.7);
  color: var(--ground-cream);
  font-family: var(--font-sans); font-weight: 500;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(6px);
}
.gk-b-trail-card .bot {
  padding: 22px 24px 26px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.gk-b-trail-card h3 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 22px; line-height: 1.2; margin: 0;
  color: var(--ground-aubergine);
}
.gk-b-trail-card p {
  font-family: var(--font-sans); font-size: 14px; line-height: 1.55;
  color: var(--biome-stone); margin: 0; flex: 1;
}
.gk-b-trail-card .arr {
  font-size: 14px; font-weight: 500;
  color: var(--ground-aubergine);
}
.gk-b-trail-card:hover .arr { color: var(--signal-magenta); }

/* Ecosystem on B — compact 4-up below trailhead, with ambient warmth */
.gk-b-eco {
  padding: 96px 64px 112px;
  background: var(--ground-paper);
  position: relative;
}
.gk-b-eco-inner { max-width: 1180px; margin: 0 auto; }
.gk-b-eco-head { margin: 0 0 56px; max-width: 720px; }
.gk-b-eco-head h2 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 36px; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ground-aubergine); margin: 14px 0 10px;
  text-wrap: balance;
}
.gk-b-eco-head p {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--biome-stone); margin: 0;
}
.gk-b-eco-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.gk-b-eco-card {
  background: var(--ground-cream);
  border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base), box-shadow var(--dur-base);
}
.gk-b-eco-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-3); }
.gk-b-eco-card .img {
  height: 120px; background-size: cover; background-position: center; position: relative;
}
.gk-b-eco-card .pill {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  background: var(--ground-charcoal); color: var(--ground-cream);
  padding: 5px 12px; border-radius: 3px;
  font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 6px;
}
.gk-b-eco-card .pill img { height: 1em; }
.gk-b-eco-card .body { padding: 18px 22px 22px; display: flex; flex-direction: column; gap: 6px; }
.gk-b-eco-card h4 {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 16px; margin: 0; color: var(--ground-aubergine);
}
.gk-b-eco-card p {
  font-family: var(--font-sans); font-size: 13px; line-height: 1.5;
  color: var(--biome-stone); margin: 0;
}

/* =============================================================
   IMAGERY VARIATION (Tweaks: imagery=sparse|none)
   ============================================================= */
.gk-imagery--sparse .gk-a-image-band,
.gk-imagery--sparse .gk-b-encounters { display: none; }

.gk-imagery--none .gk-a-image-band,
.gk-imagery--none .gk-b-encounters,
.gk-imagery--none .gk-b-waystation-art,
.gk-imagery--none .gk-a-eco-img,
.gk-imagery--none .gk-b-eco-card .img,
.gk-imagery--none .gk-b-trail-card .top {
  display: none;
}
.gk-imagery--none .gk-b-waystation-inner { grid-template-columns: 1fr; max-width: 760px; }
.gk-imagery--none .gk-a-eco-card { border: 1px solid var(--rule); }
.gk-imagery--none .gk-a-eco-body::before {
  content: ""; display: block;
  width: 44px; height: 2px; border-radius: 999px;
  background: var(--signal-rainbow); margin-bottom: 8px;
}

/* =============================================================
   MOTION (Tweaks: motion=off|subtle|lively)
   Default is subtle. We use simple drift animations.
   ============================================================= */
@keyframes gk-drift {
  0% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(8px, -6px, 0); }
  100% { transform: translate3d(0, 0, 0); }
}
@keyframes gk-rainbow-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.gk-motion--subtle .gk-hero-eyebrow .dot {
  background-size: 300% 100%;
  animation: gk-rainbow-shift 9s var(--ease-drift) infinite;
}
.gk-motion--lively .gk-hero-eyebrow .dot {
  background-size: 300% 100%;
  animation: gk-rainbow-shift 6s var(--ease-drift) infinite;
}
.gk-motion--lively .gk-b-passage .dot { animation: gk-drift 8s var(--ease-drift) infinite; }
.gk-motion--off .ti-cursor { animation: none; }

/* =============================================================
   TWEAKS RECEPTIONIST — hide content for specific hero variants
   ============================================================= */
.gk-hero--centerpiece .gk-hero-sub,
.gk-hero--centerpiece .gk-hero-cta-row { display: none; }
.gk-hero--stanzas .gk-hero-cta-row { display: none; }
.gk-hero--cta .gk-hero-sub { display: none; }

/* =============================================================
   COLOR MOOD TWEAK — paper (default) / teal / aubergine
   The "mood" colors all paper-bg surfaces (hero, manifesto, paper bands)
   while keeping cream sections as cream and full-bleed imagery sections
   intact.  Logos swap to white over the dark moods.
   ============================================================= */
.gk-mood--teal {
  --mood-bg: var(--ground-teal);
  --mood-fg: var(--ground-cream);
  --mood-fg-soft: rgba(248, 242, 230, 0.86);
  --mood-fg-quiet: rgba(248, 242, 230, 0.62);
  --mood-em: rgba(248, 176, 0, 0.92);
}
.gk-mood--aubergine {
  --mood-bg: var(--ground-aubergine);
  --mood-fg: var(--ground-cream);
  --mood-fg-soft: rgba(248, 242, 230, 0.86);
  --mood-fg-quiet: rgba(248, 242, 230, 0.62);
  --mood-em: rgba(248, 176, 0, 0.92);
}

/* Apply mood to all paper surfaces */
.gk-mood--teal .gk-page,
.gk-mood--aubergine .gk-page,
.gk-mood--teal .gk-a .gk-hero,
.gk-mood--aubergine .gk-a .gk-hero,
.gk-mood--teal .gk-b .gk-hero,
.gk-mood--aubergine .gk-b .gk-hero,
.gk-mood--teal .gk-a-manifesto,
.gk-mood--aubergine .gk-a-manifesto,
.gk-mood--teal .gk-a-image-band,
.gk-mood--aubergine .gk-a-image-band,
.gk-mood--teal .gk-a-start,
.gk-mood--aubergine .gk-a-start,
.gk-mood--teal .gk-b-waystation,
.gk-mood--aubergine .gk-b-waystation,
.gk-mood--teal .gk-b-coddi,
.gk-mood--aubergine .gk-b-coddi,
.gk-mood--teal .gk-b-eco,
.gk-mood--aubergine .gk-b-eco {
  background: var(--mood-bg);
  color: var(--mood-fg);
}

/* Hero radial blow-out subtler against dark moods */
.gk-mood--teal .gk-a .gk-hero,
.gk-mood--aubergine .gk-a .gk-hero {
  background:
    radial-gradient(ellipse 800px 400px at 50% 30%, rgba(248, 176, 0, 0.08), transparent 70%),
    var(--mood-bg);
}
.gk-mood--teal .gk-b .gk-hero,
.gk-mood--aubergine .gk-b .gk-hero {
  background:
    radial-gradient(ellipse 900px 360px at 50% 28%, rgba(248, 176, 0, 0.10), transparent 65%),
    var(--mood-bg);
}
.gk-mood--teal .gk-b .gk-hero::after,
.gk-mood--aubergine .gk-b .gk-hero::after { display: none; }

/* Typography on mood */
.gk-mood--teal .gk-typing-stage,
.gk-mood--aubergine .gk-typing-stage,
.gk-mood--teal .gk-a-manifesto h2,
.gk-mood--aubergine .gk-a-manifesto h2,
.gk-mood--teal .gk-b-waystation-text h2,
.gk-mood--aubergine .gk-b-waystation-text h2,
.gk-mood--teal .gk-b-coddi-text h2,
.gk-mood--aubergine .gk-b-coddi-text h2,
.gk-mood--teal .gk-a-start-head h2,
.gk-mood--aubergine .gk-a-start-head h2,
.gk-mood--teal .gk-b-eco-head h2,
.gk-mood--aubergine .gk-b-eco-head h2,
.gk-mood--teal .gk-h-nav a,
.gk-mood--aubergine .gk-h-nav a,
.gk-mood--teal .signin,
.gk-mood--aubergine .signin {
  color: var(--mood-fg);
}
.gk-mood--teal .gk-a-manifesto p,
.gk-mood--aubergine .gk-a-manifesto p,
.gk-mood--teal .gk-b-waystation-text p,
.gk-mood--aubergine .gk-b-waystation-text p,
.gk-mood--teal .gk-b-coddi-text p,
.gk-mood--aubergine .gk-b-coddi-text p {
  color: var(--mood-fg-soft);
}
.gk-mood--teal .gk-a-manifesto p em,
.gk-mood--aubergine .gk-a-manifesto p em,
.gk-mood--teal .gk-b-waystation-text p em,
.gk-mood--aubergine .gk-b-waystation-text p em,
.gk-mood--teal .gk-b-coddi-text p em {
  color: var(--mood-em);
}
.gk-mood--teal .gk-a-manifesto p strong,
.gk-mood--aubergine .gk-a-manifesto p strong { color: var(--mood-fg); }

/* Eyebrows */
.gk-mood--teal .gk-eyebrow,
.gk-mood--aubergine .gk-eyebrow,
.gk-mood--teal .gk-hero-eyebrow,
.gk-mood--aubergine .gk-hero-eyebrow,
.gk-mood--teal .gk-a-start-head p,
.gk-mood--aubergine .gk-a-start-head p,
.gk-mood--teal .gk-b-eco-head p,
.gk-mood--aubergine .gk-b-eco-head p {
  color: var(--mood-fg-quiet);
}

/* Cards inside mooded sections */
.gk-mood--teal .gk-a-start-card,
.gk-mood--aubergine .gk-a-start-card,
.gk-mood--teal .gk-b-eco-card,
.gk-mood--aubergine .gk-b-eco-card {
  background: rgba(248, 242, 230, 0.06);
  color: var(--mood-fg);
  border: 1px solid rgba(248, 242, 230, 0.12);
  box-shadow: none;
}
.gk-mood--teal .gk-a-start-card:hover,
.gk-mood--aubergine .gk-a-start-card:hover,
.gk-mood--teal .gk-b-eco-card:hover,
.gk-mood--aubergine .gk-b-eco-card:hover {
  background: rgba(248, 242, 230, 0.10);
}
.gk-mood--teal .gk-a-start-card .num,
.gk-mood--aubergine .gk-a-start-card .num,
.gk-mood--teal .gk-a-start-card p,
.gk-mood--aubergine .gk-a-start-card p,
.gk-mood--teal .gk-b-eco-card p,
.gk-mood--aubergine .gk-b-eco-card p { color: var(--mood-fg-quiet); }
.gk-mood--teal .gk-a-start-card h3,
.gk-mood--aubergine .gk-a-start-card h3,
.gk-mood--teal .gk-b-eco-card h4,
.gk-mood--aubergine .gk-b-eco-card h4,
.gk-mood--teal .gk-a-start-card .arr,
.gk-mood--aubergine .gk-a-start-card .arr { color: var(--mood-fg); }

/* Header tweaks on dark mood — swap logo, swap primary button to cream */
.gk-mood--teal .gk-h-logo img,
.gk-mood--aubergine .gk-h-logo img {
  content: url("../assets/logos/grokkist-logo-horizontal-white.png");
}
.gk-mood--teal .gk-h-actions .gk-btn-primary,
.gk-mood--aubergine .gk-h-actions .gk-btn-primary {
  background: var(--ground-cream); color: var(--ground-aubergine);
}
.gk-mood--teal .gk-h-actions .gk-btn-primary:hover,
.gk-mood--aubergine .gk-h-actions .gk-btn-primary:hover {
  background: #FFF6E1;
}
.gk-mood--teal .gk-btn-ghost,
.gk-mood--aubergine .gk-btn-ghost { color: var(--mood-fg); border-color: rgba(248,242,230,0.4); }

/* Hero CTAs primary swap on mood */
.gk-mood--teal .gk-hero-cta-row .gk-btn-primary,
.gk-mood--aubergine .gk-hero-cta-row .gk-btn-primary {
  background: var(--ground-cream); color: var(--ground-aubergine);
}

/* Image band caption + waystation art subtle frame on mood */
.gk-mood--teal .gk-a-image-band,
.gk-mood--aubergine .gk-a-image-band {
  background: var(--mood-bg);
}

/* Pull-quote on mood — keep it on cream surface for contrast */
.gk-mood--teal .gk-a-pull blockquote,
.gk-mood--aubergine .gk-a-pull blockquote { /* keeps cream surface look */ }

/* Cream sections (newsletter, eco on A, why on B, trailhead on B) stay as-is —
   they intentionally provide a warm "respite" beat against the mood color. */

/* Coddiwompling compass — swap dark strokes for light on mood */
.gk-mood--teal .gk-b-coddi-art svg line,
.gk-mood--aubergine .gk-b-coddi-art svg line,
.gk-mood--teal .gk-b-coddi-art svg circle,
.gk-mood--aubergine .gk-b-coddi-art svg circle {
  stroke: rgba(248, 242, 230, 0.4) !important;
}
.gk-mood--teal .gk-b-coddi-art svg text,
.gk-mood--aubergine .gk-b-coddi-art svg text {
  fill: rgba(248, 242, 230, 0.75) !important;
}
.gk-mood--teal .gk-b-coddi-text .definition,
.gk-mood--aubergine .gk-b-coddi-text .definition { color: var(--mood-em); }

/* Dividers in manifesto */
.gk-mood--teal .gk-a-divider,
.gk-mood--aubergine .gk-a-divider {
  color: rgba(248,242,230,0.5);
  background: var(--mood-bg);
}
.gk-mood--teal .gk-a-divider::before,
.gk-mood--teal .gk-a-divider::after,
.gk-mood--aubergine .gk-a-divider::before,
.gk-mood--aubergine .gk-a-divider::after {
  background: rgba(248,242,230,0.2);
}

/* Waymark on teal/aubergine — colors already cream, no change needed */

/* Passage section on teal mood doesn't need to change (already teal).
   But when mood is aubergine, blend the passage into aubergine to avoid
   a teal-to-aubergine stripe in the middle of B. */
.gk-mood--aubergine .gk-b-passage {
  background: var(--ground-aubergine);
}
.gk-mood--aubergine .gk-b-passage::before {
  background: var(--signal-rainbow);
}
