:root {
  --ink: #17312f;
  --muted: #63706d;
  --paper: #f7f3ea;
  --surface: #fffdf8;
  --line: #ded8cb;
  --teal: #87beb4;
  --teal-soft: #d6ece6;
  --coral: #f05b4f;
  --gold: #e9b65f;
  --shadow: 0 18px 48px rgba(23, 49, 47, 0.09);
  --quick: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(240, 91, 79, 0.35);
  outline-offset: 3px;
}

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

button,
a {
  touch-action: manipulation;
}

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

.app-shell {
  min-height: 100vh;
}

.is-hidden {
  display: none !important;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 243, 234, 0.9);
  border-bottom: 1px solid rgba(222, 216, 203, 0.8);
  backdrop-filter: blur(16px);
}

.brand,
.topnav,
.login-actions,
.hero-actions,
.category-row {
  display: flex;
  align-items: center;
}

.signed-in-identity {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 10px 0 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.9rem;
}

.signed-in-identity span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  font-size: 0.8rem;
}

.app-shell.is-signed-in .topnav {
  display: none;
}

.app-shell.is-signed-in .login-actions {
  justify-content: end;
}

.question-board {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 4vw, 56px);
  background: #edf5f1;
}

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

.question-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 245px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 10px 26px rgba(23, 49, 47, 0.05);
  transition: transform var(--quick), box-shadow var(--quick), border-color var(--quick);
}

.question-card:hover {
  border-color: rgba(23, 49, 47, 0.34);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.question-card h3,
.proposal-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.question-card p,
.proposal-card p {
  margin: 0;
  color: var(--muted);
}

.question-card > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.meta-badge {
  padding: 5px 9px;
  border-radius: 999px;
  background: #e5f1ed;
  color: #215a51;
  font-size: 0.76rem;
  font-weight: 750;
}

.proposal-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.proposal-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbf9;
}

.proposal-expert {
  display: flex;
  align-items: center;
  gap: 10px;
}

.proposal-expert > img,
.proposal-expert > span,
.profile-photo-field > img,
.profile-photo-field > span,
.profile-preview > img,
.profile-preview > span {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--ink);
  font-weight: 850;
  object-fit: cover;
}

.proposal-expert > img {
  max-width: 48px;
  max-height: 48px;
}

.proposal-expert p {
  margin-top: 2px;
  font-size: 0.84rem;
}

.intro-audio {
  width: 100%;
  height: 36px;
}

.profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.profile-links a {
  color: #2d756b;
  font-size: 0.86rem;
  font-weight: 800;
}

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

.offer-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 16px;
  border: 1px solid rgba(23, 49, 47, 0.14);
  border-radius: 8px;
  background: #fffdf8;
}

.offer-card h3 {
  margin: 6px 0 8px;
  font-size: 1.45rem;
}

.offer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.offer-card small,
.offer-policy-note,
.trust-note {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.trust-note {
  padding: 12px;
  border: 1px solid rgba(23, 49, 47, 0.12);
  border-radius: 8px;
  background: #eef7f4;
  color: var(--ink);
  font-weight: 760;
}

.trust-section {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.trust-section h3,
.trust-section p {
  margin: 0;
}

.profile-form {
  display: grid;
  gap: 15px;
}

.profile-workspace {
  display: grid;
  gap: 18px;
}

.profile-setup-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.profile-setup-head h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.setup-steps {
  display: flex;
  gap: 8px;
}

.setup-steps span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
}

.setup-steps span.is-done {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--ink);
}

.profile-section {
  display: grid;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.profile-section > strong {
  font-size: 0.95rem;
}

.profile-preview-card {
  position: sticky;
  top: 112px;
  min-height: 300px;
}

.profile-save-success {
  margin: 0;
  color: #216a4f;
  font-size: 0.9rem;
  font-weight: 750;
}

.profile-dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.launch-live-banner,
.launch-hero-card,
.empty-activation-card,
.launch-score-card {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(23, 49, 47, 0.13);
  border-radius: 14px;
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(23, 49, 47, 0.06);
}

.launch-live-banner,
.launch-hero-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  background: linear-gradient(135deg, #fffdf8, #e8f4f1);
}

.launch-live-banner h3,
.launch-hero-card h2,
.empty-activation-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.05;
}

.launch-live-banner p,
.launch-hero-card p,
.empty-activation-card p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.launch-live-banner code,
.launch-url-box code {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 12px;
  color: var(--ink);
  font-weight: 850;
}

.launch-url-box {
  display: grid;
  gap: 12px;
  min-width: min(360px, 100%);
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.72);
}

.launch-score-card {
  background: var(--paper);
}

.launch-score-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.4fr);
  gap: 18px;
  align-items: center;
}

.launch-score-head h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 0.95;
}

.launch-meter {
  min-height: 16px;
}

