:root {
  color-scheme: light;
  /* StoryMaster V2 principle: warm, abundant, rewarding, premium. */
  --ivory: #f7f2e8;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --forest: #0d5f4d;
  --forest-strong: #07483b;
  --forest-soft: #e5f0eb;
  --gold: #bd8a32;
  --gold-dark: #93651f;
  --gold-soft: #f1e3c5;
  --ink: #251f19;
  --muted: #756d64;
  --line: #e5ddd0;
  --shadow: 0 24px 70px rgba(91, 53, 20, 0.12);
  --shadow-soft: 0 16px 38px rgba(91, 53, 20, 0.09);
  --radius: 22px;
  --content: 1180px;
  --green: var(--forest);
  --border: var(--line);
  --shadow-sm: var(--shadow-soft);
  --shadow-lg: var(--shadow);
  --font-serif: "Songti SC", "STSong", "Noto Serif CJK SC", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(rgba(247, 242, 232, 0.88), rgba(247, 242, 232, 0.95)),
    url("../assets/storymaster-bg-v1.png") center top / cover fixed;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 8px 12px;
  color: white;
  background: var(--forest-strong);
  border-radius: 4px;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(229, 221, 208, 0.8);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner,
.page-container,
.footer-inner {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

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

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  padding: 6px;
  color: #fffdf7;
  background: var(--forest-strong);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  box-shadow: 0 8px 22px rgba(7, 72, 59, 0.16);
}

.brand-copy {
  display: grid;
  gap: 1px;
  white-space: nowrap;
}

.brand-copy strong {
  font-family: "Songti SC", "STSong", serif;
  font-size: 22px;
  line-height: 1.25;
}

.brand-copy small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  padding: 9px 12px;
  border-radius: 6px;
  color: #50483f;
  font-size: 14px;
  font-weight: 650;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--forest);
  background: var(--forest-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--forest);
  background: var(--paper);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 8px 20px 16px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav.is-open {
  display: grid;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.button:focus-visible,
.nav-link:focus-visible,
.filter-button:focus-visible {
  outline: 3px solid rgba(189, 138, 50, 0.3);
  outline-offset: 2px;
}

.button-primary {
  color: white;
  background: var(--forest);
  box-shadow: 0 9px 20px rgba(13, 95, 77, 0.16);
}

.button-primary:hover:not(:disabled) {
  background: var(--forest-strong);
}

.button-secondary {
  color: var(--forest);
  border-color: #bdd7ce;
  background: rgba(255, 255, 255, 0.82);
}

.button-gold {
  color: #fffdf8;
  background: var(--gold-dark);
  box-shadow: 0 9px 20px rgba(147, 101, 31, 0.16);
}

.button-small {
  min-height: 38px;
  padding: 7px 13px;
  font-size: 14px;
}

.button:disabled,
.button.is-disabled {
  color: #9a938a;
  border-color: #e4ddd4;
  background: #eeeae3;
  box-shadow: none;
  cursor: not-allowed;
}

.page-main {
  min-height: calc(100vh - 76px);
}

.page-container {
  padding: 38px 0 72px;
}

.page-intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.page-intro .eyebrow,
.eyebrow,
.card-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 800;
}

.page-intro h1,
.hero-copy h1,
.interview-hero-copy h1 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: 0;
}

.page-intro p,
.hero-copy > p,
.interview-hero-copy > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-band,
.interview-hero,
.dna-hero,
.generation-hero,
.library-hero,
.account-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 221, 208, 0.88);
  border-radius: 24px;
  background:
    linear-gradient(100deg, rgba(255, 253, 248, 0.98) 0%, rgba(255, 253, 248, 0.89) 55%, rgba(229, 240, 235, 0.78) 100%),
    url("../assets/storymaster-bg-v1.png") center / cover;
  box-shadow: var(--shadow);
}

.hero-layout,
.interview-hero-layout {
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 42px;
  padding: 54px 58px;
}

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

.hero-copy h1 {
  max-width: 620px;
}

.hero-copy h1 .highlight,
.page-intro .highlight {
  color: var(--forest);
}

.hero-actions,
.page-actions,
.card-actions,
.toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-visual,
.interview-scene {
  position: relative;
  min-height: 310px;
  display: grid;
  place-items: center;
}

.crystal {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 205px;
  background: linear-gradient(145deg, #fff9df 0%, #e6bc61 38%, #fff9d7 62%, #b68025 100%);
  clip-path: polygon(50% 0, 88% 35%, 70% 100%, 30% 100%, 12% 35%);
  filter: drop-shadow(0 18px 22px rgba(147, 101, 31, 0.22));
  opacity: 0.88;
}

.crystal::after {
  content: "";
  position: absolute;
  inset: 15% 24%;
  background: rgba(255, 255, 255, 0.62);
  clip-path: polygon(50% 0, 100% 45%, 65% 100%, 25% 86%, 0 38%);
}

.orbit {
  position: absolute;
  width: 290px;
  height: 150px;
  border: 1px solid rgba(189, 138, 50, 0.35);
  border-radius: 50%;
  transform: rotate(-14deg);
}

.orbit:nth-child(2) {
  transform: rotate(19deg);
}

.section-block {
  margin-top: 28px;
  padding: 34px;
  border: 1px solid rgba(229, 221, 208, 0.9);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.88);
  box-shadow: var(--shadow-soft);
}

.section-block.tint {
  background: rgba(229, 240, 235, 0.74);
}

.section-block.tight {
  padding: 24px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Songti SC", "STSong", serif;
  font-size: 30px;
  line-height: 1.3;
}

.section-heading p {
  margin: 8px 0 0;
  color: var(--muted);
}

.three-grid,
.four-grid,
.plans-grid,
.dna-grid,
.generation-grid,
.metric-grid {
  display: grid;
  gap: 16px;
}

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

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

.feature-card,
.plan-card,
.dna-card,
.generation-card,
.metric-card,
.content-row,
.discovery-card,
.panel,
.account-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.feature-card,
.dna-card,
.generation-card,
.metric-card,
.account-card {
  padding: 24px;
}

.feature-card h3,
.dna-card h3,
.generation-card h3,
.plan-card h2,
.account-card h2,
.content-title {
  margin: 0;
  font-size: 20px;
  line-height: 1.42;
}

.feature-card p,
.dna-card p,
.generation-card p,
.plan-card p,
.account-card p {
  color: var(--muted);
}

.feature-card.tone-gold,
.generation-card.tone-gold {
  background: linear-gradient(150deg, #fffdf8, #f7ead1);
}

.feature-card.tone-green,
.generation-card.tone-green {
  background: linear-gradient(150deg, #fffdf8, #e6f1ec);
}

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

.flow-step {
  position: relative;
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.64);
}

.flow-step strong {
  display: block;
  margin-bottom: 4px;
}

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

.audience-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 28px;
  align-items: center;
}

.audience-list,
.chip-list,
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip,
.tag,
.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: var(--forest-soft);
  font-size: 13px;
  font-weight: 750;
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px;
}

.plan-card.is-recommended {
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(147, 101, 31, 0.13);
}

.recommend-label {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  color: white;
  background: var(--gold-dark);
  font-size: 12px;
  font-weight: 750;
}

.plan-price {
  margin: 18px 0;
  color: var(--forest-strong);
  font-size: 34px;
  font-weight: 850;
  line-height: 1;
}

.plan-price small {
  color: var(--muted);
  font-size: 14px;
}

.plan-list,
.stage-list,
.compact-stage-list,
.detail-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-list {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 9px;
  margin-bottom: 22px;
}

.plan-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--forest);
  font-weight: 900;
}

.plan-note,
.framework-note {
  padding: 18px;
  border-left: 3px solid var(--gold);
  color: var(--muted);
  background: rgba(241, 227, 197, 0.42);
}

.interview-scene .microphone {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 132px;
  border: 8px solid var(--forest-strong);
  border-radius: 44px 44px 32px 32px;
  background: linear-gradient(#f5e5bf, #fffdf7);
  box-shadow: 0 20px 40px rgba(13, 95, 77, 0.15);
}

.interview-scene .microphone::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -42px;
  width: 62px;
  height: 44px;
  border-bottom: 7px solid var(--forest-strong);
  border-left: 7px solid var(--forest-strong);
  border-right: 7px solid var(--forest-strong);
  border-radius: 0 0 34px 34px;
  transform: translateX(-50%);
}

.scene-tags {
  position: absolute;
  inset: 0;
}

.scene-tag {
  position: absolute;
  padding: 8px 13px;
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(255, 253, 248, 0.9);
  font-size: 13px;
  font-weight: 750;
  box-shadow: var(--shadow-soft);
}

.scene-tag:nth-child(1) { top: 15%; left: 4%; }
.scene-tag:nth-child(2) { top: 9%; right: 3%; }
.scene-tag:nth-child(3) { bottom: 13%; left: 1%; }
.scene-tag:nth-child(4) { bottom: 10%; right: 1%; }

.workspace-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 270px;
  gap: 16px;
  align-items: start;
}

.workspace-sidebar,
.workspace-main,
.workspace-discovery {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
}

.workspace-sidebar,
.workspace-discovery {
  padding: 18px;
}

.workspace-main {
  padding: 26px;
}

.stage-list {
  display: grid;
  gap: 7px;
}

.stage-list li,
.compact-stage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
}

.stage-list li.is-active,
.compact-stage-list li.is-active {
  color: var(--forest-strong);
  background: var(--forest-soft);
  font-weight: 750;
}

.stage-number {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #f0ece4;
  font-size: 12px;
}

.conversation {
  min-height: 430px;
  display: flex;
  flex-direction: column;
}

.conversation-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.conversation-head h1 {
  margin: 4px 0;
  font-size: 28px;
}

.message-list {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 0;
}

.message {
  max-width: 82%;
  padding: 14px 16px;
  border-radius: 8px;
}

.message.ai {
  justify-self: start;
  background: #f5ede0;
}

.message.user {
  justify-self: end;
  background: var(--forest-soft);
}

.answer-area {
  width: 100%;
  min-height: 150px;
  resize: vertical;
  padding: 15px;
  border: 1px solid #d8d0c5;
  border-radius: 7px;
  color: var(--ink);
  background: white;
}

.answer-area:focus {
  border-color: var(--forest);
  outline: 3px solid rgba(13, 95, 77, 0.1);
}

.discovery-card {
  padding: 16px;
  margin-bottom: 12px;
}

.discovery-card h3 {
  margin: 0 0 5px;
  color: var(--forest);
  font-size: 15px;
}

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

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

.dna-card {
  min-height: 225px;
  display: flex;
  flex-direction: column;
}

.dna-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.dna-icon,
.generation-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--forest);
  background: var(--forest-soft);
  font-weight: 900;
}

.dna-status {
  margin-top: auto;
  padding-top: 16px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 750;
}

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

.generation-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
}

.generation-card .card-actions {
  margin-top: auto;
}

.generation-subtitle {
  color: var(--gold-dark);
  font-weight: 750;
}

.library-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
}

.library-filter {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
}

.filter-button {
  width: 100%;
  min-height: 42px;
  margin: 3px 0;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--muted);
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.filter-button.is-active,
.filter-button:hover {
  color: var(--forest-strong);
  background: var(--forest-soft);
}

.library-list {
  min-width: 0;
}

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

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

.content-row {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px;
}

.content-thumbnail {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-weight: 900;
}

.content-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.content-meta,
.content-summary {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.account-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 18px;
}

.metric-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.metric-card strong {
  display: block;
  color: var(--forest-strong);
  font-size: 28px;
}

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

.detail-list {
  display: grid;
  gap: 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-row:last-child {
  border-bottom: 0;
}

.status-badge.is-ready {
  color: var(--forest);
  background: var(--forest-soft);
}

.status-badge.is-draft {
  color: var(--gold-dark);
  background: var(--gold-soft);
}

.empty-state {
  padding: 42px 24px;
  border: 1px dashed #cec5b8;
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.55);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 22px;
}

.site-footer {
  border-top: 1px solid rgba(226, 186, 119, 0.34);
  background: rgba(255, 250, 240, 0.88);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  color: #66543d;
}

.footer-grid > p {
  margin: 0;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  font-weight: 850;
}

