/* ==========================================================================
   BusyWork Dispatch — design system
   Palette (MP007): Anti-Flash White #F2F3F4 · Lace Cap #EBEAED ·
   Kimchi #ED4B00 · Midnight Blue #020035 · Dark Royalty #02066F ·
   Deep Sea Exploration #2000B1
   ========================================================================== */

:root {
  --white: #ffffff;
  --flash: #f2f3f4;
  --lace: #ebeaed;
  --kimchi: #ed4b00;
  --kimchi-deep: #cf4100;
  --midnight: #020035;
  --royalty: #02066f;
  --deep-sea: #2000b1;

  --ink: var(--midnight);
  --body: rgba(2, 0, 53, 0.68);
  --body-soft: rgba(2, 0, 53, 0.52);
  --line: var(--lace);
  --line-strong: rgba(2, 0, 53, 0.12);

  --on-dark: rgba(242, 243, 244, 0.74);
  --on-dark-soft: rgba(242, 243, 244, 0.52);
  --periwinkle: #aab1ff;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", SFMono-Regular,
    Menlo, monospace;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  --shadow-card: 0 1px 2px rgba(2, 0, 53, 0.04), 0 8px 28px rgba(2, 0, 53, 0.05);
  --shadow-float: 0 2px 6px rgba(2, 0, 53, 0.06), 0 24px 64px rgba(2, 0, 53, 0.12);
  --shadow-cta: 0 8px 24px rgba(237, 75, 0, 0.32);

  --ease-out: cubic-bezier(0.22, 0.68, 0.32, 1);
  --container: 1120px;
  --narrow: 760px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "cv05" 1, "ss01" 1;
}

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

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

::selection {
  background: rgba(32, 0, 177, 0.14);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--midnight);
  color: var(--white);
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 600;
}

.skip-link:focus {
  left: 0;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(1.6) blur(14px);
  backdrop-filter: saturate(1.6) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.94rem;
  font-weight: 550;
}

.nav-links a,
.utility-links a:not(.header-cta) {
  color: var(--body);
  transition: color 0.2s ease;
}

.nav-links a:hover,
.utility-links a:not(.header-cta):hover {
  color: var(--ink);
}

.utility-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 550;
}

@media (min-width: 1101px) {
  /* Pricing/FAQs/Login already live in the centre nav on desktop. */
  .utility-links .utility-link,
  .utility-links .header-login {
    display: none;
  }
}

/* The five centre links need room next to the brand and CTA — collapse to
   the compact utility nav earlier than the general 920px breakpoint. */
@media (max-width: 1100px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px 7px 17px;
  border-radius: 99px;
  background: var(--midnight);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s ease, transform 0.2s var(--ease-out);
}

.header-cta:hover {
  background: var(--royalty);
  transform: translateY(-1px);
}

/* Mid-size screens: brand + four utility links + CTA no longer fit. */
@media (max-width: 700px) {
  .header-cta {
    display: none;
  }
}

/* Narrow phones: keep the logo, drop the wordmark so links never wrap. */
@media (max-width: 480px) {
  .brand span {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */

main {
  overflow-x: clip;
}

.section {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 104px 0;
}

.section + .section {
  border-top: 1px solid var(--line);
}

#examples,
#how-it-works,
#credits,
#start {
  scroll-margin-top: 84px;
}

.section-label {
  margin-bottom: 18px;
  color: var(--deep-sea);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-heading h2 {
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(2.6rem, 5.6vw, 4.15rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.section-heading p,
.plain-copy p {
  color: var(--body);
  font-size: 1.08rem;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.99rem;
  letter-spacing: -0.01em;
  transition: background 0.2s ease, transform 0.25s var(--ease-out),
    box-shadow 0.25s ease, border-color 0.2s ease;
}

.primary-action {
  background: var(--kimchi);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.primary-action:hover {
  background: var(--kimchi-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(237, 75, 0, 0.4);
}

.primary-action:active {
  transform: translateY(0);
}

.secondary-action {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line-strong);
}

.secondary-action:hover {
  border-color: rgba(2, 0, 53, 0.3);
  transform: translateY(-2px);
}

.action-arrow {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.cta-avatar {
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.55);
}

/* Inline filled buttons: enlarged avatar on the right, pulled in with
   negative margins so the button itself stays the same size. */
.primary-action .cta-avatar,
.secondary-action .cta-avatar {
  width: 40px;
  height: 40px;
  margin-top: -10px;
  margin-bottom: -10px;
  margin-right: -16px;
}

.text-link .cta-avatar {
  width: 26px;
  height: 26px;
  margin: -6px -4px -6px 0;
  box-shadow: 0 0 0 2px rgba(2, 0, 53, 0.08);
}

.header-cta .cta-avatar {
  width: 30px;
  height: 30px;
  margin-top: -8px;
  margin-bottom: -8px;
  margin-right: -6px;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: var(--deep-sea);
  font-weight: 600;
  font-size: 0.97rem;
}

.text-link .action-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s var(--ease-out);
}

.text-link:hover .action-arrow {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  padding: 116px 0 110px;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -68px -40vw 30% -40vw;
  background: radial-gradient(
    52% 86% at 50% 0%,
    rgba(32, 0, 177, 0.055),
    rgba(32, 0, 177, 0) 70%
  );
  pointer-events: none;
}

.hero > * {
  position: relative;
}

.hero .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.hero .section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kimchi);
}

.hero h1 {
  max-width: 880px;
  margin: 8px auto 0;
}

.tool-rotator {
  display: inline-flex;
  align-items: center;
  gap: 0.12em;
}

.rotator-logo {
  display: inline-block;
  height: 0.78em;
  width: auto;
  flex-shrink: 0;
  position: relative;
  top: -0.04em;
}

.tool-rotator .rotator-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  filter: blur(8px);
  transition: opacity 0.45s ease, transform 0.5s var(--ease-out),
    filter 0.45s ease;
  transition-delay: calc(var(--wi, 0) * 70ms);
}

.tool-rotator.is-in .rotator-word {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.tool-rotator.is-out .rotator-word {
  opacity: 0;
  transform: translateY(-0.3em);
  filter: blur(8px);
  transition-duration: 0.3s;
}

.hero-copy {
  max-width: 660px;
  margin: 26px auto 0;
  color: var(--body);
  font-size: clamp(1.06rem, 1.6vw, 1.2rem);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 38px;
  justify-content: center;
}

.hero-points {
  max-width: 720px;
  margin: 46px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-points p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0;
  padding: 11px 18px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--flash);
  color: var(--body);
  font-size: 0.92rem;
  font-weight: 550;
}

.point-check {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
  color: var(--kimchi);
}

/* --------------------------------------------------------------------------
   Prompt demo — native assistant window, scroll-scrubbed typing
   -------------------------------------------------------------------------- */

.prompt-demo-section {
  min-height: 380vh;
}

.prompt-stage {
  position: sticky;
  top: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  min-height: calc(100vh - 68px);
  padding: 24px 0 40px;
}

.assistant-shell {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

/* Assistant skins — recognizable, not replicas. ChatGPT is the default. */
.assistant-window {
  --as-bg: #ffffff;
  --as-titlebar-bg: linear-gradient(180deg, #fdfdfe, #f8f8fa);
  --as-composer-bg: #f4f4f4;
  --as-composer-border: transparent;
  --as-composer-radius: 99px;
  --as-send: #0d0d0d;
  --as-avatar: #0d0d0d;
  --as-hint-font: var(--font-sans);

  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--as-bg);
  box-shadow: var(--shadow-float);
  overflow: hidden;
  transition: background 0.5s ease, opacity 0.26s ease, filter 0.26s ease;
}

.assistant-window[data-skin="claude"] {
  --as-bg: #faf9f5;
  --as-titlebar-bg: linear-gradient(180deg, #fbfaf6, #f4f2ea);
  --as-composer-bg: #ffffff;
  --as-composer-border: #e8e4da;
  --as-composer-radius: 18px;
  --as-send: #d97757;
  --as-avatar: #d97757;
  --as-hint-font: Georgia, "Times New Roman", serif;
}

.assistant-window[data-skin="gemini"] {
  --as-bg: #ffffff;
  --as-titlebar-bg: linear-gradient(180deg, #ffffff, #f6f9fe);
  --as-composer-bg: #f0f4f9;
  --as-composer-border: transparent;
  --as-composer-radius: 99px;
  --as-send: linear-gradient(135deg, #4285f4, #9b72cb);
  --as-avatar: linear-gradient(135deg, #4285f4, #9b72cb);
}

.assistant-window.is-morphing {
  opacity: 0;
  filter: blur(5px);
}

.assistant-window::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  pointer-events: none;
}

.assistant-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--as-titlebar-bg);
  transition: background 0.5s ease;
}

.assistant-id {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 0;
}

.assistant-avatar {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--as-avatar);
  box-shadow: 0 2px 8px rgba(2, 0, 53, 0.18);
  transition: background 0.5s ease;
}

.assistant-logo {
  width: 16px;
  height: 16px;
  display: block;
  filter: brightness(0) invert(1);
}

.assistant-meta {
  display: grid;
  line-height: 1.3;
}

.assistant-meta strong {
  font-size: 0.92rem;
  font-weight: 650;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.status-short {
  display: none;
}

.assistant-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--body-soft);
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1db954;
  box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.14);
}