.empty-activation-card {
  border-color: rgba(240, 91, 79, 0.26);
  background: #fff7f3;
}

.launch-checklist {
  display: grid;
  gap: 12px;
}

.launch-check-item {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.launch-check-item.is-done {
  border-color: rgba(135, 190, 180, 0.65);
  background: #eef8f4;
}

.launch-check-item label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.launch-check-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.launch-copy-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 12px;
  border-radius: 8px;
  background: var(--paper);
}

.launch-copy-box span {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 0.92rem;
}

.qr-placeholder .qr-box {
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(90deg, var(--ink) 10px, transparent 10px) 0 0 / 24px 24px,
    linear-gradient(var(--ink) 10px, transparent 10px) 0 0 / 24px 24px,
    var(--surface);
  color: var(--surface);
  font-weight: 900;
}

.profile-dashboard-tabs span {
  padding: 8px 11px;
  border: 1px solid rgba(23, 49, 47, 0.12);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.profile-url-row,
.fee-row,
.request-money-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.profile-url-row code {
  min-width: 0;
  overflow-wrap: anywhere;
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}

.status-pill.available {
  background: #d6ece6;
}

.status-pill.taken,
.status-pill.invalid {
  background: #f8d7d4;
}

.format-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.format-checkboxes label {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.82rem;
}

.offer-editor-list,
.offer-preview-stack,
.request-portal {
  display: grid;
  gap: 12px;
}

.offer-editor {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(23, 49, 47, 0.14);
  border-radius: 8px;
  background: #fffdf8;
}

.offer-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

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

.fee-row,
.request-money-row {
  padding: 10px;
  border-radius: 8px;
  background: #eef7f4;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 760;
}

.fee-row strong,
.request-money-row strong {
  color: var(--ink);
}

.muted-copy,
.social-proof {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.offer-preview-card {
  display: grid;
  gap: 6px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.offer-preview-card p,
.offer-preview-card span {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.warning-board {
  border-color: rgba(240, 91, 79, 0.32);
  background: #fff1ef;
  color: var(--ink);
}

.request-lane {
  display: grid;
  gap: 10px;
}

.request-lane h3 {
  margin: 0;
}

.request-card {
  align-items: start;
}

.request-details {
  margin-top: 12px;
  color: var(--muted);
}

.request-details summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 850;
}

.profile-photo-field {
  display: flex;
  align-items: center;
  gap: 14px;
}

.profile-photo-field > img,
.profile-photo-field > span,
.profile-preview > img,
.profile-preview > span {
  width: 72px;
  height: 72px;
  max-width: 72px;
  max-height: 72px;
  font-size: 1.3rem;
}

.profile-photo-field > img,
.profile-preview > img {
  aspect-ratio: 1;
  object-fit: cover;
}

.profile-photo-field .ghost-button {
  display: inline-flex;
  align-items: center;
}

.profile-preview {
  display: grid;
  align-content: start;
  gap: 12px;
}

.profile-preview h2,
.profile-preview p {
  margin: 0;
}

.empty-board {
  grid-column: 1 / -1;
  padding: 28px;
  border: 1px dashed rgba(23, 49, 47, 0.28);
  border-radius: 8px;
  color: var(--muted);
  text-align: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  font-size: 1.12rem;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--surface);
  font-size: 0.82rem;
  letter-spacing: 0;
}

.topnav {
  justify-content: center;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 0.95rem;
}

.topnav a:hover {
  color: var(--ink);
}

.login-actions,
.hero-actions {
  gap: 10px;
}

.ghost-button,
.dark-button {
  min-height: 42px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 750;
  transition: transform var(--quick), box-shadow var(--quick), background var(--quick), color var(--quick);
}

.ghost-button:hover,
.dark-button:hover,
.category-pill:hover,
.expert-card:hover {
  transform: translateY(-2px);
}

.ghost-button {
  background: transparent;
  color: var(--ink);
}

.ghost-button:hover {
  background: #e7f1ed;
}

.dark-button {
  background: var(--ink);
  color: var(--surface);
}

.dark-button:hover {
  box-shadow: 0 10px 22px rgba(23, 49, 47, 0.18);
}

.large {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  padding: 0 24px;
}

.wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 4vw, 56px) 42px;
  overflow: hidden;
}

.hero h1,
.split-band h2,
.marketplace h2,
.expert-hub h2,
.expert-landing h2,
.earnings-band h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.02;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(2.8rem, 7vw, 6.6rem);
}

.hero-lede {
  max-width: 650px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.35;
}

