:root {
  --bg: #fbfaf6;
  --paper: #ffffff;
  --paper-2: #f4f2ed;
  --ink: #0b0b0a;
  --ink-2: #2d2c29;
  --muted: #737067;
  --muted-2: #a19d93;
  --line: rgba(12, 12, 10, 0.1);
  --line-strong: rgba(12, 12, 10, 0.16);
  --accent: #ff5a1f;
  --accent-soft: #ffe8dc;
  --green: #27c940;
  --shadow: 0 18px 54px rgba(18, 15, 12, 0.1);
  --radius: 8px;
  --max: 1280px;
  --nav-height: 82px;
}

/* AI Jiuliang consultation guide */
.ai-consult-page {
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 79, 33, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(247, 244, 238, 0.72));
}

.ai-consult-band {
  padding-top: 118px;
  padding-bottom: 76px;
}

.ai-consult-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  grid-template-areas:
    "copy stage"
    "contact contact";
  gap: 42px 56px;
  align-items: center;
}

.ai-consult-copy {
  grid-area: copy;
  min-width: 0;
}

.ai-consult-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 24px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(36, 30, 24, 0.08);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
}

.ai-consult-pill span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 79, 33, 0.12);
  flex: 0 0 auto;
}

.ai-consult-pill.is-small {
  margin-bottom: 14px;
  padding: 8px 13px;
  font-size: 13px;
}

.ai-consult-copy h1 {
  margin: 0;
  font-size: clamp(54px, 5.4vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 820px;
}

.ai-consult-lead {
  margin: 20px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 700;
}

.ai-consult-quick-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.ai-consult-quick-links span {
  color: var(--muted);
  font-weight: 800;
  font-size: 13px;
}

.ai-consult-quick-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.ai-consult-dialogue-card {
  margin-top: 28px;
  padding: 24px 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(36, 30, 24, 0.08);
}

.ai-consult-dialogue-card span {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 79, 33, 0.12);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.ai-consult-dialogue-card p {
  margin: 18px 0 0;
  font-size: 20px;
  line-height: 1.65;
  font-weight: 850;
}

.ai-consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.ai-consult-stage {
  grid-area: stage;
  min-width: 0;
}

.ai-consult-stage-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 30px 80px rgba(36, 30, 24, 0.12);
  overflow: visible;
}

.ai-consult-stage-card::before {
  content: "";
  position: absolute;
  inset: 42px -24px;
  border: 1px solid rgba(255, 79, 33, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.ai-consult-stage-card img {
  position: relative;
  z-index: 1;
  width: min(82%, 340px);
  max-height: 370px;
  object-fit: contain;
  transform-origin: 50% 88%;
  transition: transform 220ms ease, filter 220ms ease;
}

.ai-consult-stage-card img.is-cheer,
.ai-consult-stage-card img.is-fist-up,
.ai-consult-stage-card img.is-wave {
  transform: translateY(-6px) scale(1.02);
}

.ai-consult-stage-card img.is-crouch,
.ai-consult-stage-card img.is-sleep {
  width: min(76%, 316px);
  transform: translateY(0);
}

.ai-consult-floating {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 2px;
  min-width: 118px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(36, 30, 24, 0.1);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.ai-consult-floating strong {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.ai-consult-floating.is-build {
  top: 70px;
  left: -26px;
}

.ai-consult-floating.is-traffic {
  top: 190px;
  right: -24px;
}

.ai-consult-floating.is-team {
  bottom: 116px;
  left: -10px;
}

.ai-consult-stage-footer {
  position: absolute;
  z-index: 3;
  left: 30px;
  right: 30px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(10, 9, 8, 0.96);
  color: #fff;
  font-weight: 900;
}

.ai-consult-stage-footer strong {
  color: #ffb19b;
}

.ai-consult-stage-footer span {
  font-size: 14px;
}

.ai-consult-contact-panel {
  grid-area: contact;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 480px);
  gap: 34px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 70px rgba(36, 30, 24, 0.09);
}

.ai-consult-contact-panel h2 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.05;
  letter-spacing: 0;
}

.ai-consult-contact-panel p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.ai-consult-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ai-consult-contact-grid.is-single {
  grid-template-columns: 1fr;
}

.ai-consult-contact-card {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ai-consult-contact-card[hidden],
.ai-consult-contact-card.is-hidden {
  display: none;
}

.ai-consult-contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 33, 0.4);
  box-shadow: 0 20px 46px rgba(36, 30, 24, 0.1);
}

.ai-consult-contact-card span {
  justify-self: start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 79, 33, 0.12);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.ai-consult-contact-card strong {
  font-size: 28px;
  line-height: 1;
}

.ai-consult-contact-card em {
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 980px) {
  .ai-consult-band {
    padding-top: 98px;
    padding-bottom: 44px;
  }

  .ai-consult-layout {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .ai-consult-contact-panel {
    order: 1;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px;
    border-radius: 22px;
  }

  .ai-consult-contact-panel h2 {
    font-size: clamp(30px, 7vw, 40px);
  }

  .ai-consult-contact-panel p {
    font-size: 14px;
    line-height: 1.65;
  }

  .ai-consult-contact-grid {
    grid-template-columns: 1fr;
  }

  .ai-consult-contact-card {
    min-height: 96px;
    padding: 16px;
  }

  .ai-consult-stage {
    order: 2;
    width: 100%;
  }

  .ai-consult-stage-card {
    min-height: 360px;
    padding: 20px;
    border-radius: 26px;
  }

  .ai-consult-stage-card img {
    width: min(74%, 260px);
    max-height: 270px;
  }

  .ai-consult-stage-card img.is-crouch,
  .ai-consult-stage-card img.is-sleep {
    width: min(68%, 240px);
  }

  .ai-consult-floating {
    min-width: 98px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .ai-consult-floating.is-build {
    top: 58px;
    left: 10px;
  }

  .ai-consult-floating.is-traffic {
    top: 132px;
    right: 10px;
  }

  .ai-consult-floating.is-team {
    bottom: 86px;
    left: 14px;
  }

  .ai-consult-stage-footer {
    left: 22px;
    right: 22px;
    bottom: 18px;
  }

  .ai-consult-copy {
    order: 3;
    width: 100%;
    display: none;
  }
}

@media (max-width: 520px) {
  .ai-consult-band {
    padding-top: 88px;
  }

  .ai-consult-stage-card {
    min-height: 330px;
  }

  .ai-consult-stage-card img {
    width: min(72%, 230px);
  }

  .ai-consult-stage-footer {
    font-size: 14px;
  }

  .ai-consult-stage-footer span {
    font-size: 12px;
  }
}

/* Restored AI Jiuliang consultation layout */
.ai-consult-page {
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 90, 31, 0.08), transparent 35%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.94), rgba(247, 244, 238, 0.72));
}

.consult-scene {
  width: min(1180px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 18px 0 42px;
}

.consult-scene .hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(390px, 0.74fr);
  gap: 54px;
  align-items: center;
  min-height: auto;
  padding: 18px 0 34px;
}

.consult-scene .copy-panel {
  min-width: 0;
}

.consult-scene .kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(36, 30, 24, 0.08);
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.2;
}

.consult-scene .kicker i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 90, 31, 0.12);
}

.consult-scene .copy-panel h1 {
  margin: 0;
  max-width: none;
  color: var(--ink);
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.consult-scene .lead {
  max-width: 630px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.58;
}

.consult-scene .path-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.consult-scene .path-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.consult-scene .dialogue-card {
  display: grid;
  gap: 15px;
  width: min(600px, 100%);
  min-height: 118px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(36, 30, 24, 0.08);
}

.consult-scene .speaker {
  justify-self: start;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.consult-scene .dialogue-card p {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.55;
}

.consult-scene .ai-consult-lines {
  display: none;
}

.consult-scene .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.consult-scene .primary-action,
.consult-scene .secondary-action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(18, 15, 12, 0.06);
}

.consult-scene .primary-action {
  border-color: transparent;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 42px rgba(255, 90, 31, 0.22);
}

.consult-scene .primary-action span,
.consult-scene .secondary-action span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.consult-scene .secondary-action span {
  background: var(--accent-soft);
  color: var(--accent);
}

.consult-scene .ai-stage {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 520px;
  place-items: center;
}

.consult-scene .avatar-card {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(440px, 86vw);
  margin: 0;
  padding: 34px 30px 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 30px 80px rgba(36, 30, 24, 0.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.consult-scene .avatar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 36px 88px rgba(36, 30, 24, 0.14);
}

.consult-scene .avatar-wrap {
  position: relative;
  display: grid;
  min-height: 346px;
  place-items: center;
  overflow: hidden;
}

.consult-scene .ai-avatar {
  width: min(82%, 320px);
  max-height: 340px;
  object-fit: contain;
  transform-origin: 50% 88%;
  filter: drop-shadow(0 18px 26px rgba(21, 16, 12, 0.13));
  transition: width 220ms ease, transform 220ms ease, filter 220ms ease;
}

.consult-scene .ai-avatar.is-cheer,
.consult-scene .ai-avatar.is-fist-up,
.consult-scene .ai-avatar.is-wave {
  transform: translateY(-5px) scale(1.02);
}

.consult-scene .ai-avatar.is-look-left {
  transform: translateX(-4px);
}

.consult-scene .ai-avatar.is-look-right {
  transform: translateX(4px);
}

.consult-scene .ai-avatar.is-think,
.consult-scene .ai-avatar.is-point {
  transform: translateY(-2px) scale(1.01);
}

.consult-scene .ai-avatar.is-crouch,
.consult-scene .ai-avatar.is-sleep {
  width: min(75%, 292px);
  transform: translateY(0);
}

.consult-scene .tap-hint {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.consult-scene .avatar-card:hover .tap-hint {
  opacity: 1;
  transform: translateY(0);
}

.consult-scene .avatar-card figcaption {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
  border-radius: 16px;
  background: rgba(10, 9, 8, 0.96);
  color: #fff;
  font-weight: 900;
}

.consult-scene .avatar-card figcaption span {
  color: #ffb19b;
}

.consult-scene .avatar-card figcaption strong {
  font-size: 14px;
}

.consult-scene .orbit {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.consult-scene .orbit-one {
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 90, 31, 0.15);
  transform: rotate(-12deg);
}

.consult-scene .orbit-two {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.07), transparent 62%);
}

.consult-scene .floating-note {
  position: absolute;
  z-index: 3;
  min-width: 118px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 38px rgba(36, 30, 24, 0.1);
  color: var(--accent);
  font-size: 14px;
  font-weight: 950;
  line-height: 1.3;
}

.consult-scene .floating-note b {
  display: block;
  margin-top: 3px;
  color: var(--ink);
  font-size: 14px;
}

.consult-scene .note-build {
  top: 84px;
  left: 2px;
}

.consult-scene .note-traffic {
  top: 202px;
  right: -8px;
}

.consult-scene .note-team {
  bottom: 118px;
  left: 28px;
}

.consult-scene .contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 480px);
  gap: 28px;
  align-items: center;
  margin-top: 10px;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 64px rgba(36, 30, 24, 0.08);
}

.consult-scene .contact-section h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.consult-scene .contact-section p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.consult-scene .contact-section .contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.consult-scene .contact-section .contact-grid.is-single {
  grid-template-columns: 1fr;
}

.consult-scene .contact-section .contact-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: none;
  gap: 8px;
  min-width: 0;
  min-height: 106px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.consult-scene .contact-section .contact-card[hidden],
.consult-scene .contact-section .contact-card.is-hidden {
  display: none;
}

.consult-scene .contact-section .contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.4);
  box-shadow: 0 18px 42px rgba(36, 30, 24, 0.1);
}

.consult-scene .contact-section .contact-card span {
  justify-self: start;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.12);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.consult-scene .contact-section .contact-card strong {
  grid-area: auto;
  font-size: 26px;
  line-height: 1;
}

.consult-scene .contact-section .contact-card em {
  display: inline-flex;
  grid-area: auto;
  align-items: center;
  gap: 6px;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

@media (max-width: 980px) {
  .consult-scene {
    display: flex;
    width: min(100% - 28px, 680px);
    flex-direction: column;
    gap: 16px;
    padding: 16px 0 34px;
  }

  .consult-scene .hero-panel {
    order: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    padding: 0;
  }

  .consult-scene .contact-section {
    order: 1;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
    padding: 18px;
    border-radius: 20px;
  }

  .consult-scene .contact-section h2 {
    white-space: normal;
    font-size: clamp(26px, 7vw, 36px);
  }

  .consult-scene .contact-section .contact-grid {
    grid-template-columns: 1fr;
  }

  .consult-scene .contact-section .contact-card {
    min-height: 88px;
    padding: 14px 16px;
  }

  .consult-scene .ai-stage {
    order: 1;
    width: 100%;
    min-height: 350px;
  }

  .consult-scene .avatar-card {
    width: min(100%, 420px);
    padding: 20px 20px 18px;
    border-radius: 24px;
  }

  .consult-scene .avatar-wrap {
    min-height: 268px;
  }

  .consult-scene .ai-avatar {
    width: min(76%, 240px);
    max-height: 260px;
  }

  .consult-scene .ai-avatar.is-crouch,
  .consult-scene .ai-avatar.is-sleep {
    width: min(68%, 220px);
  }

  .consult-scene .floating-note {
    min-width: 96px;
    padding: 10px 12px;
    font-size: 12px;
  }

  .consult-scene .floating-note b {
    font-size: 12px;
  }

  .consult-scene .note-build {
    top: 52px;
    left: 2px;
  }

  .consult-scene .note-traffic {
    top: 126px;
    right: 2px;
  }

  .consult-scene .note-team {
    bottom: 78px;
    left: 12px;
  }

  .consult-scene .orbit-one {
    width: 340px;
    height: 340px;
  }

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

  .consult-scene .copy-panel {
    order: 2;
    display: none;
  }
}

@media (max-width: 520px) {
  .consult-scene {
    width: calc(100% - 20px);
    gap: 12px;
  }

  .consult-scene .contact-section {
    padding: 16px;
  }

  .consult-scene .ai-stage {
    min-height: 324px;
  }

  .consult-scene .avatar-card {
    padding: 16px 16px 14px;
  }

  .consult-scene .avatar-wrap {
    min-height: 246px;
  }

  .consult-scene .ai-avatar {
    width: min(74%, 220px);
  }

  .consult-scene .avatar-card figcaption {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 13px;
  }

  .consult-scene .avatar-card figcaption strong {
    font-size: 12px;
  }

  .consult-scene .tap-hint {
    display: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 18px);
  overflow-x: hidden;
  background: var(--bg);
}

body {
  margin: 0;
  padding-top: var(--nav-height);
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 72% 32%, rgba(255, 90, 31, 0.08), transparent 34%),
    radial-gradient(circle at 18% 85%, rgba(255, 90, 31, 0.05), transparent 28%),
    var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

[id] {
  scroll-margin-top: calc(var(--nav-height) + 18px);
}

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 38px;
}

.section-band {
  padding: 88px 0;
  border-bottom: 1px solid var(--line);
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  padding: 0 max(38px, calc((100vw - var(--max)) / 2));
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(145%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 9px;
  background: #000;
  box-shadow: 0 4px 12px rgba(12, 12, 10, 0.1);
}

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

.brand strong {
  display: inline-block;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.brand em {
  display: inline-block;
  margin-left: 10px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-style: normal;
  letter-spacing: 0.03em;
}

.site-nav nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper-2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-nav nav a {
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
}

.site-nav nav a.is-active,
.site-nav nav a:hover {
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 4px 14px rgba(18, 15, 12, 0.06);
}

.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  justify-self: end;
  min-width: 76px;
  height: 42px;
  padding: 0 13px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 8px 18px rgba(18, 15, 12, 0.08);
  cursor: pointer;
}

.nav-menu-toggle .menu-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-menu-toggle .menu-lines i {
  display: block;
  width: 17px;
  height: 2px;
  border-radius: 99px;
  background: var(--paper);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-menu-toggle b {
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.site-nav.nav-open .nav-menu-toggle .menu-lines i:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.site-nav.nav-open .nav-menu-toggle .menu-lines i:nth-child(2) {
  opacity: 0;
}

.site-nav.nav-open .nav-menu-toggle .menu-lines i:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 22px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(12, 12, 10, 0.12);
}

.nav-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(18, 15, 12, 0.06);
}

.language-switch:hover {
  border-color: var(--line-strong);
  color: var(--ink);
}

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

.nav-cta span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(39, 201, 64, 0.18);
}