@media (max-width: 1040px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .hero-layout,
  .interview-hero-layout {
    grid-template-columns: 1fr 300px;
    padding: 44px 40px;
  }

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

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

  .workspace-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .workspace-discovery {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .discovery-card {
    margin: 0;
  }
}

@media (max-width: 760px) {
  body {
    background-attachment: scroll;
    font-size: 15px;
  }

  .header-inner,
  .page-container,
  .footer-inner {
    width: min(calc(100% - 24px), var(--content));
  }

  .header-inner {
    min-height: 66px;
    gap: 10px;
  }

  .brand {
    gap: 9px;
    min-width: 0;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

  .brand-copy {
    min-width: 0;
  }

  .brand-copy strong {
    font-size: 19px;
  }

  .brand-copy small {
    max-width: 165px;
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-actions .button {
    display: none;
  }

  .page-container {
    padding: 22px 0 48px;
  }

  .page-intro {
    margin-bottom: 20px;
  }

  .page-intro h1,
  .hero-copy h1,
  .interview-hero-copy h1 {
    font-size: 34px;
    line-height: 1.22;
  }

  .page-intro p,
  .hero-copy > p,
  .interview-hero-copy > p {
    font-size: 15px;
  }

  .hero-layout,
  .interview-hero-layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 30px 22px;
  }

  .hero-visual,
  .interview-scene {
    min-height: 210px;
  }

  .crystal {
    width: 102px;
    height: 145px;
  }

  .orbit {
    width: 220px;
    height: 110px;
  }

  .section-block {
    margin-top: 18px;
    padding: 22px 18px;
  }

  .section-heading h2 {
    font-size: 25px;
  }

  .three-grid,
  .four-grid,
  .plans-grid,
  .dna-grid,
  .generation-grid,
  .metric-grid,
  .flow-grid,
  .audience-layout,
  .library-layout,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .flow-step {
    padding: 14px 16px;
  }

  .plan-card,
  .feature-card,
  .dna-card,
  .generation-card,
  .account-card {
    padding: 20px;
  }

  .dna-card,
  .generation-card {
    min-height: auto;
  }

  .workspace-layout {
    display: block;
  }

  .workspace-sidebar,
  .workspace-discovery {
    display: none;
  }

  .workspace-main {
    padding: 20px 16px;
  }

  .conversation {
    min-height: 70vh;
  }

  .conversation-head h1 {
    font-size: 25px;
  }

  .message {
    max-width: 94%;
  }

  .answer-area {
    min-height: 180px;
  }

  .content-row {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .content-thumbnail {
    width: 52px;
    height: 52px;
  }

  .content-row .card-actions {
    grid-column: 1 / -1;
    margin-top: 4px;
  }

  .library-filter {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 10px;
  }

  .filter-button {
    width: auto;
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .list-toolbar,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions,
  .page-actions,
  .card-actions {
    width: 100%;
  }

  .hero-actions .button,
  .page-actions .button {
    flex: 1 1 150px;
  }
}

/* Logged-in workspace: personal brand operating system */
.workspace-page {
  min-height: calc(100vh - 90px);
  padding: 28px 0 56px;
}

.workspace-shell {
  width: min(calc(100% - 32px), 1460px);
  margin: 0 auto;
}

.workspace-login {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  gap: 22px;
  min-height: 590px;
  padding: clamp(28px, 5vw, 72px);
  align-items: center;
  border: 1px solid rgba(226, 186, 119, .44);
  border-radius: 32px;
  background:
    linear-gradient(90deg, rgba(255, 249, 236, .98) 0%, rgba(255, 246, 224, .9) 55%, rgba(241, 214, 163, .72) 100%),
    url("../assets/v2-ai-interviewer-warm.png") right center / auto 100% no-repeat;
  box-shadow: 0 28px 70px rgba(104, 68, 21, .12);
}

.workspace-login-copy h1 {
  max-width: 720px;
  margin: 22px 0 18px;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.workspace-login-copy > p:last-child {
  color: #6b583d;
  font-size: 18px;
  line-height: 1.8;
}

.workspace-login-card {
  padding: 30px;
  border: 1px solid rgba(226, 186, 119, .46);
  border-radius: 26px;
  background: rgba(255, 252, 246, .88);
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 48px rgba(93, 55, 14, .12);
}

.workspace-login-card h2 {
  margin: 0 0 22px;
  font-size: 26px;
}

.workspace-login-card .account-login-form {
  grid-template-columns: 1fr;
}

.workspace-loading {
  min-height: 560px;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  color: #6b583d;
  font-weight: 800;
}

.workspace-layout {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.workspace-sidebar {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 20px;
  padding: 20px 16px;
  border: 1px solid rgba(226, 186, 119, .38);
  border-radius: 24px;
  background: rgba(255, 251, 241, .88);
  box-shadow: 0 20px 44px rgba(96, 61, 20, .09);
  backdrop-filter: blur(18px);
}

.workspace-user-mini,
.workspace-user-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.workspace-user-mini > span,
.workspace-user-badge > span {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff8e8;
  background: linear-gradient(145deg, #127348, #06472c);
  font-size: 19px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(8, 69, 43, .2);
}

.workspace-user-mini div,
.workspace-user-badge div {
  display: grid;
  gap: 3px;
}

.workspace-user-mini small,
.workspace-user-badge small {
  color: #806b4e;
  font-size: 12px;
}

.workspace-sidebar nav {
  display: grid;
  gap: 5px;
}

.workspace-sidebar nav a,
.workspace-nav-disabled {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 13px;
  border-radius: 12px;
  color: #453623;
  font-size: 14px;
  font-weight: 820;
}

.workspace-sidebar nav a > span {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.workspace-sidebar nav a strong {
  color: inherit;
  font-size: 14px;
}

.workspace-sidebar nav a:hover,
.workspace-sidebar nav a.is-active {
  color: #fffaf0;
  background: linear-gradient(145deg, #0d6539, #07472b);
}

.workspace-sidebar nav a small {
  color: #9a866d;
  font-size: 11px;
  font-weight: 650;
}

.workspace-sidebar nav a:hover small,
.workspace-sidebar nav a.is-active small {
  color: rgba(255, 250, 240, .72);
}

.workspace-nav-disabled {
  color: #786650;
  cursor: not-allowed;
  opacity: .63;
}

.workspace-nav-disabled.is-coming-soon small {
  color: #a56c16;
  font-size: 11px;
  font-weight: 800;
}

.workspace-menu-group {
  display: grid;
  gap: 5px;
  padding-top: 8px;
  border-top: 1px solid rgba(226, 186, 119, .28);
}

.workspace-menu-group h3 {
  margin: 8px 10px 4px;
  color: #9d6a13;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
}

.workspace-logout {
  min-height: 42px;
  border: 1px solid rgba(226, 186, 119, .42);
  border-radius: 12px;
  color: #776147;
  background: rgba(255,255,255,.62);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.workspace-main {
  min-width: 0;
  display: grid;
  gap: 20px;
}

.workspace-welcome,
.workspace-section,
.workspace-next,
.workspace-records {
  border: 1px solid rgba(226, 186, 119, .38);
  border-radius: 24px;
  background: rgba(255, 251, 242, .84);
  box-shadow: 0 20px 48px rgba(96, 61, 20, .08);
  backdrop-filter: blur(18px);
}

.workspace-welcome {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 32px;
  background:
    radial-gradient(circle at 92% 18%, rgba(211, 142, 18, .17), transparent 30%),
    linear-gradient(135deg, rgba(255,253,246,.94), rgba(248,235,203,.86));
}

.workspace-v3-welcome {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, .92fr);
  align-items: stretch;
  padding: 32px;
}

.workspace-welcome-copy {
  align-self: center;
}

.workspace-welcome h1 {
  margin: 8px 0 4px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.18;
}

.workspace-stage {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 9px 13px;
  border: 1px solid rgba(199, 129, 9, .2);
  border-radius: 999px;
  background: rgba(255, 249, 235, .74);
}

.workspace-stage small {
  color: #9c6a18;
  font-weight: 800;
}

.workspace-stage strong {
  color: #124d36;
  font-size: 13px;
}

.workspace-brand-status {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(13, 95, 53, .12);
  border-radius: 22px;
  background:
    radial-gradient(circle at 90% 0, rgba(214, 153, 43, .14), transparent 34%),
    rgba(255, 253, 248, .68);
}

.workspace-status-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.workspace-status-head p {
  margin: 0 0 4px;
  color: #163f2e;
  font-size: 17px;
  font-weight: 900;
}

.workspace-status-head span {
  color: #806c50;
  font-size: 12px;
}

.workspace-status-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff9ea !important;
  background: linear-gradient(145deg, #17784c, #06482c);
  font-size: 18px !important;
  font-weight: 950;
}

.workspace-status-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.workspace-status-item {
  min-height: 70px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 12px 14px;
  border: 1px solid rgba(226, 186, 119, .3);
  border-radius: 15px;
  background: rgba(255, 252, 245, .72);
}

.workspace-status-item > span {
  color: #655238;
  font-size: 12px;
}

.workspace-status-item strong {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #154d37;
  font-size: 13px;
}

.workspace-status-item i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b7aa97;
}

.workspace-status-item.is-done i { background: #14734a; }
.workspace-status-item.is-progress i { background: #d3911e; }
.workspace-status-item.is-locked { opacity: .68; }

.workspace-welcome p:last-child {
  margin: 0;
  color: #756044;
  max-width: 560px;
  line-height: 1.65;
}

.workspace-user-badge {
  min-width: 210px;
  padding: 12px 16px;
  border: 1px solid rgba(13, 95, 53, .12);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}

.workspace-section {
  padding: 26px;
}

.workspace-section > header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.workspace-section > header > p {
  margin: 2px 0 0;
  color: #c17b00;
  font-weight: 950;
}

.workspace-section h2,
.workspace-next h2,
.workspace-records h2 {
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.3;
}

.workspace-section > header span {
  color: #7a664a;
  font-size: 14px;
}

.workspace-assets-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
}

.workspace-brand-assets-grid {
  gap: 14px;
}

.workspace-brand-asset-card {
  min-height: 340px;
  gap: 14px;
  padding: 22px;
  border-radius: 21px;
}

.workspace-brand-asset-card.is-progress {
  border-color: rgba(202, 139, 31, .28);
  background: linear-gradient(145deg, rgba(255,250,239,.94), rgba(247,228,186,.62));
}

.workspace-brand-asset-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workspace-brand-asset-top > span {
  color: #c17b00;
  font-size: 13px;
  font-weight: 950;
}

.workspace-brand-asset-top em {
  padding: 6px 10px;
  border-radius: 999px;
  color: #166040;
  background: rgba(13, 95, 53, .08);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.workspace-brand-asset-card.is-progress .workspace-brand-asset-top em {
  color: #9b6200;
  background: rgba(205, 139, 25, .11);
}

.workspace-brand-asset-card.is-locked .workspace-brand-asset-top em {
  color: #7d705d;
  background: rgba(92, 75, 54, .07);
}

.workspace-brand-asset-card h3 {
  font-size: 22px;
}

.workspace-brand-asset-card > p {
  min-height: 42px;
  margin: -4px 0 0;
  color: #755f42;
  font-size: 13px;
  line-height: 1.6;
}

.workspace-brand-asset-card ul {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workspace-brand-asset-card li {
  padding: 6px 9px;
  border-radius: 999px;
  color: #5d4b33;
  background: rgba(255, 255, 255, .7);
  font-size: 11px;
  font-weight: 750;
}

.workspace-brand-asset-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 95, 53, .09);
}

.workspace-trust-story-panel {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(13, 95, 53, .1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 94% 12%, rgba(211, 142, 18, .12), transparent 28%),
    rgba(255, 253, 246, .72);
}

.workspace-trust-story-head p {
  margin: 0 0 6px;
  color: #b16d00;
  font-weight: 900;
}

.workspace-trust-story-head h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.workspace-trust-story-head span {
  color: #7a664a;
  font-size: 14px;
}

.workspace-trust-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.workspace-trust-story-card {
  padding: 18px;
  border: 1px solid rgba(226, 186, 119, .32);
  border-radius: 18px;
  background: rgba(255, 251, 242, .76);
}

.workspace-trust-story-card small {
  color: var(--forest);
  font-weight: 850;
}

.workspace-trust-story-card h4 {
  margin: 10px 0 6px;
  font-size: 20px;
}

.workspace-trust-story-card p {
  margin: 0 0 12px;
  color: #6f5b40;
}

.workspace-trust-story-card div,
.v2-trust-story-calls div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.workspace-trust-story-card span,
.v2-trust-story-calls span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(13, 95, 53, .09);
  color: var(--forest);
  font-size: 13px;
  font-weight: 850;
}

.workspace-asset-card {
  min-height: 205px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(226, 186, 119, .32);
  border-radius: 18px;
  background: rgba(255,255,255,.61);
}

.workspace-asset-card.is-done {
  border-color: rgba(13, 95, 53, .24);
  background: linear-gradient(145deg, rgba(239,248,238,.9), rgba(255,251,240,.8));
}

.workspace-asset-card.is-locked {
  opacity: .68;
  background: rgba(244,239,229,.72);
}

.workspace-asset-status span {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #0b6540;
  background: rgba(13,95,53,.09);
  font-size: 12px;
  font-weight: 900;
}

.workspace-asset-card.is-locked .workspace-asset-status span {
  color: #806e58;
  background: rgba(91,74,52,.08);
}

.workspace-asset-card h3 {
  margin: 0;
  font-size: 18px;
}

.workspace-asset-card > strong {
  color: #173d2d;
  font-size: 24px;
  line-height: 1.25;
}

.workspace-asset-card > a {
  align-self: end;
  margin-top: auto;
  color: #0b6540;
  font-weight: 900;
}

.workspace-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.workspace-path-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 4px 10px;
  text-align: center;
}

.workspace-path-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: calc(50% + 18px);
  width: calc(100% - 36px);
  height: 2px;
  background: rgba(13,95,53,.18);
}

.workspace-path-marker {
  z-index: 1;
  width: 38px;
  height: 38px;
  position: relative;
  display: grid;
  place-items: center;
}

.workspace-path-marker i {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 9px solid #f5efe2;
  border-radius: 50%;
  background: #b8aa95;
  box-shadow: 0 0 0 1px rgba(86,66,42,.12);
}

.workspace-path-marker span {
  z-index: 2;
  color: #fff !important;
  font-size: 10px !important;
  font-weight: 950;
}

.workspace-path-step.is-done i { background: #0d6841; }
.workspace-path-step.is-progress i { background: #d49519; }
.workspace-path-step.is-locked { opacity: .55; }
.workspace-path-step > strong { color: #173d2d; font-size: 14px; }
.workspace-path-step ul {
  display: grid;
  gap: 3px;
  min-height: 48px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.workspace-path-step li { color: #7e6b50; font-size: 11px; line-height: 1.45; }
.workspace-path-step > em {
  padding: 5px 9px;
  border-radius: 999px;
  color: #806c50;
  background: rgba(92, 75, 54, .06);
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}
.workspace-path-step.is-done > em { color: #12613f; background: rgba(13,95,53,.08); }
.workspace-path-step.is-progress > em { color: #9a650c; background: rgba(205,139,25,.1); }

.workspace-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 20px;
}

.workspace-next,
.workspace-records {
  padding: 26px;
}

.workspace-next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.workspace-next-copy {
  margin: 12px 0 0;
  color: #6e5a3e;
  line-height: 1.7;
}

.workspace-content-tasks {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.workspace-content-tasks > span {
  display: grid;
  gap: 4px;
  padding: 11px;
  border-radius: 13px;
  color: #164d37;
  background: rgba(13,95,53,.06);
  font-size: 12px;
  font-weight: 850;
}

.workspace-content-tasks small {
  color: #877258;
  font-weight: 650;
}

.workspace-next-actions .button {
  min-height: 44px;
  padding: 0 17px;
  font-size: 14px;
}

.workspace-records ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.workspace-records li {
  display: flex;
  gap: 9px;
  color: #5f4c34;
  line-height: 1.6;
}

.workspace-records li span {
  color: #0d6841;
  font-weight: 950;
}

.workspace-task-hub {
  margin-top: 0;
}

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

.workspace-task-group {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(226, 186, 119, .32);
  border-radius: 20px;
  background: rgba(255,255,255,.55);
}

.workspace-task-group header h3 {
  margin: 0 0 8px;
  color: #153d2d;
  font-size: 21px;
}

.workspace-task-group header p {
  margin: 0;
  color: #7a664a;
  font-size: 14px;
  line-height: 1.6;
}

.workspace-task-group > div {
  display: grid;
  gap: 10px;
}

.workspace-task-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 74px;
  padding: 14px 15px;
  border: 1px solid rgba(13, 95, 53, .12);
  border-radius: 16px;
  background: rgba(255, 251, 242, .82);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.workspace-task-item:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 95, 53, .28);
  background: rgba(239, 248, 238, .76);
}

.workspace-task-item span {
  display: grid;
  gap: 5px;
}

.workspace-task-item strong {
  color: #1f1a13;
  font-size: 15px;
}

.workspace-task-item small {
  color: #756044;
  font-size: 12px;
  line-height: 1.5;
}

.workspace-task-item b {
  flex: 0 0 auto;
  color: #0b6540;
  font-size: 13px;
}

.workspace-task-item.is-locked {
  opacity: .62;
}

.workspace-task-item.is-locked b {
  color: #8b775e;
}

body:has(.workspace-app:not([hidden])) .site-footer {
  display: none;
}

body:has(.workspace-app:not([hidden])) .site-header .desktop-nav {
  display: none !important;
}

@media (max-width: 1100px) {
  .workspace-assets-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workspace-trust-story-grid { grid-template-columns: 1fr; }
  .workspace-v3-welcome { grid-template-columns: 1fr; }
  .workspace-path { grid-template-columns: repeat(5, minmax(170px, 1fr)); overflow-x: auto; padding-bottom: 8px; }
  .workspace-task-groups { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .workspace-login { grid-template-columns: 1fr; min-height: auto; }
  .workspace-layout { grid-template-columns: 1fr; }
  .workspace-sidebar { position: static; }
  .workspace-sidebar nav { grid-template-columns: repeat(4, minmax(150px, 1fr)); overflow-x: auto; align-items: start; }
  .workspace-sidebar nav a { min-width: 160px; white-space: nowrap; }
  .workspace-menu-group { min-width: 180px; border-top: 0; padding-top: 0; }
  .workspace-menu-group h3 { margin-top: 0; }
  .workspace-user-mini, .workspace-logout { display: none; }
  .workspace-lower-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .workspace-page { padding: 14px 0 36px; }
  .workspace-shell { width: min(calc(100% - 20px), 1460px); }
  .workspace-login { padding: 22px 16px; border-radius: 22px; }
  .workspace-login-copy h1 { font-size: 32px; }
  .workspace-login-card { padding: 22px 18px; border-radius: 20px; }
  .workspace-sidebar { padding: 12px; border-radius: 18px; }
  .workspace-sidebar nav { grid-template-columns: repeat(8, auto); }
  .workspace-welcome { align-items: flex-start; padding: 22px 18px; }
  .workspace-v3-welcome { display: grid; }
  .workspace-user-badge { min-width: auto; padding: 8px; }
  .workspace-user-badge div { display: none; }
  .workspace-status-list { grid-template-columns: 1fr 1fr; }
  .workspace-section, .workspace-next, .workspace-records { padding: 20px 16px; border-radius: 20px; }
  .workspace-assets-grid { grid-template-columns: 1fr; }
  .workspace-brand-asset-card { min-height: 0; }
  .workspace-path { grid-template-columns: 1fr; overflow: visible; gap: 0; }
  .workspace-path-step {
    min-height: 100px;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    justify-items: start;
    align-items: center;
    text-align: left;
    padding: 10px 0;
  }
  .workspace-path-marker { grid-row: 1 / 3; }
  .workspace-path-step > strong { align-self: end; }
  .workspace-path-step ul { min-height: 0; align-self: start; }
  .workspace-path-step > em { grid-column: 3; grid-row: 1 / 3; }
  .workspace-path-step:not(:last-child)::after {
    top: 48px;
    left: 18px;
    width: 2px;
    height: calc(100% - 38px);
  }
  .workspace-content-tasks { grid-template-columns: 1fr; }
  .workspace-next-actions .button { width: 100%; justify-content: center; }
}

.v2-interview-room {
  min-height: calc(100vh - 76px);
  padding: 24px 0 64px;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.5), rgba(247, 242, 232, 0.86)),
    radial-gradient(circle at 12% 10%, rgba(189, 138, 50, 0.12), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(13, 95, 77, 0.12), transparent 24%);
}
.v2-room-loading, .v2-complete-card { max-width: 760px; margin: 8vh auto; padding: 64px; text-align: center; border: 1px solid var(--border); border-radius: 8px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-lg); }
.v2-spinner { display: block; width: 42px; height: 42px; margin: 0 auto 24px; border: 4px solid rgba(13,95,77,.14); border-top-color: var(--green); border-radius: 50%; animation: v2-spin .8s linear infinite; }
@keyframes v2-spin { to { transform: rotate(360deg); } }
.v2-room-gate { display: grid; grid-template-columns: minmax(0,1fr) minmax(340px,420px); gap: 48px; align-items: center; padding: 44px 0 32px; }
.v2-back-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.v2-back-link:hover { color: var(--forest); }
.v2-page-back-bar {
  padding-top: clamp(16px, 2vw, 24px);
  margin-bottom: -6px;
}
.site-header + .v2-page-back-bar + .page .page-intro,
.site-header + .v2-page-back-bar + .page .v2-page-hero,
.site-header + .v2-page-back-bar + .page .v2-growth-plans-hero {
  padding-top: clamp(20px, 3vw, 38px);
}
.v2-room-gate > .v2-back-link { grid-column: 1 / -1; margin-bottom: -22px; }
.v2-gate-copy { min-width: 0; }
.v2-gate-copy h1 { max-width: 650px; margin: 14px 0 22px; font-family: var(--font-serif); font-size: clamp(32px,3.8vw,44px); line-height: 1.14; color: var(--ink); }
.v2-gate-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: 19px; line-height: 1.85; }
.v2-gate-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.v2-gate-points span { padding: 9px 14px; border: 1px solid rgba(13,95,77,.18); border-radius: 999px; color: var(--green); background: rgba(255,255,255,.7); font-weight: 700; }
.v2-access-card { position: relative; padding: 42px; border: 1px solid rgba(177,132,43,.25); border-radius: 8px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-lg); }
.v2-card-index { display: inline-grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; color: white; background: var(--green); font-weight: 800; }
.v2-access-card h2 { margin: 24px 0 10px; font-family: var(--font-serif); font-size: 32px; }
.v2-access-card > p { color: var(--muted); line-height: 1.7; }
.v2-access-card label { display: grid; gap: 8px; margin-top: 20px; color: var(--ink); font-weight: 700; }
.v2-access-card input { width: 100%; padding: 15px 16px; border: 1px solid var(--border); border-radius: 12px; background: #fffdf8; color: var(--ink); font: inherit; }
.v2-access-card .button { width: 100%; margin-top: 24px; justify-content: center; }
.v2-form-error { min-height: 24px; margin: 12px 0 0 !important; color: #a44135 !important; font-weight: 700; }
.v2-question-shell { max-width: 1280px; }
.v2-question-back { margin-bottom: 16px; }
.v2-question-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}
.v2-question-header h1 { margin: 4px 0 0; font-family: var(--font-serif); font-size: clamp(28px,2.6vw,38px); line-height: 1.18; }
.v2-question-subtitle {
  margin: 10px 0 0;
  color: #6d5b43;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.55;
}
.v2-session-status {
  min-width: 156px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 95, 77, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.82);
  text-align: right;
}
.v2-session-status span { display: block; color: var(--forest); font-size: 24px; font-weight: 850; line-height: 1.1; }
.v2-session-status b { color: var(--muted); font-size: 12px; }
.v2-progress-track { height: 7px; overflow: hidden; border-radius: 999px; background: rgba(13,95,77,.1); }
.v2-progress-track span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,var(--green),var(--gold)); transition: width .35s ease; }
.v2-question-layout { display: grid; grid-template-columns: 248px minmax(0,1fr); gap: 18px; align-items: start; margin-top: 18px; }
.v2-question-nav, .v2-question-card, .v2-follow-card { border: 1px solid rgba(229, 221, 208, 0.95); border-radius: 8px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); }
.v2-question-nav { position: sticky; top: 96px; display: grid; gap: 6px; padding: 12px; }
.v2-nav-title {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 6px 10px;
  color: var(--muted);
  font-size: 12px;
}
.v2-nav-title span { color: var(--ink); font-weight: 850; }
.v2-question-nav button {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}
.v2-question-nav button span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(13, 95, 77, 0.08);
  color: var(--forest);
  font-size: 12px;
  font-weight: 850;
}
.v2-question-nav button b { overflow: hidden; color: var(--ink); font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.v2-question-nav button small { color: var(--muted); font-size: 12px; font-weight: 800; }
.v2-question-nav button.is-current { border-color: rgba(13, 95, 77, 0.22); background: var(--forest-soft); color: var(--forest); }
.v2-question-nav button.is-current span { color: white; background: var(--forest); }
.v2-question-nav button.is-done:not(.is-current) { background: rgba(13,95,77,.05); }
.v2-question-nav button.is-done:not(.is-current) small { color: var(--forest); }
.v2-question-card { position: relative; min-height: 620px; padding: clamp(28px,4vw,46px); }
.v2-question-card-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}
.v2-question-card-top span { display: block; color: var(--muted); font-size: 14px; line-height: 1.55; }
.v2-question-card-top > b {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(189, 138, 50, 0.12);
  font-size: 12px;
}
.v2-question-card h2 { max-width: 860px; margin: 0 0 20px; font-family: var(--font-serif); font-size: clamp(28px,3vw,40px); line-height: 1.3; }
.v2-answer-hint { padding: 15px 18px; margin-bottom: 18px; border-left: 3px solid var(--gold); border-radius: 0 8px 8px 0; background: rgba(177,132,43,.08); }
.v2-answer-hint b { color: var(--gold-dark); }
.v2-answer-hint p { margin: 5px 0 0; color: var(--muted); line-height: 1.65; }
.v2-follow-inline { display: grid; grid-template-columns: minmax(220px,.75fr) minmax(300px,1.25fr); gap: 16px; align-items: stretch; margin-top: 16px; padding: 16px; border: 1px solid rgba(13,95,77,.12); border-radius: 8px; background: rgba(229,240,235,.48); }
.v2-follow-inline h3 { display: grid; gap: 8px; margin: 6px 0 0; color: var(--ink); font-size: 14px; line-height: 1.55; }
.v2-follow-inline h3 span { padding-left: 10px; border-left: 2px solid rgba(13, 95, 77, 0.28); }
.v2-follow-inline textarea { min-height: 112px; padding: 13px 14px; }
.v2-radar-reason { margin: 10px 0 12px; color: #6b5b47; font-size: 13px; line-height: 1.65; }
.v2-radar-manual-note { display: block; margin-top: 10px; color: #7b6a55; font-size: 13px; line-height: 1.7; }
.v2-generation-error { margin: 18px 0 0; padding: 14px 18px; border: 1px solid rgba(176,101,48,.28); border-radius: 16px; background: rgba(255,244,229,.82); color: #8b4a25; font-size: 15px; line-height: 1.7; }
.v2-follow-answer-box { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; align-items: center; }
.v2-mic-button-small span { width: 46px; height: 46px; }
.v2-mic-button-small b { white-space: nowrap; }
.v2-question-card textarea, .v2-follow-card textarea { width: 100%; resize: vertical; border: 1px solid var(--border); border-radius: 8px; background: #fffdf8; color: var(--ink); font: inherit; line-height: 1.8; outline: none; }
.v2-question-card textarea:focus, .v2-follow-card textarea:focus, .v2-access-card input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,95,77,.1); }
.v2-question-card textarea { min-height: 230px; padding: 18px; }
.v2-question-actions { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: center; margin-top: 18px; }
.v2-question-actions .button:last-child { justify-self: end; }
.v2-mic-button { display: grid; justify-items: center; gap: 4px; border: 0; background: transparent; color: var(--green); cursor: pointer; }
.v2-mic-button span { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: white; background: var(--green); box-shadow: 0 8px 22px rgba(13,95,77,.24); }
.v2-mic-button b { font-size: 12px; }
.v2-mic-button.is-recording span { background: #bd4a3b; animation: v2-pulse 1.2s ease infinite; }
@keyframes v2-pulse { 50% { transform: scale(1.08); box-shadow: 0 0 0 12px rgba(189,74,59,.1); } }
.v2-save-status { margin: 14px 0 0; text-align: center; color: var(--muted); font-size: 13px; }
.v2-follow-card { padding: 26px; }
.v2-follow-card h3 { margin: 8px 0 18px; font-family: var(--font-serif); font-size: 24px; }
.v2-follow-card ol { display: grid; gap: 14px; padding-left: 22px; color: var(--muted); line-height: 1.65; }
.v2-follow-card textarea { min-height: 190px; margin-top: 20px; padding: 15px; }
.v2-complete-mark { display: grid; place-items: center; width: 72px; height: 72px; margin: 0 auto 24px; border-radius: 50%; color: white; background: var(--green); font-size: 34px; }
.v2-complete-card h1 { margin: 12px 0 18px; font-family: var(--font-serif); font-size: 44px; }
.v2-complete-card > p:not(.eyebrow) { color: var(--muted); font-size: 18px; line-height: 1.8; }
.v2-complete-card .button-row { justify-content: center; margin-top: 28px; }

@media (max-width: 1080px) {
  .v2-question-layout { grid-template-columns: 190px minmax(0,1fr); }
  .v2-question-nav button { grid-template-columns: 30px minmax(0, 1fr); }
  .v2-question-nav button small { display: none; }
}

@media (max-width: 760px) {
  .v2-interview-room { padding: 28px 0 60px; }
  .v2-room-gate { grid-template-columns: 1fr; gap: 34px; padding: 18px 0; }
  .v2-gate-copy h1 { font-size: 44px; }
  .v2-access-card, .v2-room-loading, .v2-complete-card { padding: 28px 22px; border-radius: 8px; }
  .v2-question-header { grid-template-columns: 1fr; align-items: flex-start; }
  .v2-session-status { width: 100%; text-align: left; }
  .v2-question-layout { display: block; }
  .v2-question-nav { position: static; display: flex; overflow-x: auto; margin-bottom: 14px; }
  .v2-nav-title { display: none; }
  .v2-question-nav button { flex: 0 0 auto; }
  .v2-question-nav button b, .v2-question-nav button small { display: none; }
  .v2-question-card { padding: 26px 20px; }
  .v2-question-card-top { display: grid; }
  .v2-question-card h2 { font-size: 28px; }
  .v2-question-actions { grid-template-columns: 1fr 1fr; }
  .v2-mic-button { grid-column: 1 / -1; grid-row: 1; }
  .v2-question-actions .button { width: 100%; justify-content: center; }
  .v2-follow-inline { grid-template-columns: 1fr; }
  .v2-follow-answer-box { grid-template-columns: 1fr; }
}

/* V2 independent premium visual system */
body {
  background:
    linear-gradient(rgba(255, 248, 232, 0.76), rgba(248, 226, 188, 0.74)),
    url("../assets/v2-warm-gold-bg.png") center top / cover fixed;
}

.site-header {
  border-bottom: 1px solid rgba(226, 186, 119, 0.34);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: 0 14px 40px rgba(91, 53, 20, 0.07);
}

.brand-mark {
  color: #fff8d7;
  background: linear-gradient(145deg, #0d5f35, #063b23);
  box-shadow: 0 12px 28px rgba(8, 69, 43, 0.22);
}

.brand-copy strong {
  color: #1c1710;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 950;
}

.brand-copy small {
  color: #6f5a3d;
  font-weight: 650;
}

.desktop-nav {
  gap: 24px;
}

.nav-link {
  padding: 10px 4px;
  border-radius: 0;
  color: #1f1a13;
  font-size: 15px;
  font-weight: 850;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--forest);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--forest);
}

.button {
  border-radius: 999px;
}

.button-primary {
  background: linear-gradient(145deg, #0d6539, #073e25);
  box-shadow: 0 14px 26px rgba(8, 72, 45, 0.22);
}

.button-secondary {
  color: #1f1a13;
  border-color: rgba(226, 186, 119, 0.42);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 26px rgba(91, 53, 20, 0.07);
}

.v2-premium-page {
  color: #241b12;
}

.v2-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: 4px 13px;
  border: 1px solid rgba(217, 155, 52, 0.26);
  border-radius: 999px;
  color: #a76907;
  background: rgba(255, 236, 192, 0.78);
  font-size: 13px;
  font-weight: 900;
}

.v2-hero {
  padding: 28px 0 34px;
}

.v2-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 22px;
  align-items: stretch;
}

.v2-hero-copy,
.v2-page-hero {
  border: 1px solid rgba(226, 186, 119, 0.42);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.82);
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.12);
}

.v2-hero-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
}

.v2-hero-copy h1,
.v2-page-hero h1 {
  max-width: 820px;
  margin: 18px 0 0;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.v2-hero-copy .lead,
.v2-page-hero .lead {
  max-width: 660px;
  margin-top: 22px;
  color: #5d4c36;
  font-size: 18px;
  line-height: 1.85;
}

.v2-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.v2-hero-metrics span {
  padding: 15px 14px;
  border: 1px solid rgba(226, 186, 119, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
  color: #6d5b43;
  font-size: 13px;
  font-weight: 750;
}

.v2-hero-metrics b {
  display: block;
  color: var(--forest);
  font-size: 30px;
  line-height: 1.1;
}

.v2-hero-portrait {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid rgba(226, 186, 119, 0.42);
  border-radius: 24px;
  background: #f8e4bd;
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.14);
}

.v2-hero-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.v2-hero-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 244, 222, 0.52), transparent 48%);
  pointer-events: none;
}

.v2-dialog-card {
  position: absolute;
  left: 34px;
  bottom: 34px;
  z-index: 2;
  width: min(330px, calc(100% - 68px));
  padding: 20px 22px;
  border: 1px solid rgba(226, 186, 119, 0.38);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 18px 40px rgba(91, 53, 20, 0.14);
  backdrop-filter: blur(10px);
}

.v2-dialog-card b {
  display: block;
  color: var(--forest);
  font-size: 18px;
}

.v2-dialog-card p {
  margin: 8px 0 0;
  color: #5d4c36;
}

.v2-section {
  padding: 32px 0;
}

.v2-section-warm {
  margin: 24px 0;
  padding: 52px 0;
  background: rgba(255, 239, 207, 0.48);
}

.v2-page-hero {
  margin: 28px auto 0;
  padding: clamp(28px, 4vw, 48px) 0;
}

.v2-page-hero > .shell {
  padding: 0;
}

.v2-page-hero-visual {
  background:
    linear-gradient(100deg, rgba(255, 250, 240, 0.92), rgba(255, 236, 196, 0.72)),
    url("../assets/v2-ai-interviewer-warm.png") 72% center / contain no-repeat;
}

.v2-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 26px;
  align-items: center;
}

.v2-split h2 {
  margin: 14px 0 12px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.14;
}

.v2-split p {
  color: #67553c;
  font-size: 17px;
  line-height: 1.8;
}

.v2-rich-grid,
.v2-card-stack {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-card-stack {
  grid-template-columns: 1fr;
}

.feature-card,
.plan-card,
.dna-card,
.generation-card,
.content-row,
.library-filter,
.library-insight,
.account-summary,
.v2-about-card {
  border-color: rgba(226, 186, 119, 0.36);
  border-radius: 18px;
  background: rgba(255, 250, 240, 0.86);
  box-shadow: 0 16px 38px rgba(91, 53, 20, 0.09);
}

.feature-card {
  min-height: 178px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(91, 53, 20, 0.13);
}

.card-index,
.dna-card-head span,
.document-mark {
  color: #fff7d7;
  background: linear-gradient(145deg, #d8920d, #a86600);
}

.section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2 {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
}

.section-heading p {
  color: #67553c;
  font-size: 17px;
}

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

.plan-card {
  padding: 28px;
}

.plan-card.is-recommended {
  border-color: rgba(216, 146, 13, 0.72);
  background: linear-gradient(180deg, rgba(255, 247, 226, 0.96), rgba(255, 232, 188, 0.88));
  box-shadow: 0 24px 64px rgba(168, 102, 0, 0.16);
}

.plan-card ul,
.dna-card ul {
  padding-left: 0;
  list-style: none;
}

.plan-card li,
.dna-card li {
  margin-top: 9px;
  color: #5d4c36;
}

.plan-card li::before,
.dna-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--forest);
  font-weight: 900;
}

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

.dna-card {
  min-height: 250px;
  padding: 24px;
}

.dna-card h2,
.generation-card h2,
.plan-card h2 {
  margin: 12px 0 8px;
  font-size: 22px;
}