.hero-note {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-art img {
  display: block;
  width: 100%;
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(var(--shadow));
  animation: floatCard 6.5s ease-in-out infinite;
}

.hero-art.is-fallback {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #d6ece6;
  box-shadow: var(--shadow);
}

.hero-art.is-fallback::before {
  position: absolute;
  inset: 13% 15%;
  content: "";
  border: 18px solid var(--ink);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: 24px 24px 0 var(--gold);
}

.hero-art.is-fallback::after {
  position: absolute;
  right: 9%;
  bottom: 11%;
  width: 104px;
  height: 104px;
  content: "";
  border: 16px solid var(--surface);
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 14px rgba(240, 91, 79, 0.16);
}

.creator-hero {
  background:
    linear-gradient(130deg, rgba(214, 236, 230, 0.68), transparent 42%),
    var(--paper);
}

.hero-profile-preview {
  display: grid;
  justify-items: center;
}

.phone-shell {
  width: min(100%, 420px);
  padding: 14px;
  border: 1px solid rgba(23, 49, 47, 0.16);
  border-radius: 34px;
  background: #17211f;
  box-shadow: 0 34px 80px rgba(23, 49, 47, 0.24);
  animation: floatCard 6.5s ease-in-out infinite;
}

.phone-top {
  width: 82px;
  height: 6px;
  margin: 2px auto 14px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.28);
}

.mock-profile {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 28px 18px;
  border-radius: 24px;
  background: var(--surface);
  text-align: center;
}

.mock-profile h2 {
  margin: 0;
  font-size: 2rem;
}

.mock-profile p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.mock-offer-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  text-align: left;
}

.dm-problem-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: var(--surface);
}

.dm-problem-band h2,
.landing-calculator h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.5rem);
  letter-spacing: 0;
  line-height: 1.02;
}

.dm-problem-band p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.dm-board {
  display: grid;
  gap: 12px;
}

.dm-board article {
  padding: 18px 20px;
  border: 1px solid rgba(23, 49, 47, 0.12);
  border-radius: 18px 18px 18px 5px;
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(23, 49, 47, 0.06);
  color: var(--ink);
  font-weight: 800;
}

.dm-board article:nth-child(even) {
  margin-left: clamp(16px, 8vw, 92px);
  background: #edf5f1;
}

.request-path-band {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(150px, 1fr) auto minmax(180px, 1.2fr);
  gap: 12px;
  align-items: center;
  padding: 34px clamp(18px, 4vw, 56px);
  border-block: 1px solid var(--line);
  background: var(--paper);
}

.path-card {
  display: grid;
  gap: 6px;
  min-height: 108px;
  align-content: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.path-card span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.path-card strong {
  font-size: 1.3rem;
}

.paid-path {
  border-color: rgba(135, 190, 180, 0.55);
  background: #e7f1ed;
}

.path-arrow {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.path-arrow::after {
  display: block;
  width: 9px;
  height: 9px;
  margin: -3.5px 0 0 auto;
  content: "";
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  transform: rotate(45deg);
}

.landing-calculator {
  background: var(--surface);
}

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

.profile-proof-grid article {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(23, 49, 47, 0.12);
  border-radius: 14px;
  background: var(--paper);
}

.profile-proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.mini-flow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 4vw, 42px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 14px 38px rgba(23, 49, 47, 0.08);
}

.mini-flow div:not(.flow-line) {
  display: flex;
  align-items: center;
  gap: 8px;
}

.flow-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  font-weight: 900;
}

.voice-dot {
  position: relative;
  background: var(--coral);
}

.voice-dot::before,
.voice-dot::after {
  position: absolute;
  content: "";
  border: 2px solid var(--coral);
  border-radius: 50%;
  animation: pulseRing 1.8s ease-out infinite;
}

.voice-dot::before {
  inset: -6px;
}

.voice-dot::after {
  inset: -11px;
  animation-delay: 0.45s;
}

.flow-line {
  width: clamp(18px, 4vw, 48px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0) rotate(-0.4deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.6deg);
  }
}

@keyframes pulseRing {
  0% {
    opacity: 0.7;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.stats-strip div {
  display: grid;
  gap: 4px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.stats-strip div:last-child {
  border-right: 0;
}

.stats-strip strong {
  font-size: 1.4rem;
}

.stats-strip span {
  color: var(--muted);
}

.split-band,
.expert-hub,
.trust-band,
.policy-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px);
}

.split-band h2,
.expert-hub h2,
.trust-band h2,
.policy-band h2,
.marketplace h2 {
  font-size: clamp(2rem, 4vw, 4.1rem);
}

.trust-band {
  background: var(--surface);
}

.muted-band {
  background: #edf5f1;
}

.policy-band {
  background: #142321;
  color: var(--surface);
}

.trust-band p,
.policy-band p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.6;
}

.policy-band p {
  color: rgba(255, 253, 248, 0.76);
}

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

.example-grid span,
.policy-grid article {
  padding: 18px;
  border: 1px solid rgba(23, 49, 47, 0.13);
  border-radius: 8px;
  background: var(--surface);
}

.policy-band .policy-grid article {
  border-color: rgba(255, 253, 248, 0.16);
  background: rgba(255, 253, 248, 0.08);
}