.hero {
  min-height: auto;
  padding: 24px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.82fr);
  gap: 50px;
  align-items: center;
}

.hero-portal {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.54fr);
  gap: 46px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 90%, transparent);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(18, 15, 12, 0.04);
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-title {
  max-width: 780px;
  margin: 0 0 18px;
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  font-size: clamp(52px, 5.2vw, 78px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-title span {
  display: block;
  color: var(--accent);
  font-style: italic;
}

.hero-title small {
  display: block;
  max-width: 660px;
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(30px, 2.75vw, 44px);
  font-weight: 900;
  line-height: 1.12;
}

.portrait-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  margin: 0;
  overflow: visible;
}

.portrait-card::before {
  content: "";
  position: absolute;
  inset: 12% 2% 6% 8%;
  border-radius: 42% 42% 10% 10%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 90, 31, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 242, 237, 0.4));
  filter: blur(0.1px);
}

.portrait-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 460px);
  height: min(68vh, 680px);
  min-height: 520px;
  object-fit: contain;
  object-position: center bottom;
  border: 0;
  border-radius: 0;
  filter: saturate(1.02) contrast(1.02) drop-shadow(0 34px 46px rgba(18, 15, 12, 0.16));
  box-shadow: none;
}

.portrait-card figcaption {
  position: absolute;
  left: 7%;
  bottom: 6%;
  z-index: 2;
  display: grid;
  gap: 5px;
  width: min(350px, calc(100% - 34px));
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--ink) 84%, transparent);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.portrait-card b {
  font-size: 18px;
  line-height: 1.2;
}

.portrait-card span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.hero-video-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  margin: 0;
  isolation: isolate;
}

.hero-video-card::before {
  content: "";
  position: absolute;
  inset: 10% -4% 8%;
  z-index: -1;
  border-radius: 42%;
  background:
    radial-gradient(ellipse at 52% 28%, rgba(255, 90, 31, 0.12), transparent 46%),
    radial-gradient(ellipse at 50% 86%, rgba(18, 15, 12, 0.1), transparent 58%);
  filter: blur(16px);
}

.hero-video-frame {
  width: min(100%, 340px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(238, 234, 224, 0.78)),
    var(--paper);
  box-shadow:
    0 22px 58px rgba(18, 15, 12, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #11100e;
  object-fit: cover;
}

.hero-video-card figcaption {
  display: grid;
  gap: 3px;
  width: min(292px, calc(100% - 30px));
  margin: -38px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  box-shadow: 0 16px 36px rgba(18, 15, 12, 0.12);
  backdrop-filter: blur(14px);
}

.hero-video-card b {
  font-size: 16px;
  line-height: 1.25;
}

.hero-video-card span {
  color: var(--muted);
  font-size: 13px;
}

.retro-portrait {
  position: relative;
  display: grid;
  justify-items: center;
  align-items: center;
  min-width: 0;
  min-height: 650px;
  margin: 0;
  padding: 24px 0 80px;
  perspective: 2200px;
  isolation: isolate;
}

.retro-portrait::before {
  content: "";
  position: absolute;
  inset: 3% -6% 3%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 55% 43%, rgba(255, 90, 31, 0.12), rgba(250, 238, 222, 0.2) 34%, transparent 72%),
    radial-gradient(ellipse at 50% 67%, rgba(20, 18, 14, 0.12), transparent 58%);
  filter: blur(4px);
}

.retro-portrait::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 56px;
  z-index: -1;
  width: 430px;
  height: 80px;
  transform: translateX(-46%) skewX(-12deg);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(18, 15, 12, 0.18), rgba(18, 15, 12, 0.08) 48%, transparent 74%);
  filter: blur(18px);
  opacity: 0.82;
}

.portal-scene {
  position: relative;
  width: 460px;
  height: 560px;
  display: grid;
  place-items: center;
  transform: translateX(12px) scale(1.06) rotateY(-18deg) rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 520ms cubic-bezier(0.2, 0.78, 0.2, 1), filter 520ms ease;
  filter: saturate(0.98);
}

.retro-portrait:hover .portal-scene {
  transform: translateX(6px) translateY(-6px) scale(1.08) rotateY(-12deg) rotateX(3deg);
  filter: saturate(1.03);
}

.portal-scene::before {
  content: "";
  position: absolute;
  inset: 12% 8% 16%;
  z-index: -1;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(227, 222, 210, 0.52), rgba(227, 222, 210, 0.18) 42%, transparent 72%);
  filter: blur(34px);
}

.portal-unit {
  position: relative;
  width: 320px;
  height: 400px;
  transform-style: preserve-3d;
}

.portal-face {
  position: absolute;
  backface-visibility: hidden;
}

.portal-front {
  width: 320px;
  height: 400px;
  transform: translateZ(90px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 36px;
  border-radius: 7px 11px 11px 7px;
  background:
    linear-gradient(135deg, rgba(255, 253, 244, 0.95) 0%, rgba(228, 223, 208, 0.98) 62%, rgba(211, 203, 184, 0.98) 100%),
    #e9e2ce;
  box-shadow:
    inset 2px 2px 6px rgba(255, 255, 255, 0.9),
    inset -8px -10px 22px rgba(74, 62, 42, 0.14),
    0 1px 0 rgba(255, 255, 255, 0.75);
}

.portal-back {
  width: 320px;
  height: 400px;
  transform: translateZ(-90px) rotateY(180deg);
  background: #c4bead;
}

.portal-left {
  width: 180px;
  height: 400px;
  transform: rotateY(-90deg) translateZ(90px);
  background: linear-gradient(90deg, #e5dfcc, #d7d0bd);
  box-shadow: inset 12px 0 22px rgba(255, 255, 255, 0.28);
}

.portal-right {
  width: 180px;
  height: 400px;
  transform: rotateY(90deg) translateZ(230px);
  background: linear-gradient(90deg, #cfc7b3, #b9b19e);
  box-shadow: inset 12px 0 22px rgba(64, 54, 38, 0.14);
}

.portal-top {
  width: 320px;
  height: 180px;
  transform: rotateX(90deg) translateZ(90px);
  background: linear-gradient(180deg, #f4efdf, #ddd6c2);
}

.portal-bottom {
  width: 320px;
  height: 180px;
  transform: rotateX(-90deg) translateZ(310px);
  background: #a79f8e;
  box-shadow: 0 58px 90px rgba(18, 15, 12, 0.28);
}

.portal-screen-inset {
  width: 250px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 15px;
  background: #d0cbc0;
  box-shadow:
    inset 3px 3px 9px rgba(76, 65, 47, 0.22),
    inset -3px -3px 8px rgba(255, 255, 255, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.48);
}

.portal-crt {
  position: relative;
  width: 230px;
  height: 180px;
  overflow: hidden;
  border-radius: 38% 38% 40% 40% / 9% 9% 14% 14%;
  background: #090908;
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.95),
    inset 0 0 0 2px rgba(255, 255, 255, 0.04);
}

.portal-crt::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.28) 50%),
    linear-gradient(90deg, rgba(255, 80, 31, 0.07), rgba(0, 255, 168, 0.025), rgba(60, 120, 255, 0.07));
  background-size: 100% 2px, 3px 100%;
  mix-blend-mode: screen;
  opacity: 0.78;
}

.portal-crt::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 45% 22%, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, 0.2) 78%, rgba(0, 0, 0, 0.38));
}

.portal-crt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
  filter: brightness(0.86) contrast(1.08) saturate(0.98);
  transform: scale(1.02);
}

.portal-floppy {
  width: 122px;
  height: 12px;
  margin-left: 91px;
  border-radius: 999px;
  background: #26231e;
  box-shadow:
    inset 3px 3px 6px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.34);
}

.portal-logo-badge {
  position: absolute;
  left: 30px;
  bottom: 30px;
  width: 20px;
  height: 26px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  background:
    linear-gradient(180deg, #63b548 0 16.6%, #f6c829 16.6% 33.3%, #e57d25 33.3% 50%, #d83335 50% 66.6%, #9c4595 66.6% 83.3%, #468ccf 83.3% 100%);
  box-shadow: inset 1px 1px 2px rgba(0, 0, 0, 0.18);
}

.portal-logo-badge::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 3px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 1px;
  background: #5a3e28;
}

.portal-sticker {
  position: absolute;
  z-index: 5;
  box-shadow: 1px 2px 4px rgba(18, 15, 12, 0.18);
}

.portal-sticker-ball {
  left: 20px;
  bottom: 88px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 10px 10px, rgba(255, 255, 255, 0.22) 0 2px, transparent 3px),
    linear-gradient(45deg, transparent 40%, rgba(0, 0, 0, 0.18) 40% 45%, transparent 45%),
    #c75d23;
  transform: translateZ(91px) rotate(-10deg);
}

.portal-sticker-star {
  left: 50px;
  bottom: 98px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  border-radius: 8px;
  background: #fffaf1;
  transform: translateZ(92px) rotate(15deg);
}

.portal-sticker-star::after {
  content: "★";
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.portal-sticker-text {
  left: 100px;
  bottom: 64px;
  width: 60px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #8b160d;
  color: #f2dfb0;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 6px;
  font-weight: 900;
  line-height: 1.28;
  letter-spacing: 0.08em;
  text-align: center;
  transform: translateZ(91px) rotate(-2deg);
}

.portal-grill {
  position: absolute;
  right: 25px;
  bottom: 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  width: 30px;
  height: 20px;
}

.portal-grill span {
  border-radius: 1px;
  background: #2f2d28;
  box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.45);
}

.portal-keyboard {
  --kb-angle: 66deg;
  --kb-thickness: 16px;
  position: absolute;
  bottom: -100px;
  width: 320px;
  height: 120px;
  transform: translateZ(148px) rotateX(var(--kb-angle));
  transform-origin: top center;
  transform-style: preserve-3d;
}

.portal-kb-base {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #ebe5d3, #d5ceb9);
  box-shadow:
    inset 1px 1px 3px rgba(255, 255, 255, 0.68),
    inset -6px -6px 17px rgba(72, 60, 38, 0.14);
  transform: translateZ(calc(var(--kb-thickness) / 2));
}

.portal-kb-front,
.portal-kb-back {
  position: absolute;
  left: 0;
  width: 100%;
  height: var(--kb-thickness);
}

.portal-kb-front {
  bottom: 0;
  background: linear-gradient(180deg, #cdc7b5 0%, #b7af9b 100%);
  transform: translateZ(calc(var(--kb-thickness) / 2)) rotateX(90deg);
  transform-origin: bottom center;
}

.portal-kb-back {
  top: 0;
  background: linear-gradient(180deg, #eee8d8 0%, #c9c1ad 100%);
  transform: translateZ(calc(var(--kb-thickness) / 2)) rotateX(-90deg);
  transform-origin: top center;
}

.portal-kb-left,
.portal-kb-right {
  position: absolute;
  top: 0;
  width: var(--kb-thickness);
  height: 100%;
  background: #d1c8b4;
}

.portal-kb-left {
  left: 0;
  transform: translateZ(calc(var(--kb-thickness) / 2)) rotateY(90deg);
  transform-origin: left center;
}

.portal-kb-right {
  right: 0;
  transform: translateZ(calc(var(--kb-thickness) / 2)) rotateY(-90deg);
  transform-origin: right center;
}

.portal-kb-shadow {
  position: absolute;
  inset: 0;
  transform: rotateX(calc(-90deg - var(--kb-angle))) translateZ(22px);
  transform-origin: top center;
  border-radius: 12px;
  box-shadow: 0 40px 70px rgba(18, 15, 12, 0.25), 0 18px 30px rgba(18, 15, 12, 0.15);
  pointer-events: none;
}

.portal-keys-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
  padding: 15px;
  transform: translateZ(8px);
  transform-style: preserve-3d;
}

.portal-keys-grid span {
  height: 27px;
  border-radius: 4px;
  background: #f5efdc;
  box-shadow: 0 6px 0 #c1baa6, 0 8px 7px rgba(18, 15, 12, 0.18);
  transform: translateZ(1px);
}

.portal-keys-grid .wide {
  grid-column: span 2;
}

.portal-keys-grid .space {
  grid-column: span 6;
}

.portal-keys-grid span:nth-child(3n + 1) {
  animation: retroKeyTap 1.7s infinite 0.18s ease-in-out;
}

.portal-keys-grid span:nth-child(7n) {
  animation: retroKeyTap 2.15s infinite 0.52s ease-in-out;
}

.portal-keys-grid span:nth-child(2n + 4) {
  animation: retroKeyTap 1.9s infinite 0.86s ease-in-out;
}

.portal-keys-grid span:nth-child(5n) {
  animation: retroKeyTap 2.5s infinite 1.2s ease-in-out;
}

@keyframes retroKeyTap {
  0%, 78%, 100% {
    transform: translateZ(1px) translateY(0);
    box-shadow: 0 6px 0 #c1baa6, 0 8px 7px rgba(18, 15, 12, 0.18);
  }
  84% {
    transform: translateZ(-2px) translateY(5px);
    box-shadow: 0 1px 0 #c1baa6, 0 1px 2px rgba(18, 15, 12, 0.08);
  }
}

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

.mobile-only {
  display: none;
}

.hero-intro {
  max-width: 620px;
  margin-bottom: 18px;
  color: var(--ink-2);
  font-size: clamp(17px, 1.12vw, 19px);
  line-height: 1.62;
}

.hero-intro strong {
  color: var(--ink);
  font-weight: 900;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 17px 28px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.hero .btn {
  min-height: 52px;
  padding: 14px 24px;
  font-size: 16px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--paper);
  box-shadow: 0 12px 30px rgba(255, 90, 31, 0.24);
}

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: 0 9px 24px rgba(18, 15, 12, 0.05);
}

.btn-disabled {
  color: var(--muted);
  background: var(--paper-2);
  border-color: var(--line);
  cursor: not-allowed;
}

.btn-disabled:hover {
  transform: none;
}

.boundary-note {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: start;
  max-width: 520px;
  margin: 24px 0 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 78%, transparent);
  box-shadow: 0 8px 18px rgba(18, 15, 12, 0.04);
}

.boundary-note span {
  color: var(--accent);
  font-size: 24px;
  line-height: 1;
}

.boundary-note p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.boundary-note strong {
  color: var(--ink);
}

.home-schedule-wrap {
  margin-top: 32px;
}

.home-schedule-wrap.is-hero {
  max-width: 780px;
  margin-top: 16px;
}

.home-schedule-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1.8fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  box-shadow: 0 18px 44px rgba(18, 15, 12, 0.07);
}

.home-schedule-copy {
  min-width: 0;
}

.home-schedule-copy span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.home-schedule-copy span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.home-schedule-copy strong {
  display: block;
  margin-top: 12px;
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
}

.home-schedule-copy p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.home-schedule-items {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  min-width: 0;
}

.home-schedule-item {
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--paper-2);
}

.home-schedule-item em {
  display: block;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.home-schedule-item b {
  display: block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.home-schedule-item small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.home-schedule-card > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.home-schedule-wrap.is-hero .home-schedule-card {
  grid-template-columns: minmax(156px, 0.54fr) minmax(0, 1.5fr) auto;
  gap: 12px;
  padding: 12px;
}

.home-schedule-wrap.is-hero .home-schedule-copy {
  display: block;
}

.home-schedule-wrap.is-hero .home-schedule-copy strong {
  margin-top: 8px;
  font-size: 18px;
}

.home-schedule-wrap.is-hero .home-schedule-copy p {
  display: none;
}

.home-schedule-wrap.is-hero .home-schedule-item {
  padding: 10px;
}

.home-schedule-wrap.is-hero .home-schedule-item b {
  font-size: 13px;
}

.home-schedule-wrap.is-hero .home-schedule-item small {
  font-size: 11px;
}

.home-schedule-wrap.is-hero .home-schedule-copy span {
  padding: 7px 10px;
  font-size: 13px;
}

.home-schedule-wrap.is-hero .home-schedule-items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-schedule-wrap.is-hero .home-schedule-card > i {
  width: auto;
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  color: var(--muted);
  font-size: 14px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 76%, transparent);
}

.hero-proof b {
  color: var(--ink);
}

.chat-browser {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(18, 15, 12, 0.14);
}

.chat-badge {
  position: absolute;
  top: -24px;
  left: 34px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(18, 15, 12, 0.18);
}

.chat-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(39, 201, 64, 0.18);
}