.v2-function-panel,
.v2-about-card {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.v2-about-card h2 {
  margin: 0;
  font-size: 30px;
}

.v2-about-card .tag-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-about-card .tag-row span,
.tag-row span,
.chip-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  border-radius: 999px;
  color: #0b5a35;
  background: rgba(13, 95, 53, 0.09);
  font-size: 13px;
  font-weight: 800;
}

.v2-feature-hero {
  padding: 30px 0 18px;
}

.v2-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr);
  gap: 22px;
  align-items: stretch;
}

.v2-feature-copy,
.v2-mini-room {
  border: 1px solid rgba(226, 186, 119, 0.42);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.11);
}

.v2-feature-copy {
  padding: clamp(30px, 5vw, 54px);
}

.v2-feature-copy h1 {
  max-width: 680px;
  margin: 16px 0 0;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(27px, 2.7vw, 34px);
  font-weight: 950;
  line-height: 1.14;
}

.v2-feature-copy .lead {
  max-width: 620px;
  margin-top: 18px;
  color: #5d4c36;
  font-size: 17px;
  line-height: 1.85;
}

.v2-mini-room {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(180px, .56fr);
  align-content: end;
  gap: 16px;
  overflow: hidden;
  padding: 28px;
  background:
    linear-gradient(90deg, rgba(255, 246, 228, 0.94), rgba(255, 235, 198, 0.5)),
    url("../assets/v2-ai-interviewer-warm.png") 76% bottom / auto 108% no-repeat;
}

.v2-mini-room::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 246, 228, 0.97) 0%, rgba(255, 246, 228, 0.82) 42%, rgba(255, 246, 228, 0.18) 100%);
}

.v2-mini-room > * {
  position: relative;
  z-index: 2;
}

.v2-mini-room-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  max-width: 430px;
  grid-column: 1 / -1;
  align-self: start;
  margin-bottom: 54px;
  color: var(--forest);
  font-weight: 900;
}

.v2-mini-room-head b {
  color: #a76907;
}

.v2-mini-question,
.v2-mini-answer {
  max-width: 470px;
  border: 1px solid rgba(226, 186, 119, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 16px 36px rgba(91, 53, 20, 0.09);
}

.v2-mini-question,
.v2-mini-answer,
.v2-mini-dna {
  grid-column: 1;
}

.v2-mini-question {
  padding: 22px 24px;
  color: #221a12;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.35;
}

.v2-mini-answer {
  margin-top: 12px;
  padding: 16px 18px;
  color: #5d4c36;
  line-height: 1.7;
}

.v2-mini-dna {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 470px;
  margin-top: 14px;
}

.v2-account-hero {
  padding: 30px 0 10px;
}

.v2-account-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
  align-items: stretch;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(226, 186, 119, 0.42);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 22px 58px rgba(91, 53, 20, 0.1);
}

.v2-account-hero h1 {
  max-width: 720px;
  margin: 16px 0 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
}

.v2-account-hero .lead {
  max-width: 660px;
  color: #5d4c36;
  font-size: 17px;
  line-height: 1.8;
}

.v2-account-note {
  display: grid;
  align-content: center;
  justify-items: center;
  border: 1px solid rgba(13, 95, 53, 0.14);
  border-radius: 20px;
  background: rgba(13, 95, 53, 0.06);
  text-align: center;
}

.v2-account-note span,
.v2-account-note p {
  color: #68563e;
  font-weight: 800;
}

.v2-account-note strong {
  color: var(--forest);
  font-size: 54px;
  line-height: 1;
}

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

.account-summary {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr) minmax(240px, .7fr);
  gap: 26px;
  align-items: center;
  padding: 34px;
}

.account-summary-head h2 {
  margin: 10px 0 8px;
  font-size: 28px;
}

.account-summary-head span,
.account-summary-action p {
  color: #68563e;
}

.account-summary .metric-grid {
  margin: 0;
}

.account-summary .metric-grid > div {
  min-height: 106px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border: 1px solid rgba(226, 186, 119, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.54);
}

.account-summary .metric-grid strong {
  color: var(--forest);
  font-size: 34px;
  line-height: 1;
}

.account-summary-action {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.account-login-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.account-login-form label {
  display: grid;
  gap: 8px;
  color: #4c3a24;
  font-weight: 800;
}

.account-login-form input {
  min-height: 52px;
  border: 1px solid rgba(178, 126, 44, 0.22);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0 16px;
  font: inherit;
  color: #21180f;
}

.account-workbench {
  display: grid;
  gap: 16px;
}

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

.account-action-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 24px;
  border: 1px solid rgba(13, 95, 53, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(13, 95, 53, 0.08), rgba(255, 245, 218, 0.84));
}

.account-action-panel h2 {
  margin: 10px 0 8px;
  font-size: 26px;
  line-height: 1.28;
}

.account-action-panel p:not(.v2-pill) {
  margin: 0;
  color: #5d4c36;
  line-height: 1.75;
}

.account-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.account-loading {
  grid-column: 1 / -1;
  color: #68563e;
  font-weight: 800;
}

.account-asset-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(226, 186, 119, 0.34);
  border-radius: 18px;
  background: rgba(255, 252, 244, 0.72);
}

.account-asset-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(13, 95, 53, 0.1);
  color: var(--forest);
  font-weight: 900;
}

.account-asset-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
}

.account-asset-card p {
  margin: 0;
  color: #68563e;
  line-height: 1.75;
}

.account-asset-card a,
.account-asset-card summary {
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.account-asset-card details div {
  max-height: 360px;
  overflow: auto;
  margin-top: 12px;
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.62);
  color: #3f301f;
  line-height: 1.85;
}

.account-asset-card.is-ready {
  border-color: rgba(13, 95, 53, 0.24);
  background: rgba(240, 248, 238, 0.68);
}

.v2-premium-page .v2-page-hero > .shell {
  width: min(calc(100% - 40px), 1120px);
}

.v2-premium-page .v2-section > .shell {
  width: min(calc(100% - 40px), 1180px);
}

.v2-premium-page .feature-card h3,
.v2-premium-page .dna-card h2,
.v2-premium-page .generation-card h2,
.v2-premium-page .plan-card h2 {
  font-size: 20px;
  line-height: 1.35;
}

.v2-premium-page .feature-card p,
.v2-premium-page .dna-card p,
.v2-premium-page .generation-card p,
.v2-premium-page .plan-card p {
  font-size: 15px;
  line-height: 1.72;
}

.v2-premium-page .v2-section {
  padding: 26px 0;
}

.v2-mini-dna span {
  padding: 6px 11px;
  border-radius: 999px;
  color: #0b5a35;
  background: rgba(13, 95, 53, 0.1);
  font-size: 13px;
  font-weight: 850;
}

.v2-offer-panel {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(226, 186, 119, 0.42);
  border-radius: 24px;
  background:
    linear-gradient(110deg, rgba(255, 250, 240, 0.92), rgba(255, 230, 186, 0.72)),
    url("../assets/v2-ai-interviewer-warm.png") 76% bottom / auto 100% no-repeat;
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.11);
}

.v2-offer-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 246, 228, 0.98) 0%, rgba(255, 246, 228, 0.74) 54%, rgba(255, 246, 228, 0.18) 100%);
}

.v2-offer-panel > * {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.v2-offer-panel span {
  color: var(--forest);
  font-size: 16px;
  font-weight: 950;
}

.v2-offer-panel h2 {
  margin: 18px 0 12px;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.18;
}

.v2-offer-panel p {
  color: #5d4c36;
  font-size: 17px;
  line-height: 1.78;
}

.v2-dna-panel {
  background:
    radial-gradient(circle at 78% 20%, rgba(216, 146, 13, 0.20), transparent 30%),
    linear-gradient(140deg, rgba(255, 250, 240, 0.96), rgba(255, 230, 186, 0.78));
}

.v2-dna-panel::before {
  background: linear-gradient(90deg, rgba(255, 246, 228, 0.98), rgba(255, 246, 228, 0.64));
}

.v2-feature-path {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.library-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 280px;
  gap: 18px;
}

.library-filter,
.library-insight,
.content-list {
  padding: 20px;
}

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

.v2-interview-room {
  background:
    linear-gradient(rgba(255, 248, 232, 0.78), rgba(248, 226, 188, 0.78)),
    url("../assets/v2-warm-gold-bg.png") center top / cover fixed;
}

.v2-room-gate {
  min-height: calc(100vh - 156px);
  grid-template-columns: minmax(0, 1fr) minmax(390px, 470px);
  gap: 34px;
  align-items: stretch;
}

.v2-gate-copy h1,
.v2-question-header h1 {
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-weight: 950;
}

.v2-access-card,
.v2-room-loading,
.v2-complete-card,
.v2-question-nav,
.v2-question-card,
.v2-discovery-panel {
  border-color: rgba(226, 186, 119, 0.38);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 22px 58px rgba(91, 53, 20, 0.12);
}

.v2-gate-copy,
.v2-access-card {
  border: 1px solid rgba(226, 186, 119, 0.38);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 22px 58px rgba(91, 53, 20, 0.1);
}

.v2-gate-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 58px);
}

.v2-gate-copy h1 {
  max-width: 760px;
  margin: 20px 0 16px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.14;
}

.v2-gate-copy > p:not(.v2-pill) {
  max-width: 720px;
  color: #68563e;
  font-size: 18px;
  line-height: 1.85;
}

.v2-gate-preview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 26px 0 8px;
}

.v2-gate-preview span {
  padding: 13px 14px;
  border: 1px solid rgba(226, 186, 119, 0.3);
  border-radius: 14px;
  color: #0b5a35;
  background: rgba(255, 255, 255, 0.52);
  font-weight: 850;
}

.v2-access-card {
  align-self: center;
  padding: 34px;
}

.v2-access-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--forest);
  font-weight: 900;
}

.v2-question-layout {
  grid-template-columns: 236px minmax(0, 1fr) 318px;
  gap: 18px;
}

.v2-question-card {
  padding: 18px;
}

.v2-ai-host-card {
  position: relative;
  min-height: 245px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(260px, 1.05fr);
  gap: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  padding: 28px;
  border: 1px solid rgba(226, 186, 119, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 245, 222, 0.94), rgba(255, 232, 188, 0.56));
}

.v2-ai-host-card h2 {
  margin: 12px 0 10px;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 950;
  line-height: 1.2;
}

.v2-ai-host-card p:not(.v2-pill) {
  color: #5d4c36;
}

.v2-ai-host-card img {
  position: absolute;
  right: clamp(10px, 3vw, 34px);
  bottom: 0;
  width: min(42%, 360px);
  height: 96%;
  object-fit: contain;
  object-position: center bottom;
  transform: scaleX(-1);
  transform-origin: center bottom;
  mask-image: linear-gradient(90deg, transparent, black 16%);
}

.v2-ai-host-card > div {
  position: relative;
  z-index: 2;
}

.v2-discovery-panel {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 16px;
}

.v2-discovery-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1f1a13;
  font-size: 18px;
  font-weight: 950;
}

.v2-discovery-title span {
  color: #d8920d;
}

.v2-discovery-card,
.v2-live-note {
  padding: 18px;
  border: 1px solid rgba(226, 186, 119, 0.28);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.58);
}

.v2-discovery-card span {
  float: right;
  padding: 3px 9px;
  border-radius: 999px;
  color: #0b5a35;
  background: rgba(13, 95, 53, 0.1);
  font-size: 12px;
  font-weight: 900;
}

.v2-discovery-card.is-hot span {
  color: #9a5b00;
  background: rgba(255, 224, 163, 0.86);
}

.v2-discovery-card h3,
.v2-live-note h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.v2-discovery-card p,
.v2-live-note p {
  margin: 0;
  color: #68563e;
  font-size: 14px;
}

.v2-discovery-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
}

.v2-free-question-layout {
  grid-template-columns: 220px minmax(0, 1fr) 300px;
}

.v2-free-host-card h2 {
  max-width: 520px;
}

.v2-free-save-copy {
  justify-self: center;
  color: #68563e;
  font-size: 13px;
  font-weight: 850;
}

.v2-free-report {
  display: grid;
  gap: 20px;
  padding: 28px 0 70px;
}

.v2-free-report-hero,
.v2-free-upgrade {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(226, 186, 119, 0.42);
  border-radius: 24px;
  background:
    linear-gradient(110deg, rgba(255, 250, 240, 0.94), rgba(255, 230, 186, 0.72)),
    url("../assets/v2-ai-interviewer-warm.png") 76% bottom / auto 110% no-repeat;
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.12);
}

.v2-free-report-hero h1,
.v2-free-upgrade h2 {
  max-width: 720px;
  margin: 14px 0 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.18;
}

.v2-free-report-hero p,
.v2-free-upgrade p {
  max-width: 680px;
  color: #5d4c36;
  font-size: 17px;
  line-height: 1.8;
}

.v2-free-report-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-free-report-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(226, 186, 119, 0.36);
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.88);
  box-shadow: 0 16px 38px rgba(91, 53, 20, 0.09);
}

.v2-free-report-card span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff7d7;
  background: linear-gradient(145deg, #d8920d, #a86600);
  font-weight: 950;
}

.v2-free-report-card h2 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.v2-free-report-card p {
  margin: 0;
  color: #5d4c36;
}

.v2-free-report-card .v2-report-lines {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: #5d4c36;
}

.v2-free-report-card .v2-report-lines li {
  position: relative;
  padding-left: 16px;
  line-height: 1.7;
}

.v2-free-report-card .v2-report-lines li::before {
  content: "";
  position: absolute;
  top: .78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(189, 138, 50, 0.75);
}

.v2-free-upgrade {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(110deg, rgba(255, 250, 240, 0.96), rgba(255, 230, 186, 0.62));
}

.v2-free-upgrade {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
  align-items: start;
}

.v2-free-report-complete {
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(226, 186, 119, .4);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(245, 201, 109, .3), transparent 32%),
    linear-gradient(112deg, rgba(255, 252, 246, .96), rgba(255, 236, 199, .6));
  text-align: left;
}

.v2-free-report-complete h2 {
  margin: 2px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.035em;
}

.v2-free-report-complete p:not(.v2-pill) {
  max-width: 660px;
  margin: 0;
  color: #705d42;
  font-size: 16px;
  line-height: 1.8;
}

.v2-read-more.is-static {
  display: inline-flex;
  color: #91734a;
  font-size: 14px;
  font-weight: 750;
}

.v2-case-closing {
  padding: clamp(34px, 5vw, 62px);
  border: 1px solid rgba(226, 186, 119, .36);
  border-radius: 28px;
  background: linear-gradient(115deg, rgba(255, 252, 246, .9), rgba(255, 231, 190, .54));
  text-align: center;
}

.v2-case-closing h2 {
  margin: 10px 0 0;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -.035em;
}

.v2-next-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.v2-next-product-card {
  display: grid;
  gap: 7px;
  min-height: 178px;
  padding: 18px;
  border: 1px solid rgba(226, 186, 119, 0.34);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 28px rgba(91, 53, 20, 0.07);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.v2-next-product-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 95, 77, 0.28);
  box-shadow: 0 18px 38px rgba(91, 53, 20, 0.12);
}

.v2-next-product-card span {
  width: fit-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: #9a5b00;
  background: rgba(255, 224, 163, 0.82);
  font-size: 12px;
  font-weight: 950;
}

.v2-next-product-card small {
  color: #9a6a22;
  font-size: 12px;
  font-weight: 900;
}

.v2-next-product-card h3 {
  margin: 3px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.25;
}

.v2-next-product-card b {
  display: grid;
  gap: 3px;
  color: var(--forest);
  font-size: 14px;
}

.v2-next-product-card b i {
  color: #a86600;
  font-size: 11px;
  font-style: normal;
}

.v2-next-product-card > strong {
  margin-top: 4px;
  color: #a86600;
  font-size: 11px;
  font-weight: 900;
}

.v2-next-product-card p {
  margin: 0;
  color: #68563e;
  font-size: 14px;
  line-height: 1.6;
}

.v2-next-product-card ul {
  display: grid;
  gap: 4px;
  margin: 2px 0 0;
  padding: 0;
  color: #68563e;
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
}

.v2-next-product-card li {
  position: relative;
  padding-left: 13px;
}

.v2-next-product-card li::before {
  content: "";
  position: absolute;
  top: .72em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(189, 138, 50, .86);
}

.v2-next-product-card em {
  align-self: end;
  color: var(--forest);
  font-size: 14px;
  font-style: normal;
  font-weight: 950;
}

.v2-next-product-card.is-recommended {
  color: #fffaf0;
  border-color: rgba(255, 225, 161, 0.22);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 216, 128, 0.18), transparent 32%),
    linear-gradient(150deg, #0d6846, #063b2a);
  box-shadow: 0 20px 48px rgba(5, 72, 48, 0.18);
}

.v2-next-product-card.is-recommended small,
.v2-next-product-card.is-recommended span,
.v2-next-product-card.is-recommended b i,
.v2-next-product-card.is-recommended > strong,
.v2-next-product-card.is-recommended em {
  color: #ffe2a0;
}

.v2-next-product-card.is-recommended span {
  background: rgba(255, 239, 201, 0.13);
}

.v2-next-product-card.is-recommended h3,
.v2-next-product-card.is-recommended b,
.v2-next-product-card.is-recommended li {
  color: rgba(255, 250, 240, 0.92);
}

.v2-next-product-card.is-recommended li::before {
  background: #ffe2a0;
}

.v2-free-upgrade-copy > p strong {
  color: var(--forest);
}

.v2-report-actions {
  grid-column: 1 / -1;
  margin-top: 2px;
}

.v2-deep-assets {
  display: grid;
  gap: 20px;
  padding: 28px 0 70px;
}

.v2-deep-dna-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.v2-free-report-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #5d4c36;
  font-size: 14px;
}

.v2-deep-output-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  gap: 18px;
}

.v2-deep-output-card {
  padding: 28px;
  border: 1px solid rgba(226, 186, 119, 0.36);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 18px 44px rgba(91, 53, 20, 0.1);
}

.v2-deep-output-card h2 {
  margin: 14px 0 12px;
  font-size: 28px;
}

.v2-deep-output-card h3 {
  margin: 18px 0 6px;
  color: var(--forest);
  font-size: 17px;
}

.v2-deep-output-card p {
  color: #5d4c36;
  line-height: 1.85;
  white-space: pre-wrap;
}

.v2-trust-story-calls {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(226, 186, 119, 0.34);
}

.v2-trust-story-calls section {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(13, 95, 53, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .42);
}

.v2-trust-story-calls strong {
  display: block;
  font-size: 17px;
}

.v2-trust-story-calls small {
  display: block;
  margin: 4px 0 10px;
  color: #7a664a;
  line-height: 1.6;
}

.v2-generation-entry {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: 22px;
  align-items: center;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(226, 186, 119, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(255, 230, 186, 0.66));
  box-shadow: 0 18px 44px rgba(91, 53, 20, 0.1);
}

.v2-generation-entry h2 {
  margin: 12px 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
}

.v2-generation-entry p {
  margin: 0;
  color: #5d4c36;
  line-height: 1.75;
}

.v2-generation-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.v2-generation-entry-grid span {
  padding: 18px;
  border: 1px solid rgba(226, 186, 119, 0.32);
  border-radius: 16px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.56);
  font-weight: 950;
}

.v2-dna-radar-check {
  display: grid;
  gap: 18px;
  padding: clamp(26px, 3vw, 38px);
  border: 1px solid rgba(226, 186, 119, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 230, 186, 0.62));
  box-shadow: 0 18px 44px rgba(91, 53, 20, 0.1);
}

.v2-dna-radar-check h2 {
  margin: 12px 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.25;
}

.v2-dna-radar-check p {
  margin: 0;
  color: #5d4c36;
  line-height: 1.75;
}

.v2-radar-question-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.v2-radar-question {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(226, 186, 119, 0.32);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.v2-radar-question span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff7d7;
  background: linear-gradient(145deg, #d8920d, #a86600);
  font-size: 13px;
  font-weight: 950;
}

.v2-supplement-box {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.v2-supplement-box textarea {
  min-height: 150px;
  resize: vertical;
  padding: 16px;
  border: 1px solid rgba(226, 186, 119, 0.42);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  font: inherit;
  line-height: 1.75;
}

@media (max-width: 1080px) {
  .v2-hero-grid,
  .v2-split {
    grid-template-columns: 1fr;
  }

  .v2-rich-grid,
  .plans-grid,
  .dna-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .library-layout {
    grid-template-columns: 1fr;
  }

  .v2-feature-grid {
    grid-template-columns: 1fr;
  }

  .v2-mini-room {
    grid-template-columns: minmax(0, .82fr) minmax(200px, .58fr);
    background-size: auto 100%;
  }

  .v2-offer-panel {
    min-height: 360px;
  }

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

  .account-summary {
    grid-template-columns: 1fr;
  }

  .account-login-form,
  .account-asset-list,
  .account-action-panel {
    grid-template-columns: 1fr;
  }

  .account-action-buttons {
    justify-content: flex-start;
  }

  .v2-account-hero-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .v2-question-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .v2-discovery-panel {
    position: static;
    grid-column: 1 / -1;
  }

  .v2-ai-host-card {
    grid-template-columns: minmax(0, 1fr) 280px;
    min-height: 300px;
  }

  .v2-ai-host-card img {
    width: 280px;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    mask-image: none;
  }

  .v2-free-question-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

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

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

  .v2-deep-output-grid {
    grid-template-columns: 1fr;
  }

  .v2-generation-entry {
    grid-template-columns: 1fr;
  }

  .v2-radar-question-list {
    grid-template-columns: 1fr;
  }

  .v2-free-upgrade {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-free-upgrade {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .v2-hero-copy,
  .v2-hero-portrait {
    min-height: auto;
  }

  .v2-hero-copy h1,
  .v2-page-hero h1 {
    font-size: 28px;
    line-height: 1.22;
  }

  .v2-hero-metrics,
  .v2-rich-grid,
  .plans-grid,
  .dna-grid {
    grid-template-columns: 1fr;
  }

  .v2-hero-portrait {
    height: 430px;
  }

  .v2-page-hero {
    padding: 34px 0;
  }

  .v2-page-hero > .shell,
  .v2-account-hero-grid,
  .v2-feature-copy,
  .v2-mini-room,
  .account-summary,
  .v2-gate-copy,
  .v2-access-card {
    padding: 24px;
  }

  .v2-feature-copy h1 {
    font-size: 28px;
    line-height: 1.22;
  }

  .v2-feature-copy .lead,
  .v2-page-hero .lead,
  .v2-account-hero .lead,
  .v2-gate-copy > p:not(.v2-pill) {
    font-size: 15px;
    line-height: 1.75;
  }

  .v2-feature-copy,
  .v2-mini-room {
    border-radius: 18px;
  }

  .v2-mini-room {
    min-height: 500px;
    display: flex;
    justify-content: flex-end;
    background:
      linear-gradient(180deg, rgba(255, 246, 228, 0.96), rgba(255, 246, 228, 0.82)),
      url("../assets/v2-ai-interviewer-warm.png") center top / 100% auto no-repeat;
  }

  .v2-mini-room::before {
    background: linear-gradient(180deg, rgba(255, 246, 228, 0.1) 0%, rgba(255, 246, 228, 0.96) 45%);
  }

  .v2-mini-question {
    font-size: 20px;
  }

  .v2-offer-panel {
    min-height: 360px;
    padding: 24px;
    background:
      linear-gradient(180deg, rgba(255, 246, 228, 0.96), rgba(255, 235, 198, 0.88)),
      url("../assets/v2-ai-interviewer-warm.png") right bottom / auto 74% no-repeat;
  }

  .v2-offer-panel::before {
    background: linear-gradient(180deg, rgba(255, 246, 228, 0.98) 0%, rgba(255, 246, 228, 0.88) 100%);
  }

  .v2-offer-panel h2 {
    font-size: 26px;
  }

  .v2-offer-panel p {
    font-size: 15px;
  }

  .v2-feature-path {
    grid-template-columns: 1fr;
  }

  .v2-account-hero h1 {
    font-size: 28px;
    line-height: 1.22;
  }

  .v2-account-note {
    min-height: 150px;
    padding: 18px;
  }

  .account-summary .metric-grid {
    grid-template-columns: 1fr;
  }

  .account-summary-action .button {
    width: 100%;
  }

  .v2-room-gate {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .v2-free-question-layout {
    display: block;
  }

  .v2-free-save-copy {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
  }

  .v2-free-report-grid {
    grid-template-columns: 1fr;
  }

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

  .v2-deep-dna-grid {
    grid-template-columns: 1fr;
  }

  .v2-free-report-hero,
  .v2-free-upgrade {
    padding: 24px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 230, 186, 0.78));
  }

  .v2-gate-copy h1 {
    font-size: 34px;
    line-height: 1.14;
  }

  .v2-gate-preview {
    grid-template-columns: 1fr;
  }

  .v2-ai-host-card {
    grid-template-columns: 1fr;
    min-height: 420px;
    padding-bottom: 210px;
  }

  .v2-ai-host-card img {
    width: 100%;
    height: 210px;
    opacity: .9;
    object-fit: contain;
    object-position: center bottom;
    mask-image: none;
  }

  .footer-grid,
  .footer-inner {
    gap: 18px;
    padding: 24px 0 max(44px, env(safe-area-inset-bottom));
  }

  .site-footer {
    padding-bottom: max(18px, env(safe-area-inset-bottom));
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 520px) {
  .brand-copy small {
    display: none;
  }

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

  .v2-gate-copy,
  .v2-access-card {
    padding: 22px 18px;
  }

  .v2-gate-copy h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .v2-gate-preview {
    grid-template-columns: 1fr;
  }
}

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

/* V2 polish pass — keep pages warm, premium, compact and usable. */
.v2-question-shell {
  max-width: 1320px;
}

.v2-question-header h1 {
  max-width: 820px;
  font-size: clamp(28px, 2.45vw, 38px);
  line-height: 1.2;
}

.v2-question-layout,
.v2-free-question-layout {
  grid-template-columns: 220px minmax(0, 1fr) 292px;
  gap: 20px;
}

.v2-ai-host-card {
  min-height: 250px;
  display: block;
  padding: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 88% 22%, rgba(216, 146, 13, 0.18), transparent 26%),
    linear-gradient(100deg, rgba(255, 248, 232, 0.98) 0%, rgba(255, 240, 210, 0.88) 54%, rgba(255, 229, 183, 0.68) 100%);
}

.v2-ai-host-card h2 {
  max-width: 600px;
  font-size: clamp(27px, 2.5vw, 36px);
  line-height: 1.22;
}

.v2-ai-host-card p:not(.v2-pill) {
  max-width: 560px;
}

.v2-ai-host-card img {
  right: 0;
  bottom: 0;
  width: min(42%, 390px);
  height: 100%;
  object-fit: cover;
  object-position: center center;
  opacity: .82;
  transform: scaleX(-1);
  mask-image: linear-gradient(90deg, transparent 0%, black 22%);
}

.v2-question-card h2 {
  font-size: clamp(26px, 2.35vw, 34px);
  line-height: 1.28;
}

.v2-discovery-card,
.v2-live-note {
  padding: 16px;
}

.v2-free-report-hero {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98) 0%, rgba(255, 246, 231, 0.92) 47%, rgba(255, 227, 184, 0.56) 100%),
    url("../assets/v2-ai-interviewer-warm.png") right bottom / auto 106% no-repeat;
}

.v2-free-report-hero h1 {
  max-width: 860px;
  font-size: clamp(28px, 2.35vw, 38px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.v2-free-report-hero p {
  max-width: 760px;
  font-size: 16px;
}

.v2-free-report-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v2-free-report-card {
  min-height: 0;
  padding: 24px 22px;
}

.v2-free-report-card h2 {
  font-size: 20px;
  line-height: 1.28;
}

.v2-free-report-card p,
.v2-free-report-card .v2-report-lines {
  font-size: 15px;
}

.v2-case-hero {
  padding: 34px 0 24px;
}

.v2-case-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .7fr);
  gap: 22px;
  align-items: stretch;
}

.v2-case-hero-grid > div,
.v2-case-proof-card,
.v2-case-card,
.v2-case-cta {
  border: 1px solid rgba(226, 186, 119, 0.4);
  border-radius: 24px;
  background: rgba(255, 250, 240, 0.84);
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.11);
}