.policy-grid p {
  margin: 8px 0 0;
}

.creator-route .topnav,
.creator-route #postQuestionButton,
.creator-route .login-actions [data-auth="user"] {
  display: none;
}

.creator-route .topbar {
  max-width: 760px;
  margin: 0 auto;
}

.creator-link-page {
  min-height: calc(100vh - 84px);
  padding: clamp(18px, 4vw, 48px);
  background:
    radial-gradient(circle at top, rgba(135, 190, 180, 0.22), transparent 36%),
    #f7f4ed;
}

.creator-shell {
  display: grid;
  gap: 16px;
  max-width: 680px;
  margin: 0 auto;
}

.creator-card,
.creator-offer-card,
.share-link-card {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 5vw, 30px);
  border: 1px solid rgba(23, 49, 47, 0.12);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 48px rgba(23, 49, 47, 0.08);
}

.creator-profile-card {
  text-align: center;
  justify-items: center;
}

.creator-profile-card h1 {
  margin: 0;
  font-size: clamp(2.4rem, 11vw, 4.8rem);
  line-height: 0.92;
}

.creator-avatar {
  width: 112px;
  height: 112px;
  font-size: 2.3rem;
}

.creator-credibility {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.creator-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.creator-trust-grid span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.creator-offer-stack {
  display: grid;
  gap: 12px;
}

.creator-offer-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.creator-offer-card h2 {
  margin: 3px 0;
  font-size: 2rem;
}

.creator-offer-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.creator-footer-note {
  margin: 4px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 750;
}

.share-workspace {
  display: grid;
  gap: 18px;
}

.share-link-card {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.share-link-card code {
  overflow-wrap: anywhere;
}

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

.steps article,
.expert-card,
.hub-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.steps article {
  display: grid;
  justify-items: center;
  min-height: 210px;
  padding: 24px;
  text-align: center;
  overflow: hidden;
}

.step-art {
  position: relative;
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border-radius: 28px;
  background: var(--teal-soft);
  font-weight: 800;
}

.steps h3,
.expert-card h3 {
  margin: 18px 0 8px;
}

.steps p,
.expert-card p,
.expert-hub p {
  color: var(--muted);
  line-height: 1.6;
}

.search-art::before {
  position: absolute;
  content: "";
  width: 48px;
  height: 48px;
  border: 10px solid var(--ink);
  border-radius: 50%;
  transform: translate(-10px, -6px);
}

.search-art::after {
  position: absolute;
  content: "";
  width: 46px;
  height: 10px;
  border-radius: 999px;
  background: var(--coral);
  transform: translate(30px, 34px) rotate(45deg);
}

.record-art::before {
  position: absolute;
  content: "";
  width: 42px;
  height: 64px;
  border-radius: 24px;
  background: var(--coral);
  box-shadow: 0 0 0 12px rgba(240, 91, 79, 0.18);
  animation: micPulse 1.8s ease-in-out infinite;
}

.record-art::after {
  position: absolute;
  content: "";
  width: 58px;
  height: 20px;
  border: 8px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  transform: translateY(36px);
}

.reply-art::before,
.reply-art::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: var(--ink);
}

.reply-art::before {
  width: 78px;
  height: 52px;
  transform: translateY(-4px);
}

.reply-art::after {
  width: 24px;
  height: 24px;
  background: var(--gold);
  transform: translate(34px, 28px) rotate(45deg);
}

@keyframes micPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.marketplace {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background: #eef7f4;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.search-box {
  display: grid;
  gap: 8px;
  width: min(100%, 370px);
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
}

.search-box input,
.auth-form input,
.field-label input,
.field-label textarea,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  outline: 0;
}

.search-box input,
.auth-form input,
.field-label input,
.request-form select {
  height: 48px;
  padding: 0 14px;
}

.search-box input:focus,
.auth-form input:focus,
.field-label input:focus,
.field-label textarea:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--ink);
}

.auth-error {
  margin: 0;
  color: #b42318;
  font-size: 0.88rem;
}

.text-button {
  width: fit-content;
  justify-self: start;
  padding: 0;
  border: 0;
  background: transparent;
  color: #2d756b;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.category-row {
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0;
}

.category-pill {
  min-height: 38px;
  border: 1px solid rgba(23, 49, 47, 0.22);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0 15px;
  cursor: pointer;
  font-weight: 750;
  transition: transform var(--quick), background var(--quick), color var(--quick);
}

.category-pill.is-active {
  background: var(--ink);
  color: var(--surface);
}

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

.dashboard-expert-grid {
  margin-top: 0;
}

.dashboard-expert-grid .expert-card {
  min-height: 0;
}

.expert-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  min-height: 310px;
  box-shadow: 0 14px 42px rgba(23, 49, 47, 0.06);
  transition: transform var(--quick), box-shadow var(--quick);
}