.assistant-chip {
  flex: 0 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 6px 13px;
  border-radius: 99px;
  background: rgba(32, 0, 177, 0.07);
  color: var(--deep-sea);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: opacity 0.25s ease, transform 0.25s var(--ease-out);
}

.assistant-chip.is-swapping {
  opacity: 0;
  transform: translateY(-4px);
}

.assistant-body {
  display: grid;
  align-items: start;
  min-height: 230px;
  padding: 26px 24px 14px;
}

.typed-request {
  margin: 0;
  font-size: clamp(1.18rem, 2.5vw, 1.6rem);
  line-height: 1.4;
  font-weight: 550;
  letter-spacing: -0.018em;
  color: var(--ink);
  overflow-wrap: anywhere;
}

.typed-request .at-mention {
  color: var(--deep-sea);
  font-weight: 650;
}

.typing-caret {
  display: inline-block;
  width: 2px;
  height: 1.12em;
  margin-left: 2px;
  border-radius: 2px;
  background: var(--as-send, var(--kimchi));
  vertical-align: -0.18em;
  animation: caret-blink 900ms steps(1) infinite;
}

@keyframes caret-blink {
  50% {
    opacity: 0;
  }
}

.assistant-composer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 10px 16px 16px;
  padding: 10px 10px 10px 16px;
  border: 1px solid var(--as-composer-border);
  border-radius: var(--as-composer-radius);
  background: var(--as-composer-bg);
  transition: background 0.5s ease, border-color 0.5s ease,
    border-radius 0.5s ease;
}

.composer-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--body-soft);
}

.composer-hint {
  flex: 1;
  min-width: 0;
  color: var(--body-soft);
  font-family: var(--as-hint-font);
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.composer-send {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lace);
  color: rgba(2, 0, 53, 0.34);
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s var(--ease-out);
}

.composer-send svg {
  width: 16px;
  height: 16px;
}

.assistant-window.is-armed .composer-send {
  background: var(--as-send);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(13, 13, 13, 0.24);
  transform: scale(1.04);
}

.assistant-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 6px 0;
  color: var(--body-soft);
  font-size: 0.88rem;
  font-weight: 500;
}

.dispatch-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 8px 15px;
  border-radius: 99px;
  background: var(--midnight);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.dispatch-pill::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kimchi);
}

.prompt-progress {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.prompt-progress span {
  width: 7px;
  height: 7px;
  border-radius: 99px;
  background: var(--lace);
  transition: background 0.3s ease, width 0.3s var(--ease-out);
}

.prompt-progress span.is-active {
  width: 22px;
  background: var(--deep-sea);
}

/* --------------------------------------------------------------------------
   Lanes (use cases)
   -------------------------------------------------------------------------- */

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

.lane-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.lane-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 0, 177, 0.18);
  box-shadow: var(--shadow-float);
}

.lane-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(32, 0, 177, 0.06);
  color: var(--deep-sea);
}

.lane-icon svg {
  width: 21px;
  height: 21px;
}

.lane-card p {
  margin-bottom: 0;
  color: var(--body);
  font-size: 0.99rem;
}

/* --------------------------------------------------------------------------
   How it works
   -------------------------------------------------------------------------- */

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  list-style: none;
  counter-reset: step;
}