.v2-case-hero-grid > div:first-child {
  padding: clamp(34px, 5vw, 58px);
}

.v2-case-hero h1 {
  max-width: 850px;
  margin: 16px 0;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.v2-case-hero .lead {
  max-width: 760px;
  color: #5d4c36;
  font-size: 17px;
  line-height: 1.82;
}

.v2-case-proof-card {
  padding: 34px;
  background:
    radial-gradient(circle at 80% 18%, rgba(216, 146, 13, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(255, 250, 240, 0.96), rgba(255, 230, 186, 0.74));
}

.v2-case-proof-card span,
.v2-case-meta {
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
}

.v2-case-proof-card h2 {
  margin: 16px 0;
  font-size: 30px;
  line-height: 1.24;
}

.v2-case-proof-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #5d4c36;
}

.v2-case-proof-card li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--forest);
  font-weight: 950;
}

.v2-case-showcase {
  display: grid;
  gap: 18px;
}

.v2-case-card {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 24px;
  padding: clamp(26px, 3vw, 38px);
}

.v2-case-index {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: #fff7d7;
  background: linear-gradient(145deg, #d8920d, #a86600);
  font-weight: 950;
}

.v2-case-card h2 {
  max-width: 900px;
  margin: 8px 0 12px;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.25;
}

.v2-case-card p:not(.v2-case-meta) {
  max-width: 920px;
  color: #5d4c36;
  font-size: 16px;
  line-height: 1.82;
}

.v2-case-cta {
  padding: clamp(30px, 4vw, 48px);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 230, 186, 0.72));
}

.v2-case-cta h2 {
  max-width: 840px;
  margin: 14px auto 24px;
  font-size: clamp(25px, 2.6vw, 38px);
  line-height: 1.25;
}

.v2-story-window {
  display: grid;
  gap: 18px;
}

.v2-window-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 30px 34px;
  border: 1px solid rgba(226, 186, 119, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.92), rgba(255, 229, 188, 0.62));
  box-shadow: 0 18px 46px rgba(91, 53, 20, 0.09);
}

.v2-window-head h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.22;
}

.v2-story-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: clamp(28px, 3vw, 42px);
  border: 1px solid rgba(226, 186, 119, 0.38);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 18%, rgba(216, 146, 13, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(255, 238, 210, 0.72));
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.1);
}

.v2-story-card::after {
  content: "故事大师";
  position: absolute;
  right: 28px;
  bottom: 18px;
  color: rgba(147, 101, 31, 0.08);
  font-size: 52px;
  font-weight: 950;
  letter-spacing: .08em;
}

.v2-story-card-top {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 14px;
}

.v2-story-card-top span {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff7d7;
  background: linear-gradient(145deg, #d8920d, #a86600);
  font-weight: 950;
}

.v2-story-card-top b {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(13, 95, 77, 0.09);
  font-size: 14px;
}

.v2-story-card > div:last-child {
  position: relative;
  z-index: 1;
}

.v2-story-card h2 {
  max-width: 850px;
  margin: 0 0 14px;
  font-size: clamp(25px, 2.35vw, 36px);
  line-height: 1.24;
  letter-spacing: -0.03em;
}

.v2-story-card p {
  max-width: 900px;
  margin: 0;
  color: #5d4c36;
  font-size: 16px;
  line-height: 1.86;
}

.v2-story-card blockquote {
  max-width: 820px;
  margin: 18px 0;
  padding: 16px 20px;
  border-left: 4px solid rgba(189, 138, 50, 0.74);
  border-radius: 0 16px 16px 0;
  color: #3c3228;
  background: rgba(255, 255, 255, 0.52);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.65;
}

.v2-story-card--preview {
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 260px;
}

.v2-story-card--preview h2 {
  margin-bottom: 18px;
}

.v2-story-card--preview h2 small {
  display: block;
  margin-top: 8px;
  color: var(--forest);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 850;
  letter-spacing: 0;
}

.v2-story-type {
  display: inline-flex;
  margin: 0 0 14px !important;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(243, 232, 209, 0.82);
  color: #a56c0b !important;
  font-size: 14px !important;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.v2-story-summary {
  max-width: 980px !important;
  margin: 2px 0 18px !important;
  padding: 18px 20px;
  border: 1px solid rgba(226, 186, 119, 0.28);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 245, 226, 0.5));
  color: #5d4c36 !important;
  font-size: clamp(15px, 1.05vw, 17px) !important;
  line-height: 1.9 !important;
  font-weight: 650;
}

.v2-before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.v2-before-after p {
  min-height: 118px;
  padding: 18px 20px;
  border: 1px solid rgba(226, 186, 119, 0.32);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.54);
  color: #2b2117;
  font-size: 18px;
  font-weight: 850;
}

.v2-before-after p:last-child {
  border-color: rgba(13, 95, 77, 0.18);
  background: linear-gradient(145deg, rgba(239, 248, 238, 0.78), rgba(255, 251, 241, 0.72));
}

.v2-before-after small {
  display: block;
  margin-bottom: 10px;
  color: #a56c0b;
  font-size: 13px;
  font-weight: 950;
}

.v2-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 950;
}

.v2-testimonial-block {
  display: grid;
  gap: 18px;
}

.v2-testimonial-title {
  max-width: none !important;
  white-space: nowrap;
}

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

.v2-testimonial-grid blockquote {
  min-height: 210px;
  margin: 0;
  padding: 28px;
  border: 1px solid rgba(226, 186, 119, 0.36);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 14%, rgba(216, 146, 13, 0.16), transparent 26%),
    rgba(255, 250, 240, 0.86);
  box-shadow: 0 18px 46px rgba(91, 53, 20, 0.08);
  color: #332719;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.7;
}

.v2-field-block {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(226, 186, 119, 0.38);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(255, 230, 186, 0.68));
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.09);
}

.v2-field-block h2 {
  max-width: 780px;
  margin: 14px 0 24px;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.24;
}

.v2-field-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.v2-field-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(13, 95, 77, 0.08);
  font-weight: 900;
}

@media (max-width: 1380px) {
  .v2-question-layout,
  .v2-free-question-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .v2-discovery-panel {
    position: static;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .v2-case-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .v2-testimonial-title {
    white-space: normal;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-button {
    display: inline-flex;
  }

  .v2-interview-room {
    overflow-x: hidden;
    background:
      linear-gradient(rgba(255, 248, 232, 0.9), rgba(248, 226, 188, 0.9)),
      url("../assets/v2-warm-gold-bg.png") center top / cover scroll;
  }

  .v2-interview-room .shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .v2-room-gate,
  .v2-free-gate {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px;
    min-height: auto;
    padding: 18px 0 44px;
  }

  .v2-gate-copy,
  .v2-access-card {
    width: 100%;
    max-width: none;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .v2-gate-copy {
    min-height: auto;
    justify-content: flex-start;
    background:
      linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 234, 196, 0.74));
  }

  .v2-gate-copy .v2-pill {
    display: inline-flex;
    max-width: 100%;
    min-height: auto;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1.35;
    white-space: normal;
  }

  .v2-gate-copy h1 {
    max-width: none;
    margin: 18px 0 12px;
    font-size: clamp(28px, 6vw, 38px);
    line-height: 1.18;
    letter-spacing: -0.03em;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .v2-gate-copy > p:not(.v2-pill) {
    max-width: none;
    font-size: 16px;
    line-height: 1.72;
  }

  .v2-gate-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    margin-top: 18px;
  }

  .v2-gate-points {
    flex-wrap: wrap;
  }
}

@media (max-width: 760px) {
  .v2-interview-room .shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .v2-room-gate,
  .v2-free-gate {
    display: block !important;
    min-height: auto;
    padding: 18px 0 42px;
  }

  .v2-gate-copy,
  .v2-access-card {
    width: 100%;
    padding: 24px 20px;
    border-radius: 22px;
  }

  .v2-gate-copy {
    margin-bottom: 16px;
  }

  .v2-gate-copy h1 {
    max-width: none;
    font-size: 28px;
    line-height: 1.22;
    letter-spacing: -0.02em;
  }

  .v2-gate-copy > p:not(.v2-pill) {
    font-size: 15px;
    line-height: 1.7;
  }

  .v2-gate-preview {
    grid-template-columns: 1fr;
    margin-top: 18px;
  }

  .v2-question-header h1 {
    font-size: 26px;
    line-height: 1.24;
  }

  .v2-question-layout,
  .v2-free-question-layout {
    display: block !important;
  }

  .v2-ai-host-card {
    min-height: auto;
    padding: 22px;
  }

  .v2-ai-host-card h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .v2-ai-host-card img {
    display: none;
  }

  .v2-question-card h2 {
    font-size: 24px;
  }

  .v2-discovery-panel {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 14px;
  }

  .v2-free-report-hero {
    min-height: auto;
    padding: 26px 22px;
    background: linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 230, 186, 0.74));
  }

  .v2-free-report-hero h1 {
    font-size: 25px;
    line-height: 1.32;
  }

  .v2-free-report-grid {
    grid-template-columns: 1fr;
  }

  .v2-case-hero h1 {
    font-size: 28px;
  }

  .v2-case-card {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-case-proof-card,
  .v2-case-hero-grid > div:first-child,
  .v2-case-card,
  .v2-window-head,
  .v2-story-card,
  .v2-case-cta {
    padding: 24px 20px;
  }

  .v2-window-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-story-card {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .v2-before-after,
  .v2-testimonial-grid {
    grid-template-columns: 1fr;
  }

  .v2-story-card::after {
    display: none;
  }

  .v2-story-card h2 {
    font-size: 24px;
  }

  .v2-story-card blockquote {
    font-size: 16px;
  }
}

/* Host card correction: one warm photographic surface, text never sits on the face. */
.v2-ai-host-card {
  min-height: 270px;
  padding: clamp(26px, 3.2vw, 38px);
  border-color: rgba(226, 186, 119, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.46), 0 18px 48px rgba(91, 53, 20, 0.08);
  background:
    linear-gradient(90deg, rgba(255, 248, 236, 0.96) 0%, rgba(255, 247, 232, 0.88) 35%, rgba(255, 236, 205, 0.42) 62%, rgba(255, 226, 180, 0.2) 100%),
    url("../assets/v2-ai-interviewer-warm.png") right center / auto 112% no-repeat;
}

.v2-ai-host-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.62), transparent 30%),
    radial-gradient(circle at 70% 28%, rgba(255, 215, 144, 0.24), transparent 26%),
    linear-gradient(90deg, rgba(255,255,255,0.18), transparent 64%);
  pointer-events: none;
}

.v2-ai-host-card::after {
  display: none;
}

.v2-ai-host-card > div {
  max-width: min(58%, 600px);
  position: relative;
  z-index: 2;
}

.v2-ai-host-card h2 {
  max-width: 560px;
  font-size: clamp(25px, 2.15vw, 32px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.v2-ai-host-card p:not(.v2-pill) {
  max-width: 540px;
  font-size: 16px;
  line-height: 1.75;
}

.v2-ai-host-card img {
  display: none;
}

@media (max-width: 1180px) {
  .v2-ai-host-card {
    background:
      linear-gradient(90deg, rgba(255, 248, 236, 0.97) 0%, rgba(255, 247, 232, 0.9) 52%, rgba(255, 235, 201, 0.34) 100%),
      url("../assets/v2-ai-interviewer-warm.png") right bottom / auto 100% no-repeat;
  }

  .v2-ai-host-card > div {
    max-width: 64%;
  }
}

@media (max-width: 760px) {
  .v2-ai-host-card {
    min-height: auto;
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 235, 201, 0.72));
  }

  .v2-ai-host-card::before,
  .v2-ai-host-card::after {
    display: none;
  }

  .v2-ai-host-card > div {
    max-width: none;
  }

.v2-ai-host-card h2 {
    font-size: 23px;
  }
}

.v2-ruoyuan-intro {
  max-width: 720px;
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px solid rgba(226, 186, 119, 0.42);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,238,202,.62));
  box-shadow: 0 18px 52px rgba(132, 91, 33, 0.1);
  color: #5f4c35;
  line-height: 1.75;
}

.v2-ruoyuan-intro b {
  color: var(--forest);
  font-size: 15px;
  font-weight: 950;
}

.v2-ruoyuan-intro span {
  font-size: 15px;
  font-weight: 720;
}

.v2-ruoyuan-proof {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: stretch;
}

.v2-ruoyuan-proof-copy,
.v2-proof-card,
.v2-value-reframe,
.v2-home-closing {
  border: 1px solid rgba(226, 186, 119, 0.38);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 8%, rgba(216, 146, 13, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,240,211,.72));
  box-shadow: 0 24px 70px rgba(91, 53, 20, 0.1);
}

.v2-ruoyuan-proof-copy {
  display: grid;
  align-content: center;
  padding: clamp(26px, 4vw, 44px);
}

.v2-ruoyuan-proof-copy h2 {
  margin: 14px 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.v2-ruoyuan-proof-copy p:not(.v2-pill) {
  margin: 0;
  color: #655138;
  font-size: 17px;
  line-height: 1.9;
}

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

.v2-proof-card {
  display: grid;
  gap: 10px;
  min-height: 188px;
  padding: 24px;
}

.v2-proof-card span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff8d7;
  background: linear-gradient(145deg, #d8920d, #a86600);
  font-size: 14px;
  font-weight: 950;
}

.v2-proof-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.v2-proof-card p {
  margin: 0;
  color: #6a573e;
  font-size: 15px;
  line-height: 1.75;
}

.v2-home-section-title {
  max-width: 760px;
  margin: 0 auto 22px;
  text-align: center;
}

.v2-home-section-title h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.16;
}

.v2-value-reframe {
  max-width: 1120px;
  padding: clamp(30px, 5vw, 58px);
  text-align: center;
}

.v2-value-reframe h2 {
  max-width: 980px;
  margin: 16px auto 0;
  color: var(--ink);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.16;
}

.v2-value-reframe p:not(.v2-pill) {
  max-width: 760px;
  margin: 20px auto 0;
  color: #665138;
  font-size: 20px;
  line-height: 1.8;
}

.v2-home-closing {
  display: grid;
  justify-items: center;
  gap: 24px;
  padding: clamp(34px, 6vw, 70px);
  text-align: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(13, 95, 53, 0.16), transparent 24%),
    radial-gradient(circle at 90% 14%, rgba(216, 146, 13, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,236,195,.78));
}

.v2-home-closing h2 {
  max-width: 1060px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(31px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.v2-home-closing-note {
  margin: -6px 0 2px;
  color: #705d42;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

@media (max-width: 980px) {
  .site-header .header-inner {
    flex-wrap: wrap;
    gap: 12px 16px;
    padding: 12px 0 10px;
  }

  .site-header .desktop-nav {
    order: 3;
    flex: 0 0 100%;
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 4px 0 2px;
    scrollbar-width: none;
  }

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

  .site-header .nav-link {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid rgba(226, 186, 119, 0.48);
    border-radius: 999px;
    background: rgba(255, 252, 246, 0.72);
    box-shadow: none;
    font-size: 14px;
  }

  .site-header .nav-link.is-active {
    color: #fffaf0;
    background: linear-gradient(145deg, #0d6539, #073e25);
    border-color: transparent;
  }

  .site-header .mobile-menu-button,
  .site-header .mobile-nav {
    display: none !important;
  }

  .v2-ruoyuan-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand-copy small {
    display: none;
  }

  .site-header .nav-link {
    font-size: 13px;
    padding: 8px 12px;
  }

  .v2-ruoyuan-intro {
    padding: 15px 16px;
    border-radius: 18px;
  }

  .v2-proof-grid {
    grid-template-columns: 1fr;
  }

  .v2-proof-card {
    min-height: auto;
    padding: 20px;
  }

  .v2-value-reframe,
  .v2-home-closing {
    padding: 26px 22px;
    border-radius: 22px;
  }
}

/* Home page art direction — calm hierarchy, warm depth and clear outcomes. */
.v2-home-stage .v2-feature-copy h1 {
  max-width: 590px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.v2-home-stage .v2-feature-copy .lead {
  max-width: 590px;
  font-size: 16px;
  line-height: 1.78;
}

.v2-home-stage .v2-home-hero-lead {
  margin-bottom: 0;
  color: #5f4d36;
  font-size: 18px;
  font-weight: 720;
  line-height: 1.68;
}

.v2-home-hero-line {
  margin: 18px 0 0;
  color: var(--forest);
  font-size: 19px;
  font-weight: 950;
  line-height: 1.5;
}

.v2-home-stage .button-row {
  margin-top: 24px;
}

.v2-home-stage .v2-mini-room {
  grid-template-columns: minmax(0, 1fr);
  align-content: stretch;
  padding: 32px;
  background:
    linear-gradient(90deg, rgba(255, 246, 228, 0.96) 0%, rgba(255, 242, 218, 0.7) 36%, rgba(255, 220, 164, 0.22) 100%),
    url("../assets/v2-ai-interviewer-warm.png") 90% bottom / auto 106% no-repeat;
}

.v2-home-stage .v2-mini-room-head {
  margin-bottom: 0;
}

.v2-home-stage .v2-mini-room::before {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.72), transparent 30%),
    linear-gradient(90deg, rgba(255, 246, 228, 0.92) 0%, rgba(255, 246, 228, 0.66) 54%, rgba(255, 246, 228, 0.18) 100%);
}

.v2-hero-help-path {
  grid-column: 1;
  align-self: center;
  display: grid;
  gap: 0;
  max-width: 320px;
  padding: 18px 0 8px;
}

.v2-hero-help-path > div {
  position: relative;
  width: min(100%, 300px);
  padding: 15px 16px 15px 48px;
  border: 1px solid rgba(226, 186, 119, 0.2);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.54), rgba(255, 248, 233, 0.28));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(8px);
}

.v2-hero-help-path > div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 22px;
  width: 12px;
  height: 12px;
  border: 3px solid rgba(13, 95, 53, 0.78);
  border-radius: 999px;
  background: rgba(255, 248, 233, 0.9);
  box-shadow: 0 0 0 8px rgba(13, 95, 53, 0.08);
}

.v2-hero-help-path strong {
  color: #211911;
  font-size: 17px;
  line-height: 1.3;
}

.v2-hero-help-path p {
  margin: 5px 0 0;
  color: #66533a;
  font-size: 13px;
  line-height: 1.55;
}

.v2-hero-help-path > span {
  width: 1px;
  height: 28px;
  margin-left: 26px;
  overflow: hidden;
  padding-left: 0;
  border-left: 1px solid rgba(181, 117, 6, 0.38);
  color: #b57506;
  font-size: 0;
  font-weight: 950;
  line-height: 1;
}

.v2-home-stage .v2-hero-result-tags {
  align-self: end;
  max-width: none;
  margin-top: 0;
}

.v2-home-stage .v2-hero-result-tags span {
  background: rgba(13, 95, 53, 0.11);
}

.v2-eyebrow {
  margin: 0;
  color: #a86600;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.v2-home-section-title {
  max-width: 720px;
  margin-bottom: 30px;
}