.expert-card:hover {
  box-shadow: 0 22px 58px rgba(23, 49, 47, 0.12);
}

.category-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 850;
}

.category-badge span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
}

.expert-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--avatar-bg, var(--teal));
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 850;
  box-shadow: inset 0 -10px 0 rgba(255, 255, 255, 0.28);
  transition: transform var(--quick);
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.expert-card:hover .avatar {
  transform: scale(1.06) rotate(-2deg);
}

.rating {
  color: var(--muted);
  font-size: 0.9rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  border-radius: 999px;
  background: var(--teal-soft);
  padding: 6px 10px;
  font-size: 0.8rem;
  font-weight: 750;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

.price {
  display: grid;
  gap: 2px;
}

.price strong {
  font-size: 1.35rem;
}

.price span {
  color: var(--muted);
  font-size: 0.85rem;
}

.expert-hub {
  align-items: center;
  background: var(--ink);
  color: var(--surface);
}

.expert-hub p {
  max-width: 650px;
  color: rgba(255, 253, 248, 0.78);
}

.hero-actions {
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.expert-landing,
.earnings-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  padding: clamp(64px, 9vw, 128px) clamp(18px, 7vw, 112px);
}

.expert-landing { background: var(--surface); }

.expert-landing h2,
.earnings-band h2 {
  max-width: 710px;
  font-size: clamp(2.4rem, 5vw, 5.3rem);
}

.expert-landing h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(2.7rem, 5.4vw, 5.8rem);
  letter-spacing: 0;
  line-height: 1.02;
}

.experts-page .expert-landing {
  min-height: calc(100vh - 78px);
}

.topnav a.is-active {
  color: var(--ink);
  font-weight: 800;
}

.expert-landing-intro > p:not(.eyebrow),
.earnings-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.6;
}

.expert-proof-list {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.expert-proof-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.expert-proof-list span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 850;
}

.expert-proof-list p { margin: 0; color: var(--muted); line-height: 1.45; }
.expert-proof-list strong { display: block; margin-bottom: 2px; color: var(--ink); }

.expert-dm-visual {
  position: relative;
  min-height: 490px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #d6ece6;
  box-shadow: var(--shadow);
}

.expert-dm-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(90deg, transparent 0 61px, rgba(23, 49, 47, 0.07) 62px 63px);
}

.dm-caption,
.dm-card,
.dm-payoff { position: absolute; z-index: 1; }