.browser-bar {
  display: grid;
  grid-template-columns: 14px 14px 14px 1fr auto;
  gap: 10px;
  align-items: center;
  height: 52px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  border-radius: 22px 22px 0 0;
  background: var(--paper-2);
}

.browser-bar i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #ff6158;
}

.browser-bar i:nth-child(2) {
  background: #ffbd2e;
}

.browser-bar i:nth-child(3) {
  background: var(--green);
}

.browser-bar code {
  justify-self: center;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
}

.browser-bar em {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-style: normal;
}

.browser-body {
  max-height: 670px;
  overflow: auto;
  padding: 34px 36px 30px;
}

.chat-message {
  width: min(100%, 520px);
  margin-bottom: 28px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(18, 15, 12, 0.06);
}

.chat-message h2 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.3;
}

.chat-message p {
  margin: 0;
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.72;
}

.task-label {
  margin-bottom: 14px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.chat-field {
  min-width: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.chat-field legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.chat-field legend span,
.num {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

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

.task-card {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
}

.task-card:has(input:checked) {
  border-color: rgba(255, 90, 31, 0.55);
  background: var(--accent-soft);
  color: var(--ink);
}

.task-card input {
  accent-color: var(--accent);
}

.diagnosis-result {
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.diagnosis-result strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.diagnosis-result p,
.diagnosis-result small {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.diagnosis-result small {
  margin-top: 12px;
}

.inline-action {
  display: inline-flex;
  margin-top: 12px;
  color: #ffd6c1;
  font-weight: 900;
}

.chat-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.chat-input-row span,
.chat-input-row button {
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.chat-input-row span {
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--muted);
}

.chat-input-row button {
  padding: 0 24px;
  color: var(--paper);
  background: color-mix(in srgb, var(--ink) 24%, var(--paper-2));
  cursor: not-allowed;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.6vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.large {
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.65;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.64fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 34px;
}

.split-heading p,
.workbench-copy > p:not(.large),
.faq-grid > div > p,
.cta-box p,
.site-footer p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.proof-item {
  min-width: 0;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  margin-bottom: 14px;
  color: var(--accent);
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900;
  line-height: 1.02;
  white-space: nowrap;
}

.proof-item p {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 13px;
}

.start-guide {
  background: color-mix(in srgb, var(--paper-2) 48%, var(--bg));
}

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

.start-card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.start-card span,
.panel-label {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 16px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.start-card h3 {
  font-size: 26px;
  line-height: 1.18;
}

.start-card p {
  color: var(--muted);
  font-size: 15px;
}

.verify-pill,
.status-pill {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 12px;
  font-weight: 900;
}

.workbench {
  background: color-mix(in srgb, var(--paper-2) 72%, var(--bg));
}

.workbench-grid,
.starter-grid,
.faq-grid,
.consultation-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 44px;
  align-items: center;
}

.workbench-copy .large {
  margin-bottom: 14px;
  color: var(--ink);
  font-weight: 900;
}

.mini-grid {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.mini-card,
.support-card,
.path-step,
.offer-card,
.cta-box {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.mini-card {
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  padding: 18px;
}

.mini-card h3,
.mini-card p {
  grid-column: 2;
}

.mini-card p,
.support-card p,
.path-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.workbench-shot {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.workbench-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.tools-showcase {
  background: color-mix(in srgb, var(--paper-2) 50%, var(--bg));
}

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

.tool-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 20px;
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 90, 31, 0.055), transparent 36%),
    var(--paper);
  box-shadow: 0 12px 28px rgba(18, 15, 12, 0.06);
}

.tool-card span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.tool-card h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
}

.tool-tagline {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.45;
}

.tool-card p:not(.tool-tagline) {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.tool-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tool-card li {
  display: flex;
  gap: 8px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.tool-card li::before {
  content: "";
  flex: 0 0 auto;
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.tool-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.tool-actions .btn {
  min-height: 54px;
  padding: 14px 18px 14px 22px;
  gap: 12px;
  justify-content: space-between;
}

.tool-actions .btn span,
.digital-human-site em span {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  margin: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 90, 31, 0.14);
  color: var(--accent);
  line-height: 1;
}

.tool-actions .btn-primary span {
  background: rgba(255, 255, 255, 0.82);
  color: var(--accent);
}

.mock-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.mock-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #1a1916;
}

.mock-toolbar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6158;
}

.mock-toolbar span:nth-child(2) {
  background: #ffbd2e;
}

.mock-toolbar span:nth-child(3) {
  background: var(--green);
}

.mock-toolbar code {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.mock-body {
  padding: 22px;
  background: #151511;
}

.mock-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 16px;
}

.mock-top small {
  display: block;
  color: rgba(255, 255, 255, 0.54);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
}

.mock-top strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
}

.mock-list {
  display: grid;
  gap: 10px;
}

.mock-list article {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.mock-list span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  text-align: right;
}

.mock-note {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 90, 31, 0.16);
  color: #ffd9c5;
  font-size: 13px;
}

.case-entry {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper) 74%, transparent), transparent 45%),
    var(--bg);
}

.case-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.case-rules span {
  display: inline-flex;
  max-width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.case-browser {
  position: relative;
  padding-top: 64px;
  padding-bottom: 68px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 90, 31, 0.055), transparent 30%),
    var(--bg);
}

.case-browser-head {
  max-width: var(--max);
  padding-bottom: 30px;
}

.case-browser-head .eyebrow {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 6px 18px rgba(18, 15, 12, 0.04);
}

.case-browser-head .eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
}

.case-browser .case-browser-head h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 4vw, 60px);
  line-height: 1.04;
}

.case-browser .case-browser-head p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.case-browser-toolbar-wrap {
  position: sticky;
  top: 76px;
  z-index: 40;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 246, 0.92);
  backdrop-filter: blur(14px);
}

.case-browser-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 0;
}

.case-browser-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 0 4px;
  scrollbar-width: none;
}

.case-browser-filters::-webkit-scrollbar {
  display: none;
}

.case-browser-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.case-browser-filter:hover {
  border-color: var(--line-strong);
  background: var(--paper-2);
  color: var(--ink);
}

.case-browser-filter.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.case-browser-filter span {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  font-size: 12px;
}

.case-browser-filter.is-active span {
  background: color-mix(in srgb, var(--paper) 18%, transparent);
  color: var(--paper);
}

.case-browser-count {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.case-browser-count strong {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 18px;
}

.case-browser-shell {
  display: block;
  padding-top: 26px;
}

.case-browser-list {
  min-width: 0;
}

.case-browser-section-label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 20px 0 12px;
  border-bottom: 1px solid var(--line);
}

.case-browser-section-label strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.case-browser-section-label span {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--paper-2);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.case-browser-section-label.is-hidden,
.case-browser-row.is-hidden {
  display: none;
}

.case-browser-visual-business {
  --case-color: var(--accent);
  --case-soft: var(--accent-soft);
}

.case-browser-visual-public {
  --case-color: #23645a;
  --case-soft: #dbece6;
}

.case-browser-visual-feedback {
  --case-color: #2b5f96;
  --case-soft: #dde8f3;
}

.case-browser-row {
  --case-color: var(--accent);
  --case-soft: var(--accent-soft);
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr) minmax(230px, 320px) 38px;
  gap: 22px;
  align-items: center;
  min-height: 122px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: opacity 180ms ease, filter 180ms ease;
}

.case-browser-row[data-case-group="public"] {
  --case-color: #23645a;
  --case-soft: #dbece6;
}

.case-browser-row[data-case-group="feedback"] {
  --case-color: #2b5f96;
  --case-soft: #dde8f3;
}

.case-browser-row:hover h3,
.case-browser-row:focus-visible h3 {
  color: var(--case-color);
}

.case-browser-row:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--case-color) 22%, transparent);
  outline-offset: 4px;
}

.case-browser-row:hover .case-browser-visual img,
.case-browser-row:focus-visible .case-browser-visual img {
  transform: scale(1.045);
}

.case-browser-row i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-style: normal;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.case-browser-row:hover i,
.case-browser-row:focus-visible i {
  transform: rotate(45deg);
  border-color: var(--case-color);
  background: var(--case-color);
  color: var(--paper);
}

.case-browser-visual {
  width: 104px;
  height: 78px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--case-soft, var(--paper-2));
}

.case-browser-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.case-browser-cover {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 10px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--case-color, var(--accent)) 18%, transparent), rgba(255, 255, 255, 0.24)),
    repeating-linear-gradient(90deg, rgba(16, 16, 14, 0.08) 0 1px, transparent 1px 12px),
    var(--case-soft, var(--paper-2));
}

.case-browser-cover b {
  max-width: 82px;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.case-browser-cover span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 900;
}

.case-browser-main {
  min-width: 0;
}

.case-browser-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 8px;
}

.case-browser-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--case-soft);
  color: var(--case-color);
  font-size: 12px;
  font-weight: 900;
}

.case-browser-meta em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.case-browser-main h3 {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.3;
  transition: color 160ms ease;
}

.case-browser-main p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.case-browser-result {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
}

.case-browser-result span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 900;
}

.case-browser-result strong {
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 800;
}

.case-browser-empty {
  padding: 36px 0;
  color: var(--muted);
  text-align: center;
  font-weight: 800;
}

.case-browser-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 42;
  width: 280px;
  height: 192px;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition: opacity 140ms ease;
  will-change: transform, opacity;
}

.case-browser-preview.is-visible {
  opacity: 1;
}

.case-browser-preview .case-browser-visual {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(16, 16, 14, 0.18);
}

.case-browser-preview .case-browser-cover {
  padding: 22px;
}

.case-browser-preview .case-browser-cover b {
  max-width: 220px;
  font-size: 28px;
}

.case-browser-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(16, 16, 14, 0.46);
  opacity: 0;
  transition: opacity 220ms ease;
}

.case-browser-overlay.is-open {
  opacity: 1;
}

.case-browser-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(660px, 94vw);
  overflow: auto;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.case-browser-overlay.is-open .case-browser-panel {
  transform: translateX(0);
}

.case-browser-detail {
  padding: 38px clamp(22px, 5vw, 54px) 54px;
}

.case-browser-close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.case-browser-detail .case-browser-visual {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  margin-bottom: 24px;
}

.case-browser-detail .case-browser-cover {
  padding: 26px;
}

.case-browser-detail .case-browser-cover b {
  max-width: 340px;
  font-size: 34px;
}

.case-browser-detail-kicker {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.case-browser-detail h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.18;
}

.case-browser-detail-intro {
  margin: 0 0 24px;
  color: var(--muted);
  line-height: 1.8;
}

.case-browser-detail-grid {
  display: grid;
  gap: 12px;
}

.case-browser-detail-block {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper-2) 76%, transparent);
}

.case-browser-detail-block b {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 900;
}

.case-browser-detail-block p {
  margin: 0;
  color: var(--ink-2);
  line-height: 1.78;
}

.case-browser-detail-block ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink-2);
  line-height: 1.78;
}

.case-browser-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.case-browser-detail-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
}

.case-browser-detail-actions a.primary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.case-browser-detail-actions a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.case-browser-detail-actions a.primary:hover {
  background: var(--accent);
  color: var(--paper);
}

.case-followup {
  padding-top: 0;
  background: var(--bg);
}

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

.recognition-card {
  display: grid;
  align-content: start;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.recognition-card figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-2);
}

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

.recognition-card > div {
  padding: 20px;
}

.recognition-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.recognition-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.scene-block,
.category-section {
  margin-top: 54px;
  padding-top: 42px;
  border-top: 1px solid var(--line-strong);
}

.compact-heading {
  margin-bottom: 24px;
}

.category-section .compact-heading h2 {
  font-size: clamp(32px, 3.5vw, 48px);
  line-height: 1.08;
}

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

.case-card {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 474px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.case-card-text {
  min-height: 344px;
  padding-top: 34px;
}

.case-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.34);
  box-shadow: 0 18px 42px rgba(18, 15, 12, 0.08);
}

.case-photo,
.article-card figure,
.detail-photo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper-2);
}

.case-photo {
  aspect-ratio: 16 / 10;
  margin-bottom: 14px;
}

.case-photo-placeholder {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  border: 1px dashed var(--line-strong);
  background:
    repeating-linear-gradient(135deg, rgba(12, 12, 10, 0.045) 0 1px, transparent 1px 12px),
    color-mix(in srgb, var(--paper-2) 78%, var(--bg));
}

.case-photo-placeholder span {
  width: max-content;
  max-width: 100%;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.case-photo-placeholder strong {
  color: var(--ink);
  font-size: 19px;
  line-height: 1.25;
}

.case-photo img,
.article-card img,
.detail-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card--being-understood figure {
  background: #070b12;
}

.article-card--being-understood img {
  object-fit: contain;
  object-position: center;
}

.article-card--contain-cover img {
  object-fit: contain;
}

.case-meta,
.article-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.case-meta span,
.article-meta span {
  color: var(--accent);
}

.case-index {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.case-thumb {
  display: grid;
  align-content: space-between;
  min-height: 126px;
  margin-bottom: 20px;
  padding: 16px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.12), rgba(255, 255, 255, 0.16)),
    repeating-linear-gradient(0deg, rgba(12, 12, 10, 0.06) 0 1px, transparent 1px 12px),
    var(--paper-2);
  overflow: hidden;
}

.case-thumb b {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
}

.case-thumb i {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.evidence-tag {
  width: max-content;
  max-width: 100%;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.case-scene {
  margin-bottom: 12px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 900;
}

.case-card p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 14px;
}

.case-card strong {
  margin-top: 4px;
  color: var(--accent);
  font-size: 14px;
}

.business-cases {
  background: color-mix(in srgb, var(--paper) 82%, var(--bg));
}

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

.business-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.business-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.34);
  box-shadow: 0 18px 40px rgba(18, 15, 12, 0.08);
}

.business-card-compact {
  align-content: start;
}

.business-visual {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.16), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(255, 90, 31, 0.2), transparent 28%),
    color-mix(in srgb, var(--paper-2) 88%, var(--paper));
}

.business-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.54;
  background-image:
    linear-gradient(rgba(18, 15, 12, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 15, 12, 0.04) 1px, transparent 1px);
  background-size: 22px 22px;
}

.business-visual > span {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.business-visual img {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-visual-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 42%, rgba(18, 15, 12, 0.5)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 34%);
  pointer-events: none;
}

.visual-stage {
  position: absolute;
  inset: 48px 24px 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  transform: rotate(-4deg);
}

.visual-stage i {
  display: block;
  border-radius: 16px;
  background: rgba(18, 15, 12, 0.9);
  box-shadow: 0 14px 36px rgba(18, 15, 12, 0.14);
}

.visual-stage i:nth-child(2) {
  transform: translateY(-14px);
  background: var(--accent);
}

.visual-stage i:nth-child(3) {
  transform: translateY(12px);
  background: color-mix(in srgb, var(--ink) 80%, var(--accent));
}

.visual-panel {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 3;
  display: grid;
  gap: 5px;
  padding: 13px 14px;
  border: 1px solid rgba(18, 15, 12, 0.08);
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.9);
  box-shadow: 0 16px 34px rgba(18, 15, 12, 0.08);
  backdrop-filter: blur(12px);
}

.visual-panel b {
  font-size: 14px;
  line-height: 1.25;
}

.visual-panel em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.business-visual-tiktok .visual-stage {
  grid-template-columns: 0.8fr 1.2fr 0.8fr;
}

.business-visual-tiktok .visual-stage i {
  border-radius: 22px;
}

.business-visual-solar {
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 197, 61, 0.52), transparent 20%),
    linear-gradient(135deg, rgba(255, 90, 31, 0.18), transparent 34%),
    color-mix(in srgb, var(--paper-2) 82%, var(--paper));
}