.v2-home-section-title-left {
  max-width: 780px;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.v2-home-section-title h2 {
  margin-top: 10px;
  font-size: clamp(27px, 2.8vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.v2-home-free-entry {
  margin-top: 20px;
  padding-right: 22px;
  padding-left: 22px;
}

.v2-home-entry-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 242, 202, 0.84), transparent 26%),
    radial-gradient(circle at 88% 20%, rgba(239, 191, 103, 0.2), transparent 25%),
    linear-gradient(180deg, #fff9eb 0%, #f9e7bf 100%);
}

.v2-home-entry-section::before,
.v2-home-entry-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.v2-home-entry-section::before {
  top: 70px;
  right: 7%;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(181, 117, 6, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(237, 187, 91, 0.2);
}

.v2-home-entry-section::after {
  bottom: 34px;
  left: 8%;
  width: 110px;
  height: 1px;
  background: rgba(181, 117, 6, 0.18);
  box-shadow: 52px 0 0 rgba(181, 117, 6, 0.1);
}

.v2-home-entry-heading {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto 30px;
  text-align: center;
}

.v2-home-entry-heading h2 {
  max-width: 780px;
  margin: 10px auto 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.v2-home-entry-heading > p:last-child {
  margin: 0;
  color: #69583e;
  font-size: 15px;
  line-height: 1.8;
}

.v2-home-entry-heading strong {
  color: var(--forest);
  font-weight: 900;
}

.v2-home-entry-heading i {
  margin: 0 8px;
  color: #b57506;
  font-style: normal;
}

.v2-home-entry-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.v2-home-entry-card {
  display: flex;
  min-height: 280px;
  padding: 34px;
  border: 1px solid rgba(216, 174, 99, 0.38);
  border-radius: 28px;
  background: rgba(255, 252, 245, 0.88);
  box-shadow: 0 20px 54px rgba(98, 63, 22, 0.1);
  backdrop-filter: blur(10px);
  flex-direction: column;
  justify-content: space-between;
}

.v2-home-entry-products {
  color: #fffaf0;
  border-color: rgba(255, 225, 161, 0.2);
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 216, 128, 0.2), transparent 34%),
    linear-gradient(145deg, #0c6846, #063c2b);
}

.v2-home-entry-card-copy > span {
  display: inline-flex;
  padding: 6px 11px;
  border-radius: 999px;
  color: #a56500;
  background: #fff0ce;
  font-size: 12px;
  font-weight: 900;
}

.v2-home-entry-card h3 {
  margin: 18px 0 6px;
  font-size: 28px;
  line-height: 1.2;
}

.v2-home-entry-card p {
  margin: 8px 0 0;
  color: #6a583f;
  font-size: 14px;
  line-height: 1.7;
}

.v2-home-entry-card .v2-home-entry-subtitle {
  margin-top: 0;
  font-size: 17px;
  font-weight: 800;
}

.v2-home-entry-card-copy > strong {
  display: block;
  margin-top: 5px;
  color: var(--forest);
  font-size: 17px;
}

.v2-home-entry-products p,
.v2-home-entry-products .v2-home-entry-subtitle {
  color: rgba(255, 250, 240, 0.78);
}

.v2-home-entry-path {
  display: flex;
  margin-top: 24px;
  color: rgba(255, 250, 240, 0.94);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.v2-home-entry-path i {
  color: #f7c96c;
  font-style: normal;
}

.v2-home-entry-card .button {
  align-self: flex-start;
  margin-top: 26px;
}

.v2-home-assets-heading {
  position: relative;
  z-index: 1;
  margin: 48px 0 20px;
}

.v2-home-assets-heading h3 {
  margin: 7px 0 0;
  font-size: 25px;
  line-height: 1.25;
}

@media (max-width: 620px) {
  .v2-home-free-entry {
    width: 100%;
    justify-content: center;
  }
}

.v2-home-results-section {
  padding-top: 46px !important;
}

.v2-result-grid,
.v2-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.v2-result-card,
.v2-pain-card {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 190px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(216, 174, 99, 0.3);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(247, 238, 218, 0.68));
  box-shadow: 0 18px 48px rgba(98, 63, 22, 0.08);
}

.v2-result-card:nth-child(2) {
  background: linear-gradient(145deg, rgba(249, 253, 249, 0.96), rgba(226, 240, 233, 0.76));
}

.v2-result-card > span,
.v2-pain-card > span {
  color: #b97906;
  font-size: 13px;
  font-weight: 950;
}

.v2-result-card h3,
.v2-pain-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
}

.v2-result-card p,
.v2-pain-card p {
  margin: 10px 0 0;
  color: #695940;
  font-size: 15px;
  line-height: 1.72;
}

.v2-ruoyuan-profile {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: 18px;
  align-items: stretch;
}

.v2-ruoyuan-person,
.v2-client-results {
  border: 1px solid rgba(216, 174, 99, 0.34);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(250, 232, 196, 0.7));
  box-shadow: 0 22px 60px rgba(98, 63, 22, 0.1);
}

.v2-ruoyuan-person {
  display: grid;
  grid-template-columns: 174px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 26px;
}

.v2-ruoyuan-portrait {
  position: relative;
  height: 232px;
  overflow: hidden;
  border: 6px solid rgba(255, 253, 247, 0.82);
  border-radius: 90px 90px 26px 26px;
  background: #f7e1b8;
  box-shadow: 0 18px 42px rgba(107, 67, 20, 0.16);
}

.v2-ruoyuan-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% 44%;
  transform: scale(1.18);
}

.v2-ruoyuan-person-copy h2 {
  margin: 10px 0 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.15;
}

.v2-ruoyuan-person-copy p:not(.v2-eyebrow) {
  margin: 7px 0 0;
  color: #66543b;
  font-size: 15px;
  line-height: 1.72;
}

.v2-client-results {
  display: grid;
  align-content: center;
  padding: 28px 30px;
  background:
    radial-gradient(circle at 90% 8%, rgba(210, 142, 22, 0.15), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(248, 240, 222, 0.74));
}

.v2-client-result-list {
  display: grid;
  margin-top: 12px;
}

.v2-client-result {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(198, 155, 84, 0.22);
}

.v2-client-result:first-child {
  border-top: 0;
}

.v2-client-result > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff9e9;
  background: var(--forest);
  font-size: 11px;
  font-weight: 950;
}

.v2-client-result strong {
  color: var(--forest);
  font-size: 20px;
  line-height: 1.2;
}

.v2-client-result p {
  margin: 5px 0 0;
  color: #625039;
  font-size: 14px;
  line-height: 1.62;
}

.v2-client-results small {
  margin-top: 8px;
  color: #88765e;
  font-size: 11px;
}

.v2-journey-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 28px 18px;
  border: 1px solid rgba(216, 174, 99, 0.3);
  border-radius: 28px;
  background: rgba(255, 252, 244, 0.78);
  box-shadow: 0 20px 56px rgba(98, 63, 22, 0.08);
}

.v2-journey-step {
  position: relative;
  padding: 10px 20px;
  border-left: 1px solid rgba(194, 155, 91, 0.25);
}

.v2-journey-step:first-child {
  border-left: 0;
}

.v2-journey-step > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff9e7;
  background: linear-gradient(145deg, #0f7150, #07432f);
  box-shadow: 0 9px 20px rgba(8, 83, 55, 0.18);
  font-size: 12px;
  font-weight: 950;
}

.v2-journey-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.v2-journey-step p {
  margin: 10px 0 0;
  color: #6a593f;
  font-size: 14px;
  line-height: 1.7;
}

.v2-pain-card {
  min-height: 170px;
  gap: 8px;
  background: rgba(255, 252, 245, 0.8);
  box-shadow: none;
}

.v2-value-reframe {
  max-width: 1040px;
  padding: clamp(34px, 5vw, 56px);
}

.v2-value-reframe h2 {
  max-width: 780px;
  margin-top: 12px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

.v2-value-reframe p:not(.v2-eyebrow) {
  max-width: 760px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.v2-home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.v2-home-product-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(216, 174, 99, 0.32);
  border-radius: 24px;
  color: inherit;
  background: rgba(255, 252, 245, 0.86);
  box-shadow: 0 16px 42px rgba(98, 63, 22, 0.07);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.v2-home-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(98, 63, 22, 0.12);
}

.v2-home-product-card.is-recommended {
  color: #fffaf0;
  border-color: transparent;
  background: linear-gradient(145deg, #0d6846, #063e2c);
}

.v2-home-product-card > span {
  justify-self: start;
  padding: 5px 10px;
  border-radius: 999px;
  color: #a56500;
  background: #fff0ce;
  font-size: 12px;
  font-weight: 900;
}

.v2-home-product-card h3 {
  margin: 20px 0 8px;
  font-size: 21px;
  line-height: 1.3;
}

.v2-home-product-card > strong {
  display: block;
  margin: 2px 0 10px;
  color: var(--forest);
  font-size: 15px;
  line-height: 1.55;
}

.v2-home-product-card.is-recommended > strong {
  color: #ffe4a6;
}

.v2-home-product-card p {
  margin: 0;
  color: #6a583f;
  font-size: 14px;
  line-height: 1.65;
}

.v2-home-product-card.is-recommended p {
  color: rgba(255, 250, 240, 0.75);
}

.v2-home-product-card b {
  align-self: end;
  margin-top: 20px;
  color: var(--forest);
  font-size: 14px;
}

.v2-home-product-card.is-recommended b {
  color: #ffe4a6;
}

.v2-home-product-card i {
  margin-left: 5px;
  font-style: normal;
}

.v2-audience-section {
  padding-top: 44px !important;
  padding-bottom: 44px !important;
}

.v2-audience-section .audience-layout {
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  padding: 34px 38px;
  border: 1px solid rgba(216, 174, 99, 0.28);
  border-radius: 26px;
  background: rgba(255, 252, 245, 0.72);
}

.v2-audience-section h2 {
  margin: 9px 0 0;
  font-size: 28px;
  line-height: 1.25;
}

.v2-audience-section .chip-list span {
  min-height: 36px;
  padding: 7px 14px;
  font-size: 14px;
}

.v2-home-closing {
  gap: 18px;
  padding: clamp(38px, 5vw, 58px);
}

.v2-home-closing h2 {
  max-width: 820px;
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.18;
}

@media (max-width: 980px) {
  .v2-home-stage .v2-feature-grid,
  .v2-ruoyuan-profile {
    grid-template-columns: 1fr;
  }

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

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

  .v2-home-entry-card {
    min-height: 300px;
  }

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

  .v2-journey-step:nth-child(3) {
    border-left: 0;
  }

  .v2-journey-step:nth-child(5) {
    grid-column: 1 / -1;
  }

  .v2-journey-step:nth-child(n + 3) {
    margin-top: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(194, 155, 91, 0.25);
  }
}

@media (max-width: 700px) {
  .v2-home-stage .v2-feature-copy h1 {
    font-size: 34px;
    line-height: 1.12;
  }

  .v2-home-stage .v2-mini-room {
    min-height: 390px;
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(255, 246, 228, 0.96), rgba(255, 231, 190, 0.52)),
      url("../assets/v2-ai-interviewer-warm.png") 68% bottom / auto 78% no-repeat;
  }

  .v2-home-stage .v2-mini-room::before {
    background: linear-gradient(180deg, rgba(255, 246, 228, 0.96) 0%, rgba(255, 246, 228, 0.7) 58%, rgba(255, 246, 228, 0.2) 100%);
  }

  .v2-home-stage .v2-mini-room-head {
    margin-bottom: 76px;
  }

  .v2-home-stage .v2-mini-question {
    font-size: 20px;
  }

  .v2-result-grid,
  .v2-pain-grid,
  .v2-home-product-grid,
  .v2-journey-path {
    grid-template-columns: 1fr;
  }

  .v2-home-entry-heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .v2-home-entry-heading h2 {
    margin-right: 0;
    margin-left: 0;
    font-size: 29px;
  }

  .v2-home-entry-heading > p:last-child {
    font-size: 14px;
  }

  .v2-home-entry-heading i {
    margin: 0 4px;
  }

  .v2-home-entry-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-home-entry-card {
    min-height: auto;
    padding: 24px 22px;
    border-radius: 24px;
  }

  .v2-home-entry-card h3 {
    font-size: 25px;
  }

  .v2-home-entry-card .button {
    width: 100%;
    justify-content: center;
  }

  .v2-home-assets-heading {
    margin-top: 38px;
  }

  .v2-home-assets-heading h3 {
    font-size: 22px;
  }

  .v2-result-card,
  .v2-pain-card,
  .v2-home-product-card {
    min-height: auto;
    padding: 22px;
  }

  .v2-ruoyuan-person {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 16px;
    padding: 20px;
  }

  .v2-ruoyuan-portrait {
    height: 154px;
    border-radius: 60px 60px 20px 20px;
  }

  .v2-ruoyuan-person-copy h2 {
    font-size: 24px;
  }

  .v2-ruoyuan-person-copy p:not(.v2-eyebrow) {
    font-size: 14px;
    line-height: 1.6;
  }

  .v2-client-results {
    padding: 24px 20px;
  }

  .v2-journey-path {
    padding: 18px 20px;
  }

  .v2-journey-step,
  .v2-journey-step:nth-child(3) {
    padding: 20px 0;
    border-top: 1px solid rgba(194, 155, 91, 0.25);
    border-left: 0;
  }

  .v2-journey-step:first-child {
    border-top: 0;
  }

  .v2-journey-step:nth-child(n + 3) {
    margin-top: 0;
  }

  .v2-journey-step:nth-child(5) {
    grid-column: auto;
  }

  .v2-journey-step > span {
    margin-bottom: 12px;
  }

  .v2-audience-section .audience-layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 22px;
  }

  .v2-audience-section h2 {
    font-size: 25px;
  }

  .v2-home-closing h2 {
    font-size: 30px;
  }
}

/* V2 global comfort system: lighter reading, shorter lines, calmer hierarchy. */
.v2-premium-page h1 {
  letter-spacing: -0.035em;
}

.v2-premium-page .v2-feature-copy h1,
.v2-premium-page .v2-account-hero h1,
.v2-premium-page .v2-page-hero h1 {
  max-width: 760px;
  font-size: clamp(30px, 3.2vw, 43px);
  line-height: 1.18;
}

.v2-premium-page .lead {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.72;
}

.v2-premium-page .v2-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.v2-premium-page .feature-card p,
.v2-premium-page .plan-card p,
.v2-premium-page .dna-card p,
.v2-premium-page .generation-card p,
.v2-premium-page .account-card p {
  line-height: 1.66;
}

.v2-interview-room h1 {
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.2;
}

.v2-interview-room h2 {
  line-height: 1.3;
}

.v2-question-card p,
.v2-ai-host-card p,
.v2-discovery-panel p {
  max-width: 720px;
  line-height: 1.7;
}

@media (max-width: 700px) {
  .v2-premium-page .v2-feature-copy h1,
  .v2-premium-page .v2-account-hero h1,
  .v2-premium-page .v2-page-hero h1,
  .v2-interview-room h1 {
    font-size: 29px;
  }

  .v2-premium-page .lead {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .v2-ruoyuan-person {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .v2-ruoyuan-portrait {
    height: 124px;
  }

  .v2-ruoyuan-person-copy h2 {
    font-size: 21px;
  }

  .v2-ruoyuan-person-copy p:last-child {
    display: none;
  }
}

/* Personal brand story product page. */
.v2-plans-hero {
  display: block;
}

.v2-plans-hero .v2-feature-copy {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 146, 13, 0.16), transparent 25%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(250, 233, 199, 0.72));
}

.v2-plans-hero .v2-feature-copy h1 {
  max-width: 760px;
  font-size: clamp(34px, 3.5vw, 46px);
}

.v2-plans-hero .v2-feature-copy .lead {
  max-width: 760px;
}

/* Product selection as a personal-brand growth roadmap. */
.v2-growth-plans-page {
  background:
    radial-gradient(circle at 10% 24%, rgba(255, 238, 190, 0.72), transparent 28%),
    radial-gradient(circle at 92% 10%, rgba(218, 157, 48, 0.16), transparent 24%),
    linear-gradient(180deg, #fffaf0 0%, #f7e3b8 100%);
}

.v2-growth-plans-hero {
  padding: 30px 0 24px;
}

.v2-growth-plans-heading {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(216, 174, 99, 0.35);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 18%, rgba(216, 146, 13, 0.16), transparent 25%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(250, 233, 199, 0.74));
  box-shadow: 0 24px 68px rgba(98, 63, 22, 0.09);
}

.v2-growth-plans-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(181, 117, 6, 0.14);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 80px rgba(237, 187, 91, 0.24);
}

.v2-growth-plans-heading h1 {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 12px 0 14px;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.v2-growth-plans-heading > p:last-child {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #67553c;
  font-size: 17px;
  line-height: 1.8;
}

.v2-growth-plans-content {
  padding: 28px 0 72px;
}

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

.v2-growth-plan-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 610px;
  padding: 28px 24px;
  overflow: hidden;
  border: 1px solid rgba(216, 174, 99, 0.36);
  border-radius: 26px;
  color: var(--ink);
  background: rgba(255, 252, 245, 0.9);
  box-shadow: 0 18px 48px rgba(98, 63, 22, 0.09);
  flex-direction: column;
}

.v2-growth-plan-card.is-recommended {
  color: #fffaf0;
  border-color: rgba(255, 226, 162, 0.24);
  background:
    radial-gradient(circle at 86% 8%, rgba(255, 216, 128, 0.2), transparent 30%),
    linear-gradient(150deg, #0d6846 0%, #063b2a 100%);
  box-shadow: 0 28px 68px rgba(5, 72, 48, 0.22);
  transform: translateY(-8px);
}

.v2-growth-plan-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 9px;
  min-height: 38px;
  align-items: center;
}

.v2-growth-plan-topline > span {
  display: grid;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: #fff9e8;
  background: #0d6846;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
}

.v2-growth-plan-card.is-recommended .v2-growth-plan-topline > span {
  color: #815200;
  background: #ffe2a0;
}

.v2-growth-plan-topline small {
  color: #8a6c42;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}

.v2-growth-plan-card.is-recommended .v2-growth-plan-topline small {
  color: rgba(255, 250, 240, 0.72);
}

.v2-growth-plan-topline b {
  padding: 5px 8px;
  border-radius: 999px;
  color: #815200;
  background: #ffe2a0;
  font-size: 11px;
}

.v2-growth-plan-name {
  margin-top: 22px;
}

.v2-growth-plan-name h2 {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.25;
}

.v2-growth-plan-name strong {
  color: #a86600;
  font-size: 16px;
}

.v2-growth-plan-card.is-recommended .v2-growth-plan-name strong {
  color: #ffe2a0;
}

.v2-growth-plan-fit {
  min-height: 92px;
  margin-top: 22px;
  padding: 16px;
  border-radius: 17px;
  background: rgba(245, 232, 204, 0.54);
}

.v2-growth-plan-card.is-recommended .v2-growth-plan-fit {
  background: rgba(255, 250, 240, 0.1);
}

.v2-growth-plan-fit span,
.v2-growth-plan-help h3,
.v2-growth-plan-gains h3 {
  color: #a86600;
  font-size: 12px;
  font-weight: 900;
}

.v2-growth-plan-card.is-recommended .v2-growth-plan-fit span,
.v2-growth-plan-card.is-recommended .v2-growth-plan-help h3,
.v2-growth-plan-card.is-recommended .v2-growth-plan-gains h3 {
  color: #ffe2a0;
}

.v2-growth-plan-fit p {
  margin: 6px 0 0;
  color: #594831;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.55;
}

.v2-growth-plan-card.is-recommended .v2-growth-plan-fit p {
  color: rgba(255, 250, 240, 0.88);
}

.v2-growth-plan-help,
.v2-growth-plan-gains {
  margin-top: 22px;
}

.v2-growth-plan-help h3,
.v2-growth-plan-gains h3 {
  margin: 0 0 9px;
}

.v2-growth-plan-help ul,
.v2-growth-plan-gains ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.v2-growth-plan-help li,
.v2-growth-plan-gains li {
  color: #5f4e37;
  font-size: 14px;
  line-height: 1.5;
}

.v2-growth-plan-help li::before {
  content: "·";
  margin-right: 7px;
  color: #b57506;
  font-weight: 900;
}

.v2-growth-plan-gains li {
  color: var(--forest);
  font-weight: 750;
}

.v2-growth-plan-card.is-recommended li {
  color: rgba(255, 250, 240, 0.86);
}

.v2-growth-plan-card .button {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

@media (max-width: 1160px) {
  .v2-growth-plans-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .v2-growth-plan-card {
    min-height: 570px;
  }

  .v2-growth-plan-card.is-recommended {
    transform: none;
  }
}

@media (max-width: 700px) {
  .v2-growth-plans-hero {
    padding-top: 20px;
  }

  .v2-growth-plans-hero .v2-back-link {
    margin-bottom: 16px;
  }

  .v2-growth-plans-heading {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .v2-growth-plans-heading::after {
    right: -44px;
    opacity: 0.6;
  }

  .v2-growth-plans-heading h1 {
    max-width: 290px;
    font-size: 30px;
  }

  .v2-growth-plans-heading > p:last-child {
    max-width: 290px;
    font-size: 14px;
  }

  .v2-growth-plans-content {
    padding-top: 12px;
  }

  .v2-growth-plans-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-growth-plan-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .v2-growth-plan-fit {
    min-height: 0;
  }

  .v2-growth-plan-card .button {
    margin-top: 26px;
  }
}

/* Product page: one interview foundation, multiple brand outcomes. */
.v2-growth-plans-heading-rich {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: clamp(24px, 4vw, 64px);
  align-items: center;
}

.v2-growth-plans-heading-rich > div,
.v2-growth-asset-path {
  position: relative;
  z-index: 1;
}

.v2-growth-asset-path {
  display: grid;
  gap: 5px;
  padding: 20px 22px;
  border: 1px solid rgba(191, 136, 38, 0.22);
  border-radius: 22px;
  background: rgba(255, 251, 241, 0.62);
  box-shadow: 0 12px 32px rgba(102, 66, 20, 0.06);
}

.v2-growth-asset-path span,
.v2-growth-asset-path i {
  color: #a86600;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.v2-growth-asset-path strong {
  color: var(--forest);
  font-size: 17px;
}

.v2-growth-foundation-section {
  padding: 0 0 18px;
}

.v2-growth-foundation {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 20px;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(216, 174, 99, 0.34);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 253, 247, 0.82), rgba(246, 231, 197, 0.74));
  box-shadow: 0 18px 48px rgba(98, 63, 22, 0.07);
}

.v2-growth-foundation-copy h2,
.v2-growth-products-heading h2,
.v2-growth-reuse h2 {
  margin: 9px 0 12px;
  color: var(--ink);
  font-size: clamp(27px, 2.6vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.03em;
}

.v2-growth-foundation-copy p:last-child {
  max-width: 540px;
  margin: 0;
  color: #67553c;
  font-size: 16px;
  line-height: 1.8;
}

.v2-growth-foundation-result {
  display: inline-flex;
  margin-top: 18px;
  padding: 10px 15px;
  border: 1px solid rgba(13, 104, 70, 0.16);
  border-radius: 999px;
  color: var(--forest);
  background: rgba(232, 241, 229, 0.68);
  font-size: 14px;
}

.v2-growth-foundation-core {
  display: flex;
  min-width: 0;
  padding: 26px;
  border-radius: 22px;
  background: linear-gradient(145deg, #0e6847, #063d2b);
  box-shadow: 0 18px 38px rgba(5, 73, 48, 0.16);
  color: #fffaf0;
  flex-direction: column;
  justify-content: center;
}

.v2-growth-foundation-core small {
  color: #ffe2a0;
  font-size: 13px;
  font-weight: 850;
}

.v2-growth-foundation-core strong {
  margin: 12px 0;
  font-size: clamp(20px, 2.1vw, 29px);
  line-height: 1.35;
}

.v2-growth-foundation-core strong i {
  color: #ffe2a0;
  font-style: normal;
}

.v2-growth-foundation-core p {
  margin: 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: 14px;
  line-height: 1.75;
}

.v2-growth-products-heading {
  margin: 4px 0 24px;
  text-align: center;
}

.v2-growth-products-heading h2 {
  margin-bottom: 0;
}

.v2-growth-plans-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-growth-plan-name em {
  display: block;
  margin-top: 5px;
  color: #8e7657;
  font-size: 12px;
  font-style: normal;
  text-decoration: line-through;
}

.v2-growth-plan-card.is-recommended .v2-growth-plan-name em {
  color: rgba(255, 250, 240, 0.68);
}

.v2-growth-plan-closing {
  margin: 22px 0 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 850;
  line-height: 1.65;
}

.v2-growth-plan-card.is-recommended .v2-growth-plan-closing {
  color: #ffe2a0;
}

.v2-growth-reuse-section {
  padding: 12px 0 42px;
}

.v2-growth-reuse {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(26px, 4vw, 46px);
  border: 1px solid rgba(216, 174, 99, 0.3);
  border-radius: 30px;
  background: rgba(255, 252, 245, 0.72);
}

.v2-growth-reuse h2 { margin-bottom: 0; }

.v2-growth-reuse-steps { display: grid; gap: 12px; }

.v2-growth-reuse-steps article {
  display: grid;
  gap: 5px;
  padding: 16px 18px;
  border-left: 3px solid #c58a22;
  border-radius: 0 15px 15px 0;
  background: rgba(249, 232, 195, 0.45);
}

.v2-growth-reuse-steps span { color: #a86600; font-size: 12px; font-weight: 900; }
.v2-growth-reuse-steps strong { color: var(--forest); font-size: 16px; line-height: 1.55; }

.v2-growth-comparison-section {
  padding-top: 26px;
}

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

.v2-growth-comparison article {
  display: grid;
  gap: 18px;
  min-height: 190px;
  padding: clamp(24px, 3.5vw, 38px);
  border: 1px solid rgba(216, 174, 99, 0.32);
  border-radius: 28px;
  background: rgba(255, 252, 245, 0.78);
  box-shadow: 0 18px 42px rgba(98, 63, 22, 0.07);
  align-content: center;
}

.v2-growth-comparison article.is-storymaster {
  color: #fffaf0;
  border-color: rgba(255, 226, 162, 0.24);
  background: linear-gradient(145deg, #0e6847, #063d2b);
}

.v2-growth-comparison span {
  color: #a86600;
  font-size: 14px;
  font-weight: 900;
}

.v2-growth-comparison .is-storymaster span {
  color: #ffe2a0;
}

.v2-growth-comparison strong {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-size: clamp(18px, 1.9vw, 25px);
  line-height: 1.55;
  flex-wrap: wrap;
  align-items: center;
}

.v2-growth-comparison .is-storymaster strong {
  color: #fffaf0;
}

.v2-growth-comparison strong i {
  color: #c58a22;
  font-style: normal;
}

.v2-growth-comparison-summary {
  padding: 36px 20px 8px;
  text-align: center;
}

.v2-growth-comparison-summary h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 40px);
}

.v2-growth-comparison-summary p {
  margin: 0;
  color: var(--forest);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 850;
}

.v2-growth-final-cta { padding: 0 0 72px; text-align: center; }
.v2-growth-final-cta .shell {
  display: flex;
  min-height: 225px;
  padding: 36px;
  border: 1px solid rgba(216, 174, 99, 0.34);
  border-radius: 30px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 226, 162, 0.58), transparent 52%), rgba(255, 253, 247, 0.78);
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.v2-growth-final-cta p { margin: 0 0 8px; color: var(--ink); font-size: clamp(27px, 3vw, 38px); font-weight: 900; }
.v2-growth-final-cta span { margin-bottom: 20px; color: #67553c; font-size: 16px; }

@media (max-width: 1160px) {
  .v2-growth-plans-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .v2-growth-plans-heading-rich,
  .v2-growth-foundation,
  .v2-growth-reuse { grid-template-columns: 1fr; }
  .v2-growth-plans-heading-rich { gap: 18px; }
  .v2-growth-asset-path { max-width: 100%; }
  .v2-growth-foundation-core { padding: 22px; }
  .v2-growth-products-heading { text-align: left; }
  .v2-growth-comparison { grid-template-columns: 1fr; }
  .v2-growth-comparison article { min-height: 0; }
  .v2-growth-comparison strong { display: grid; grid-template-columns: 1fr; }
  .v2-growth-comparison-summary { padding-inline: 0; text-align: left; }
  .v2-growth-reuse-section { padding-bottom: 26px; }
  .v2-growth-final-cta { padding-bottom: 48px; }
  .v2-growth-final-cta .shell { min-height: 0; padding: 30px 22px; }
}

.v2-brand-story-hero {
  padding: 30px 0 24px;
}

.v2-brand-story-hero-grid {
  display: block;
}

.v2-brand-story-copy,
.v2-brand-story-visual {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(216, 174, 99, 0.36);
  border-radius: 28px;
  box-shadow: 0 24px 68px rgba(98, 63, 22, 0.1);
}

.v2-brand-story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 58px);
  background: rgba(255, 252, 245, 0.88);
}

.v2-brand-story-copy h1 {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--ink);
  font-size: clamp(36px, 3.7vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.v2-brand-story-copy .lead {
  max-width: 650px;
  margin: 20px 0 0;
  color: #625139;
  font-size: 16px;
  line-height: 1.82;
}

.v2-brand-story-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.v2-brand-story-meta span {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #5e4b34;
  background: rgba(13, 95, 53, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.v2-brand-story-meta b {
  color: var(--forest);
  font-size: 18px;
}

.v2-brand-story-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 38px 46px;
  background:
    linear-gradient(180deg, rgba(255, 244, 220, 0.18), rgba(255, 239, 205, 0.92)),
    url("../assets/v2-ai-interviewer-warm.png") 58% center / cover no-repeat;
}

.v2-brand-story-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 215, 140, 0.26), transparent 24%),
    linear-gradient(90deg, rgba(255, 247, 230, 0.35), transparent 60%);
}