.dm-caption {
  top: 32px;
  left: 32px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dm-card {
  width: min(78%, 330px);
  padding: 18px;
  border: 1px solid rgba(23, 49, 47, 0.14);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 15px 30px rgba(23, 49, 47, 0.1);
}

.dm-card span,
.dm-payoff span {
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dm-card p { margin: 9px 0 0; font-size: 1.02rem; font-weight: 760; line-height: 1.25; }
.dm-card-one { top: 94px; right: 42px; transform: rotate(3deg); }
.dm-card-two { top: 214px; left: 36px; transform: rotate(-3deg); }
.dm-card-three { right: 32px; bottom: 104px; transform: rotate(2deg); }

.dm-payoff {
  bottom: 28px;
  left: 32px;
  display: grid;
  gap: 4px;
  padding: 16px 20px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--surface);
}

.dm-payoff strong { font-size: 1.25rem; }

.earnings-band { background: #f3d27e; }
.earnings-copy .dark-button { margin-top: 28px; }

.earnings-calculator {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(23, 49, 47, 0.16);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.calculator-output {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.calculator-output span,
.calculator-output small,
.calculator-note { color: var(--muted); }

.calculator-output strong { font-size: clamp(2.6rem, 5vw, 4.5rem); letter-spacing: 0; line-height: 0.95; }

.calculator-control { display: grid; gap: 12px; margin-top: 24px; font-weight: 750; }
.calculator-control span { display: flex; justify-content: space-between; }
.calculator-control output { color: var(--coral); font-weight: 850; }
.calculator-control input { width: 100%; accent-color: var(--coral); }
.calculator-note { margin: 30px 0 0; line-height: 1.45; }

.hub-graphic {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: rgba(255, 253, 248, 0.08);
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 8px;
}

.hub-node {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 140px;
  padding: 18px 10px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.1);
}

.hub-icon {
  position: relative;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 24px;
  background: var(--surface);
}

.hub-graphic .dark-button {
  grid-column: 1 / -1;
  margin-top: 6px;
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}

.hub-arrow {
  width: 34px;
  height: 2px;
  background: var(--gold);
}

.hub-arrow::after {
  display: block;
  width: 10px;
  height: 10px;
  margin-top: -4px;
  margin-left: auto;
  border-top: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
  content: "";
  transform: rotate(45deg);
}

.profile-icon::before,
.inbox-icon::before,
.payout-icon::before {
  position: absolute;
  content: "";
}

.profile-icon::before {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 34px 0 -8px var(--coral);
}

.inbox-icon::before {
  width: 42px;
  height: 30px;
  border: 8px solid var(--ink);
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.payout-icon::before {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 10px var(--surface), inset 0 0 0 15px var(--ink);
}

dialog {
  width: min(92vw, 780px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgba(23, 49, 47, 0.45);
  backdrop-filter: blur(4px);
}

.icon-button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.25rem;
}

.close-dialog,
.close-auth,
.close-request {
  position: absolute;
  top: 16px;
  right: 16px;
}

.profile-detail,
.auth-layout,
.request-form {
  padding: clamp(24px, 5vw, 46px);
}

.profile-detail {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
}

.profile-detail .avatar {
  width: 150px;
  height: 150px;
  font-size: 2.4rem;
}

.profile-meta {
  display: grid;
  gap: 16px;
}

.profile-meta h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.voice-preview,
.voice-recorder {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  border-radius: 8px;
  padding: 14px;
  background: var(--teal-soft);
  overflow: hidden;
}

.compact-recorder {
  min-height: 58px;
  padding: 10px 12px;
}

.answer-box {
  display: grid;
  gap: 12px;
  margin-top: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.audio-playback {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.audio-playback span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.audio-playback audio {
  width: min(100%, 360px);
}

.play-button,
.record-button {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 0;
  border-radius: 50%;
  background: var(--coral);
  cursor: pointer;
}

.play-button {
  clip-path: polygon(30% 18%, 30% 82%, 82% 50%);
  border-radius: 0;
  background: var(--ink);
}

.record-button {
  box-shadow: inset 0 0 0 11px var(--surface);
}

.record-button.is-recording {
  animation: recordPulse 1s ease-in-out infinite;
}

@keyframes recordPulse {
  0%, 100% {
    box-shadow: inset 0 0 0 11px var(--surface), 0 0 0 0 rgba(240, 91, 79, 0.3);
  }
  50% {
    box-shadow: inset 0 0 0 11px var(--surface), 0 0 0 10px rgba(240, 91, 79, 0);
  }
}

.wave-bars {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 44px;
  flex: 1;
}

.wave-bars span {
  width: 6px;
  border-radius: 6px;
  background: var(--ink);
  animation: waveDance 1.15s ease-in-out infinite;
}

.wave-bars span:nth-child(1) { height: 16px; }
.wave-bars span:nth-child(2) { height: 30px; animation-delay: 0.1s; }
.wave-bars span:nth-child(3) { height: 42px; animation-delay: 0.2s; }
.wave-bars span:nth-child(4) { height: 24px; animation-delay: 0.3s; }
.wave-bars span:nth-child(5) { height: 36px; animation-delay: 0.4s; }
.wave-bars span:nth-child(6) { height: 18px; animation-delay: 0.5s; }

@keyframes waveDance {
  0%, 100% {
    transform: scaleY(0.58);
  }
  50% {
    transform: scaleY(1);
  }
}

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

.visual-metrics div {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.visual-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.auth-layout,
.request-form {
  display: grid;
  gap: 22px;
}

.auth-form,
.request-form label {
  display: grid;
  gap: 14px;
}

.auth-form label,
.request-form label {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

.request-form textarea {
  min-height: 150px;
  resize: vertical;
  padding: 14px;
}

.conditional-fields {
  display: grid;
  gap: 14px;
}

.form-helper {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.request-review {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid rgba(23, 49, 47, 0.14);
  border-radius: 8px;
  background: #eef7f4;
}

.request-review p {
  margin: 0;
  color: var(--muted);
}

.status-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  margin: 14px 0;
}

.status-timeline span {
  display: grid;
  place-items: center;
  min-height: 36px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.status-timeline span.is-active {
  border-color: var(--teal);
  background: var(--teal-soft);
  color: var(--ink);
}

.user-status-card {
  align-items: start;
}

.field-label textarea {
  min-height: 110px;
  resize: vertical;
  padding: 12px;
}

.format-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.format-option {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  padding: 0 12px;
  font-weight: 800;
}

.format-option.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--surface);
}

.format-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.dashboard {
  min-height: calc(100vh - 78px);
  padding: clamp(22px, 4vw, 44px) clamp(18px, 4vw, 56px) clamp(54px, 8vw, 90px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.82), rgba(239, 244, 241, 0.95)),
    #f3f6f4;
}

.dashboard-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 5vw, 44px);
  border: 1px solid rgba(23, 49, 47, 0.16);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 50px rgba(23, 49, 47, 0.08);
}

.dashboard-hero > * {
  position: relative;
  z-index: 1;
}

.simple-hero {
  align-items: center;
  padding: clamp(26px, 4vw, 38px);
  box-shadow: none;
  background: #fffdf8;
}

.expert-dashboard-hero {
  position: relative;
  overflow: hidden;
  background: #142321;
  color: var(--surface);
}

.expert-dashboard-hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: -56px;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(255, 253, 248, 0.18);
  border-radius: 50%;
  background: rgba(135, 190, 180, 0.16);
}

.member-hero {
  background: #fffdf8;
}

.dashboard-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.2vw, 4.2rem);
  line-height: 1;
}

.dashboard-hero p:not(.eyebrow) {
  max-width: 520px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 18px 0 22px;
  padding: 5px;
  border: 1px solid rgba(23, 49, 47, 0.14);
  border-radius: 999px;
  width: fit-content;
  background: var(--surface);
}

.tab-button {
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 800;
}

.tab-button.is-active {
  background: var(--ink);
  color: var(--surface);
  box-shadow: 0 4px 12px rgba(23, 49, 47, 0.16);
}

.expert-workspace,
.workspace-overview {
  display: grid;
  gap: 18px;
}

.workspace-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}