.business-visual-solar .visual-stage i {
  clip-path: polygon(0 18%, 100% 0, 90% 82%, 12% 100%);
}

.business-visual-avatar .visual-stage {
  grid-template-columns: 1.3fr 0.8fr 1fr;
}

.business-visual-avatar .visual-stage i {
  border-radius: 999px 999px 28px 28px;
}

.business-visual-workflow .visual-stage {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, 1fr);
  transform: none;
}

.business-visual-workflow .visual-stage i {
  border-radius: 14px;
}

.business-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
}

.business-quick {
  margin: 0;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
}

.business-card-result {
  display: grid;
  gap: 7px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.business-card-result span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.business-card-result strong {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}

.business-card-footer {
  display: flex;
  justify-content: flex-end;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.business-detail .business-visual {
  margin-bottom: 10px;
}

.business-case-block {
  scroll-margin-top: calc(var(--nav-height) + 26px);
}

.case-source {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  align-self: end;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.case-source a {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 900;
}

.case-source b {
  flex: 0 0 auto;
  color: var(--ink);
  font-weight: 900;
}

.section-link-row {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.article-entry {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper-2) 52%, transparent), transparent 44%),
    var(--bg);
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -6px 0 24px;
}

.category-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 900;
}

.category-pills a:hover {
  border-color: rgba(255, 90, 31, 0.36);
  color: var(--accent);
}

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

.article-row {
  display: grid;
  grid-template-columns: minmax(116px, 0.22fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  min-height: 112px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.article-row-kicker {
  display: grid;
  gap: 8px;
  align-content: center;
}

.article-row-kicker b {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.article-row-kicker time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.article-row-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.article-row-title {
  margin: 0;
  font-size: clamp(21px, 2.2vw, 30px);
  font-weight: 950;
  line-height: 1.16;
}

.article-row-excerpt {
  max-width: 760px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.article-row-action {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.article-row:hover .article-row-title,
.article-row:focus-visible .article-row-title,
.article-row:hover .article-row-action,
.article-row:focus-visible .article-row-action {
  color: var(--accent);
}

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

.article-card {
  display: grid;
  align-content: start;
  min-width: 0;
  min-height: 420px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.article-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 90, 31, 0.34);
  box-shadow: 0 18px 42px rgba(18, 15, 12, 0.08);
}

.article-card figure {
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
}

.article-card h3 {
  font-size: 19px;
}

.article-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}

.article-card b {
  align-self: end;
  margin-top: auto;
  color: var(--ink);
  font-size: 14px;
}

.video-channels {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 28px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.video-channels h2 {
  margin-bottom: 12px;
  font-size: clamp(24px, 3vw, 34px);
}

.video-channels p {
  margin: 0;
  color: var(--muted);
}

.video-showcase {
  background:
    linear-gradient(180deg, transparent, color-mix(in srgb, var(--paper-2) 48%, transparent) 100%),
    var(--bg);
}

.video-showcase-layout {
  min-width: 0;
}

.video-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(380px, 430px);
  gap: 18px;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 0 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.video-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
  scroll-snap-align: start;
}

.video-card-media {
  min-width: 0;
  aspect-ratio: 9 / 16;
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  background: #11100e;
}

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

.video-card-copy {
  display: grid;
  align-content: start;
  min-width: 0;
}

.video-card-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 12px;
  align-items: start;
}

.video-card span {
  width: max-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.video-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

.video-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.video-card small {
  align-self: end;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.video-card-qr {
  appearance: none;
  display: grid;
  gap: 6px;
  place-items: center;
  align-self: start;
  min-width: 0;
  min-height: 0;
  margin: 0;
  padding: 8px 6px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 90, 31, 0.64);
  border-radius: calc(var(--radius) + 4px);
  background: var(--paper);
  color: var(--accent);
  cursor: pointer;
  font: inherit;
  text-align: center;
}

.video-card-qr:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(82, 49, 31, 0.12);
}

.video-card-qr:focus-visible {
  outline: 3px solid rgba(255, 90, 31, 0.3);
  outline-offset: 3px;
}

.video-card-qr img {
  width: 68px;
  height: auto;
  max-height: 88px;
  padding: 0;
  object-fit: contain;
}

.video-card-qr figcaption,
.video-card-qr-caption {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.25;
}

.video-card-qr figcaption span,
.video-card-qr-caption span {
  display: block;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

.video-card-qr b {
  font-size: 16px;
  font-weight: 900;
}

.video-card-qr em {
  display: block;
  padding: 0 8px 8px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.digital-human-site {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr) auto;
  gap: 10px 22px;
  align-items: center;
  margin-top: 18px;
  padding: 16px 20px 16px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.08), transparent 38%),
    var(--paper);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.digital-human-site:hover {
  border-color: color-mix(in srgb, var(--accent) 38%, var(--line));
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(82, 49, 31, 0.1);
}

.digital-human-visual {
  position: relative;
  grid-row: span 3;
  width: 100%;
  aspect-ratio: 16 / 10;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 90, 31, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.08), transparent 42%),
    #fffaf6;
}

.digital-human-visual img {
  position: absolute;
  inset: 8px;
  width: calc(100% - 16px);
  height: calc(100% - 16px);
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 10px 18px rgba(25, 18, 12, 0.12));
}

.digital-human-visual figcaption {
  position: absolute;
  left: 12px;
  top: 12px;
  width: auto;
  max-width: calc(100% - 24px);
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 235, 225, 0.92);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
}

.digital-human-site > span {
  width: max-content;
  max-width: 100%;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.digital-human-site strong {
  font-size: 22px;
  line-height: 1.18;
}

.digital-human-site p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.digital-human-site em {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: end;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.video-channel-grid {
  display: grid;
  gap: 12px;
}

.video-channel-grid article {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.video-channel-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.back-to-top {
  position: fixed;
  right: max(18px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  z-index: 45;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: color-mix(in srgb, var(--ink) 92%, transparent);
  color: var(--paper);
  font-size: 18px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  box-shadow: 0 14px 28px rgba(18, 15, 12, 0.16);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-hero,
.detail-hero {
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.54), rgba(251, 250, 246, 0.96)),
    var(--bg);
}

.page-hero {
  padding: 58px 0 44px;
}

.page-hero + .article-entry,
.page-hero + .tools-page,
.page-hero + .starter,
.page-hero + .path {
  padding-top: 48px;
}

.page-hero .container,
.page-hero .narrow-page {
  max-width: var(--max);
}

.service-entry-hero {
  padding: 62px 0 46px;
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.5), rgba(251, 250, 246, 0.96)),
    var(--bg);
}

.service-entry-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.38fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.service-entry-head h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.04;
}

.service-entry-head p:not(.eyebrow) {
  max-width: 820px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.82;
}

.service-entry-head .page-hero-actions {
  grid-column: 1;
  margin-top: 22px;
}

.service-entry-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
}

.service-entry-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.service-entry-card strong {
  color: var(--ink);
  font-size: 24px;
  line-height: 1.18;
}

.service-entry-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.narrow-page {
  max-width: 980px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 54px;
  align-items: center;
}

.brand-story {
  padding: 76px 0 68px;
  background:
    linear-gradient(180deg, rgba(255, 247, 242, 0.5), rgba(251, 250, 246, 0.94)),
    var(--bg);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(0, 1fr);
  gap: 52px;
  align-items: start;
}

.brand-story-copy {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
}

.brand-story-copy h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(40px, 4.7vw, 66px);
  font-weight: 900;
  line-height: 1.03;
}

.brand-story-copy p {
  max-width: 620px;
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.78;
}

.brand-story-copy blockquote {
  margin: 24px 0 0;
  padding: 18px 20px;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.72;
  box-shadow: 0 12px 30px rgba(18, 15, 12, 0.05);
}

.brand-story-video {
  justify-items: start;
  width: min(100%, 340px);
  margin-top: 34px;
}

.brand-story-video::before {
  inset: 8% -10% 2%;
}

.brand-story-video .hero-video-frame {
  width: min(100%, 300px);
  padding: 8px;
  border-radius: 28px;
  box-shadow:
    0 20px 48px rgba(18, 15, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.brand-story-video .hero-video-frame video {
  border-radius: 20px;
}

.brand-story-video figcaption {
  width: min(270px, calc(100% - 24px));
  margin-top: -32px;
  margin-left: 15px;
  padding: 12px 14px;
}

.about-identity {
  padding: 64px 0 50px;
}

.about-identity-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.44fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: center;
}

.about-identity-copy {
  position: relative;
  top: auto;
}

.about-identity-copy h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(46px, 5.5vw, 82px);
  line-height: 1.02;
}

.about-identity-copy p {
  max-width: 760px;
}

.about-identity-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.about-video-panel {
  display: grid;
  justify-items: start;
  gap: 18px;
  margin-top: 8px;
}

.about-video-panel p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.about-intro-video {
  margin-top: 0;
}

.about-stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-stage-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 258px;
  padding: 28px 28px 26px;
  border-left: 1px solid var(--line);
}

.about-stage-card:first-child {
  border-left: 0;
}

.about-stage-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.about-stage-card h3 {
  max-width: 420px;
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.14;
}

.about-stage-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.about-stage-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.about-stage-card em {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.brand-story-timeline {
  display: grid;
  gap: 14px;
}

.brand-story-card {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.brand-story-card::before {
  content: "";
  position: absolute;
  left: -21px;
  top: 28px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px var(--accent-soft);
}

.brand-story-card span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 900;
}

.brand-story-card h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
}

.brand-story-card p {
  margin: 0;
  color: var(--muted);
}

.brand-story-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-story-card em {
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.about-photo {
  position: relative;
  margin: 0;
  display: grid;
  place-items: end center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-photo::before {
  content: "";
  position: absolute;
  inset: 12% 7% 0 10%;
  border-radius: 42% 42% 10% 10%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 90, 31, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(244, 242, 237, 0.32));
}

.about-photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: min(56vh, 560px);
  min-height: 420px;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 26px 40px rgba(18, 15, 12, 0.14));
}

.about-proof-strip {
  padding-top: 54px;
}

.about-proof-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 32px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
}

.about-proof-line article {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 210px;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.about-proof-line article:first-child {
  border-left: 0;
}

.about-proof-line strong {
  color: var(--accent);
  font-size: clamp(38px, 4.8vw, 62px);
  line-height: 1;
}

.about-proof-line span {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.about-proof-line p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.about-record {
  padding-top: 58px;
}

.about-record .split-heading h2 {
  max-width: 900px;
  font-size: clamp(38px, 4.8vw, 64px);
  line-height: 1.05;
}

.about-record-intro {
  display: grid;
  gap: 14px;
  align-self: end;
}

.about-record-intro p {
  margin: 0;
}

.about-record-intro span {
  width: max-content;
  max-width: 100%;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.about-spine {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 1180px;
  margin: 36px auto 0;
}

.about-spine::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 50%;
  width: 1px;
  background: var(--line);
  transform: translateX(-50%);
}

.about-spine-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
  align-items: start;
  min-height: 138px;
  isolation: isolate;
}

.about-spine-item[data-hover-preview] {
  cursor: pointer;
}

.about-spine-card {
  display: grid;
  gap: 9px;
  width: min(100%, 520px);
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
}

.about-spine-card-link {
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.about-spine-card-link:hover {
  border-top-color: color-mix(in srgb, var(--accent) 55%, var(--line) 45%);
  transform: translateY(-2px);
}

.about-spine-card-link:hover h3,
.about-spine-card-link:hover .about-spine-source {
  color: var(--accent);
}

.about-spine-item--left .about-spine-card {
  grid-column: 1;
  justify-self: end;
}

.about-spine-item--right .about-spine-card {
  grid-column: 3;
  justify-self: start;
}

.about-spine-marker {
  grid-column: 2;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 92%, white 8%);
  box-shadow: 0 14px 30px rgba(36, 30, 24, 0.08);
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
  z-index: 1;
}

.about-spine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.about-spine-meta time {
  color: var(--ink);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 14px;
  font-weight: 950;
}

.about-spine-meta span {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.about-spine-card h3 {
  max-width: 500px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(21px, 2.1vw, 29px);
  line-height: 1.18;
}

.about-spine-card small {
  display: block;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.55;
}

.about-spine-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.about-spine-source,
.about-spine-card strong {
  width: max-content;
  max-width: 100%;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.about-spine-card strong {
  color: var(--muted-2);
}

.about-record-list {
  display: grid;
  margin-top: 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-record-row em {
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.about-record-row--public em {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  color: var(--ink-2);
}

.about-record-row h3 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.22;
}

.about-record-row p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.about-record-row .training-scene {
  color: var(--ink-2);
  font-weight: 900;
}

.about-record-row a,
.about-record-row strong {
  justify-self: end;
  margin-top: 4px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.about-record-row strong {
  color: var(--muted);
}

.detail-hero .narrow-page {
  max-width: 1180px;
}

.page-hero h1,
.detail-hero h1 {
  max-width: 900px;
  margin: 0 0 18px;
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow),
.detail-hero p:not(.eyebrow) {
  max-width: 780px;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.72;
}

.back-link {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 42px;
  align-items: start;
}

.detail-source-card {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--paper) 90%, transparent), color-mix(in srgb, var(--accent-soft) 28%, transparent)),
    var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.detail-source-card span {
  width: max-content;
  max-width: 100%;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.detail-source-card h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
}

.detail-source-card p {
  margin: 0;
  color: var(--muted);
}

.detail-source-card a {
  color: var(--ink);
  font-weight: 900;
}

.detail-photo {
  position: sticky;
  top: 110px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.detail-photo img {
  aspect-ratio: 4 / 3;
}

.detail-photo figcaption {
  margin: 0;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.detail-copy {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.detail-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 34px);
}

.detail-copy h2:first-child {
  margin-top: 0;
}

.detail-copy p,
.detail-copy li {
  color: var(--ink-2);
  font-size: 17px;
  line-height: 1.78;
}

.detail-copy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.2em;
}

.article-media-section {
  padding-top: 0;
  border-bottom: 0;
}

.article-shell {
  max-width: 960px;
}

.article-cover {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.article-cover img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
}

.article-cover--being-understood {
  background: #070b12;
}

.article-cover--being-understood img {
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.article-cover figcaption {
  margin: 0;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.article-keypoints {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 90, 31, 0.22);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent-soft) 34%, var(--paper));
}

.article-keypoints strong {
  font-size: 18px;
  line-height: 1.3;
}

.article-keypoints ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.25em;
}

.article-keypoints li {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.72;
}

.article-single {
  display: block;
  padding: clamp(26px, 4vw, 46px);
}

.article-single > * + * {
  margin-top: 18px;
}

.training-list {
  display: grid;
  gap: 12px;
}

.training-item {
  display: grid;
  grid-template-columns: minmax(110px, 0.16fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.035);
}

.training-item time {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 900;
}

.training-item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.training-item p {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 14px;
}

.training-item .training-scene {
  color: var(--ink-2);
  font-weight: 900;
}

.training-item small {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.65;
}

.training-item a,
.training-item em {
  justify-self: end;
  width: max-content;
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.training-item em {
  color: var(--muted);
}

.about-redirect {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 44px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(18, 15, 12, 0.04);
}

.about-redirect p {
  margin: 4px 0 0;
  color: var(--muted);
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.article-body > p {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.article-body h2 {
  margin: 14px 0 4px;
  font-size: clamp(25px, 3vw, 36px);
}

.article-body h3 {
  margin: 12px 0 0;
  font-size: 22px;
}

.article-body blockquote {
  margin: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--paper-2);
  color: var(--ink-2);
}

.article-body a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 36%, transparent);
}

.article-body .detail-actions a {
  border-bottom: 0;
}

.article-body .detail-actions .btn-primary {
  color: var(--paper);
}

.article-inline-image {
  margin: 16px 0 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.article-inline-image img {
  display: block;
  width: 100%;
  height: auto;
}

.article-body code {
  padding: 2px 5px;
  border-radius: 5px;
  background: var(--paper-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.9em;
}

.source-note {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-2);
}

.source-note p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.service-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.service-decision-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.service-decision-table th,
.service-decision-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.65;
}

.service-decision-table thead th {
  color: var(--ink);
  background: var(--paper-2);
  font-size: 13px;
  letter-spacing: 0;
}

.service-decision-table tbody th {
  width: 24%;
  color: var(--ink);
  font-weight: 900;
}

.service-decision-table tr:last-child th,
.service-decision-table tr:last-child td {
  border-bottom: 0;
}

.compact-diagnosis .browser-body {
  max-height: none;
}

.timeline-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
  gap: 26px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 82%, transparent);
}