.v2-brand-story-visual > * {
  position: relative;
  z-index: 1;
}

.v2-brand-story-visual-head {
  position: absolute;
  top: 28px;
  right: 30px;
  left: 30px;
  display: flex;
  justify-content: space-between;
  color: var(--forest);
  font-size: 14px;
  font-weight: 950;
}

.v2-brand-story-visual-head b {
  color: #a76700;
}

.v2-brand-story-visual blockquote {
  max-width: 760px;
  margin: 0;
  padding: 24px 26px;
  border: 1px solid rgba(216, 174, 99, 0.34);
  border-radius: 22px;
  color: #211910;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 18px 50px rgba(83, 53, 20, 0.12);
  backdrop-filter: blur(10px);
  font-size: clamp(25px, 2.6vw, 36px);
  font-weight: 900;
  line-height: 1.55;
}

.v2-brand-story-visual-tags {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.v2-brand-story-visual-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
}

.v2-brand-story-visual-bottom .v2-brand-story-visual-tags {
  margin-top: 0;
}

.v2-brand-story-visual-tags span {
  padding: 6px 11px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(255, 253, 248, 0.78);
  font-size: 12px;
  font-weight: 850;
}

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

.v2-brand-story-step {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 18px;
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(216, 174, 99, 0.3);
  border-radius: 24px;
  background: rgba(255, 252, 245, 0.84);
  box-shadow: 0 16px 44px rgba(98, 63, 22, 0.07);
}

.v2-brand-story-step:first-child,
.v2-brand-story-step:last-child {
  background: linear-gradient(145deg, rgba(248, 253, 249, 0.95), rgba(225, 239, 232, 0.76));
}

.v2-brand-story-step:last-child {
  grid-column: 1 / -1;
  min-height: 170px;
}

.v2-brand-story-step-index {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff9e8;
  background: linear-gradient(145deg, #0e6d4b, #06412d);
  font-size: 12px;
  font-weight: 950;
}

.v2-brand-story-step h3 {
  margin: 3px 0 10px;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.3;
}

.v2-brand-story-step p {
  margin: 0;
  color: #63523a;
  font-size: 14px;
  line-height: 1.72;
}

.v2-brand-story-step small {
  display: block;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(198, 155, 84, 0.2);
  color: #917247;
  font-size: 12px;
  line-height: 1.6;
}

.v2-brand-story-standard {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(216, 174, 99, 0.3);
  border-radius: 28px;
  background: rgba(255, 252, 245, 0.82);
}

.v2-brand-story-standard h2 {
  margin: 11px 0 12px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.22;
}

.v2-brand-story-standard p:not(.v2-eyebrow) {
  margin: 0;
  color: #65543c;
  font-size: 15px;
  line-height: 1.75;
}

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

.v2-standard-grid span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 13px 16px;
  border-radius: 16px;
  color: #3d3123;
  background: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 850;
}

.v2-standard-grid b {
  color: #b27204;
  font-size: 12px;
}

.v2-brand-story-cta h2 {
  max-width: 880px;
  font-size: clamp(28px, 3vw, 40px);
}

.v2-brand-story-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  justify-items: stretch;
  align-items: center;
  gap: 38px;
  text-align: left;
}

.v2-brand-story-cta-copy h2 {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.24;
  letter-spacing: -0.035em;
}

.v2-brand-story-cta-copy > p:not(.v2-eyebrow) {
  max-width: 700px;
  margin: 14px 0 0;
  color: #65543c;
  font-size: 15px;
  line-height: 1.75;
}

.v2-brand-story-cta-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.v2-brand-story-cta-notes span {
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(13, 95, 53, 0.08);
  font-size: 12px;
  font-weight: 850;
}

.v2-brand-story-cta-action {
  display: grid;
  justify-items: start;
  gap: 12px;
  min-width: 240px;
  padding: 24px;
  border: 1px solid rgba(216, 174, 99, 0.28);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.68);
}

.v2-brand-story-cta-action > span {
  color: #806a4b;
  font-size: 13px;
  line-height: 1.55;
}

.v2-brand-story-cta-action .button {
  width: 100%;
  justify-content: center;
}

.v2-brand-story-cta-action b {
  font-size: inherit;
}

@media (max-width: 980px) {
  .v2-brand-story-hero-grid,
  .v2-brand-story-standard {
    grid-template-columns: 1fr;
  }

  .v2-brand-story-copy,
  .v2-brand-story-visual {
    min-height: 520px;
  }

  .v2-brand-story-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .v2-brand-story-cta-action {
    min-width: 0;
  }
}

@media (max-width: 700px) {
  .v2-brand-story-hero {
    padding-top: 18px;
  }

  .v2-brand-story-copy {
    min-height: auto;
    padding: 28px 22px;
  }

  .v2-brand-story-copy h1 {
    font-size: 34px;
    line-height: 1.13;
  }

  .v2-brand-story-visual {
    min-height: 460px;
    padding: 22px;
    background-position: 62% center;
  }

  .v2-brand-story-visual blockquote {
    padding: 20px;
    font-size: 19px;
  }

  .v2-brand-story-visual-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .v2-brand-story-steps {
    grid-template-columns: 1fr;
  }

  .v2-brand-story-step:last-child {
    grid-column: auto;
  }

  .v2-brand-story-step {
    min-height: auto;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
    padding: 22px 18px;
  }

  .v2-brand-story-step-index {
    width: 38px;
    height: 38px;
  }

  .v2-brand-story-standard {
    gap: 24px;
    padding: 28px 22px;
  }

  .v2-brand-story-standard h2 {
    font-size: 27px;
  }

  .v2-brand-story-cta {
    padding: 28px 22px;
  }

  .v2-brand-story-cta-copy h2 {
    font-size: 28px;
  }

  .v2-standard-grid {
    grid-template-columns: 1fr;
  }
}

/* Public product page: homepage trust package */
.v2-homepage-trust-product-page {
  background:
    radial-gradient(circle at 86% 8%, rgba(211, 142, 18, .16), transparent 30%),
    radial-gradient(circle at 10% 40%, rgba(13, 95, 53, .07), transparent 28%),
    var(--paper);
}

.v2-trust-product-hero,
.v2-trust-product-section,
.v2-trust-product-cta {
  position: relative;
  padding: clamp(34px, 5vw, 72px) 0;
}

.v2-trust-product-hero {
  padding-top: 34px;
  padding-bottom: 18px;
}

.v2-trust-product-hero-grid,
.v2-trust-product-problems,
.v2-trust-product-process,
.v2-trust-product-score,
.v2-trust-product-delivery,
.v2-trust-product-cta .shell {
  border: 1px solid rgba(226, 186, 119, .38);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 220, 148, .30), transparent 30%),
    linear-gradient(135deg, rgba(255, 253, 246, .92), rgba(255, 243, 218, .76));
  box-shadow: 0 26px 70px rgba(96, 61, 20, .10);
  backdrop-filter: blur(16px);
}

.v2-trust-product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .34fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  min-height: 430px;
  padding: clamp(30px, 5vw, 60px);
}

.v2-trust-product-hero h1 {
  max-width: 760px;
  margin: 20px 0 16px;
  color: var(--ink);
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.12;
  letter-spacing: -.045em;
}

.v2-trust-product-lead {
  max-width: 820px;
  margin: 0 0 10px;
  color: var(--forest);
  font-size: clamp(19px, 1.8vw, 25px);
  font-weight: 950;
  line-height: 1.6;
}

.v2-trust-product-hero p:not(.v2-pill):not(.v2-trust-product-lead) {
  max-width: 760px;
  margin: 0 0 24px;
  color: #6f5b40;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.85;
}

.v2-trust-product-path-card {
  display: grid;
  justify-items: center;
  gap: 9px;
  padding: 28px 24px;
  border: 1px solid rgba(13, 95, 53, .10);
  border-radius: 26px;
  background: rgba(255, 255, 255, .46);
  text-align: center;
}

.v2-trust-product-path-card span {
  color: #b16d00;
  font-size: 15px;
  font-weight: 950;
}

.v2-trust-product-path-card strong {
  color: var(--forest);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.25;
}

.v2-trust-product-path-card i {
  color: #c78917;
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
}

.v2-trust-product-problems,
.v2-trust-product-process,
.v2-trust-product-score,
.v2-trust-product-delivery {
  padding: clamp(28px, 4.5vw, 52px);
}

.v2-trust-product-problems h2,
.v2-trust-product-process h2,
.v2-trust-product-score h2,
.v2-trust-product-delivery h2,
.v2-trust-product-cta h2 {
  max-width: 900px;
  margin: 10px 0 22px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.v2-trust-product-problem-grid,
.v2-trust-product-story-grid,
.v2-trust-product-process-grid,
.v2-trust-score-list,
.v2-trust-delivery-list {
  display: grid;
  gap: 16px;
}

.v2-trust-product-problem-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-trust-product-problem-grid article,
.v2-trust-product-question-card,
.v2-trust-product-story-card,
.v2-trust-product-process-grid article,
.v2-trust-product-check-card,
.v2-trust-score-list article,
.v2-trust-delivery-list article {
  border: 1px solid rgba(226, 186, 119, .32);
  border-radius: 22px;
  background: rgba(255, 252, 246, .68);
  box-shadow: 0 16px 42px rgba(96, 61, 20, .065);
}

.v2-trust-product-problem-grid article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 22px;
}

.v2-trust-product-problem-grid b {
  font-size: 22px;
}

.v2-trust-product-problem-grid strong {
  color: var(--ink);
  font-size: 20px;
}

.v2-trust-product-problem-grid span,
.v2-trust-product-question-card p,
.v2-trust-product-story-card p,
.v2-trust-product-story-card small,
.v2-trust-product-process-grid p,
.v2-trust-product-check-card p,
.v2-trust-product-check-card small,
.v2-trust-score-list span,
.v2-trust-delivery-list p,
.v2-trust-product-cta p {
  color: #6f5b40;
  line-height: 1.78;
}

.v2-trust-product-question-card {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 252, 246, .84), rgba(240, 248, 242, .68));
}

.v2-trust-product-question-card h3,
.v2-trust-product-question-card p {
  margin: 0;
}

.v2-trust-product-question-card strong {
  color: var(--forest);
  font-size: 18px;
}

.v2-trust-product-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-trust-product-story-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 420px;
  padding: 26px;
}

.v2-trust-product-story-card > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff8e8;
  background: #c78508;
  font-weight: 950;
}

.v2-trust-product-story-card h3 {
  margin: 2px 0 0;
  font-size: 27px;
  line-height: 1.22;
}

.v2-trust-product-story-card strong {
  color: var(--forest);
  font-size: 17px;
}

.v2-trust-product-story-card p,
.v2-trust-product-story-card small {
  margin: 0;
}

.v2-trust-product-story-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.v2-trust-product-story-card div b,
.v2-trust-product-check-card div span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(13, 95, 53, .08);
  font-size: 12px;
  font-weight: 850;
}

.v2-trust-product-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-trust-product-process-grid article {
  padding: 24px;
}

.v2-trust-product-process-grid span {
  color: #b16d00;
  font-weight: 950;
}

.v2-trust-product-process-grid h3 {
  margin: 12px 0 8px;
  font-size: 23px;
}

.v2-trust-product-check-card {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 24px;
  background: rgba(239, 248, 238, .48);
}

.v2-trust-product-check-card h3,
.v2-trust-product-check-card p {
  margin: 0;
}

.v2-trust-product-check-card h3 {
  color: var(--forest);
  font-size: 24px;
}

.v2-trust-product-check-card div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.v2-trust-product-score {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
}

.v2-trust-product-score p:not(.v2-eyebrow) {
  color: #6f5b40;
  font-size: 17px;
  line-height: 1.8;
}

.v2-trust-score-list {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.v2-trust-score-list article {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: 18px;
}

.v2-trust-score-list strong {
  color: var(--forest);
  font-size: 18px;
}

.v2-trust-delivery-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-trust-delivery-list article {
  min-height: 170px;
  padding: 24px;
}

.v2-trust-delivery-list h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 24px;
}

.v2-trust-delivery-list p {
  margin: 0;
}

.v2-trust-product-cta {
  padding-top: 16px;
  text-align: center;
}

.v2-trust-product-cta .shell {
  display: grid;
  justify-items: center;
  padding: clamp(34px, 5vw, 58px);
}

.v2-trust-product-cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.v2-trust-product-cta p {
  max-width: 780px;
  margin: 0 0 22px;
  font-size: 18px;
}

@media (max-width: 1020px) {
  .v2-trust-product-hero-grid,
  .v2-trust-product-score,
  .v2-trust-product-problem-grid,
  .v2-trust-product-story-grid,
  .v2-trust-product-process-grid,
  .v2-trust-score-list,
  .v2-trust-delivery-list {
    grid-template-columns: 1fr;
  }

  .v2-trust-product-story-card {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .v2-trust-product-hero,
  .v2-trust-product-section,
  .v2-trust-product-cta {
    padding: 22px 0;
  }

  .v2-trust-product-hero-grid,
  .v2-trust-product-problems,
  .v2-trust-product-process,
  .v2-trust-product-score,
  .v2-trust-product-delivery,
  .v2-trust-product-cta .shell {
    border-radius: 24px;
    padding: 24px 18px;
  }

  .v2-trust-product-hero h1 {
    font-size: 36px;
  }

  .v2-trust-product-problems h2,
  .v2-trust-product-process h2,
  .v2-trust-product-score h2,
  .v2-trust-product-delivery h2,
  .v2-trust-product-cta h2 {
    font-size: 30px;
  }
}

/* Personal brand story product page — five-screen narrative */
.v2-brand-story-page {
  --bs-cream: #fffaf0;
  --bs-warm: #f8e6bf;
  --bs-gold: #bc7700;
  --bs-green: #086344;
}

.v2-bs-hero,
.v2-bs-section {
  position: relative;
  padding: clamp(54px, 7vw, 94px) 0;
}

.v2-bs-hero {
  padding-top: 32px;
}

.v2-bs-hero::before,
.v2-bs-process-section::before,
.v2-bs-change-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, .72), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(233, 176, 66, .16), transparent 26%);
}

.v2-bs-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(206, 152, 61, .34);
  border-radius: 32px;
  background: linear-gradient(120deg, rgba(255, 252, 245, .98), rgba(249, 229, 190, .82));
  box-shadow: 0 26px 74px rgba(94, 59, 17, .11);
}

.v2-bs-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 5vw, 72px);
}

.v2-bs-kicker {
  margin: 0 0 18px;
  color: var(--bs-gold);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .06em;
}

.v2-bs-hero h1 {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 4.25vw, 58px);
  line-height: 1.14;
  letter-spacing: -.045em;
}

.v2-bs-lead {
  max-width: 610px;
  margin: 24px 0 0;
  color: #67553d;
  font-size: 17px;
  line-height: 1.85;
}

.v2-bs-inline-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--bs-green);
  font-size: 13px;
  font-weight: 850;
}

.v2-bs-inline-tags i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d79a31;
}

.v2-bs-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.v2-bs-portrait {
  position: relative;
  min-height: 650px;
  background:
    linear-gradient(90deg, #f9e9c8 0%, rgba(249, 233, 200, .2) 28%, rgba(248, 228, 190, .08) 100%),
    url("../assets/v2-ai-interviewer-warm.png") 70% center / cover no-repeat;
}

.v2-bs-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 245, 222, .12), transparent 52%, rgba(77, 43, 9, .12));
}

.v2-bs-portrait-name {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: 36px;
  display: grid;
  justify-items: end;
  color: var(--bs-green);
}

.v2-bs-portrait-name span {
  font-size: 12px;
  font-weight: 800;
}

.v2-bs-portrait-name strong {
  font-size: 22px;
}

.v2-bs-proof-tags {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  justify-content: center;
  gap: 9px;
}

.v2-bs-proof-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  color: #075a3e;
  background: rgba(255, 253, 247, .8);
  box-shadow: 0 9px 25px rgba(68, 41, 13, .08);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 850;
}

.v2-bs-section-head {
  position: relative;
  max-width: 780px;
  margin: 0 auto 38px;
  text-align: center;
}

.v2-bs-section-head h2,
.v2-bs-understand h2,
.v2-bs-result h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.2;
  letter-spacing: -.04em;
}

.v2-bs-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(211, 164, 86, .28);
  border-radius: 28px;
  background: rgba(255, 252, 245, .8);
  box-shadow: 0 20px 55px rgba(94, 59, 17, .08);
}

.v2-bs-process-card {
  position: relative;
  min-height: 260px;
  padding: 30px 25px;
}

.v2-bs-process-card + .v2-bs-process-card {
  border-left: 1px solid rgba(211, 164, 86, .22);
}

.v2-bs-process-card:nth-child(2n) {
  background: rgba(225, 239, 231, .34);
}

.v2-bs-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff8e8;
  background: linear-gradient(145deg, #0d7250, #06442f);
  font-size: 12px;
  font-weight: 950;
}

.v2-bs-process-card h3 {
  margin: 24px 0 12px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.35;
}

.v2-bs-process-card p {
  margin: 0;
  color: #705d43;
  font-size: 14px;
  line-height: 1.75;
}

.v2-bs-understand-section {
  background: linear-gradient(135deg, rgba(231, 242, 235, .58), rgba(255, 244, 219, .74));
}

.v2-bs-understand {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.v2-bs-understand-copy > p:not(.v2-bs-kicker) {
  max-width: 600px;
  margin: 20px 0 0;
  color: #68563e;
  font-size: 16px;
  line-height: 1.8;
}

.v2-bs-understand-copy > p + p:not(.v2-bs-kicker) {
  margin-top: 4px;
  color: var(--bs-green);
  font-weight: 800;
}

.v2-bs-standards,
.v2-bs-use-card {
  padding: clamp(30px, 4vw, 48px);
  border: 1px solid rgba(211, 164, 86, .28);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 253, 248, .88), rgba(255, 243, 217, .6));
  box-shadow: 0 22px 58px rgba(94, 59, 17, .09);
}

.v2-bs-card-label {
  margin: 0 0 22px;
  color: #8b6d42;
  font-size: 13px;
  font-weight: 900;
}

.v2-bs-standards > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.v2-bs-standards span,
.v2-bs-benefits span {
  display: flex;
  align-items: center;
  min-height: 50px;
  color: #184f3c;
  font-size: 15px;
  font-weight: 850;
}

.v2-bs-standards span {
  padding: 12px 15px;
  border-radius: 15px;
  background: rgba(255, 255, 255, .62);
}

.v2-bs-result {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: center;
}

.v2-bs-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 18px;
  margin-top: 28px;
}

.v2-bs-use-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.v2-bs-use-list span {
  padding: 8px 12px;
  border-radius: 999px;
  color: #625038;
  background: rgba(13, 95, 53, .07);
  font-size: 13px;
  font-weight: 800;
}

.v2-bs-use-cta {
  margin-top: 30px;
  padding-top: 28px;
  border-top: 1px solid rgba(189, 139, 56, .24);
}

.v2-bs-use-cta h3 {
  margin: 0;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.24;
}

.v2-bs-use-cta p {
  margin: 10px 0 20px;
  color: #705d43;
  font-size: 14px;
}

.v2-bs-change-section {
  background: linear-gradient(180deg, rgba(255, 243, 216, .4), rgba(248, 226, 181, .7));
}

.v2-bs-changes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.v2-bs-change-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 150px;
  padding: 24px 26px;
  border: 1px solid rgba(211, 164, 86, .27);
  border-radius: 22px;
  background: rgba(255, 253, 248, .78);
}

.v2-bs-change-card small {
  color: #9a7c53;
  font-size: 12px;
  font-weight: 850;
}

.v2-bs-change-card div:last-child small {
  color: var(--bs-green);
}

.v2-bs-change-card p {
  margin: 7px 0 0;
  color: #5f4d36;
  font-size: 15px;
  line-height: 1.55;
}

.v2-bs-change-card div:last-child p {
  color: #193d30;
  font-weight: 850;
}

.v2-bs-change-card b {
  color: #c17c09;
  font-size: 20px;
}

.v2-bs-closing {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 28px;
  padding: 38px 42px;
  border: 1px solid rgba(211, 164, 86, .28);
  border-radius: 26px;
  background: linear-gradient(120deg, rgba(255, 253, 248, .9), rgba(225, 239, 231, .72));
}

.v2-bs-closing h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.28;
  letter-spacing: -.035em;
}

@media (max-width: 1080px) {
  .v2-bs-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .8fr);
  }

  .v2-bs-process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .v2-bs-process-card + .v2-bs-process-card {
    border-left: 0;
  }

  .v2-bs-process-card {
    border-bottom: 1px solid rgba(211, 164, 86, .22);
  }
}