.workspace-metric {
  display: grid;
  gap: 6px;
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(23, 49, 47, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 10px 30px rgba(23, 49, 47, 0.04);
}

.workspace-metric span,
.workspace-metric small {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.workspace-metric strong {
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
}

.expert-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 16px;
}

.workspace-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 260px;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(23, 49, 47, 0.13);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(23, 49, 47, 0.06);
}

.main-command-card {
  background: linear-gradient(135deg, #fffdf8, #eef7f4);
}

.workspace-card-head,
.proposal-status-line {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.workspace-card h2 {
  margin: 6px 0 0;
  font-size: clamp(1.8rem, 3.4vw, 3.3rem);
  line-height: 1.02;
}

.workspace-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.command-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.profile-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8e1d5;
}

.profile-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--gold));
}

.setup-list {
  display: grid;
  gap: 8px;
}

.workspace-section {
  display: grid;
  gap: 12px;
  padding-top: 6px;
}

.tight-title {
  margin-bottom: 0;
}

.tight-title h2 {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

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

.compact-question-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(23, 49, 47, 0.13);
  border-radius: 8px;
  background: var(--surface);
}

.compact-question-card h3 {
  margin: 10px 0 8px;
  font-size: 1.15rem;
}

.compact-question-card p {
  max-width: 760px;
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.48;
}

.premium-question-grid {
  margin-top: 0;
}

.premium-proposal-list {
  margin-top: 0;
}

.expert-dashboard-hero p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.74);
}

.expert-dashboard-hero .dark-button {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}

.expert-dashboard-hero .ghost-button {
  border-color: rgba(255, 253, 248, 0.72);
  color: var(--surface);
}

.expert-dashboard-hero .ghost-button:hover {
  background: rgba(255, 253, 248, 0.12);
}

.journey-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin: 22px 0;
}

.journey-step {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.journey-step span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: var(--paper);
  font-weight: 850;
}

.journey-step.is-done span {
  background: var(--teal);
}

.journey-step.is-active {
  border-color: var(--coral);
  box-shadow: 0 14px 34px rgba(240, 91, 79, 0.14);
}

.journey-step.is-active span {
  background: var(--coral);
  color: var(--surface);
  animation: pulseRingSmall 1.8s ease-in-out infinite;
}

.journey-line {
  width: 38px;
  height: 2px;
  background: var(--gold);
}

@keyframes pulseRingSmall {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(240, 91, 79, 0.26);
  }
  50% {
    box-shadow: 0 0 0 9px rgba(240, 91, 79, 0);
  }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(2, minmax(220px, 0.7fr));
  gap: 16px;
}

.simple-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1.15fr) repeat(2, minmax(220px, 0.75fr));
  gap: 16px;
}

.two-column {
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.7fr);
}

.workflow-card {
  display: grid;
  gap: 16px;
  align-content: start;
  min-height: 260px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 14px 42px rgba(23, 49, 47, 0.06);
}

.simple-card {
  min-height: 220px;
  box-shadow: none;
}

.primary-card {
  border-color: rgba(23, 49, 47, 0.28);
  background: #fffefa;
}

.list-stack {
  display: grid;
  gap: 14px;
}

.request-row {
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  align-items: center;
  min-height: 0;
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.simple-list {
  display: grid;
  gap: 14px;
}

.simple-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border: 1px solid rgba(23, 49, 47, 0.15);
  border-radius: 8px;
  background: var(--surface);
}

.simple-row h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
}

.simple-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.row-actions {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  flex-wrap: wrap;
}

.simple-row > div:first-child {
  min-width: 0;
}

.status-pill,
.price-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--ink);
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 850;
}

.price-chip {
  background: var(--paper);
}

.highlight-card {
  background: linear-gradient(135deg, var(--surface), #e8f4f1);
}

.workflow-card h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.workflow-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.field-label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.check-row span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--surface);
  font-size: 0.78rem;
  font-weight: 900;
}