.steps li {
  position: relative;
  padding: 30px 0 30px 76px;
  display: grid;
  gap: 4px;
}

.steps li + li {
  border-top: 1px solid var(--line);
}

.step-num {
  position: absolute;
  left: 0;
  top: 30px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--midnight);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
}

.steps h3 {
  margin-bottom: 6px;
  font-size: 1.24rem;
}

.steps p {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--body);
  font-size: 1.01rem;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.how-content {
  min-width: 0;
}

.how-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
}

.how-photo {
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center 15%;
  display: block;
  border-radius: var(--radius-xl);
}

@media (max-width: 900px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .how-photo {
    max-height: 400px;
  }
}

/* --------------------------------------------------------------------------
   Trust grid (the model)
   -------------------------------------------------------------------------- */

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

.trust-card {
  padding: 34px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--flash);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.trust-card .section-label {
  margin-bottom: 14px;
}

.trust-card h3 {
  font-size: 1.32rem;
  letter-spacing: -0.02em;
}

.trust-card h3 a:hover {
  color: var(--deep-sea);
}

.trust-card p:not(.section-label) {
  margin-bottom: 0;
  color: var(--body);
  font-size: 0.99rem;
}

.trust-card.is-featured {
  position: relative;
  border-color: transparent;
  background: radial-gradient(
      120% 130% at 14% 0%,
      rgba(32, 0, 177, 0.55),
      rgba(32, 0, 177, 0) 52%
    ),
    var(--midnight);
  color: var(--white);
  overflow: hidden;
}

.trust-card.is-featured .section-label {
  color: var(--periwinkle);
}

.trust-card.is-featured p:not(.section-label) {
  color: var(--on-dark);
}

.trust-card.is-featured .text-link {
  color: var(--white);
}

.trust-card.is-featured .text-link .action-arrow {
  color: var(--kimchi);
}

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */

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

.price-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 0, 177, 0.18);
  box-shadow: var(--shadow-float);
}

.price-card h3 {
  margin-bottom: 10px;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  letter-spacing: -0.01em;
}

.price-card .price-value {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.price-card > p:not(.price-value) {
  color: var(--body);
  font-size: 0.99rem;
}

.pack-list {
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  display: grid;
  gap: 11px;
  align-content: start;
  color: var(--body);
  font-size: 0.95rem;
  font-weight: 500;
}

.pack-list li {
  position: relative;
  padding-left: 26px;
}

.pack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 15px;
  height: 15px;
  background: var(--kimchi);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

/* --------------------------------------------------------------------------
   Future Operating Model — premium section
   -------------------------------------------------------------------------- */

.fom-section {
  padding-bottom: 0;
}

.fom-card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(32, 0, 177, 0.55) 0%,
    rgba(237, 75, 0, 0.45) 45%,
    rgba(32, 0, 177, 0.35) 100%
  );
  box-shadow:
    0 4px 12px rgba(32, 0, 177, 0.12),
    0 32px 80px rgba(32, 0, 177, 0.12),
    0 32px 80px rgba(237, 75, 0, 0.06);
}

.fom-card-inner {
  background: var(--midnight);
  border-radius: calc(var(--radius-xl) - 3px);
  padding: 60px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.fom-eyebrow {
  color: var(--periwinkle) !important;
  margin-bottom: 20px;
}

.fom-card-inner h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.fom-desc {
  color: var(--white);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 500;
  margin-bottom: 14px;
  max-width: 680px;
}

.fom-subdesc {
  color: var(--on-dark);
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 0;
}

.fom-price {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
}

.fom-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(242, 243, 244, 0.12);
}

.fom-includes-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
  margin-bottom: 18px;
}

.fom-list {
  color: var(--on-dark);
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.fom-list li::before {
  background: var(--periwinkle);
}

.fom-cta-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fom-contrast {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--on-dark);
  padding: 20px 24px;
  border: 1px solid rgba(242, 243, 244, 0.14);
  border-radius: var(--radius-md);
  background: rgba(242, 243, 244, 0.04);
  margin-bottom: 24px;
  line-height: 1.65;
}

.fom-best-for {
  color: var(--on-dark-soft);
  font-size: 0.94rem;
  margin-bottom: 32px;
}

.fom-cta {
  align-self: flex-start;
}

@media (max-width: 860px) {
  .fom-card-inner {
    padding: 40px 36px;
  }

  .fom-body {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 600px) {
  .fom-card-inner {
    padding: 32px 24px;
  }
}

/* --------------------------------------------------------------------------
   Extras
   -------------------------------------------------------------------------- */

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

.extra-card {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--flash);
}

.extra-card p {
  margin-bottom: 0;
  color: var(--body);
  font-size: 0.96rem;
}

/* --------------------------------------------------------------------------
   Split section
   -------------------------------------------------------------------------- */

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
}

.plain-copy p + p {
  margin-top: 18px;
}

.plain-copy p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Approval bands
   -------------------------------------------------------------------------- */