.timeline-heading h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.timeline-heading p {
  margin: 0;
  color: var(--muted);
}

.timeline-list {
  display: grid;
  gap: 10px;
}

.full-timeline {
  max-width: 1040px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.timeline-item time,
.timeline-item div span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.timeline-item h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.timeline-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline-item a,
.timeline-item em {
  white-space: nowrap;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  font-style: normal;
}

.evidence-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.evidence-level {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 76%, transparent);
}

.evidence-level b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
}

.evidence-level p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.starter-grid {
  align-items: stretch;
}

.starter-grid > div:first-child {
  grid-column: span 2;
}

.offer-card {
  padding: 28px;
}

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

.offer-card li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-2);
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.guardrail li::before {
  background: var(--ink);
}

.path {
  background: var(--paper-2);
}

.service-routes {
  background: var(--bg);
}

.service-routes--top {
  padding-top: clamp(76px, 8vw, 118px);
}

.service-routes-heading {
  align-items: end;
  padding-bottom: clamp(28px, 4vw, 48px);
}

.service-routes-heading h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(46px, 5vw, 74px);
  line-height: 1.04;
  letter-spacing: 0;
}

.service-routes-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-route-list,
.answer-row-list {
  border-top: 1px solid var(--line-strong);
}

.service-route-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) minmax(240px, 0.46fr) auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  min-height: 128px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.service-route-step {
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 15px;
  font-weight: 950;
}

.service-route-main {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.service-route-main b,
.service-route-consult span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.service-route-main strong {
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.12;
}

.service-route-main small,
.service-route-fit,
.answer-row small {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.service-route-fit {
  display: block;
  max-width: 360px;
  font-weight: 800;
}

.service-route-row em,
.service-route-consult em,
.answer-row em {
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
  white-space: nowrap;
}

.service-route-row:hover .service-route-main strong,
.service-route-row:focus-visible .service-route-main strong,
.service-route-row:hover em,
.service-route-row:focus-visible em,
.answer-row:hover strong,
.answer-row:focus-visible strong,
.answer-row:hover em,
.answer-row:focus-visible em {
  color: var(--accent);
}

.service-route-consult {
  display: grid;
  grid-template-columns: 120px minmax(260px, 0.46fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 44px);
  align-items: center;
  margin-top: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  text-decoration: none;
}

.service-route-consult--primary {
  min-height: 154px;
}

.service-route-consult strong {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.15;
}

.service-route-consult p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}

.service-secondary-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-bottom: 1px solid var(--line);
}

.service-secondary-links a {
  display: grid;
  gap: 7px;
  padding: 18px 22px 18px 0;
  color: var(--ink);
  text-decoration: none;
}

.service-secondary-links strong {
  font-size: 18px;
  line-height: 1.18;
}

.service-secondary-links span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.service-secondary-links a:hover strong,
.service-secondary-links a:focus-visible strong {
  color: var(--accent);
}

.answer-row {
  display: grid;
  grid-template-columns: 118px minmax(260px, 0.48fr) minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 40px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.answer-row span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.answer-row strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.22;
}

.path-group + .path-group {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line-strong);
}

.group-label {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 14px;
}

.group-label strong {
  font-size: 19px;
  font-weight: 900;
}

.group-label span {
  color: var(--muted);
  font-size: 14px;
}

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

.path-step,
.support-card {
  padding: 22px;
}

.path-step {
  border-top: 4px solid var(--accent);
}

.support-card {
  display: grid;
  align-content: start;
  gap: 10px;
  border-style: dashed;
  background: color-mix(in srgb, var(--paper) 72%, var(--paper-2));
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.support-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 31, 0.36);
  box-shadow: 0 14px 30px rgba(18, 15, 12, 0.07);
}

.path-step span,
.support-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
}

.support-card em {
  margin-top: 6px;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.support-card-points {
  display: grid;
  gap: 6px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.support-card-points li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}

.support-card-points li::before {
  content: "";
  flex: 0 0 6px;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.ai-future {
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
}

.ai-future-header {
  align-items: start;
}

.ai-future-header h2 {
  max-width: 820px;
}

.ai-diagram {
  margin-top: 32px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 84%, transparent);
  box-shadow: 0 22px 54px rgba(18, 15, 12, 0.06);
}

.ai-diagram + .ai-diagram,
.ai-secondary {
  margin-top: 20px;
}

.ai-diagram-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.ai-diagram-heading strong {
  font-size: 19px;
  font-weight: 950;
}

.ai-diagram-heading span,
.ai-product-card small,
.ai-product-card p,
.ai-rhythm-card p,
.ai-combination-card p,
.ai-secondary-card p,
.ai-future-boundary {
  color: var(--muted);
}

.ai-diagram-heading a {
  color: var(--accent);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

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

.ai-product-map-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: var(--paper);
}

.ai-product-map-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.ai-product-map-visual a {
  display: block;
}

.ai-product-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.ai-product-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 31, 0.35);
  box-shadow: 0 16px 34px rgba(18, 15, 12, 0.08);
}

.ai-product-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.ai-product-head span,
.ai-combination-card span {
  display: inline-flex;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.ai-product-card h3,
.ai-rhythm-card h3,
.ai-combination-card h3,
.ai-secondary-card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: 0;
}

.ai-product-card p,
.ai-rhythm-card p,
.ai-combination-card p,
.ai-secondary-card p {
  margin: 0;
  font-size: 15px;
}

.ai-product-note {
  padding: 10px 12px;
  border: 1px dashed rgba(255, 90, 31, 0.32);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent-soft) 48%, var(--paper));
}

.ai-product-columns {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.ai-product-columns b {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
}

.ai-mini-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ai-mini-list li {
  position: relative;
  padding-left: 14px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.45;
}

.ai-mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.64em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent);
}

.ai-product-card em {
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

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

.ai-poster-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(18, 15, 12, 0.05);
}

.ai-poster-frame {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  height: auto;
  overflow: hidden;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  cursor: zoom-in;
}

.ai-poster-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

.ai-poster-frame span {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(18, 15, 12, 0.22);
}

.ai-poster-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(18, 15, 12, 0.22));
  pointer-events: none;
}

.ai-poster-frame:hover img {
  transform: scale(1.015);
}

.ai-poster-copy {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.ai-poster-copy h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.ai-poster-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.ai-poster-copy a {
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.ai-text-details {
  margin-top: 20px;
  background: color-mix(in srgb, var(--paper) 78%, transparent);
}

.ai-text-details summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.ai-text-details summary span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.ai-text-details .ai-product-grid {
  padding: 0 18px 18px;
}

.ai-product-grid-compact .ai-product-card {
  padding: 18px;
  border-top-width: 3px;
  box-shadow: none;
}

.ai-product-grid-compact .ai-product-card h3 {
  font-size: 18px;
}

.ai-product-grid-compact .ai-product-columns {
  gap: 10px;
}

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

.ai-rhythm-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.ai-rhythm-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  font-weight: 900;
}

.ai-rhythm-card strong {
  display: block;
  margin: 8px 0;
  font-size: 14px;
}

.ai-combination-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.ai-combination-card {
  padding: 18px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: var(--paper);
}

.ai-combination-card h3 {
  margin-top: 14px;
  font-size: 18px;
}

.ai-combination-card p {
  margin-top: 8px;
  font-size: 13px;
}

.ai-secondary {
  padding: 0 2px;
}

.ai-diagram-heading.compact {
  margin-bottom: 12px;
}

.ai-secondary-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ai-secondary-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 70%, var(--paper-2));
}

.ai-secondary-card h3 {
  font-size: 17px;
}

.ai-secondary-card p {
  margin-top: 8px;
  font-size: 13px;
}

.ai-future-boundary {
  max-width: 920px;
  margin: 20px 0 0;
  font-size: 14px;
}

.poster-detail {
  padding-top: 118px;
}

.poster-detail-container {
  max-width: 1120px;
}

.poster-detail-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.poster-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.poster-detail-frame {
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 24px 62px rgba(18, 15, 12, 0.08);
}

.poster-detail-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.product-hero,
.membership-hero,
.schedule-hero,
.advisor-landing {
  padding-top: 118px;
}

.product-hero-grid,
.membership-hero-grid,
.schedule-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: center;
}

.product-hero h1,
.membership-hero h1,
.schedule-hero h1,
.advisor-landing h1 {
  max-width: 980px;
  margin: 16px 0 18px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.product-hero p,
.membership-hero p,
.schedule-hero p,
.advisor-landing p {
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.75;
}

.product-action-row,
.advisor-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.product-fact-panel,
.schedule-meta-card,
.membership-card,
.advisor-landing-card {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.product-fact-panel span,
.schedule-meta-card span,
.membership-card span,
.membership-card em {
  display: inline-flex;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.schedule-meta-card strong,
.membership-card h2 {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.schedule-meta-card em {
  color: var(--muted);
  font-style: normal;
}

.membership-card {
  min-height: 260px;
  align-content: center;
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 90, 31, 0.16), transparent 34%),
    linear-gradient(135deg, #fff 0%, #f7eee8 100%);
}

.membership-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.membership-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.membership-strip span {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
}

.product-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.product-problem-grid,
.product-bottom-grid,
.membership-benefit-grid,
.schedule-grid {
  display: grid;
  gap: 14px;
}

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

.product-problem-grid article,
.product-info-card,
.membership-benefit-grid article,
.membership-feature-list article,
.membership-rhythm-list article,
.schedule-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 16px 36px rgba(18, 15, 12, 0.05);
}

.product-problem-grid article {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.product-problem-grid span,
.course-day-head span,
.course-session time,
.membership-benefit-grid span,
.membership-rhythm-list span,
.schedule-date span {
  color: var(--accent);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-weight: 950;
}

.product-problem-grid h3,
.product-info-card h3,
.course-day-card h3,
.membership-benefit-grid h3,
.membership-feature-list h3,
.membership-rhythm-list h3,
.schedule-card h2 {
  margin: 0;
  color: var(--ink);
  line-height: 1.18;
}

.product-problem-grid p,
.product-info-card p,
.course-day-card p,
.course-session p,
.membership-benefit-grid li,
.membership-feature-list p,
.membership-rhythm-list p,
.schedule-card p,
.schedule-info dd {
  color: var(--muted);
  line-height: 1.65;
}

.product-loop {
  display: grid;
  gap: 14px;
  margin-top: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.product-loop h2 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(28px, 3vw, 42px);
}

.product-loop strong {
  color: #ffb083;
}

.product-loop-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.product-loop-steps span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
}

.course-day-grid,
.membership-two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.course-day-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.course-day-head,
.schedule-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.course-day-head small,
.schedule-card-top small {
  color: var(--muted);
  font-weight: 900;
}

.course-session-list,
.membership-feature-list,
.membership-rhythm-list {
  display: grid;
  gap: 10px;
}

.course-session {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.course-session em {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

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

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

.product-info-card {
  padding: 24px;
}

.product-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 14px;
}

.product-chip-grid span {
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.product-clean-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}

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

.product-clean-list li::marker,
.membership-benefit-grid li::marker {
  color: var(--accent);
}

.product-cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--paper);
}

.product-cta-box h2 {
  margin: 0 0 8px;
  color: var(--paper);
  font-size: clamp(30px, 3.8vw, 52px);
}

.product-cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.product-action-row.is-dark .btn-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
}

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

.membership-benefit-grid article,
.membership-feature-list article,
.membership-rhythm-list article {
  padding: 22px;
}

.membership-benefit-grid ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.membership-two-col > div {
  min-width: 0;
}

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

.schedule-card {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  overflow: hidden;
}

.schedule-date {
  display: grid;
  place-items: center;
  gap: 6px;
  padding: 20px;
  border-right: 1px solid var(--line);
  background: var(--paper-2);
  text-align: center;
}

.schedule-date span {
  font-size: 26px;
}

.schedule-date em {
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.schedule-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.schedule-card-top span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.schedule-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0;
}

.schedule-info div {
  min-width: 0;
}

.schedule-info dt {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
}

.schedule-info dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 800;
}

.advisor-landing-card {
  max-width: 760px;
  margin: 0 auto;
}

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

.related-link-list li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.related-link-list li:first-child {
  padding-top: 0;
  border-top: 0;
}

.related-link-list a {
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
}

.related-link-list p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.final-cta {
  padding-bottom: 96px;
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding: 42px;
  background: var(--ink);
  color: var(--paper);
}

.cta-box .section-kicker {
  color: #ffb083;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.cta-box h2 {
  font-size: clamp(32px, 4vw, 54px);
}

.cta-box p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.cta-box .btn-primary {
  background: var(--accent);
  color: var(--paper);
}

.cta-box .btn-secondary,
.cta-box .btn-disabled {
  background: rgba(255, 255, 255, 0.07);
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.16);
}

.site-footer {
  padding: 30px 0;
  background: var(--paper-2);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
}

.footer-grid p {
  max-width: 520px;
  margin: 4px 0 0;
}

.footer-grid a {
  color: var(--ink);
  font-weight: 900;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  text-align: right;
}

.footer-grid .footer-icp {
  color: var(--muted);
  font-weight: 700;
  white-space: nowrap;
}

.consultation {
  background: color-mix(in srgb, var(--paper-2) 66%, var(--bg));
}

.consultation-grid {
  align-items: start;
}

.consultation-grid > div > p {
  color: var(--muted);
  font-size: 18px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--ink);
  padding: 13px 14px;
  resize: vertical;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--muted-2);
}

.lead-form button {
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: color-mix(in srgb, var(--ink) 24%, var(--paper-2));
  color: var(--paper);
  font-weight: 900;
  cursor: not-allowed;
}

.lead-form p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-panel-header {
  display: grid;
  gap: 5px;
}

.contact-panel h3 {
  margin: 0;
  font-size: clamp(21px, 2.1vw, 28px);
  line-height: 1.16;
}

.contact-panel > div > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.contact-grid.is-single {
  grid-template-columns: 1fr;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 40px;
  grid-template-areas:
    "name icon"
    "action icon";
  min-width: 0;
  min-height: 82px;
  column-gap: 12px;
  row-gap: 8px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper-2) 58%, var(--paper));
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-card[hidden],
.contact-card.is-hidden {
  display: none;
}

.contact-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 31, 0.38);
  box-shadow: 0 12px 28px rgba(18, 15, 12, 0.07);
}

.contact-card strong {
  grid-area: name;
  font-size: 23px;
  line-height: 1.08;
}

.contact-card em {
  display: inline-flex;
  grid-area: action;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
}

.contact-card em span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.contact-card i {
  display: grid;
  grid-area: icon;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-style: normal;
}

.contact-card i svg {
  width: 22px;
  height: 22px;
}

.media-account-panel {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.media-account-heading,
.social-link-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.media-account-heading p,
.social-link-heading p {
  max-width: 260px;
  text-align: right;
}

.media-account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.media-account-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: color-mix(in srgb, var(--paper-2) 64%, var(--paper));
}

.media-qr-button {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  padding: 0;
  border: 1px solid rgba(18, 15, 12, 0.08);
  border-radius: 10px;
  background: #fff;
  cursor: zoom-in;
}

.media-qr-button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.media-account-card img,
.media-qr-placeholder {
  width: 74px;
  height: 74px;
  display: block;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(18, 15, 12, 0.08);
}

.media-qr-button img {
  border: 0;
  border-radius: 9px;
  object-fit: contain;
}

.media-qr-placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  background:
    repeating-linear-gradient(135deg, rgba(18, 15, 12, 0.04), rgba(18, 15, 12, 0.04) 6px, transparent 6px, transparent 12px),
    #fff;
}

.media-account-card div {
  min-width: 0;
}

.media-account-card span {
  display: inline-flex;
  margin-bottom: 5px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.media-account-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 1.25;
}