.check-row.is-done span {
  border-color: var(--teal);
  background: var(--teal);
}

.card-kicker {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-expert-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.mini-expert-row div {
  display: grid;
  gap: 3px;
}

.mini-expert-row span:not(.avatar) {
  color: var(--muted);
  font-size: 0.88rem;
}

.small-avatar {
  width: 48px;
  height: 48px;
  font-size: 0.95rem;
}

.demo-toast {
  position: sticky;
  top: 92px;
  z-index: 20;
  width: fit-content;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--surface);
  padding: 12px 18px;
  box-shadow: var(--shadow);
  animation: toastIn 220ms ease;
}

@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payments-teaser {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 16px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 49, 47, 0.15);
  border-radius: 8px;
  background: #fffdf8;
}

.payments-teaser > div:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payments-teaser strong {
  font-size: 1rem;
}

.payments-teaser p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
  gap: 7px;
}

.payment-methods span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 750;
}

@media (max-width: 980px) {
  .topbar,
  .hero,
  .split-band,
  .dm-problem-band,
  .expert-hub,
  .expert-landing,
  .earnings-band,
  .trust-band,
  .policy-band {
    grid-template-columns: 1fr;
  }

  .topnav {
    display: none;
  }

  .login-actions {
    justify-content: end;
  }

  .hero {
    min-height: auto;
  }

  .stats-strip,
  .expert-grid,
  .question-card-grid,
  .steps,
  .example-grid,
  .policy-grid,
  .profile-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .request-path-band {
    grid-template-columns: 1fr;
  }

  .path-arrow {
    width: 2px;
    height: 24px;
    justify-self: center;
  }

  .path-arrow::after {
    margin: auto 0 0 -3.5px;
    transform: rotate(135deg);
  }

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

  .expert-dm-visual {
    max-width: 640px;
    width: 100%;
  }

  .hub-arrow {
    width: 2px;
    height: 30px;
    justify-self: center;
  }

  .hub-arrow::after {
    margin-top: 20px;
    margin-left: -4px;
    transform: rotate(135deg);
  }

  .section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .search-box {
    width: 100%;
  }

  .dashboard-hero,
  .journey-track,
  .dashboard-grid,
  .launch-live-banner,
  .launch-hero-card,
  .launch-score-head,
  .launch-copy-box,
  .simple-grid,
  .two-column,
  .offer-grid,
  .offer-settings-grid,
  .workspace-strip,
  .expert-command-grid {
    grid-template-columns: 1fr;
  }

  .request-row {
    grid-template-columns: 1fr;
  }

  .simple-row {
    grid-template-columns: 1fr;
  }

  .compact-question-card {
    grid-template-columns: 1fr;
  }

  .row-actions {
    justify-content: start;
  }

  .dashboard-hero {
    align-items: stretch;
    flex-direction: column;
  }

  .profile-preview-card {
    position: static;
  }

  .payments-teaser {
    align-items: start;
    flex-direction: column;
  }

  .payment-methods {
    justify-content: start;
  }

  .journey-line {
    width: 2px;
    height: 28px;
    justify-self: center;
  }
}

@media (max-width: 660px) {
  .topbar {
    gap: 14px;
    padding: 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .login-actions {
    gap: 8px;
  }

  .signed-in-identity {
    padding: 0 5px;
  }

  .signed-in-identity strong {
    display: none;
  }

  .ghost-button,
  .dark-button {
    padding: 0 13px;
    font-size: 0.9rem;
  }

  .hero h1 {
    font-size: 2.85rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .large {
    justify-content: center;
  }

  .expert-landing,
  .earnings-band,
  .dm-problem-band,
  .trust-band,
  .policy-band {
    padding: 58px 18px;
  }

  .phone-shell {
    border-radius: 26px;
    padding: 10px;
  }

  .mock-profile {
    border-radius: 20px;
    padding: 22px 14px;
  }

  .expert-dm-visual {
    min-height: 430px;
  }

  .dm-card { width: min(84%, 300px); }
  .dm-card-one { right: 18px; }
  .dm-card-two { left: 18px; }
  .dm-card-three { right: 18px; }
  .dm-payoff { left: 18px; }

  .mini-flow {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
  }

  .mini-flow strong {
    font-size: 0.88rem;
  }

  .stats-strip,
  .expert-grid,
  .question-card-grid,
  .steps,
  .example-grid,
  .policy-grid,
  .profile-proof-grid,
  .status-timeline,
  .creator-offer-card,
  .share-link-card,
  .profile-detail {
    grid-template-columns: 1fr;
  }

  .stats-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .profile-detail .avatar {
    width: 108px;
    height: 108px;
    font-size: 1.8rem;
  }

  .hub-row {
    display: grid;
  }

  .visual-metrics {
    grid-template-columns: 1fr;
  }
}

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