.approval-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.approval-card {
  padding: 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.approval-card h3 {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.band-meter {
  display: flex;
  gap: 5px;
  margin-bottom: 18px;
}

.band-meter i {
  width: 18px;
  height: 5px;
  border-radius: 99px;
  background: var(--lace);
}

.band-meter i.is-on {
  background: var(--deep-sea);
}

.approval-card p {
  margin-bottom: 10px;
  font-family: var(--font-mono);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.approval-card span {
  display: block;
  color: var(--body);
  font-size: 0.92rem;
}

.approval-note {
  margin-top: 18px;
  padding: 30px 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--flash);
}

.approval-note p {
  max-width: 760px;
  color: var(--body);
  font-size: 0.99rem;
}

.approval-note p:last-child {
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Pricing page additions
   -------------------------------------------------------------------------- */

.intro-block {
  max-width: 760px;
}

.intro-block h2 {
  margin-bottom: 18px;
}

.how-list {
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 16px;
  max-width: 720px;
  margin: 0 0 24px;
}

.how-list li {
  position: relative;
  padding-left: 46px;
  min-height: 30px;
  display: flex;
  align-items: center;
  color: var(--body);
  font-size: 1.05rem;
}

.how-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: var(--deep-sea);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.86rem;
  font-weight: 600;
}

.muted-note {
  max-width: 720px;
  color: var(--body-soft);
  font-size: 0.96rem;
}

.price-card--wide {
  grid-column: 1 / -1;
}

.price-card--wide .pack-list {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 32px;
}

.price-extra {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px dashed var(--line-strong);
  color: var(--body);
  font-size: 0.9rem;
}

.price-extra strong {
  color: var(--ink);
  font-weight: 600;
}

.price-card__foot {
  margin-top: auto;
  padding-top: 22px;
}

.price-note {
  margin: 0 0 18px;
  font-style: italic;
  font-weight: 550;
  font-size: 0.98rem;
  color: var(--ink);
}

.price-card__cta {
  width: 100%;
}

.move-up-card {
  padding: 32px 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--flash);
  max-width: 820px;
}

.move-up-card p {
  color: var(--body);
  font-size: 1rem;
}

.move-up-card p + p {
  margin-top: 14px;
}

.move-up-card p:last-child {
  margin-bottom: 0;
}

.move-up-card .move-up-price {
  color: var(--ink);
  font-weight: 600;
}

.bonus-list {
  margin: 0;
  max-width: 720px;
}

.referral-block {
  max-width: 720px;
}

.referral-block .cta-actions {
  margin-top: 28px;
}

.fine-print {
  margin-top: 22px;
  max-width: 640px;
  color: var(--body-soft);
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq-list {
  display: grid;
  gap: 0;
  max-width: 820px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-of-type {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 4px;
  cursor: pointer;
  list-style: none;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: color 0.2s ease;
}

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

.faq-list summary:hover {
  color: var(--deep-sea);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--body-soft);
  transition: transform 0.3s var(--ease-out);
}

.faq-list details[open] .faq-chevron {
  transform: rotate(180deg);
  color: var(--kimchi);
}

.faq-list details p {
  max-width: 700px;
  margin: 0;
  padding: 0 4px 26px;
  color: var(--body);
  font-size: 1rem;
}

/* --------------------------------------------------------------------------
   FAQ sales-page components
   .faq-ask     — inline chat assistant under the page heading (static styling;
                  to be powered by OpenAI ChatKit or a custom Claude/OpenAI
                  backend — see hand-over notes).
   .faq-feature — featured FAQ with a vertical (9:16) founder video answer.
   -------------------------------------------------------------------------- */

.faq-ask {
  max-width: 620px;
  margin: 40px auto 0;
}

.ask-composer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 9px 9px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--white);
  box-shadow: var(--shadow-float);
  cursor: text;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.ask-composer:hover {
  border-color: rgba(32, 0, 177, 0.25);
}

.ask-avatar {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--midnight);
}

.ask-avatar svg {
  width: 16px;
  height: 16px;
}

.ask-placeholder {
  flex: 1;
  min-width: 0;
  color: var(--body-soft);
  font-size: 0.98rem;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ask-send {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--kimchi);
  color: var(--white);
  box-shadow: var(--shadow-cta);
}

.ask-send svg {
  width: 17px;
  height: 17px;
}