.media-account-card p {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.social-link-panel {
  display: grid;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

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

.social-link-card {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 4px);
  background: color-mix(in srgb, var(--paper-2) 70%, var(--paper));
  color: var(--ink);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 90, 31, 0.38);
  box-shadow: 0 12px 24px rgba(18, 15, 12, 0.06);
}

.social-link-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.social-link-icon {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.social-link-card strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qr-modal[hidden] {
  display: none;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.qr-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(18, 15, 12, 0.48);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.qr-modal-card {
  position: relative;
  display: grid;
  justify-items: center;
  width: min(420px, calc(100vw - 36px));
  gap: 12px;
  padding: 26px;
  border: 1px solid rgba(18, 15, 12, 0.12);
  border-radius: calc(var(--radius) + 8px);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(18, 15, 12, 0.26);
}

.qr-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.qr-modal-card span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.qr-modal-card h2 {
  margin: 0;
  text-align: center;
  font-size: 26px;
}

.qr-modal-card img {
  width: min(320px, 78vw);
  height: auto;
  border: 1px solid rgba(18, 15, 12, 0.08);
  border-radius: 14px;
  background: #fff;
}

.qr-modal-card p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 1120px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .chat-browser {
    max-width: 780px;
  }

  .site-nav {
    grid-template-columns: 1fr auto auto;
  }

  .nav-menu-toggle {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
  }

  .nav-actions {
    margin-right: 88px;
  }

  .site-nav nav {
    display: none;
  }

  .site-nav.nav-open nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    padding: 10px;
    border-radius: calc(var(--radius) + 10px);
    background: color-mix(in srgb, var(--paper) 96%, transparent);
    box-shadow: 0 18px 50px rgba(18, 15, 12, 0.14);
    backdrop-filter: blur(18px);
  }

  .site-nav.nav-open nav a {
    display: grid;
    place-items: center;
    min-height: 42px;
    padding: 10px 8px;
    border: 1px solid var(--line);
    background: var(--paper-2);
  }

  .site-nav.nav-open nav .nav-lang-mobile {
    display: grid;
  }
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: 1fr auto auto;
  }

  .workbench-grid,
  .tool-grid,
  .starter-grid,
  .faq-grid,
  .consultation-grid,
  .split-heading,
  .cta-box,
  .product-hero-grid,
  .service-entry-head,
  .membership-hero-grid,
  .schedule-hero-grid,
  .course-day-grid,
  .membership-two-col,
  .product-cta-box,
  .schedule-grid,
  .bluebook-hero-grid,
  .bluebook-split,
  .bluebook-use-grid,
  .bluebook-final-card,
  .tool-card-bluebook {
    grid-template-columns: 1fr;
  }

  .bluebook-hero-grid {
    gap: 42px;
  }

  .bluebook-cover-card,
  .bluebook-qr-card,
  .bluebook-final-card .btn {
    justify-self: start;
  }

  .bluebook-cover-card {
    width: min(100%, 320px);
  }

  .tool-card-bluebook {
    grid-template-rows: auto;
  }

  .tool-bluebook-cover {
    grid-row: auto;
    width: min(100%, 220px);
  }

  .starter-grid > div:first-child {
    grid-column: auto;
  }

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

  .proof-item:nth-child(2) {
    border-right: 0;
  }

  .proof-item:nth-child(1),
  .proof-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .path-grid,
  .support-grid,
  .product-problem-grid,
  .product-bottom-grid,
  .membership-benefit-grid,
  .membership-strip,
  .ai-product-grid,
  .ai-poster-grid,
  .ai-rhythm-grid,
  .ai-secondary-row,
  .start-grid,
  .business-grid,
  .case-grid,
  .recognition-grid,
  .article-grid,
  .timeline-panel,
  .evidence-panel,
  .detail-grid,
  .video-channels,
  .video-showcase-layout,
  .about-hero-grid,
  .about-identity-grid,
  .about-stage-grid,
  .about-proof-line {
    grid-template-columns: 1fr;
  }

  .about-stage-card,
  .about-proof-line article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .about-stage-card:first-child,
  .about-proof-line article:first-child {
    border-top: 0;
  }

  .about-video-panel {
    max-width: 360px;
  }

  .about-spine {
    margin-top: 30px;
  }

  .about-spine::before {
    left: 19px;
    transform: none;
  }

  .about-spine-item {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: auto;
    padding-bottom: 24px;
  }

  .about-spine-item--left .about-spine-card,
  .about-spine-item--right .about-spine-card {
    grid-column: 2;
    justify-self: stretch;
    width: 100%;
  }

  .about-spine-marker {
    grid-column: 1;
    grid-row: 1;
    width: 34px;
    height: 34px;
    margin-top: 16px;
  }

  .about-spine-card {
    padding: 18px 0 24px;
  }

  .about-record-row {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .about-record-row time {
    grid-column: 1 / 2;
  }

  .about-record-row div {
    grid-column: 2 / 3;
    grid-row: 1 / span 2;
  }

  .about-record-row a,
  .about-record-row strong {
    grid-column: 2 / 3;
    justify-self: start;
  }

  .service-entry-head .page-hero-actions {
    grid-column: auto;
  }

  .service-entry-card {
    max-width: 520px;
  }

  .service-routes-heading h1 {
    max-width: 720px;
  }

  .service-routes-actions {
    margin-top: 22px;
  }

  .service-route-row,
  .service-route-consult,
  .answer-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-secondary-links {
    grid-template-columns: 1fr;
  }

  .service-secondary-links a,
  .service-secondary-links a + a {
    padding: 16px 0;
    border-left: 0;
  }

  .service-secondary-links a + a {
    border-top: 1px solid var(--line);
  }

  .service-route-step,
  .service-route-fit,
  .service-route-row em,
  .service-route-consult em,
  .answer-row em {
    justify-self: start;
  }

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

  .ai-poster-frame {
    height: auto;
  }

  .poster-detail-top {
    display: grid;
    justify-content: stretch;
    align-items: start;
  }

  .poster-detail-actions {
    justify-content: flex-start;
  }

  .brand-story-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-story-copy {
    position: relative;
    top: auto;
  }

  .detail-photo {
    position: relative;
    top: auto;
  }

  .detail-source-card {
    position: relative;
    top: auto;
  }

  .retro-portrait {
    min-height: 610px;
  }

  .portal-scene {
    transform: translateX(0) scale(0.94) rotateY(-16deg) rotateX(5deg);
  }

  .retro-portrait:hover .portal-scene {
    transform: translateX(0) translateY(-5px) scale(0.96) rotateY(-12deg) rotateX(3deg);
  }

  .training-item {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .training-item a,
  .training-item em {
    justify-self: start;
  }

  .about-redirect {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-browser-row {
    grid-template-columns: 92px minmax(0, 1fr) 36px;
  }

  .case-browser-visual {
    width: 92px;
    height: 84px;
  }

  .case-browser-result {
    grid-column: 2 / 3;
  }

  .case-browser-row i {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .cta-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 60px;
  }

  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  body {
    font-size: 15px;
  }

  .container {
    padding: 0 14px;
  }

  .section-band {
    padding: 58px 0;
  }

  .site-nav {
    grid-template-columns: 1fr auto;
    min-height: 60px;
    padding: 0 14px;
  }

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

  .brand strong {
    font-size: 16px;
  }

  .brand em,
  .nav-cta,
  .language-switch {
    display: none;
  }

  .nav-actions {
    margin-right: 0;
  }

  .site-nav.nav-open nav {
    left: 10px;
    right: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-menu-toggle {
    position: fixed;
    top: 10px;
    right: 14px;
    transform: none;
    min-width: 72px;
    height: 40px;
    padding: 0 12px;
    z-index: 60;
  }

  .back-to-top {
    right: 14px;
    bottom: 18px;
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: auto;
    padding-top: 18px;
  }

  .hero-grid {
    gap: 42px;
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .hero-copy,
  main,
  section {
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }

  .eyebrow,
  .section-kicker {
    font-size: 12px;
    margin-bottom: 22px;
  }

  .hero-title {
    font-size: clamp(44px, 13vw, 56px);
    line-height: 1.02;
  }

  .hero-title small {
    max-width: 350px;
    font-size: clamp(27px, 7.4vw, 32px);
    line-height: 1.16;
  }

  .hero-copy {
    max-width: 362px;
  }

  .mobile-only {
    display: inline;
  }

  .hero-intro {
    font-size: 18px;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
  }

  .home-schedule-wrap {
    margin-top: 24px;
  }

  .home-schedule-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .home-schedule-wrap.is-hero .home-schedule-card {
    grid-template-columns: 1fr;
  }

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

  .home-schedule-wrap.is-hero .home-schedule-copy {
    grid-template-columns: 1fr;
  }

  .home-schedule-wrap.is-hero .home-schedule-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-schedule-card > i {
    width: 100%;
  }

  .home-schedule-wrap.is-hero .home-schedule-card > i {
    width: 100%;
  }

  .case-browser {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .case-browser-head {
    padding-top: 0;
    padding-bottom: 28px;
  }

  .case-browser-head .eyebrow {
    margin-bottom: 12px;
    font-size: 12px;
  }

  .case-browser .case-browser-head h1 {
    font-size: clamp(34px, 9.5vw, 42px);
    line-height: 1.08;
  }

  .case-browser .case-browser-head p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.7;
  }

  .case-browser-toolbar-wrap {
    position: static;
    top: auto;
  }

  .case-browser-toolbar {
    grid-template-columns: 1fr;
    padding: 12px 14px 14px;
  }

  .case-browser-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 3px;
    -webkit-overflow-scrolling: touch;
  }

  .case-browser-filter {
    flex: none;
  }

  .case-browser-count {
    white-space: normal;
  }

  .case-browser-shell {
    padding-top: 24px;
  }

  .case-browser-section-label {
    padding: 18px 0 10px;
  }

  .case-browser-row {
    grid-template-columns: 78px minmax(0, 1fr) 34px;
    gap: 13px;
    min-height: 134px;
    padding: 18px 0;
  }

  .case-browser-visual {
    width: 78px;
    height: 78px;
  }

  .case-browser-cover {
    padding: 8px;
  }

  .case-browser-cover b {
    max-width: 60px;
    font-size: 12px;
  }

  .case-browser-meta {
    margin-bottom: 7px;
  }

  .case-browser-meta span {
    min-height: 22px;
    padding: 0 8px;
  }

  .case-browser-meta em {
    display: none;
  }

  .case-browser-main h3 {
    font-size: 18px;
    line-height: 1.36;
  }

  .case-browser-main p {
    display: none;
  }

  .case-browser-result {
    grid-column: 1 / -1;
    padding-left: 91px;
    font-size: 13px;
  }

  .case-browser-result strong {
    font-size: 13px;
  }

  .case-browser-row i {
    width: 34px;
    height: 34px;
  }

  .case-browser-preview {
    display: none;
  }

  .case-browser-detail {
    padding: 26px 20px 40px;
  }

  .case-browser-close {
    margin-bottom: 18px;
  }

  .case-browser-detail .case-browser-cover b {
    max-width: 240px;
    font-size: 28px;
  }

  .case-browser-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-browser-detail-actions a {
    width: 100%;
  }

  .chat-browser,
  .hero-intro,
  .hero-title,
  .boundary-note,
  .portrait-card {
    max-width: 100%;
    min-width: 0;
  }

  .portrait-card img {
    height: 430px;
    min-height: 430px;
  }

  .portrait-card figcaption {
    width: calc(100% - 26px);
    left: 13px;
    bottom: 22px;
    padding: 13px 14px;
  }

  .retro-portrait {
    min-height: 470px;
    padding: 0 0 42px;
    overflow: visible;
  }

  .retro-portrait::after {
    bottom: 38px;
    width: 320px;
    height: 54px;
  }

  .portal-scene {
    width: 340px;
    height: 450px;
    transform: translateX(0) scale(0.72) rotateY(-13deg) rotateX(5deg);
    transform-origin: 50% 16%;
  }

  .retro-portrait:hover .portal-scene {
    transform: translateX(0) scale(0.72) rotateY(-10deg) rotateX(4deg);
  }

  .hero-video-frame {
    width: min(100%, 320px);
    border-radius: 28px;
  }

  .hero-video-frame video {
    border-radius: 20px;
  }

  .hero-video-card figcaption {
    margin-top: -34px;
  }

  .video-rail {
    grid-auto-columns: minmax(330px, 88vw);
  }

  .video-card {
    padding: 14px;
  }

  .video-card-media {
    height: auto;
  }

  .video-card-footer {
    grid-template-columns: minmax(0, 1fr) 80px;
  }

  .video-card-qr {
    min-height: 0;
  }

  .video-card-qr img {
    width: 62px;
    max-height: 82px;
  }

  .digital-human-site {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
  }

  .digital-human-visual {
    grid-row: auto;
    min-height: 0;
  }

  .digital-human-visual img {
    height: calc(100% - 16px);
  }

  .digital-human-site > span {
    display: none;
  }

  .digital-human-site p {
    grid-column: auto;
  }

  .digital-human-site em {
    justify-self: start;
  }

  .tool-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .tool-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 11px 10px 11px 12px;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
  }

  .tool-actions .btn span {
    width: 24px;
    height: 24px;
  }

  .boundary-note {
    grid-template-columns: 24px 1fr;
    padding: 15px;
  }

  .boundary-note p {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .hero-proof {
    display: none;
  }

  .chat-badge {
    left: 18px;
    top: -20px;
    font-size: 13px;
  }

  .browser-bar {
    grid-template-columns: 10px 10px 10px 1fr;
    height: 46px;
    padding: 0 14px;
  }

  .browser-bar em {
    display: none;
  }

  .browser-bar code {
    justify-self: start;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 11px;
  }

  .browser-body {
    max-height: none;
    padding: 24px 18px 18px;
  }

  .chat-message {
    padding: 20px;
  }

  .chat-message p {
    font-size: 16px;
  }

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

  .chat-input-row {
    grid-template-columns: 1fr;
  }

  .start-card,
  .business-card,
  .lead-form {
    padding: 20px;
  }

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

  .proof-item,
  .proof-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .mock-top,
  .mock-list article,
  .footer-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mock-list span {
    text-align: left;
  }

  .mock-toolbar code {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .offer-card,
  .ai-diagram,
  .ai-product-card,
  .ai-rhythm-card,
  .ai-combination-card,
  .ai-secondary-card,
  .cta-box,
  .detail-copy {
    padding: 22px;
  }

  .starter-grid > div:first-child,
  .offer-card,
  .ai-future-header,
  .ai-diagram-heading,
  .ai-product-card,
  .ai-rhythm-card,
  .ai-combination-card,
  .ai-secondary-card,
  .offer-card h3,
  .offer-card li,
  .start-card,
  .business-card,
  .contact-card {
    min-width: 0;
    width: 100%;
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .offer-card ul {
    width: 100%;
  }

  .ai-diagram-heading,
  .ai-product-head {
    display: grid;
    justify-content: stretch;
    align-items: start;
  }

  .ai-combination-grid {
    grid-template-columns: 1fr;
  }

  .ai-poster-frame {
    height: auto;
  }

  .ai-product-map-visual {
    border-radius: 10px;
  }

  .ai-text-details summary {
    display: grid;
  }

  .ai-text-details .ai-product-grid {
    padding: 0 14px 14px;
  }

  .poster-detail {
    padding-top: 92px;
  }

  .product-hero,
  .membership-hero,
  .schedule-hero,
  .advisor-landing {
    padding-top: 92px;
  }

  .course-session,
  .schedule-card,
  .schedule-info,
  .product-clean-list.columns {
    grid-template-columns: 1fr;
  }

  .schedule-date {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-cta-box,
  .product-action-row.is-dark {
    justify-items: start;
  }

  .poster-detail-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

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

  .media-account-heading,
  .social-link-heading {
    display: grid;
    align-items: start;
  }

  .media-account-heading p,
  .social-link-heading p {
    max-width: none;
    text-align: left;
  }

  .media-account-grid,
  .social-link-grid {
    grid-template-columns: 1fr;
  }

  .business-visual {
    min-height: 180px;
  }

  .page-hero h1,
  .detail-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .article-card,
  .case-card {
    min-height: auto;
  }

  .about-photo img {
    height: 420px;
    min-height: 420px;
  }

  .recognition-card figure,
  .case-photo,
  .article-card figure {
    aspect-ratio: 4 / 3;
  }

  .footer-grid {
    align-items: start;
  }

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

/* AI 九两咨询页：以已确认的独立 demo 为母版，只接入主站导航与顾问绑定 */
main.ai-consult-page.consult-scene {
  --orange: var(--accent);
  --orange-soft: var(--accent-soft);
  --paper-strong: #fffdfa;
  --shadow: 0 24px 70px rgba(31, 26, 18, 0.12);
  width: min(1220px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 10px 0 34px;
}

main.ai-consult-page.consult-scene .hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(320px, 0.58fr);
  grid-template-areas:
    "copy copy"
    "contact stage"
    "assist assist";
  gap: 14px 28px;
  align-items: start;
  min-height: auto;
  padding: 14px 0 22px;
}

main.ai-consult-page.consult-scene .copy-panel {
  position: relative;
  z-index: 2;
  grid-area: copy;
  width: min(760px, 100%);
  min-width: 0;
}

main.ai-consult-page.consult-scene .kicker {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(20, 18, 14, 0.06);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.2;
}

main.ai-consult-page.consult-scene .kicker i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 79, 36, 0.12);
}

main.ai-consult-page.consult-scene .copy-panel h1 {
  margin: 16px 0 0;
  max-width: none;
  color: var(--ink);
  font-size: clamp(38px, 3.6vw, 50px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

main.ai-consult-page.consult-scene .lead {
  width: min(660px, 100%);
  max-width: none;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
}

main.ai-consult-page.consult-scene .path-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

main.ai-consult-page.consult-scene .path-links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 250, 0.8);
  color: #39342e;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 26px rgba(20, 18, 14, 0.05);
  opacity: 0.84;
  transition: transform 160ms ease, border-color 160ms ease, color 160ms ease;
}

main.ai-consult-page.consult-scene .path-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 79, 36, 0.38);
  color: var(--orange);
  opacity: 1;
}

main.ai-consult-page.consult-scene .assist-panel {
  position: relative;
  grid-area: assist;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 6px;
  padding: 18px 20px 18px 22px;
  border: 1px solid rgba(12, 12, 10, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 79, 36, 0.09), transparent 32%),
    rgba(255, 253, 250, 0.92);
  box-shadow: 0 18px 54px rgba(31, 26, 18, 0.1);
}

main.ai-consult-page.consult-scene .assist-panel::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 52px;
  width: 16px;
  height: 16px;
  border-top: 1px solid rgba(12, 12, 10, 0.12);
  border-left: 1px solid rgba(12, 12, 10, 0.12);
  background: #fffdfa;
  transform: rotate(45deg);
}

main.ai-consult-page.consult-scene .dialogue-card {
  display: block;
  width: 100%;
  min-height: auto;
  margin-top: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
}

main.ai-consult-page.consult-scene .speaker {
  display: inline-flex;
  justify-self: auto;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

main.ai-consult-page.consult-scene .dialogue-card p {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.48;
  font-weight: 800;
}

main.ai-consult-page.consult-scene .ai-consult-lines {
  display: none;
}

main.ai-consult-page.consult-scene .hero-actions {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 0;
  min-width: 140px;
}

main.ai-consult-page.consult-scene .primary-action,
main.ai-consult-page.consult-scene .secondary-action {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  box-shadow: none;
}

main.ai-consult-page.consult-scene .primary-action {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(20, 18, 14, 0.04);
}

main.ai-consult-page.consult-scene .secondary-action {
  border-color: rgba(12, 12, 10, 0.18);
  background: #11100f;
  color: #fff;
}

main.ai-consult-page.consult-scene .primary-action span,
main.ai-consult-page.consult-scene .secondary-action span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

main.ai-consult-page.consult-scene .secondary-action span {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

main.ai-consult-page.consult-scene .ai-stage {
  position: relative;
  display: grid;
  grid-area: stage;
  align-self: stretch;
  min-height: 342px;
  overflow: hidden;
  border: 1px solid rgba(255, 79, 36, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 79, 36, 0.08), transparent 42%),
    rgba(255, 253, 250, 0.72);
  box-shadow: 0 28px 72px rgba(31, 26, 18, 0.12);
  place-items: center;
  opacity: 0.9;
}

main.ai-consult-page.consult-scene .avatar-card {
  position: relative;
  z-index: 3;
  display: block;
  width: min(346px, calc(100% - 34px));
  margin: 0;
  padding: 18px 18px 14px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.52));
  box-shadow: 0 26px 70px rgba(20, 18, 14, 0.12);
  backdrop-filter: blur(18px);
  cursor: pointer;
  transform-style: preserve-3d;
  user-select: none;
  transition: transform 160ms ease-out;
}