@media (max-width: 820px) {
  .v2-bs-hero-grid,
  .v2-bs-understand,
  .v2-bs-result {
    grid-template-columns: 1fr;
  }

  .v2-bs-hero-copy {
    padding-bottom: 38px;
  }

  .v2-bs-portrait {
    min-height: 440px;
    background-position: 66% center;
  }

  .v2-bs-understand,
  .v2-bs-result {
    gap: 30px;
  }

  .v2-bs-changes {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .v2-bs-hero,
  .v2-bs-section {
    padding: 50px 0;
  }

  .v2-bs-hero {
    padding-top: 16px;
  }

  .v2-bs-hero-grid {
    min-height: 0;
    border-radius: 24px;
  }

  .v2-bs-hero-copy {
    padding: 32px 22px 30px;
  }

  .v2-bs-hero h1 {
    font-size: 36px;
    line-height: 1.16;
  }

  .v2-bs-lead {
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.75;
  }

  .v2-bs-lead br {
    display: none;
  }

  .v2-bs-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 26px;
  }

  .v2-bs-actions .button,
  .v2-bs-use-cta .button,
  .v2-bs-closing .button {
    width: 100%;
    justify-content: center;
  }

  .v2-bs-portrait {
    min-height: 350px;
    background-position: 64% center;
  }

  .v2-bs-portrait-name {
    top: 20px;
    right: 20px;
  }

  .v2-bs-proof-tags {
    right: 14px;
    bottom: 16px;
    left: 14px;
    gap: 5px;
  }

  .v2-bs-proof-tags span {
    padding: 7px 8px;
    font-size: 10px;
  }

  .v2-bs-section-head {
    margin-bottom: 26px;
    text-align: left;
  }

  .v2-bs-section-head h2,
  .v2-bs-understand h2,
  .v2-bs-result h2 {
    font-size: 30px;
  }

  .v2-bs-process {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .v2-bs-process-card {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 0;
    padding: 22px 18px;
  }

  .v2-bs-process-card h3 {
    margin: 1px 0 6px;
  }

  .v2-bs-process-card p {
    grid-column: 2;
  }

  .v2-bs-standards,
  .v2-bs-use-card {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .v2-bs-standards > div,
  .v2-bs-benefits {
    grid-template-columns: 1fr;
  }

  .v2-bs-standards span,
  .v2-bs-benefits span {
    min-height: 42px;
  }

  .v2-bs-change-card {
    grid-template-columns: 1fr;
    gap: 9px;
    min-height: 0;
    padding: 20px;
  }

  .v2-bs-change-card b {
    transform: rotate(90deg);
    justify-self: start;
    margin-left: 7px;
  }

  .v2-bs-closing {
    align-items: stretch;
    flex-direction: column;
    padding: 28px 22px;
  }

  .v2-bs-closing h2 {
    font-size: 27px;
  }
}

/* V2 unified typography — the final authority for every product surface. */
.v2-premium-page {
  --v2-type-display: clamp(32px, 3.05vw, 44px);
  --v2-type-section: clamp(27px, 2.45vw, 34px);
  --v2-type-card: clamp(19px, 1.65vw, 23px);
  --v2-type-body: 15px;
}

.v2-premium-page h1,
.v2-premium-page .v2-room-gate h1,
.v2-premium-page .v2-question-header h1,
.v2-premium-page .v2-complete-card h1,
.v2-premium-page .v2-room-loading h1 {
  font-size: var(--v2-type-display) !important;
  line-height: 1.2 !important;
  letter-spacing: -.035em !important;
}

.v2-premium-page .v2-home-section-title h2,
.v2-premium-page .v2-home-closing h2,
.v2-premium-page .v2-page-hero h2,
.v2-premium-page .v2-case-hero h2,
.v2-premium-page .v2-bs-section-head h2,
.v2-premium-page .v2-bs-understand h2,
.v2-premium-page .v2-bs-result h2,
.v2-premium-page .v2-bs-closing h2,
.v2-premium-page .v2-brand-story-standard h2,
.v2-premium-page .v2-brand-story-cta h2,
.v2-premium-page .v2-value-reframe h2,
.v2-premium-page .v2-ruoyuan-proof-copy h2,
.v2-premium-page .v2-free-upgrade > div > h2 {
  font-size: var(--v2-type-section) !important;
  line-height: 1.24 !important;
  letter-spacing: -.03em !important;
}

.v2-premium-page article h2,
.v2-premium-page .plan-card h2,
.v2-premium-page .dna-card h2,
.v2-premium-page .generation-card h2,
.v2-premium-page .account-card h2,
.v2-premium-page .v2-access-card h2,
.v2-premium-page .v2-ai-host-card h2,
.v2-premium-page .v2-story-card h2,
.v2-premium-page .v2-free-report-card h2 {
  font-size: var(--v2-type-card) !important;
  line-height: 1.34 !important;
  letter-spacing: -.02em !important;
}

.v2-premium-page .v2-question-card > h2 {
  max-width: 820px;
  font-size: clamp(24px, 2.15vw, 29px) !important;
  line-height: 1.38 !important;
  letter-spacing: -.02em !important;
}

.v2-premium-page .v2-free-report-hero h1 {
  max-width: 980px;
  font-size: clamp(28px, 2.6vw, 36px) !important;
  line-height: 1.3 !important;
}

.v2-premium-page .lead,
.v2-premium-page .v2-feature-copy .lead,
.v2-premium-page .v2-gate-copy > p:not(.v2-pill),
.v2-premium-page .v2-page-hero p,
.v2-premium-page .v2-free-report-hero > p:last-child {
  font-size: var(--v2-type-body) !important;
  line-height: 1.75 !important;
}

.v2-premium-page h3 {
  line-height: 1.38;
}

.v2-premium-page .button,
.v2-premium-page button {
  font-size: 14px;
}

@media (max-width: 700px) {
  .v2-premium-page {
    --v2-type-display: 30px;
    --v2-type-section: 26px;
    --v2-type-card: 20px;
    --v2-type-body: 15px;
  }

  .v2-premium-page h1,
  .v2-premium-page .v2-room-gate h1,
  .v2-premium-page .v2-question-header h1,
  .v2-premium-page .v2-complete-card h1,
  .v2-premium-page .v2-room-loading h1 {
    line-height: 1.25 !important;
  }

  .v2-premium-page .v2-question-card > h2 {
    font-size: 23px !important;
  }

  .v2-premium-page .v2-free-report-hero h1 {
    font-size: 25px !important;
  }

  .v2-home-stage .v2-mini-room {
    display: block;
    min-height: auto;
    padding: 24px 20px 22px;
    background:
      linear-gradient(180deg, rgba(255, 247, 232, .96), rgba(255, 234, 197, .84)),
      url("../assets/v2-ai-interviewer-warm.png") 82% bottom / auto 76% no-repeat;
  }

  .v2-home-stage .v2-mini-room-head {
    width: 100%;
    margin: 0 0 16px;
  }

  .v2-home-stage .v2-hero-help-path {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .v2-home-stage .v2-hero-help-path > div {
    width: 100%;
    min-height: 0;
    padding: 13px 14px 13px 44px;
  }

  .v2-home-stage .v2-hero-help-path > div::before {
    top: 19px;
    left: 16px;
  }

  .v2-home-stage .v2-hero-help-path > span {
    height: 18px;
    margin-left: 23px;
  }

  .v2-home-stage .v2-hero-result-tags {
    margin-top: 16px;
  }
}

/* Manual purchase bridge used until online payment is connected. */
.v2-product-purchase-section {
  scroll-margin-top: 92px;
  padding: 26px 0 38px;
}

.v2-product-purchase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(32px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid rgba(205, 153, 68, .32);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 16%, rgba(224, 161, 48, .2), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(13, 95, 53, .09), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 247, .94), rgba(250, 229, 190, .82));
  box-shadow: 0 22px 62px rgba(94, 59, 17, .09);
}

.v2-product-purchase-copy h2 {
  max-width: 680px;
  margin: 12px 0 0;
  color: var(--ink);
  font-size: clamp(27px, 2.45vw, 34px);
  line-height: 1.25;
  letter-spacing: -.03em;
}

.v2-product-purchase-copy > p:not(.v2-eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: #69583f;
  font-size: 15px;
  line-height: 1.75;
}

.v2-product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 22px;
}

.v2-product-price span {
  padding: 6px 10px;
  border-radius: 999px;
  color: #9a6200;
  background: rgba(255, 236, 196, .9);
  font-size: 12px;
  font-weight: 850;
}

.v2-product-price strong {
  color: #2e251a;
  font-size: 17px;
}

.v2-product-price b {
  color: var(--forest);
  font-size: 18px;
}

.v2-product-open-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 22px 0;
}

.v2-product-open-steps span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 13px;
  color: #5e4d36;
  background: rgba(255, 255, 255, .58);
  font-size: 12px;
  font-weight: 800;
}

.v2-product-open-steps b {
  color: #b57300;
  font-size: 11px;
}

.v2-product-qr-card {
  display: grid;
  justify-items: center;
  padding: 22px;
  border: 1px solid rgba(205, 153, 68, .32);
  border-radius: 24px;
  background: rgba(255, 253, 248, .82);
  box-shadow: 0 16px 42px rgba(94, 59, 17, .1);
  text-align: center;
}

.v2-product-qr-card > span {
  color: #a56900;
  font-size: 12px;
  font-weight: 900;
}

.v2-product-qr-card img {
  width: min(100%, 220px);
  margin: 12px 0;
  padding: 7px;
  border-radius: 16px;
  background: #fff;
}

.v2-product-qr-card strong {
  color: var(--forest);
  font-size: 16px;
}

.v2-product-qr-card p {
  margin: 7px 0 0;
  color: #786447;
  font-size: 12px;
  line-height: 1.55;
}

.v2-premium-page .v2-free-question-shell .v2-question-header h1 {
  font-size: clamp(28px, 2.6vw, 38px) !important;
  line-height: 1.18 !important;
}

/* Personal brand trust suite — public product detail landing page. */
.v2-trust-suite-detail-page {
  --suite-ink: #261d14;
  --suite-muted: #6f5d45;
  overflow: hidden;
}

.v2-suite-hero,
.v2-suite-section,
.v2-suite-bottom-cta {
  padding: clamp(54px, 7vw, 104px) 0;
}

.v2-suite-hero {
  padding-top: clamp(42px, 5.5vw, 78px);
}

.v2-suite-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(36px, 5vw, 78px);
  border: 1px solid rgba(204, 151, 59, .3);
  border-radius: 38px;
  background:
    radial-gradient(circle at 82% 15%, rgba(245, 186, 77, .2), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 247, .96), rgba(255, 244, 216, .78));
  box-shadow: 0 25px 70px rgba(105, 67, 18, .11);
}

.v2-suite-hero-copy h1 {
  max-width: 790px;
  margin: 24px 0 22px;
  color: var(--suite-ink);
  font-size: clamp(42px, 5.1vw, 70px);
  line-height: 1.13;
  letter-spacing: -.045em;
}

.v2-suite-lead {
  max-width: 690px;
  margin: 0;
  color: var(--suite-muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.8;
}

.v2-suite-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
}

.v2-suite-tags span {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(229, 234, 216, .78);
  font-size: 13px;
  font-weight: 850;
}

.v2-suite-qr-card {
  display: grid;
  justify-items: center;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid rgba(197, 143, 45, .34);
  border-radius: 30px;
  background: rgba(255, 253, 248, .86);
  box-shadow: 0 18px 48px rgba(86, 54, 13, .12);
  text-align: center;
}

.v2-suite-qr-card > p {
  margin: 0;
  color: #a36600;
  font-size: 16px;
  font-weight: 900;
}

.v2-suite-qr-card img {
  width: min(100%, 230px);
  margin: 18px 0;
  padding: 8px;
  border-radius: 20px;
  background: #fff;
}

.v2-suite-qr-card strong {
  color: var(--forest);
  font-size: 18px;
}

.v2-suite-qr-card span {
  margin-top: 8px;
  color: var(--suite-muted);
  font-size: 13px;
}

.v2-suite-heading {
  max-width: 820px;
  margin-bottom: clamp(34px, 4vw, 58px);
}

.v2-suite-heading h2,
.v2-suite-delivery-grid h2,
.v2-suite-bottom-copy h2 {
  margin: 14px 0 0;
  color: var(--suite-ink);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.18;
  letter-spacing: -.035em;
}

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

.v2-suite-pain-grid article {
  min-height: 220px;
  padding: 30px;
  border: 1px solid rgba(196, 147, 66, .24);
  border-radius: 26px;
  background: rgba(255, 253, 248, .77);
}

.v2-suite-pain-grid span,
.v2-suite-asset-number,
.v2-suite-process article > span {
  color: #b87500;
  font-size: 13px;
  font-weight: 900;
}

.v2-suite-pain-grid h3 {
  margin: 42px 0 8px;
  color: var(--suite-ink);
  font-size: 25px;
}

.v2-suite-pain-grid p {
  margin: 0;
  color: var(--suite-muted);
  font-size: 16px;
}

.v2-suite-value-line {
  display: grid;
  grid-template-columns: .45fr 1fr;
  gap: 32px;
  align-items: end;
  margin-top: 22px;
  padding: clamp(30px, 4vw, 54px);
  border-radius: 28px;
  color: #fff8e9;
  background: linear-gradient(135deg, #075e3c, #003f2d);
  box-shadow: 0 20px 54px rgba(0, 74, 48, .16);
}

.v2-suite-value-line small {
  color: #f2cc83;
  font-size: 15px;
  font-weight: 850;
}

.v2-suite-value-line strong {
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.25;
}

.v2-suite-assets-section {
  background: linear-gradient(180deg, rgba(246, 224, 181, .16), rgba(255, 255, 255, .16));
}

.v2-suite-assets-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 22px;
}

.v2-suite-primary-asset,
.v2-suite-three-assets {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(195, 143, 55, .28);
  border-radius: 32px;
  background: rgba(255, 253, 248, .82);
}

.v2-suite-primary-asset h3,
.v2-suite-three-assets h3 {
  margin: 16px 0;
  color: var(--suite-ink);
  font-size: clamp(28px, 3vw, 40px);
}

.v2-suite-primary-asset > p:not(.v2-eyebrow),
.v2-suite-three-assets > p:not(.v2-eyebrow) {
  color: var(--suite-muted);
  line-height: 1.75;
}

.v2-suite-primary-asset ul {
  display: grid;
  gap: 1px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  border-radius: 22px;
  overflow: hidden;
}

.v2-suite-primary-asset li,
.v2-suite-story-list > div {
  display: grid;
  gap: 5px;
  padding: 19px 22px;
  background: rgba(242, 238, 222, .72);
}

.v2-suite-primary-asset li b,
.v2-suite-story-list b {
  color: var(--forest);
  font-size: 16px;
}

.v2-suite-primary-asset li span,
.v2-suite-story-list span {
  color: var(--suite-muted);
  font-size: 13px;
}

.v2-suite-story-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.v2-suite-story-list > div {
  align-content: center;
  min-height: 150px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(229, 237, 220, .82), rgba(255, 246, 224, .78));
}

.v2-suite-heading-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.v2-suite-process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  border: 1px solid rgba(195, 143, 55, .25);
  border-radius: 28px;
  background: rgba(255, 253, 248, .8);
}

.v2-suite-process article {
  min-height: 220px;
  padding: 28px 24px;
  border-right: 1px solid rgba(195, 143, 55, .2);
}

.v2-suite-process article:last-child {
  border-right: 0;
}

.v2-suite-process h3 {
  margin: 60px 0 10px;
  color: var(--suite-ink);
  font-size: 20px;
}

.v2-suite-process p {
  margin: 0;
  color: var(--suite-muted);
  font-size: 14px;
  line-height: 1.7;
}

.v2-suite-delivery-section {
  padding-top: 20px;
}

.v2-suite-delivery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: clamp(38px, 5vw, 70px);
  border: 1px solid rgba(195, 143, 55, .25);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255, 253, 248, .9), rgba(244, 232, 201, .68));
}

.v2-suite-delivery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.v2-suite-delivery-list span {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(228, 234, 216, .82);
  font-size: 13px;
  font-weight: 850;
}

.v2-suite-delivery-grid blockquote {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 28px;
  color: #fff9e9;
  background: linear-gradient(145deg, #0b6744, #01422f);
  box-shadow: 0 20px 50px rgba(1, 67, 47, .17);
}

.v2-suite-delivery-grid blockquote small {
  color: #e8c77e;
  font-weight: 850;
}

.v2-suite-delivery-grid blockquote strong {
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.45;
}

.v2-suite-bottom-cta {
  padding-top: 16px;
}

.v2-suite-bottom-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: clamp(34px, 5vw, 66px);
  border: 1px solid rgba(195, 143, 55, .28);
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, .82), transparent 38%),
    linear-gradient(130deg, rgba(250, 237, 204, .84), rgba(255, 248, 232, .93));
}

.v2-suite-bottom-copy p:last-child {
  margin: 18px 0 0;
  color: var(--suite-muted);
  font-size: 18px;
}

.v2-suite-bottom-qr {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .7);
}

.v2-suite-bottom-qr img {
  width: 112px;
  padding: 5px;
  border-radius: 12px;
  background: #fff;
}

.v2-suite-bottom-qr div {
  display: grid;
  gap: 7px;
}

.v2-suite-bottom-qr strong {
  color: var(--forest);
  font-size: 20px;
}

.v2-suite-bottom-qr span {
  color: var(--suite-muted);
  font-size: 12px;
}

/* Shared product-detail system for monthly expression and annual growth. */
.v2-offer-detail-page .v2-offer-hero .v2-suite-hero-grid {
  background:
    radial-gradient(circle at 84% 12%, rgba(244, 182, 66, .22), transparent 32%),
    radial-gradient(circle at 10% 88%, rgba(195, 220, 199, .24), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 247, .97), rgba(255, 242, 210, .8));
}

.v2-offer-benefits-section {
  background: linear-gradient(180deg, rgba(246, 224, 181, .12), rgba(255, 255, 255, .2));
}

.v2-offer-benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.v2-offer-benefit-grid article {
  min-height: 360px;
  padding: clamp(28px, 3.5vw, 44px);
  border: 1px solid rgba(195, 143, 55, .28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(241, 196, 102, .16), transparent 34%),
    rgba(255, 253, 248, .84);
  box-shadow: 0 18px 48px rgba(95, 64, 22, .07);
}

.v2-offer-benefit-grid article:nth-child(2n) {
  background:
    radial-gradient(circle at 92% 8%, rgba(113, 160, 126, .15), transparent 34%),
    rgba(249, 252, 243, .86);
}

.v2-offer-benefit-grid h3 {
  margin: 16px 0 12px;
  color: var(--suite-ink);
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.25;
}

.v2-offer-benefit-grid p {
  margin: 0;
  color: var(--suite-muted);
  font-size: 15px;
  line-height: 1.75;
}

.v2-offer-benefit-grid ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.v2-offer-benefit-grid li {
  position: relative;
  padding-left: 22px;
  color: var(--forest);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.6;
}

.v2-offer-benefit-grid li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: #b87500;
  font-weight: 950;
}

.v2-offer-feature-section {
  padding-top: 34px;
}

.v2-offer-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  overflow: hidden;
  border: 1px solid rgba(195, 143, 55, .25);
  border-radius: 30px;
  background: rgba(255, 253, 248, .8);
}

.v2-offer-feature-grid article {
  display: grid;
  align-content: center;
  min-height: 210px;
  padding: 30px 26px;
  border-right: 1px solid rgba(195, 143, 55, .2);
}

.v2-offer-feature-grid article:last-child {
  border-right: 0;
}

.v2-offer-feature-grid span {
  color: #af7104;
  font-size: 13px;
  font-weight: 900;
}

.v2-offer-feature-grid strong {
  margin-top: 30px;
  color: var(--forest);
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.2;
}

.v2-offer-feature-grid p {
  margin: 10px 0 0;
  color: var(--suite-muted);
  font-size: 14px;
  line-height: 1.65;
}

.v2-offer-result-text {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--suite-muted);
  font-size: 17px;
  line-height: 1.8;
}

.v2-annual-growth-page .v2-offer-feature-grid article {
  min-width: 0;
}

@media (max-width: 980px) {
  .v2-suite-hero-grid,
  .v2-suite-assets-grid,
  .v2-suite-delivery-grid {
    grid-template-columns: 1fr;
  }

  .v2-suite-hero-copy h1 {
    max-width: 760px;
  }

  .v2-suite-qr-card {
    justify-self: stretch;
  }

  .v2-suite-story-list {
    grid-template-columns: 1fr;
  }

  .v2-suite-story-list > div {
    min-height: auto;
  }

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

  .v2-suite-process article {
    min-height: 190px;
    border-bottom: 1px solid rgba(195, 143, 55, .2);
  }

  .v2-suite-process article:nth-child(2n) {
    border-right: 0;
  }

  .v2-suite-process article:last-child {
    grid-column: 1 / -1;
    min-height: 150px;
    border-bottom: 0;
  }

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

  .v2-offer-feature-grid article {
    border-bottom: 1px solid rgba(195, 143, 55, .2);
  }

  .v2-offer-feature-grid article:nth-child(2n) {
    border-right: 0;
  }

  .v2-offer-feature-grid article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 700px) {
  .v2-suite-hero,
  .v2-suite-section,
  .v2-suite-bottom-cta {
    padding: 34px 0;
  }

  .v2-suite-hero-grid {
    gap: 24px;
    padding: 26px 20px;
    border-radius: 26px;
  }

  .v2-suite-hero-copy h1 {
    margin-top: 18px;
    font-size: 36px;
    line-height: 1.18;
  }

  .v2-suite-lead {
    font-size: 17px;
    line-height: 1.7;
  }

  .v2-suite-hero-copy .button {
    width: 100%;
    justify-content: center;
  }

  .v2-suite-pain-grid {
    grid-template-columns: 1fr;
  }

  .v2-suite-pain-grid article {
    min-height: auto;
    padding: 24px;
  }

  .v2-suite-pain-grid h3 {
    margin-top: 24px;
  }

  .v2-suite-value-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .v2-suite-primary-asset,
  .v2-suite-three-assets,
  .v2-suite-delivery-grid {
    padding: 26px 22px;
    border-radius: 26px;
  }

  .v2-suite-process {
    grid-template-columns: 1fr;
  }

  .v2-suite-process article,
  .v2-suite-process article:last-child {
    grid-column: auto;
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(195, 143, 55, .2);
  }

  .v2-suite-process article:last-child {
    border-bottom: 0;
  }

  .v2-suite-process h3 {
    margin-top: 28px;
  }

  .v2-suite-bottom-card {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    border-radius: 27px;
  }

  .v2-suite-bottom-qr {
    align-items: flex-start;
  }

  .v2-suite-bottom-qr img {
    width: 94px;
  }

  .v2-offer-benefit-grid {
    grid-template-columns: 1fr;
  }

  .v2-offer-benefit-grid article {
    min-height: auto;
    padding: 26px 22px;
    border-radius: 25px;
  }

  .v2-offer-feature-grid {
    grid-template-columns: 1fr;
  }

  .v2-offer-feature-grid article,
  .v2-offer-feature-grid article:nth-child(2n) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(195, 143, 55, .2);
  }

  .v2-offer-feature-grid article:last-child {
    border-bottom: 0;
  }

  .v2-offer-feature-grid strong {
    margin-top: 16px;
  }
}

@media (max-width: 760px) {
  .v2-product-purchase-section {
    padding: 10px 0 30px;
  }

  .v2-product-purchase {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 20px;
    border-radius: 24px;
  }

  .v2-product-purchase-copy h2 {
    font-size: 26px;
  }

  .v2-product-purchase-copy .button {
    width: 100%;
    justify-content: center;
  }

  .v2-product-qr-card {
    padding: 20px;
  }

  .v2-product-qr-card img {
    width: 205px;
  }

  .v2-premium-page .v2-free-question-shell .v2-question-header h1 {
    font-size: 27px !important;
    line-height: 1.25 !important;
  }
}

/* Personal brand story generation flow after DNA confirmation. */
.v2-brand-story-flow {
  padding-top: clamp(20px, 3vw, 36px);
}

.v2-brand-story-flow > .v2-back-link {
  margin: 0 0 18px;
}

.v2-brand-flow-hero,
.v2-brand-workspace {
  border: 1px solid rgba(205, 153, 68, .3);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 14%, rgba(219, 154, 38, .17), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(13, 95, 53, .08), transparent 28%),
    linear-gradient(135deg, rgba(255, 253, 247, .94), rgba(250, 231, 197, .82));
  box-shadow: 0 24px 70px rgba(94, 59, 17, .09);
}

.v2-brand-flow-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
  padding: clamp(30px, 5vw, 64px);
}

.v2-brand-flow-hero h1,
.v2-story-editor-card h1 {
  max-width: 760px;
  margin: 14px 0 0;
  color: var(--ink);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.18;
  letter-spacing: -.04em;
}

.v2-brand-flow-hero p:not(.v2-pill),
.v2-story-note {
  max-width: 720px;
  color: #66563f;
  font-size: 16px;
  line-height: 1.8;
}

.v2-brand-flow-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.v2-brand-flow-tags span {
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--forest);
  background: rgba(222, 230, 209, .82);
  font-size: 13px;
  font-weight: 850;
}