.ask-suggestions {
  margin-top: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ask-suggestions button {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: var(--flash);
  color: var(--body);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 550;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease,
    transform 0.25s var(--ease-out);
}

.ask-suggestions button:hover {
  color: var(--ink);
  border-color: rgba(2, 0, 53, 0.25);
  transform: translateY(-1px);
}

.ask-note {
  margin: 14px 0 0;
  text-align: center;
  color: var(--body-soft);
  font-size: 0.82rem;
}

.faq-flow {
  width: min(840px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 64px;
}

.faq-flow .faq-list {
  max-width: none;
}

/* Jump navigation under the FAQ hero. */
.faq-jump {
  max-width: 700px;
  margin: 34px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-jump-label {
  margin-right: 4px;
  color: var(--deep-sea);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.faq-jump a {
  color: var(--body);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.faq-jump a:hover {
  color: var(--deep-sea);
  border-color: var(--deep-sea);
}

.faq-jump-sep {
  color: var(--body-soft);
}

/* Category groups on the FAQ page. */
.faq-category {
  scroll-margin-top: 96px;
}

.faq-category > .section-label {
  margin-bottom: 22px;
}

.faq-list details {
  scroll-margin-top: 96px;
}

.faq-feature {
  display: grid;
  grid-template-columns: 218px 1fr;
  gap: 38px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--flash);
}

.faq-video {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  display: grid;
  place-items: center;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(
      130% 110% at 18% 0%,
      rgba(32, 0, 177, 0.6),
      rgba(32, 0, 177, 0) 56%
    ),
    var(--midnight);
  box-shadow: var(--shadow-card);
  cursor: pointer;
}

.video-play {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(2, 0, 53, 0.4);
  transition: transform 0.3s var(--ease-out);
}

.faq-video:hover .video-play {
  transform: scale(1.08);
}

.video-play svg {
  width: 19px;
  height: 19px;
  margin-left: 3px;
  color: var(--midnight);
}

.video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 11px;
  border-radius: 99px;
  background: rgba(242, 243, 244, 0.14);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--periwinkle);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.video-duration {
  position: absolute;
  bottom: 14px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 99px;
  background: rgba(2, 0, 53, 0.55);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.faq-feature-body .section-label {
  margin-bottom: 12px;
}

.faq-feature-body h2 {
  margin-bottom: 14px;
  font-size: 1.55rem;
  letter-spacing: -0.022em;
}

.faq-feature-body p:not(.section-label) {
  margin-bottom: 0;
  max-width: 480px;
  color: var(--body);
  font-size: 1.01rem;
}

.faq-feature-body .text-link {
  margin-top: 18px;
}

@media (max-width: 700px) {
  .faq-feature {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 26px;
  }

  .faq-video {
    max-width: 220px;
    justify-self: center;
  }

  .faq-feature-body {
    text-align: center;
  }

  .faq-feature-body p:not(.section-label) {
    margin-left: auto;
    margin-right: auto;
  }

  .faq-flow {
    gap: 36px;
  }
}

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */

.testimonial-columns {
  columns: 3;
  column-gap: 18px;
}

.testimonial-card {
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 30px 28px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(32, 0, 177, 0.16);
  box-shadow: var(--shadow-float);
}

.testimonial-card blockquote {
  margin: 0;
}

.testimonial-card blockquote::before {
  content: "\201C";
  display: block;
  margin-bottom: 6px;
  color: var(--kimchi);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.4rem;
  line-height: 0.8;
}

.testimonial-card blockquote p {
  margin: 0;
  color: var(--body);
  font-size: 0.97rem;
  line-height: 1.6;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(32, 0, 177, 0.07);
  color: var(--deep-sea);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.testimonial-avatar svg {
  width: 16px;
  height: 16px;
}

.testimonial-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.testimonial-role {
  display: block;
  margin-top: 3px;
  color: var(--body-soft);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

@media (max-width: 920px) {
  .testimonial-columns {
    columns: 2;
  }
}

@media (max-width: 620px) {
  .testimonial-columns {
    columns: 1;
  }
}

/* --------------------------------------------------------------------------
   Final CTA + footer (dark block)
   -------------------------------------------------------------------------- */

.page-end {
  margin-top: 104px;
  background: radial-gradient(
      90% 120% at 50% 0%,
      rgba(32, 0, 177, 0.5),
      rgba(32, 0, 177, 0) 58%
    ),
    var(--midnight);
  color: var(--white);
}

.final-cta {
  width: min(var(--narrow), calc(100% - 40px));
  margin: 0 auto;
  padding: 112px 0 96px;
  text-align: center;
}

.final-cta .section-label {
  color: var(--periwinkle);
}

.final-cta h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 3.1rem);
}

.final-cta > p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--on-dark);
  font-size: 1.08rem;
}

.final-cta .cta-actions {
  margin-top: 40px;
  justify-content: center;
}

.final-cta .secondary-action {
  background: transparent;
  border-color: rgba(242, 243, 244, 0.22);
  color: var(--white);
}

.final-cta .secondary-action:hover {
  border-color: rgba(242, 243, 244, 0.5);
}

.site-footer {
  border-top: 1px solid rgba(242, 243, 244, 0.1);
}

.footer-inner {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.site-footer .brand {
  color: var(--white);
  font-size: 0.96rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 500;
}

.footer-nav a {
  color: var(--on-dark);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-meta {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid rgba(242, 243, 244, 0.08);
  color: var(--on-dark-soft);
  font-size: 0.84rem;
}

.footer-meta a {
  color: var(--on-dark);
}

.footer-meta a:hover {
  color: var(--white);
}

/* --------------------------------------------------------------------------
   Scroll reveal — "generated by an assistant"
   Gated behind .js so content is always visible without JavaScript.
   -------------------------------------------------------------------------- */

/* :where() keeps specificity low so card :hover lifts still win once revealed. */
.js :where([data-reveal]) {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.8s var(--ease-out),
    box-shadow 0.3s ease, border-color 0.3s ease;
  transition-delay: calc(var(--stagger, 0) * 90ms);
}

.js :where([data-reveal].is-visible) {
  opacity: 1;
  transform: none;
}

/* Hover responses stay instant even on staggered cards. */
.js :where([data-reveal]):hover {
  transition-delay: 0s;
}

.js [data-reveal-words] .reveal-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
  filter: blur(7px);
  transition: opacity 0.5s ease, transform 0.55s var(--ease-out),
    filter 0.5s ease;
  transition-delay: calc(var(--wi) * 0.04s);
}

.js [data-reveal-words].is-visible .reveal-word {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

/* --------------------------------------------------------------------------
   Motion + responsive
   -------------------------------------------------------------------------- */

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

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

  .js [data-reveal],
  .js [data-reveal-words] .reveal-word {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 80px 0 76px;
  }

  .lanes,
  .trust-grid,
  .pricing-grid,
  .extras-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  .split-section {
    gap: 28px;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .page-end {
    margin-top: 76px;
  }

  .final-cta {
    padding: 84px 0 72px;
  }
}

@media (max-width: 560px) {
  .header-inner,
  .section,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .header-inner {
    min-height: 62px;
    gap: 12px;
  }

  .brand {
    font-size: 0.92rem;
    gap: 9px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
  }

  .utility-links {
    gap: 14px;
    font-size: 0.88rem;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    padding: 64px 0 60px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

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

  .prompt-demo-section {
    min-height: 430vh;
  }

  .prompt-stage {
    top: 62px;
    min-height: calc(100vh - 62px);
  }

  .assistant-body {
    min-height: 210px;
    padding: 22px 18px 10px;
  }

  .status-full {
    display: none;
  }

  .status-short {
    display: inline;
  }

  .typed-request {
    font-size: 1.18rem;
  }

  .assistant-titlebar {
    padding: 13px 16px;
  }

  .assistant-window .assistant-chip {
    font-size: 0.64rem;
    padding: 5px 10px;
  }

  .assistant-meta strong {
    font-size: 0.86rem;
  }

  .assistant-caption {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .steps li {
    padding-left: 0;
    padding-top: 88px;
  }

  .step-num {
    top: 30px;
  }

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

  .final-cta .cta-actions a {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* ==========================================================================
   Resources hub, AI Dispatch feed, posts & workshop
   ========================================================================== */

.resources-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.resources-hub-grid-single {
  grid-template-columns: 1fr;
}

/* --- Featured workshop card (dark, matches pricing FOM band) ----------- */

.workshop-feature {
  position: relative;
  margin-bottom: 24px;
  border-radius: var(--radius-xl);
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(32, 0, 177, 0.55) 0%,
    rgba(237, 75, 0, 0.45) 45%,
    rgba(32, 0, 177, 0.35) 100%
  );
  box-shadow:
    0 4px 12px rgba(32, 0, 177, 0.12),
    0 32px 80px rgba(32, 0, 177, 0.12),
    0 32px 80px rgba(237, 75, 0, 0.06);
}

.workshop-feature-inner {
  background: var(--midnight);
  border-radius: calc(var(--radius-xl) - 3px);
  padding: 48px 52px;
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

.workshop-feature-media picture,
.workshop-feature-image {
  display: block;
}

.workshop-feature-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 48px rgba(2, 0, 53, 0.45);
}

.workshop-feature-content h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 14px;
}

.workshop-feature-desc {
  color: var(--on-dark);
  line-height: 1.6;
  max-width: 560px;
  margin: 0 0 22px;
}

.workshop-feature-sessions {
  list-style: none;
  padding: 0;
  margin: 0 0 26px;
  display: grid;
  gap: 12px;
}

.workshop-feature-sessions li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  padding: 13px 17px;
  border: 1px solid rgba(242, 243, 244, 0.14);
  border-radius: var(--radius-sm);
  color: var(--on-dark);
}

.workshop-feature-sessions .workshop-session-date {
  font-weight: 600;
  color: var(--white);
}

.workshop-feature-sessions .workshop-session-time {
  color: var(--on-dark-soft);
  font-size: 0.92rem;
}

.workshop-feature-more {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(242, 243, 244, 0.3);
}

.workshop-feature-more:hover {
  color: var(--white);
  border-color: rgba(242, 243, 244, 0.6);
}

@media (max-width: 860px) {
  .workshop-feature-inner {
    grid-template-columns: 1fr;
    padding: 36px 32px;
    gap: 32px;
  }

  .workshop-feature-media {
    max-width: 420px;
  }
}

@media (max-width: 600px) {
  .workshop-feature-inner {
    padding: 28px 22px;
  }
}

.resources-hub-card {
  display: block;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: inherit;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.resources-hub-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.resources-hub-card h2 {
  margin: 10px 0 10px;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}

.resources-hub-card p {
  color: var(--body);
  line-height: 1.6;
  margin: 0 0 14px;
}

.resources-hub-cta {
  color: var(--kimchi);
  font-weight: 600;
}

/* --- Feed layout ------------------------------------------------------- */

.dispatch-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 48px;
  align-items: start;
}

.dispatch-list {
  display: grid;
  gap: 28px;
}

.dispatch-card {
  position: relative;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.dispatch-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}

.dispatch-card-media {
  position: relative;
  display: block;
  width: 168px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--midnight);
}

.dispatch-card-media img,
.dispatch-card-media picture,
.dispatch-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dispatch-card-media picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dispatch-card-play,
.video-facade-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(2, 0, 53, 0.72);
  color: var(--flash);
}

.dispatch-card-play svg,
.video-facade-play svg {
  width: 22px;
  height: 22px;
}

.dispatch-card-title {
  margin: 2px 0 8px;
  font-size: 1.18rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.dispatch-card-title a {
  color: inherit;
  text-decoration: none;
}

/* Stretch the title link over the whole card so it is all clickable. */
.dispatch-card-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
}

.dispatch-card:hover .dispatch-card-title a {
  color: var(--kimchi-deep);
}

.dispatch-card-title a:focus-visible::after {
  outline: 2px solid var(--kimchi);
  outline-offset: 2px;
}

.dispatch-card-desc {
  margin: 0 0 10px;
  color: var(--body);
  line-height: 1.55;
}

.dispatch-card-date {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--body-soft);
  text-transform: uppercase;
}

/* --- Feed sidebar ------------------------------------------------------- */

.workshop-promo {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: var(--midnight);
  color: var(--on-dark);
  box-shadow: var(--shadow-float);
}

.workshop-promo .section-label {
  color: var(--periwinkle);
}

.workshop-promo h2 {
  margin: 8px 0 4px;
  color: var(--flash);
  font-size: 1.5rem;
}

.workshop-promo-sub {
  margin: 0 0 12px;
  color: var(--periwinkle);
  font-weight: 600;
  font-size: 0.95rem;
}

.workshop-promo p {
  line-height: 1.6;
}

.workshop-promo-photo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  margin: 14px 0 18px;
  display: block;
}

.workshop-promo .primary-action {
  width: 100%;
  justify-content: center;
}

.dispatch-subscribe {
  margin-top: 22px;
  padding: 18px 22px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--body-soft);
}