main.ai-consult-page.consult-scene .avatar-card:hover {
  transform: translateY(0);
  box-shadow: 0 26px 70px rgba(20, 18, 14, 0.12);
}

main.ai-consult-page.consult-scene .avatar-card:focus-visible {
  outline: 3px solid rgba(255, 79, 36, 0.5);
  outline-offset: 6px;
}

main.ai-consult-page.consult-scene .avatar-wrap {
  position: relative;
  display: block;
  width: min(196px, 68%);
  height: 228px;
  min-height: 0;
  margin: 0 auto;
  overflow: visible;
  animation: consultFloaty 4.8s ease-in-out infinite;
}

main.ai-consult-page.consult-scene .ai-avatar {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 34px 34px rgba(23, 20, 18, 0.24));
  transform: translateY(var(--avatar-y, 0)) scale(var(--avatar-scale, 1));
  transform-origin: center bottom;
  transition: opacity 120ms ease, transform 180ms ease, filter 180ms ease;
}

main.ai-consult-page.consult-scene .ai-avatar[data-state="crouch"],
main.ai-consult-page.consult-scene .ai-avatar.is-crouch {
  --avatar-scale: 0.78;
}

main.ai-consult-page.consult-scene .ai-avatar[data-state="sleep"],
main.ai-consult-page.consult-scene .ai-avatar.is-sleep {
  --avatar-scale: 0.74;
}

main.ai-consult-page.consult-scene .avatar-card:hover .ai-avatar {
  filter: drop-shadow(0 38px 38px rgba(23, 20, 18, 0.26)) saturate(1.05);
}

main.ai-consult-page.consult-scene .avatar-card.is-happy .ai-avatar,
main.ai-consult-page.consult-scene .ai-avatar.is-cheer,
main.ai-consult-page.consult-scene .ai-avatar.is-fist-up,
main.ai-consult-page.consult-scene .ai-avatar.is-wave {
  transform: translateY(-5px) scale(1.025);
}

main.ai-consult-page.consult-scene .avatar-card.is-thinking .ai-avatar,
main.ai-consult-page.consult-scene .ai-avatar.is-think,
main.ai-consult-page.consult-scene .ai-avatar.is-point {
  transform: translateY(-3px) rotate(-1deg);
}

main.ai-consult-page.consult-scene .ai-avatar.is-look-left {
  transform: translateX(-4px);
}

main.ai-consult-page.consult-scene .ai-avatar.is-look-right {
  transform: translateX(4px);
}

main.ai-consult-page.consult-scene .tap-hint {
  position: absolute;
  right: -10%;
  top: 8%;
  z-index: 4;
  padding: 8px 10px;
  border-radius: 999px;
  background: #11100f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

main.ai-consult-page.consult-scene .avatar-card:hover .tap-hint,
main.ai-consult-page.consult-scene .avatar-card:focus-visible .tap-hint {
  opacity: 1;
  transform: translateY(0);
}

main.ai-consult-page.consult-scene .avatar-card figcaption {
  display: flex;
  min-height: auto;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #11100f;
  color: #fff;
}

main.ai-consult-page.consult-scene .avatar-card figcaption span {
  color: #ffb49f;
  font-weight: 900;
}

main.ai-consult-page.consult-scene .avatar-card figcaption strong {
  font-size: inherit;
  font-weight: 900;
}

main.ai-consult-page.consult-scene .orbit {
  position: absolute;
  border: 1px solid rgba(255, 79, 36, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

main.ai-consult-page.consult-scene .orbit-one {
  width: 360px;
  height: 360px;
  transform: none;
  animation: consultSpin 20s linear infinite;
}

main.ai-consult-page.consult-scene .orbit-two {
  width: 238px;
  height: 238px;
  border-color: rgba(17, 16, 15, 0.08);
  background: none;
  animation: consultSpin 14s linear reverse infinite;
}

main.ai-consult-page.consult-scene .floating-note {
  position: absolute;
  z-index: 4;
  min-width: 106px;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 253, 250, 0.88);
  box-shadow: 0 14px 34px rgba(25, 21, 18, 0.08);
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
  opacity: 0.72;
}

main.ai-consult-page.consult-scene .floating-note b {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 14px;
}

main.ai-consult-page.consult-scene .note-build {
  top: 50px;
  left: 4px;
}

main.ai-consult-page.consult-scene .note-traffic {
  right: -10px;
  top: 136px;
}

main.ai-consult-page.consult-scene .note-team {
  left: 14px;
  bottom: 84px;
}

main.ai-consult-page.consult-scene .contact-section {
  display: grid;
  grid-area: contact;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: 24px;
  align-items: center;
  align-self: stretch;
  margin-top: 0;
  padding: 26px 28px;
  min-height: 342px;
  border: 1px solid rgba(255, 79, 36, 0.22);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 16%, rgba(255, 90, 31, 0.1), transparent 34%),
    rgba(255, 253, 250, 0.94);
  box-shadow: 0 28px 72px rgba(31, 26, 18, 0.16);
}

main.ai-consult-page.consult-scene .contact-section .kicker {
  min-height: 36px;
  padding: 0 14px;
  font-size: 14px;
}

main.ai-consult-page.consult-scene .contact-section h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(38px, 3.4vw, 52px);
  line-height: 1.08;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

main.ai-consult-page.consult-scene .contact-section p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

main.ai-consult-page.consult-scene .contact-section .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

main.ai-consult-page.consult-scene .contact-section .contact-grid.is-single {
  grid-template-columns: minmax(0, 1fr);
}

main.ai-consult-page.consult-scene .contact-section .contact-card {
  position: relative;
  display: block;
  min-height: 150px;
  padding: 22px 24px;
  border: 1px solid rgba(12, 12, 10, 0.16);
  border-radius: 22px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 18px 44px rgba(18, 16, 14, 0.1);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

main.ai-consult-page.consult-scene .contact-section .contact-card[hidden],
main.ai-consult-page.consult-scene .contact-section .contact-card.is-hidden {
  display: none;
}

main.ai-consult-page.consult-scene .contact-section .contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 79, 36, 0.4);
  box-shadow: 0 20px 46px rgba(255, 79, 36, 0.12);
}

main.ai-consult-page.consult-scene .contact-section .contact-card span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

main.ai-consult-page.consult-scene .contact-section .contact-card strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(42px, 3.8vw, 56px);
  line-height: 1;
}

main.ai-consult-page.consult-scene .contact-section .contact-card em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 16px;
  border-radius: 999px;
  background: #11100f;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 900;
}

@keyframes consultFloaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes consultSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 860px) {
  main.ai-consult-page.consult-scene {
    display: flex;
    flex-direction: column;
    width: min(100% - 28px, 680px);
    padding-top: 12px;
  }

  main.ai-consult-page.consult-scene .hero-panel,
  main.ai-consult-page.consult-scene .contact-section {
    grid-template-columns: 1fr;
  }

  main.ai-consult-page.consult-scene .hero-panel {
    order: 2;
    grid-template-areas:
      "contact"
      "stage"
      "assist";
    gap: 14px;
    min-height: auto;
    padding: 12px 0 18px;
  }

  main.ai-consult-page.consult-scene .copy-panel {
    display: none;
  }

  main.ai-consult-page.consult-scene .assist-panel {
    grid-template-columns: 1fr;
  }

  main.ai-consult-page.consult-scene .ai-stage {
    min-height: 342px;
  }

  main.ai-consult-page.consult-scene .avatar-card {
    width: min(360px, 100%);
    padding: 24px 22px 18px;
  }

  main.ai-consult-page.consult-scene .avatar-wrap {
    width: min(218px, 70%);
    height: 276px;
  }

  main.ai-consult-page.consult-scene .tap-hint {
    right: -2%;
    top: 2%;
  }

  main.ai-consult-page.consult-scene .orbit-one {
    width: 380px;
    height: 380px;
  }

  main.ai-consult-page.consult-scene .orbit-two {
    width: 280px;
    height: 280px;
  }

  main.ai-consult-page.consult-scene .floating-note {
    display: none;
  }

  main.ai-consult-page.consult-scene .contact-section {
    margin-top: 10px;
    padding: 16px;
  }

  main.ai-consult-page.consult-scene .contact-section h2 {
    white-space: normal;
    font-size: clamp(24px, 7vw, 32px);
  }

  main.ai-consult-page.consult-scene .contact-section p {
    font-size: 14px;
    line-height: 1.52;
  }

  main.ai-consult-page.consult-scene .contact-section .contact-card {
    min-height: 118px;
    padding: 15px 18px;
  }

  main.ai-consult-page.consult-scene .contact-section .contact-card strong {
    font-size: 36px;
  }

  main.ai-consult-page.consult-scene .contact-section .contact-card em {
    min-height: 38px;
    margin-top: 14px;
    font-size: 14px;
  }
}

/* Focused homepage refresh */
.home-page .section-band {
  padding-top: 72px;
  padding-bottom: 72px;
}

.home-page .section-kicker {
  margin-bottom: 20px;
  padding: 8px 14px;
  font-size: 13px;
}

.home-hero {
  padding-top: 70px;
  padding-bottom: 62px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), transparent 72%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(36px, 6vw, 78px);
  align-items: center;
}

.home-page .hero-title {
  max-width: 880px;
  margin-bottom: 18px;
  font-size: clamp(52px, 5.6vw, 84px);
  line-height: 0.98;
}

.home-page .hero-title > span {
  color: var(--accent);
  font-style: italic;
}

.home-page .hero-title small {
  max-width: 780px;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.12;
}

.home-page .hero-title small span {
  display: inline;
  color: inherit;
  font-style: normal;
}

.hero-title-prefix,
.hero-title-suffix {
  display: inline;
}

.home-page .hero-title .hero-title-prefix {
  display: block;
  color: var(--ink);
  font-style: normal;
}

.home-page .hero-title .hero-title-dynamic-line {
  display: block;
  color: var(--ink);
  font-style: normal;
  white-space: nowrap;
}

.home-page .hero-title .hero-title-audience {
  color: var(--ink);
  font-style: normal;
}

.home-page .hero-title .hero-typewriter {
  display: inline-block;
  min-width: 3.55em;
  color: var(--accent);
  font-style: italic;
  white-space: nowrap;
}

:lang(en) .hero-typewriter {
  min-width: 7.4em;
}

.hero-typewriter::after {
  content: "";
  display: inline-block;
  width: 0.075em;
  height: 0.88em;
  margin-left: 0.08em;
  background: currentColor;
  vertical-align: -0.08em;
  animation: heroTypeCursor 0.86s steps(1, end) infinite;
}

@keyframes heroTypeCursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

.home-page .hero-intro {
  max-width: 750px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.home-page .hero-actions {
  gap: 10px;
}

.home-page .hero .btn {
  min-height: 48px;
  padding: 13px 20px;
  font-size: 15px;
}

.home-page .home-hero-video {
  justify-self: end;
  animation: homeHeroVideoFloat 4.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  transform-origin: center;
}

.home-page .home-hero-video:hover {
  animation-play-state: paused;
}

@keyframes homeHeroVideoFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-0.12deg);
  }

  50% {
    transform: translate3d(0, -14px, 0) rotate(0.16deg);
  }
}

.home-page .home-hero-video .hero-video-frame {
  width: min(100%, 292px);
  padding: 7px;
  border-radius: 26px;
  box-shadow: 0 20px 54px rgba(18, 15, 12, 0.12);
}

.home-page .home-hero-video .hero-video-frame video {
  border-radius: 20px;
}

.home-page .home-hero-video figcaption {
  width: min(254px, calc(100% - 28px));
  margin-top: -34px;
  padding: 11px 13px;
}