.v2-story-material-check {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.v2-story-material-check article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(205, 153, 68, .22);
  border-radius: 20px;
  background: rgba(255, 255, 255, .54);
}

.v2-story-material-check b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(198, 124, 0, .14);
  color: #a56800;
  font-size: 13px;
  font-weight: 950;
}

.v2-story-material-check p {
  margin: 0;
  color: #5e4f3c;
  font-size: 15px;
  line-height: 1.65;
}

.v2-brand-flow-hero aside,
.v2-brand-flow-sidebar {
  padding: 24px;
  border: 1px solid rgba(205, 153, 68, .24);
  border-radius: 26px;
  background: rgba(255, 253, 247, .66);
}

.v2-brand-flow-sidebar h2,
.v2-brand-flow-hero aside h2 {
  margin: 10px 0 18px;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.25;
}

.v2-story-flow-steps {
  display: grid;
  gap: 10px;
}

.v2-story-flow-steps div,
.v2-story-flow-steps button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, .54);
  color: #6c5b42;
  font: inherit;
  text-align: left;
}

.v2-story-flow-steps button {
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.v2-story-flow-steps button:hover {
  background: rgba(13, 95, 53, .08);
  color: var(--forest);
  transform: translateX(2px);
}

.v2-story-flow-steps div.is-current,
.v2-story-flow-steps button.is-current {
  background: rgba(13, 95, 53, .1);
  color: var(--forest);
}

.v2-story-flow-steps span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  background: #c67c00;
  font-size: 12px;
  font-weight: 900;
}

.v2-story-flow-steps div.is-current span,
.v2-story-flow-steps button.is-current span {
  background: var(--forest);
}

.v2-story-flow-steps b {
  font-size: 15px;
}

.v2-brand-workspace {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  padding: clamp(24px, 4vw, 46px);
}

.v2-brand-flow-sidebar {
  position: sticky;
  top: 96px;
}

.v2-brand-flow-sidebar .button {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.v2-story-editor-card {
  min-width: 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(205, 153, 68, .23);
  border-radius: 30px;
  background: rgba(255, 253, 248, .74);
  box-shadow: 0 18px 50px rgba(94, 59, 17, .08);
}

.v2-story-paper {
  margin: 24px 0;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(205, 153, 68, .24);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(255, 249, 239, .68));
  color: #35291d;
  font-size: 17px;
  line-height: 1.92;
}

.v2-story-paper p {
  margin: 0 0 1em;
}

.v2-story-paper p:last-child {
  margin-bottom: 0;
}

.v2-story-score-panel {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  margin: 22px 0 10px;
  padding: 16px;
  border: 1px solid rgba(13, 95, 53, .16);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 15%, rgba(13, 95, 53, .08), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 246, 229, .62));
}

.v2-story-score-number {
  display: grid;
  place-items: center;
  min-height: 132px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 95, 53, .96), rgba(3, 68, 38, .96));
  color: #fff;
  box-shadow: 0 18px 36px rgba(13, 95, 53, .16);
}

.v2-story-score-number span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 900;
}

.v2-story-score-number strong {
  margin-top: -10px;
  font-size: clamp(38px, 5vw, 56px);
  line-height: 1;
}

.v2-story-score-number em {
  margin-top: -16px;
  color: rgba(255, 255, 255, .72);
  font-style: normal;
  font-weight: 900;
}

.v2-story-score-copy {
  align-self: center;
}

.v2-story-score-copy b {
  color: var(--forest);
  font-size: 18px;
}

.v2-story-score-copy p {
  margin: 10px 0 0;
  color: #6d5b42;
  font-size: 15px;
  line-height: 1.78;
}

.v2-story-paper.is-final {
  border-color: rgba(13, 95, 53, .22);
  background:
    radial-gradient(circle at 92% 10%, rgba(13, 95, 53, .08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, .82), rgba(255, 247, 232, .7));
}

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

.v2-revision-grid article,
.v2-story-prompt-list span {
  border: 1px solid rgba(205, 153, 68, .2);
  border-radius: 20px;
  background: rgba(255, 255, 255, .58);
}

.v2-revision-grid article {
  padding: 17px;
}

.v2-revision-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.v2-revision-grid b {
  color: var(--forest);
  font-size: 16px;
}

.v2-score-chip {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(205, 132, 0, .14);
  color: #a86400;
  font-size: 12px;
  font-weight: 900;
}

.v2-score-line {
  height: 7px;
  overflow: hidden;
  margin-top: 12px;
  border-radius: 999px;
  background: rgba(13, 95, 53, .09);
}

.v2-score-line i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #0b6b49, #d28a00);
}

.v2-revision-grid p {
  margin: 8px 0 0;
  color: #6d5b42;
  font-size: 14px;
  line-height: 1.65;
}

.v2-revision-grid .v2-revision-question {
  margin-top: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(13, 95, 53, .06);
  color: #0a6546;
  font-weight: 800;
}

.v2-story-input-box {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.v2-story-input-box span {
  color: #34291d;
  font-size: 15px;
  font-weight: 900;
}

.v2-story-input-box textarea {
  min-height: 170px;
  resize: vertical;
  padding: 18px;
  border: 1px solid rgba(205, 153, 68, .28);
  border-radius: 22px;
  outline: none;
  background: rgba(255, 255, 255, .64);
  color: #34291d;
  font: inherit;
  line-height: 1.75;
}

.v2-story-input-box textarea:focus {
  border-color: rgba(13, 95, 53, .45);
  box-shadow: 0 0 0 4px rgba(13, 95, 53, .08);
}

.v2-story-upload-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-top: 16px;
  padding: 18px;
  border: 1px dashed rgba(205, 153, 68, .38);
  border-radius: 22px;
  background: rgba(255, 250, 240, .62);
}

.v2-story-upload-box b {
  display: block;
  color: var(--forest);
  font-size: 15px;
  font-weight: 950;
}

.v2-story-upload-box p,
.v2-story-file-empty {
  margin: 6px 0 0;
  color: #7a6a52;
  font-size: 13px;
  line-height: 1.6;
}

.v2-story-upload-box label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid rgba(13, 95, 53, .2);
  background: rgba(255, 255, 255, .78);
  color: var(--forest);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.v2-story-upload-box input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.v2-story-file-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.v2-story-file-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .58);
  color: #5a4a37;
  font-size: 13px;
}

.v2-story-file-list em {
  flex: 0 0 auto;
  color: var(--forest);
  font-style: normal;
  font-weight: 850;
}

.v2-story-prompt-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.v2-story-prompt-list span {
  padding: 14px 16px;
  color: #5f4f39;
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .v2-brand-flow-hero,
  .v2-brand-workspace {
    grid-template-columns: 1fr;
  }

  .v2-brand-flow-sidebar {
    position: static;
  }

  .v2-story-upload-box {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .v2-brand-story-flow {
    padding-top: 12px;
  }

  .v2-brand-flow-hero,
  .v2-brand-workspace {
    padding: 22px 16px;
    border-radius: 26px;
  }

  .v2-brand-flow-hero h1,
  .v2-story-editor-card h1 {
    font-size: 28px;
  }

  .v2-story-editor-card,
  .v2-brand-flow-hero aside,
  .v2-brand-flow-sidebar {
    padding: 18px;
    border-radius: 22px;
  }

  .v2-story-score-panel {
    grid-template-columns: 1fr;
  }

  .v2-story-score-number {
    min-height: 118px;
  }

  .v2-revision-grid {
    grid-template-columns: 1fr;
  }

  .v2-story-paper {
    padding: 18px;
    font-size: 15px;
  }
}

/* Interview room responsive repair: keep answer and voice controls inside the mobile viewport. */
@media (max-width: 1180px) {
  .v2-question-shell {
    max-width: none;
  }

  .v2-question-layout,
  .v2-free-question-layout {
    grid-template-columns: 1fr !important;
  }

  .v2-question-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 12px;
  }

  .v2-question-nav .v2-nav-title {
    flex: 0 0 auto;
    min-width: 150px;
  }

  .v2-question-nav button {
    flex: 0 0 min(210px, 72vw);
  }

  .v2-discovery-panel {
    grid-column: 1 / -1;
  }

  .v2-follow-inline {
    grid-template-columns: 1fr;
  }

  .v2-follow-answer-box {
    grid-template-columns: minmax(0, 1fr);
  }

  .v2-mic-button-small {
    justify-self: center;
  }

  .v2-question-actions {
    grid-template-columns: 1fr auto 1fr;
  }
}

@media (max-width: 900px) {
  html,
  body,
  #app,
  .v2-interview-room {
    max-width: 100%;
    overflow-x: hidden;
  }

  .v2-interview-room .shell,
  .v2-question-shell {
    width: min(100% - 24px, var(--content)) !important;
    margin-left: auto;
    margin-right: auto;
  }

  .v2-question-layout,
  .v2-free-question-layout {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px;
  }

  .v2-question-nav {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .v2-question-nav .v2-nav-title {
    grid-column: 1 / -1;
  }

  .v2-question-nav button {
    grid-template-columns: 32px minmax(0, 1fr);
    min-width: 0;
  }

  .v2-question-card {
    width: 100%;
    min-width: 0;
    min-height: auto;
    padding: 22px 18px;
  }

  .v2-question-card-top {
    display: grid;
    gap: 10px;
  }

  .v2-question-card-top > b {
    justify-self: start;
  }

  .v2-question-card textarea {
    min-width: 0;
    max-width: 100%;
    min-height: 170px;
    padding: 14px;
    font-size: 15px;
  }

  .v2-follow-inline {
    width: 100%;
    min-width: 0;
    padding: 14px;
  }

  .v2-follow-inline h3 {
    font-size: 15px;
  }

  .v2-follow-inline textarea {
    min-height: 150px;
  }

  .v2-question-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .v2-question-actions .button,
  .v2-question-actions .button:last-child {
    width: 100%;
    justify-self: stretch;
    justify-content: center;
  }

  .v2-question-actions .v2-mic-button {
    order: -1;
    justify-self: center;
  }

  .v2-discovery-panel {
    grid-template-columns: 1fr !important;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .v2-question-nav {
    grid-template-columns: 1fr;
  }

  .v2-question-header {
    grid-template-columns: 1fr !important;
  }

  .v2-session-status {
    width: 100%;
  }

  .v2-question-card {
    padding: 18px 14px;
  }

  .v2-follow-inline {
    padding: 12px;
  }
}

.v2-homepage-trust-shell {
  padding: 34px 0 82px;
  background:
    radial-gradient(circle at 86% 8%, rgba(211, 142, 18, .18), transparent 30%),
    radial-gradient(circle at 12% 42%, rgba(13, 95, 53, .08), transparent 28%);
}

.v2-homepage-trust-shell .shell {
  display: grid;
  gap: 24px;
}

.v2-homepage-trust-hero,
.trust-flow-card {
  border: 1px solid rgba(226, 186, 119, .38);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 253, 246, .92), rgba(255, 243, 218, .78));
  box-shadow: 0 26px 70px rgba(96, 61, 20, .1);
  backdrop-filter: blur(18px);
}

.v2-homepage-trust-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .35fr);
  gap: 28px;
  align-items: end;
  min-height: 330px;
  padding: clamp(28px, 5vw, 64px);
}

.v2-homepage-trust-hero h1 {
  max-width: 980px;
  margin: 22px 0 18px;
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.v2-homepage-trust-hero p:not(.v2-pill) {
  max-width: 760px;
  margin: 0;
  color: #6f5b40;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.8;
}

.v2-homepage-trust-hero aside {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(13, 95, 53, .1);
  border-radius: 24px;
  background: rgba(255, 255, 255, .48);
}

.v2-homepage-trust-hero aside span {
  color: #b16d00;
  font-weight: 900;
}

.v2-homepage-trust-hero aside strong {
  color: var(--forest);
  font-size: 24px;
  line-height: 1.45;
}

.trust-flow-card {
  padding: clamp(24px, 4vw, 42px);
}

.trust-flow-card[hidden] {
  display: none !important;
}

.trust-flow-head {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.trust-flow-head p {
  margin: 0;
  color: #b16d00;
  font-weight: 950;
}

.trust-flow-head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 42px);
  line-height: 1.2;
}

.trust-flow-head span {
  color: #756044;
  font-size: 16px;
  line-height: 1.7;
}

.trust-scan-grid,
.trust-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

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

.trust-scan-grid article,
.trust-delivery-grid article,
.trust-story-choice-grid button,
.trust-draft-card,
.trust-score-card,
.trust-ready-box,
.trust-missing-box {
  border: 1px solid rgba(226, 186, 119, .34);
  border-radius: 22px;
  background: rgba(255, 251, 242, .76);
  box-shadow: 0 16px 42px rgba(96, 61, 20, .07);
}

.trust-scan-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  align-items: center;
  gap: 10px;
  padding: 18px;
  font-weight: 850;
  color: var(--forest);
}

.trust-scan-grid article small {
  grid-column: 2;
  color: #756044;
  font-size: 13px;
  font-weight: 700;
}

.trust-scan-grid article.is-ready b { color: #07705e; }
.trust-scan-grid article.is-pending b { color: #bd7900; }
.trust-scan-grid article.is-missing { opacity: .72; }
.trust-scan-grid article.is-missing b { color: #8c806d; }

/* Public homepage: one shared brand foundation, multiple usable outcomes. */
.nav-link-workspace {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-link-workspace > span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #fff8e7;
  background: var(--forest);
  font-size: 12px;
  font-weight: 850;
}

.v2-home-pain-section { padding-top: clamp(58px, 8vw, 108px); }

.v2-home-pain-grid,
.v2-home-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.v2-home-pain-grid article,
.v2-home-results-grid article,
.v2-home-story-quote {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(226, 186, 119, .35);
  border-radius: 24px;
  background: rgba(255, 252, 246, .72);
  box-shadow: 0 18px 44px rgba(96, 61, 20, .07);
}

.v2-home-pain-grid span,
.v2-home-results-grid span {
  color: #b16d00;
  font-weight: 950;
}

.v2-home-pain-grid h3,
.v2-home-results-grid h3 { margin: 18px 0 10px; font-size: 23px; }
.v2-home-pain-grid p,
.v2-home-results-grid p,
.v2-home-story-preview p { margin: 0; color: #705d43; line-height: 1.8; }
.v2-home-section-title > p:last-child { max-width: 780px; margin: 14px auto 0; color: #705d43; line-height: 1.8; }
.v2-home-section-closing { margin: 28px 0 0; color: var(--forest); font-size: 18px; font-weight: 850; text-align: center; }

.v2-brand-foundation {
  display: grid;
  gap: 16px;
  max-width: 1060px;
  margin: 34px auto 0;
}

.v2-foundation-core {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(16, 99, 77, .25);
  border-radius: 26px;
  color: #f7eddc;
  background: linear-gradient(135deg, #075d48, #0b795c);
  box-shadow: 0 22px 54px rgba(7, 73, 57, .22);
}

.v2-foundation-core small { color: #f4ce83; font-weight: 900; }
.v2-foundation-core strong { font-size: clamp(24px, 3vw, 38px); text-align: center; }
.v2-foundation-core i { margin: 0 8px; color: #f2be59; font-style: normal; }

.v2-foundation-apps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.v2-foundation-apps span {
  padding: 18px 14px;
  border: 1px solid rgba(226, 186, 119, .35);
  border-radius: 18px;
  color: var(--forest);
  background: rgba(255, 252, 246, .72);
  font-weight: 850;
  text-align: center;
}

.v2-home-operation-video-section {
  padding: clamp(54px, 7vw, 92px) 0;
}

.v2-home-operation-video-layout {
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(226, 186, 119, .42);
  border-radius: clamp(26px, 4vw, 42px);
  background:
    radial-gradient(circle at 87% 8%, rgba(248, 204, 115, .30), transparent 28%),
    radial-gradient(circle at 10% 92%, rgba(126, 171, 143, .18), transparent 30%),
    rgba(255, 252, 246, .78);
  box-shadow: 0 24px 60px rgba(102, 68, 19, .09);
}

.v2-home-operation-video-copy {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.v2-home-operation-video-copy h2 {
  margin: 12px 0;
  color: #24180e;
  font-size: clamp(31px, 4.1vw, 52px);
  line-height: 1.2;
}

.v2-home-operation-video-copy > p:last-child {
  margin: 0;
  color: #705d43;
  line-height: 1.8;
}

.v2-home-operation-video-frame {
  overflow: hidden;
  padding: clamp(5px, .65vw, 10px);
  border: 1px solid rgba(200, 151, 68, .32);
  border-radius: clamp(20px, 3vw, 30px);
  background: linear-gradient(135deg, rgba(255, 249, 235, .94), rgba(250, 218, 160, .62));
  box-shadow: 0 18px 42px rgba(76, 47, 12, .15);
}

.v2-home-operation-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: clamp(16px, 2.5vw, 24px);
  background: #f8efdd;
  object-fit: cover;
}

.v2-home-results-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.v2-home-story-preview { padding-top: clamp(58px, 8vw, 108px); }
.v2-home-story-preview-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(20px, 4vw, 58px); align-items: center; }
.v2-home-story-preview h2 { margin: 12px 0; font-size: clamp(32px, 4vw, 52px); line-height: 1.18; }
.v2-home-story-preview .button { margin-top: 24px; }
.v2-home-story-quote { display: grid; gap: 14px; background: linear-gradient(145deg, rgba(255, 253, 246, .9), rgba(255, 230, 182, .72)); }
.v2-home-story-quote span { color: #b16d00; font-weight: 900; }
.v2-home-story-quote p { color: #312316; font-size: clamp(20px, 2.2vw, 27px); font-weight: 750; line-height: 1.55; }
.v2-home-story-quote small { color: #756044; }

.v2-home-final-call { padding: clamp(80px, 10vw, 140px) 0; color: #fff8e8; background: linear-gradient(135deg, #075d48, #0b795c); text-align: center; }
.v2-home-final-call p { margin: 0; color: #f4ce83; font-weight: 850; }
.v2-home-final-call h2 { margin: 14px auto 26px; max-width: 950px; font-size: clamp(32px, 4vw, 56px); line-height: 1.2; }
.v2-home-final-call .button { background: #fff7e6; color: var(--forest); box-shadow: none; }

.v2-login-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.v2-login-tags span { padding: 8px 12px; border-radius: 999px; color: var(--forest); background: rgba(255, 250, 238, .72); font-size: 14px; font-weight: 850; }
.v2-login-quote { margin-top: 22px; color: #775f3f; font-weight: 750; }
.workspace-login-card > p { margin: -4px 0 16px; color: #756044; line-height: 1.7; }

@media (max-width: 920px) {
  .v2-home-pain-grid,
  .v2-home-results-grid,
  .v2-foundation-apps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-home-story-preview-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .header-workspace-link b { display: none; }
  .v2-home-pain-grid,
  .v2-home-results-grid,
  .v2-foundation-apps { grid-template-columns: 1fr; }
  .v2-foundation-core strong { font-size: 25px; }
  .v2-foundation-core i { display: block; margin: 4px 0; }
  .v2-home-operation-video-layout { padding: 18px; }
  .v2-home-operation-video-copy { margin-bottom: 18px; }
  .v2-home-operation-video-copy h2 { font-size: 29px; }
}

.trust-scan-grid b {
  color: #bd7900;
}

.trust-scan-result {
  margin-top: 18px;
}

.trust-ready-box,
.trust-missing-box {
  padding: 24px;
}

.trust-ready-box h3,
.trust-missing-box h3 {
  margin: 10px 0 8px;
  font-size: 26px;
}

.trust-ready-box p,
.trust-missing-box p,
.trust-missing-box li {
  color: #6f5b40;
  line-height: 1.8;
}

.trust-missing-box ul {
  display: grid;
  gap: 8px;
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.trust-supplement-textarea {
  width: 100%;
  min-height: 180px;
  margin-top: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(226, 186, 119, .42);
  border-radius: 20px;
  resize: vertical;
  background: rgba(255, 255, 255, .72);
  color: #3d3024;
  font: inherit;
  line-height: 1.75;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .72);
}

.trust-supplement-question-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.trust-supplement-question {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(226, 186, 119, .34);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 251, 242, .78), rgba(246, 252, 247, .66));
}

.trust-supplement-question span {
  color: #0b6a4b;
  font-weight: 850;
}

.trust-supplement-question em {
  color: #6f5b40;
  font-style: normal;
  line-height: 1.7;
}

.trust-supplement-question .trust-supplement-textarea {
  min-height: 118px;
  margin-top: 4px;
  background: rgba(255, 255, 255, .84);
}

.trust-supplement-question.is-extra {
  margin-top: 16px;
}

.trust-story-supplement-box {
  border: 1px solid rgba(226, 186, 119, .34);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 251, 242, .9), rgba(246, 252, 247, .74));
  box-shadow: 0 18px 42px rgba(102, 75, 31, .08);
}

.trust-form-error {
  margin: 12px 0 0;
  color: #9a4a1b !important;
  font-weight: 800;
}

.trust-form-error[hidden] {
  display: none !important;
}

.trust-story-output {
  white-space: pre-wrap;
  margin: 0;
  color: #5f4d37;
  font: inherit;
  line-height: 1.85;
}

.trust-final-content {
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(226, 186, 119, .34);
  border-radius: 22px;
  background: rgba(255, 251, 242, .76);
}

.trust-final-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.trust-final-story-grid .trust-draft-card {
  min-width: 0;
}

.trust-final-story-grid .trust-story-output {
  max-height: 520px;
  overflow: auto;
  padding-right: 4px;
}

.trust-assets-package .trust-generating-box {
  padding-top: 8px;
}

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

.trust-story-choice-grid button {
  appearance: none;
  cursor: pointer;
  display: grid;
  gap: 12px;
  min-height: 260px;
  padding: 26px;
  text-align: left;
  color: inherit;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.trust-story-choice-grid button:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 95, 53, .22);
  box-shadow: 0 24px 58px rgba(96, 61, 20, .12);
}

.trust-story-choice-grid small {
  color: #b16d00;
  font-weight: 900;
}

.trust-story-choice-grid strong {
  color: #1f1812;
  font-size: 28px;
  line-height: 1.2;
}

.trust-story-choice-grid span {
  color: #6f5b40;
  line-height: 1.7;
}

.trust-story-choice-grid em {
  align-self: end;
  color: var(--forest);
  font-style: normal;
  font-weight: 900;
}

.trust-called-dna {
  display: grid;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(13, 95, 53, .1);
  border-radius: 22px;
  background: rgba(239, 248, 238, .5);
}

.trust-called-dna p {
  margin: 0;
  color: #b16d00;
  font-weight: 950;
}

.trust-called-dna div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-called-dna span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--forest);
  font-weight: 850;
}

.trust-draft-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.trust-generating-box {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 26px;
  color: #756044;
}

.trust-draft-card,
.trust-score-card {
  padding: 26px;
}

.trust-draft-card h3,
.trust-score-card h3 {
  margin: 12px 0;
  font-size: 28px;
  line-height: 1.25;
}

.trust-draft-card p:not(.v2-pill),
.trust-score-card p {
  color: #6f5b40;
  line-height: 1.85;
}

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

.trust-score-grid article {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .58);
}

.trust-score-grid article.is-featured {
  background: linear-gradient(135deg, #0d6841, #07472d);
  color: #fff;
}

.trust-score-grid span {
  font-size: 13px;
  color: inherit;
  opacity: .78;
}

.trust-score-grid strong {
  font-size: 28px;
  line-height: 1;
}

.trust-ai-advice {
  margin: 16px 0;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 244, 222, .86);
}

.trust-ai-advice strong {
  color: var(--forest);
}

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

.trust-delivery-grid article {
  display: grid;
  gap: 10px;
  min-height: 190px;
  padding: 18px;
}

.trust-delivery-grid b {
  color: #bd7900;
}

.trust-delivery-grid strong {
  font-size: 20px;
}

.trust-delivery-grid span {
  color: #6f5b40;
  font-size: 14px;
  line-height: 1.7;
}

.trust-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

@media (max-width: 1180px) {
  .trust-delivery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .v2-homepage-trust-hero,
  .trust-draft-panel,
  .trust-final-story-grid {
    grid-template-columns: 1fr;
  }

  .trust-scan-grid,
  .trust-story-choice-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .v2-homepage-trust-shell {
    padding-top: 18px;
  }

  .v2-homepage-trust-hero,
  .trust-flow-card {
    border-radius: 22px;
    padding: 22px 16px;
  }

  .v2-homepage-trust-hero h1 {
    font-size: 34px;
  }

  .trust-score-grid,
  .trust-delivery-grid {
    grid-template-columns: 1fr;
  }
}