.dispatch-subscribe p {
  margin: 0 0 4px;
  font-weight: 600;
  color: var(--ink);
}

.dispatch-subscribe a {
  color: var(--kimchi);
}

/* --- Post article ------------------------------------------------------- */

.post-breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 26px;
  padding: 0;
  font-size: 0.85rem;
  color: var(--body-soft);
}

.post-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 6px;
  color: var(--line-strong);
}

.post-breadcrumb a {
  color: var(--body);
  text-decoration: none;
}

.post-breadcrumb a:hover {
  color: var(--kimchi-deep);
}

.post-article,
.post-related {
  max-width: var(--narrow);
}

.post-header h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.7rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}

.post-standfirst {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 22px;
}

.post-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.post-byline-avatar {
  border-radius: 50%;
  display: block;
}

.post-byline-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.post-byline-date {
  display: block;
  font-size: 0.82rem;
  color: var(--body-soft);
}

.post-hero {
  margin: 0 0 34px;
}

.post-hero img,
.post-hero picture img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
}

.video-facade {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--midnight);
  aspect-ratio: 16 / 9;
}

.video-facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-facade-play {
  width: 68px;
  height: 68px;
  background: rgba(237, 75, 0, 0.92);
  transition: transform 0.2s var(--ease-out);
}

.video-facade:hover .video-facade-play {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-facade iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-body {
  line-height: 1.75;
  color: var(--body);
  font-size: 1.04rem;
}

.post-body h2 {
  color: var(--ink);
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  margin: 38px 0 14px;
}

.post-body h3 {
  color: var(--ink);
  font-size: 1.15rem;
  margin: 30px 0 10px;
}

.post-body a {
  color: var(--kimchi-deep);
}

.post-body blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 20px;
  border-left: 3px solid var(--kimchi);
  color: var(--ink);
  font-weight: 500;
}

.post-body blockquote p {
  margin: 0;
}

.post-body ul,
.post-body ol {
  padding-left: 24px;
}

.post-body li {
  margin-bottom: 8px;
}

.post-body img,
.post-body picture img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  display: block;
  margin: 28px 0;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 0;
}

.post-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--body-soft);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 4px 12px;
}

.post-related-heading {
  font-size: 1.3rem;
  margin: 0 0 22px;
}

/* --- Workshop page ------------------------------------------------------ */

.workshop-page {
  max-width: var(--narrow);
}

.workshop-hero h1 {
  font-size: clamp(2rem, 4.8vw, 2.9rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.workshop-standfirst {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--body);
  margin: 0 0 20px;
}

.workshop-hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}

.workshop-hero-points li {
  padding-left: 26px;
  position: relative;
  color: var(--body);
  line-height: 1.55;
}

.workshop-hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--kimchi);
}