.home-schedule-ticker {
  display: flex;
  width: min(100%, 720px);
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.home-schedule-ticker span,
.home-schedule-ticker em {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
}

.home-schedule-ticker strong {
  min-width: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-schedule-ticker em {
  margin-left: auto;
  color: var(--accent);
}

.home-page .start-guide {
  background: transparent;
}

.home-page .start-guide .split-heading,
.home-page .home-evidence .split-heading,
.home-page .home-reading .split-heading {
  align-items: start;
  margin-bottom: 28px;
}

.home-page .start-guide .split-heading p,
.home-page .home-evidence .split-heading p,
.home-page .home-reading .split-heading p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.home-page .start-guide h2,
.home-page .home-evidence h2,
.home-page .home-reading h2,
.home-page .home-next-step h2,
.home-page .home-closing h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
}

.home-page .start-grid {
  gap: 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.home-page .start-card {
  padding: 24px 28px 24px 0;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.home-page .start-card + .start-card {
  padding-left: 28px;
}

.home-page .start-card:last-child {
  border-right: 0;
}

.home-page .start-card span {
  margin-bottom: 14px;
  background: color-mix(in srgb, var(--accent-soft) 76%, var(--paper));
}

.home-page .start-card h3 {
  max-width: 330px;
  font-size: 24px;
}

.home-page .start-card p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.75;
}

.home-page .inline-action {
  color: var(--ink);
}

.home-evidence {
  background: color-mix(in srgb, var(--paper) 70%, transparent);
}

.home-evidence .container {
  max-width: 1120px;
}

.home-evidence-stack {
  display: grid;
  gap: 42px;
}

.home-stack-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.home-stack-head strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.home-stack-head a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.home-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-radius: 0;
}

.home-proof-grid .proof-item {
  min-height: 172px;
  padding: 24px 22px;
}

.home-proof-grid .proof-value {
  font-size: clamp(28px, 3.2vw, 44px);
}

.home-proof-grid .proof-item h3 {
  font-size: 16px;
}

.home-proof-grid .proof-item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.65;
}

.home-business-list {
  display: grid;
}

.home-case-row {
  display: grid;
  grid-template-columns: 136px minmax(0, 1.15fr) minmax(250px, 0.85fr) auto;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.home-case-row:first-child {
  padding-top: 0;
}

.home-case-image {
  aspect-ratio: 16 / 10;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.home-case-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-case-copy {
  min-width: 0;
}

.home-case-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.home-case-meta span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.home-case-meta b {
  color: var(--muted);
  font-size: 12px;
}

.home-case-copy h3 {
  margin-bottom: 8px;
  font-size: 23px;
  line-height: 1.22;
}

.home-case-copy p {
  display: -webkit-box;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-case-result {
  display: grid;
  gap: 3px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
}

.home-case-result span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.home-case-row em {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-size: 0;
  font-style: normal;
  font-weight: 950;
}

.home-case-row em span {
  font-size: 15px;
}

.home-case-row:hover h3,
.home-case-row:focus-visible h3,
.home-article-link:hover h3,
.home-article-link:focus-visible h3 {
  color: var(--accent);
}

.home-page .video-showcase {
  background:
    linear-gradient(180deg, color-mix(in srgb, var(--paper) 82%, transparent), color-mix(in srgb, var(--paper-2) 42%, transparent)),
    var(--bg);
}

.home-page .video-showcase .container {
  max-width: 1180px;
}

.home-page .video-showcase .split-heading {
  align-items: start;
  margin-bottom: 28px;
}

.home-page .video-showcase .split-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.78;
}

.home-page .video-showcase h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.08;
}

.home-page .video-rail {
  grid-auto-columns: minmax(260px, 300px);
  gap: 14px;
}

.home-page .video-card {
  padding: 12px;
  border-radius: 12px;
}

.home-page .video-card-media {
  border-radius: 10px;
}

.home-page .video-card-footer {
  grid-template-columns: minmax(0, 1fr);
}

.home-page .video-card-qr {
  display: none;
}

.home-page .video-card h3 {
  font-size: 18px;
}

.home-page .video-card p {
  display: -webkit-box;
  margin-bottom: 8px;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-page .digital-human-site {
  margin-top: 14px;
  padding: 16px 18px;
}

.home-reading {
  background: transparent;
}

.home-article-list {
  border-top: 1px solid var(--line-strong);
}

.home-article-link {
  display: grid;
  grid-template-columns: 116px minmax(0, 0.95fr) minmax(260px, 1.05fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.home-article-link span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.home-article-link h3 {
  margin: 0;
  font-size: 19px;
}

.home-article-link p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-article-link em {
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.content-hover-preview {
  position: fixed;
  z-index: 90;
  left: 0;
  top: 0;
  width: 320px;
  aspect-ratio: 16 / 10;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: color-mix(in srgb, var(--paper) 92%, rgba(255, 255, 255, 0.2));
  box-shadow: 0 28px 68px rgba(18, 15, 12, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 0.16s ease;
}

.content-hover-preview.is-visible {
  opacity: 1;
}

.content-hover-preview img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.content-hover-preview.is-card-preview {
  width: 280px;
  aspect-ratio: 4 / 5;
  padding: 0;
  border-radius: 18px;
  background: transparent;
  overflow: hidden;
}

.content-hover-preview.is-card-preview img {
  border-radius: 18px;
  object-fit: cover;
}

.content-hover-preview.is-article-preview {
  width: min(420px, calc(100vw - 36px));
  aspect-ratio: 16 / 9;
  padding: 8px;
  background: #070b12;
}

.content-hover-preview.is-article-preview img {
  border-radius: 10px;
  object-fit: contain;
}

.content-hover-preview.is-qr-preview {
  width: 244px;
  aspect-ratio: 1;
  padding: 16px;
  border-radius: 16px;
  background: var(--paper);
}

.content-hover-preview.is-qr-preview img {
  border-radius: 10px;
  object-fit: contain;
}

.content-hover-preview.is-book-preview {
  width: min(300px, 32vw);
  aspect-ratio: 1004 / 1418;
  padding: 8px;
  border-radius: 18px;
  background: var(--paper);
}

.content-hover-preview.is-book-preview img {
  border-radius: 12px;
  object-fit: cover;
}

.content-hover-preview.is-wide-preview {
  width: min(440px, calc(100vw - 36px));
  aspect-ratio: 16 / 9;
  padding: 8px;
}

.content-hover-preview.is-wide-preview img {
  border-radius: 10px;
  object-fit: contain;
}

.content-hover-preview.is-portrait-preview {
  width: min(260px, 28vw);
  aspect-ratio: 9 / 16;
  padding: 8px;
}

.content-hover-preview.is-portrait-preview img {
  border-radius: 10px;
  object-fit: cover;
}

.home-bluebook-entry {
  padding-top: 38px;
  padding-bottom: 38px;
  background: transparent;
}

.home-bluebook-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.08), transparent 46%),
    var(--paper);
  box-shadow: 0 16px 36px rgba(18, 15, 12, 0.06);
}

.home-bluebook-cover {
  display: block;
  aspect-ratio: 1004 / 1418;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper-2);
}

.home-bluebook-cover img,
.tool-bluebook-cover img,
.bluebook-cover-card img,
.bluebook-qr-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-bluebook-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.home-bluebook-copy b {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.home-bluebook-copy strong {
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.15;
}

.home-bluebook-copy small {
  max-width: 760px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.home-bluebook-card em {
  color: var(--ink);
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.bluebook-page .section-band {
  padding-top: 62px;
  padding-bottom: 62px;
  background: color-mix(in srgb, var(--paper) 74%, transparent);
}

.bluebook-hero {
  padding-top: 74px;
  padding-bottom: 54px;
}

.bluebook-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(260px, 340px);
  gap: 50px;
  align-items: center;
}

.bluebook-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 5vw, 76px);
  line-height: 1.02;
  word-break: keep-all;
  overflow-wrap: normal;
}

.bluebook-subtitle {
  max-width: 860px;
  margin-top: 22px;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 900;
  line-height: 1.32;
}

.bluebook-hero-copy p:not(.bluebook-subtitle),
.bluebook-split p,
.bluebook-final-card p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.bluebook-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.bluebook-cover-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(18, 15, 12, 0.14);
}

.bluebook-split,
.bluebook-final-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 44px;
  align-items: center;
}

.bluebook-split h2,
.bluebook-final-card h2 {
  max-width: 780px;
  font-size: clamp(36px, 4vw, 64px);
  line-height: 1.06;
}

.bluebook-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.bluebook-value-card {
  min-width: 0;
  padding: 34px 32px 34px 0;
  border-right: 1px solid var(--line);
}

.bluebook-value-card + .bluebook-value-card {
  padding-left: 32px;
}

.bluebook-value-card:last-child {
  border-right: 0;
}

.bluebook-value-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.bluebook-value-card h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.16;
}

.bluebook-value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.bluebook-qr-card {
  justify-self: end;
  width: min(100%, 320px);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 18px 44px rgba(18, 15, 12, 0.08);
}

.bluebook-qr-card img {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 12px;
  object-fit: contain;
}

.bluebook-qr-card span {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-weight: 900;
}

.bluebook-final-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 90, 31, 0.1), transparent 44%),
    var(--paper);
  box-shadow: 0 18px 48px rgba(18, 15, 12, 0.08);
}

.bluebook-final-card .btn {
  justify-self: end;
}

.bluebook-reader-frame {
  display: block;
  width: 100%;
  min-height: 78vh;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: 0 24px 64px rgba(18, 15, 12, 0.12);
}

.tool-card-bluebook {
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  grid-template-rows: auto auto;
  grid-column: 1 / -1;
  align-items: center;
  column-gap: 36px;
  row-gap: 18px;
}

.tool-card-bluebook .tool-card-copy {
  min-width: 0;
}

.tool-bluebook-cover {
  grid-row: 1 / span 2;
  width: min(100%, 220px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--paper-2);
  box-shadow: 0 22px 54px rgba(18, 15, 12, 0.12);
}

.tool-bluebook-cover img {
  aspect-ratio: 1004 / 1418;
}

.tool-card-bluebook .tool-actions {
  align-self: start;
}

.home-page .section-link-row {
  margin-top: 20px;
}

.home-next-step {
  padding-bottom: 86px;
  background: color-mix(in srgb, var(--paper-2) 58%, var(--bg));
}

.home-next-step .container {
  max-width: 1180px;
}

.home-next-step-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.55fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 26px;
}

.home-next-step-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.76;
}

.home-product-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.home-product-path {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  text-decoration: none;
}

.home-product-path + .home-product-path {
  padding-left: 24px;
}

.home-product-path:last-child {
  border-right: 0;
}

.home-product-path span {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 950;
}

.home-product-path h3 {
  margin: 0;
  font-size: 24px;
}

.home-product-path p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.home-product-path em {
  align-self: end;
  margin-top: auto;
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 950;
}

.home-product-path:hover h3,
.home-product-path:focus-visible h3 {
  color: var(--accent);
}

.home-next-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.home-next-actions .btn {
  min-height: 48px;
  padding: 13px 18px;
  font-size: 14px;
}

.home-closing {
  background: color-mix(in srgb, var(--paper) 70%, var(--bg));
}

.home-closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.74fr);
  gap: 42px;
  align-items: start;
}

.home-closing-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.home-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.home-media-panel {
  display: grid;
  gap: 14px;
  padding-top: 8px;
}

.home-media-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line-strong);
}

.home-media-head strong {
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
}

.home-media-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.home-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.home-media-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--paper) 76%, var(--paper-2));
}

.home-media-qr {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  cursor: zoom-in;
}

.home-media-qr img {
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.home-media-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 950;
}

.home-media-card strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-media-card p {
  display: -webkit-box;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.home-social-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.home-social-row a {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.home-social-row span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 9px;
}

@media (max-width: 980px) {
  .home-page .section-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .bluebook-page .section-band {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .bluebook-hero {
    padding-top: 46px;
    padding-bottom: 42px;
  }

  .bluebook-hero-grid,
  .bluebook-split,
  .bluebook-final-card,
  .tool-card-bluebook {
    grid-template-columns: 1fr;
  }

  .bluebook-hero-grid {
    gap: 30px;
  }

  .bluebook-hero-copy h1 {
    max-width: 100%;
    font-size: clamp(44px, 9.5vw, 64px);
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .bluebook-subtitle {
    max-width: 100%;
    font-size: clamp(22px, 4.6vw, 30px);
  }

  .bluebook-cover-card,
  .bluebook-final-card .btn {
    justify-self: start;
  }

  .bluebook-cover-card {
    width: min(100%, 320px);
  }

  .tool-card-bluebook {
    grid-template-rows: auto;
  }

  .tool-bluebook-cover {
    grid-row: auto;
    width: min(100%, 200px);
  }

  .home-hero {
    padding-top: 42px;
  }

  .home-hero-grid,
  .home-evidence-stack,
  .home-next-step-head,
  .home-product-paths,
  .home-closing-grid {
    grid-template-columns: 1fr;
  }

  .home-page .home-hero-video {
    justify-self: start;
    width: min(100%, 360px);
  }

  .home-page .home-hero-video .hero-video-frame {
    width: min(100%, 260px);
  }

  .home-page .start-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-page .start-card,
  .home-page .start-card + .start-card {
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-page .start-card:last-child {
    border-bottom: 0;
  }

  .home-bluebook-card {
    grid-template-columns: 70px minmax(0, 1fr);
    align-items: start;
  }

  .home-bluebook-card em {
    grid-column: 2;
  }

  .home-article-link {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: auto;
  }

  .article-row-kicker {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .article-row-action {
    justify-self: start;
  }

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

  .home-case-row {
    grid-template-columns: 120px minmax(0, 1fr) auto;
  }

  .home-case-result {
    grid-column: 2;
  }

  .home-case-row em {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .home-product-path,
  .home-product-path + .home-product-path {
    min-height: auto;
    padding: 20px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-product-path:last-child {
    border-bottom: 0;
  }

  .home-next-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 620px) {
  .bluebook-page .container {
    padding-right: 22px;
    padding-left: 22px;
  }

  .bluebook-page .section-kicker {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
  }

  .bluebook-hero-copy h1 {
    font-size: clamp(38px, 12vw, 54px);
    line-height: 1.04;
  }

  .bluebook-hero-copy p:not(.bluebook-subtitle),
  .bluebook-split p,
  .bluebook-final-card p {
    font-size: 15px;
    line-height: 1.75;
  }

  .bluebook-cover-card {
    width: min(100%, 260px);
  }

  .home-page .hero-title {
    font-size: clamp(42px, 12vw, 56px);
  }

  .home-page .hero-title small {
    font-size: clamp(24px, 7.2vw, 34px);
  }

  .home-page .hero-intro {
    font-size: 15px;
  }

  .home-page .home-hero-video {
    animation: none;
  }

  .home-bluebook-card {
    grid-template-columns: 1fr;
  }

  .home-bluebook-cover {
    width: 76px;
  }

  .bluebook-actions .btn,
  .bluebook-final-card .btn {
    width: 100%;
  }

  .bluebook-value-grid {
    grid-template-columns: 1fr;
  }

  .bluebook-value-card,
  .bluebook-value-card + .bluebook-value-card {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .bluebook-value-card:last-child {
    border-bottom: 0;
  }

  .bluebook-final-card {
    padding: 24px;
  }

  .home-schedule-ticker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .home-schedule-ticker em {
    margin-left: 0;
  }

  .home-proof-grid {
    grid-template-columns: 1fr;
  }

  .home-proof-grid .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .home-proof-grid .proof-item:last-child {
    border-bottom: 0;
  }

  .home-case-row {
    grid-template-columns: 1fr;
  }

  .home-case-result {
    grid-column: auto;
  }

  .home-case-row em {
    grid-column: auto;
    grid-row: auto;
  }

  .home-case-image {
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .home-media-grid,
  .home-social-row {
    grid-template-columns: 1fr;
  }

  .home-next-actions .btn {
    width: 100%;
  }

  .home-closing-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-typewriter::after {
    animation: none;
    opacity: 1;
  }

  .home-page .home-hero-video {
    animation: none;
  }
}

@media (max-width: 899px), (prefers-reduced-motion: reduce) {
  .content-hover-preview {
    display: none;
  }
}