.workshop-hero-close {
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 26px;
}

.workshop-hero-media {
  margin: 36px 0;
}

.workshop-hero-media picture,
.workshop-hero-image {
  display: block;
}

.workshop-hero-image {
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
}

.workshop-sessions {
  margin: 44px 0;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--midnight);
  color: var(--on-dark);
  box-shadow: var(--shadow-float);
}

.workshop-sessions h2 {
  color: var(--flash);
  margin: 0 0 8px;
  font-size: 1.3rem;
}

.workshop-sessions-note {
  font-size: 0.88rem;
  color: var(--on-dark-soft);
  margin: 0 0 18px;
}

.workshop-sessions ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  gap: 14px;
}

.workshop-sessions li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  padding: 14px 18px;
  border: 1px solid rgba(242, 243, 244, 0.14);
  border-radius: var(--radius-sm);
}

.workshop-session-date {
  font-weight: 600;
  color: var(--flash);
}

.workshop-session-time {
  color: var(--periwinkle);
  font-size: 0.92rem;
}

.workshop-host {
  margin-top: 52px;
}

.workshop-host h2 {
  font-size: 1.3rem;
  margin: 0 0 20px;
}

.workshop-host-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.workshop-host-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.workshop-host-name {
  font-weight: 650;
  margin: 0 0 2px;
}

.workshop-host-role {
  color: var(--kimchi-deep);
  font-size: 0.9rem;
  margin: 0 0 10px;
}

.workshop-host-card p:last-child {
  color: var(--body);
  line-height: 1.6;
  margin: 0;
}

.workshop-cta {
  margin-top: 60px;
}

/* The shared .final-cta styles assume a dark background; the workshop CTA
   sits on white, so restore light-page colours for the secondary link. */
.workshop-cta .secondary-action {
  background: var(--white);
  border-color: var(--line-strong);
  color: var(--ink);
}

.workshop-cta .secondary-action:hover {
  border-color: rgba(2, 0, 53, 0.3);
}

.workshop-cta .section-label {
  color: var(--deep-sea);
}

/* --- Footer social ------------------------------------------------------ */

.footer-social {
  display: flex;
  gap: 18px;
}

.footer-social a {
  color: var(--body-soft);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-social a:hover {
  color: var(--kimchi-deep);
}

@media (max-width: 920px) {
  .dispatch-layout {
    grid-template-columns: 1fr;
  }

  .resources-hub-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .dispatch-card {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 14px;
    padding: 14px;
  }

  .dispatch-card-media {
    width: 108px;
  }

  .workshop-host-card {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Pricing page — Find your pack, pack groups, and copy refresh
   ========================================================================== */

/* Anchor targets sit beneath the sticky header. */
#starter,
#growth,
#scale,
#internal-tool,
#product-launch,
#future-operating-model {
  scroll-margin-top: 96px;
}

/* --- Find your pack: quirky animated anchor links ----------------------- */

.find-pack-lead {
  margin-bottom: 40px;
}

.find-pack-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  max-width: 880px;
}

.find-pack-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease,
    border-color 0.3s ease, background 0.3s ease;
}

.find-pack-link:hover,
.find-pack-link:focus-visible {
  transform: translateX(8px);
  border-color: rgba(237, 75, 0, 0.4);
  box-shadow: var(--shadow-float);
  background: var(--flash);
  outline: none;
}

.fp-want {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.fp-go {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.fp-pack {
  padding: 6px 13px;
  border-radius: 99px;
  background: rgba(32, 0, 177, 0.07);
  color: var(--deep-sea);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.3s ease, color 0.3s ease;
}

.find-pack-link:hover .fp-pack,
.find-pack-link:focus-visible .fp-pack {
  background: var(--kimchi);
  color: var(--white);
}

.fp-arrow {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  color: var(--kimchi);
  animation: fp-nudge 2.6s var(--ease-out) infinite;
  animation-delay: calc(var(--i, 0) * 0.16s);
}

.find-pack-link:hover .fp-arrow,
.find-pack-link:focus-visible .fp-arrow {
  animation: none;
  transform: translateX(4px);
  transition: transform 0.3s var(--ease-out);
}

/* A playful, staggered nudge that ripples down the list to invite a click. */
@keyframes fp-nudge {
  0%,
  58%,
  100% {
    transform: translateX(0);
  }
  72% {
    transform: translateX(6px);
  }
  86% {
    transform: translateX(2px);
  }
}

/* --- Pack groups + three-up grid ---------------------------------------- */

.pack-group {
  max-width: 760px;
  margin-bottom: 28px;
}

.pricing-grid + .pack-group {
  margin-top: 56px;
}

.pack-group__title {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.pack-group__desc {
  color: var(--body);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.pricing-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.pack-smallprint {
  margin: 28px 0 0;
  max-width: 940px;
  color: var(--body-soft);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Bold lead-ins inside pack lists. */
.pack-list li strong {
  color: var(--ink);
  font-weight: 600;
}

.fom-list li strong {
  color: var(--flash);
  font-weight: 600;
}

/* The rich variant carries a bold lead-in plus body text in one item, so it
   must flow as a block — the base flex layout would split them into columns. */
.how-list--rich li {
  display: block;
  padding-top: 3px;
  line-height: 1.6;
}

.how-list--rich li strong {
  color: var(--ink);
  font-weight: 650;
}

.move-up-list {
  margin-top: 20px;
}

/* --- Future Operating Model: footer block ------------------------------- */

.fom-footer {
  padding-top: 40px;
  border-top: 1px solid rgba(242, 243, 244, 0.12);
}

.fom-map {
  color: var(--on-dark);
  font-size: 1rem;
  max-width: 760px;
  margin-bottom: 0;
}

.fom-closing {
  color: var(--on-dark-soft);
  font-size: 0.95rem;
  max-width: 660px;
  margin: 24px 0;
}

@media (max-width: 920px) {
  .pricing-grid--three {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .find-pack-link {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* --- AI Loops topic hub ------------------------------------------------- */

.ai-loops-hub-sections {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 48px;
}

.ai-loops-hub-group h2 {
  font-size: 1.05rem;
  margin: 0 0 12px;
}

.ai-loops-hub-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ai-loops-hub-group li a {
  color: var(--body);
  text-decoration: none;
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}

.ai-loops-hub-group li a:hover {
  color: var(--kimchi);
  border-bottom-color: var(--kimchi);
}

.ai-loops-hub .workshop-promo {
  margin-top: 56px;
}

@media (max-width: 760px) {
  .ai-loops-hub-sections {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Email capture & content gates
   Full content always ships in the HTML; gating is presentational and
   driven by classes on <html>: .js (script running), .is-subscribed
   (unlocked everywhere, forever), .gate-dismissed (this tab session).
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* --- Subscribe form (shared) -------------------------------------------- */

.subscribe-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subscribe-form input[type="email"] {
  flex: 1 1 220px;
  min-width: 0;
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
}

.subscribe-form input[type="email"]:focus-visible {
  outline: 2px solid var(--kimchi);
  outline-offset: 2px;
}

.subscribe-form .primary-action {
  white-space: nowrap;
}

.subscribe-form-status {
  margin: 8px 0 0;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: var(--body);
}

.subscribe-form.is-subscribed-success .subscribe-form-row {
  display: none;
}

.subscribe-form.is-subscribed-success .subscribe-form-status {
  font-weight: 600;
  color: var(--kimchi-deep);
}

/* Subscribers don't get asked again (a just-completed form keeps its
   success message visible). */
.is-subscribed [data-subscribe-form]:not(.is-subscribed-success) {
  display: none;
}

.is-subscribed .footer-subscribe:not(:has(.is-subscribed-success)) {
  display: none;
}

/* --- Footer subscribe ---------------------------------------------------- */

.footer-subscribe {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.footer-subscribe-title {
  margin: 0 0 4px;
  font-weight: 650;
  color: var(--ink);
}

.footer-subscribe-desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--body-soft);
}

@media (max-width: 720px) {
  .footer-subscribe {
    grid-template-columns: minmax(0, 1fr);
    padding: 24px 20px;
  }
}

/* --- Article soft gate ---------------------------------------------------- */

.post-gate-scope {
  position: relative;
}

.post-gate {
  display: none;
}

.js:not(.is-subscribed):not(.gate-dismissed) .post-gate-scope [data-gated-body] {
  max-height: 46rem;
  overflow: hidden;
}

.js:not(.is-subscribed):not(.gate-dismissed) .post-gate {
  display: block;
  position: relative;
}

.post-gate-fade {
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  height: 11rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--white) 92%);
  pointer-events: none;
}

.post-gate-card {
  max-width: var(--narrow);
  margin: 0 auto;
  padding: 30px 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--flash);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.post-gate-title {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.post-gate-desc {
  margin: 0 auto 18px;
  max-width: 460px;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--body);
}

.post-gate-card .subscribe-form-row {
  justify-content: center;
}

.post-gate-card .subscribe-form input[type="email"] {
  flex: 0 1 300px;
}

.post-gate-dismiss {
  margin-top: 14px;
  padding: 4px 6px;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.86rem;
  color: var(--body-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.post-gate-dismiss:hover {
  color: var(--ink);
}

/* --- Workshop recording gate --------------------------------------------- */

.workshop-recording {
  margin: 44px 0;
}

.workshop-recording h2 {
  margin: 0 0 4px;
  font-size: 1.4rem;
}

.workshop-recording-meta {
  margin: 0 0 20px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--body-soft);
}

.workshop-video-locked {
  display: none;
  border-radius: var(--radius-lg);
  background: var(--midnight);
  color: var(--on-dark);
  box-shadow: var(--shadow-float);
}

.workshop-video-locked-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 44px 32px;
  text-align: center;
}

.workshop-video-locked-title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 650;
  color: var(--flash);
}

.workshop-video-locked-desc {
  margin: 0 0 20px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--on-dark);
}

.workshop-video-locked .subscribe-form-row {
  justify-content: center;
}

.workshop-video-locked .subscribe-form-status {
  color: var(--periwinkle);
}

/* Lock the video only for JS visitors who haven't subscribed; crawlers
   and no-JS readers get the plain facade (the text around it is the
   crawlable asset — the video is the human one). */
.js:not(.is-subscribed) .workshop-video-locked {
  display: block;
}

.js:not(.is-subscribed) .workshop-video-unlocked {
  display: none;
}

.workshop-video-unlocked .video-facade {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-float);
}

/* --- Workshop articles & transcript -------------------------------------- */

.workshop-articles {
  margin: 52px 0;
}

.workshop-articles h2 {
  margin: 6px 0 8px;
  font-size: 1.4rem;
}

.workshop-articles-intro {
  margin: 0 0 24px;
  color: var(--body);
}

.workshop-transcript {
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 6px 22px;
  background: var(--flash);
}

.workshop-transcript summary {
  padding: 12px 0;
  font-weight: 650;
  color: var(--ink);
  cursor: pointer;
}

.workshop-transcript[open] summary {
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
}

/* --- Workshop interest form ----------------------------------------------- */

.workshop-interest {
  margin: 52px 0;
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--flash);
}

.workshop-interest h2 {
  margin: 4px 0 10px;
  font-size: 1.4rem;
}

.workshop-interest > p {
  max-width: 560px;
  margin: 0 0 22px;
  color: var(--body);
  line-height: 1.6;
}

.workshop-interest-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 680px;
}

.interest-field {
  display: grid;
  gap: 6px;
}

.interest-field:nth-of-type(4),
.workshop-interest-form .primary-action,
.workshop-interest-form .subscribe-form-status {
  grid-column: 1 / -1;
}

.workshop-interest-form .primary-action {
  justify-self: start;
}

.interest-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.interest-optional {
  font-weight: 400;
  color: var(--body-soft);
}

.interest-field input,
.interest-field textarea {
  padding: 12px 16px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  resize: vertical;
}

.interest-field input:focus-visible,
.interest-field textarea:focus-visible {
  outline: 2px solid var(--kimchi);
  outline-offset: 2px;
}

.workshop-interest-form.is-sent .primary-action {
  display: none;
}

@media (max-width: 640px) {
  .workshop-interest-form {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- Workshops index ------------------------------------------------------ */

.workshops-group-title {
  margin: 40px 0 18px;
  font-size: 1.25rem;
}

.workshops-index .workshop-feature-content h3 {
  color: var(--white);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  letter-spacing: -0.03em;
  line-height: 1.18;
  margin: 0 0 14px;
}
