:root {
  --bg: #f7f0e4;
  --bg-strong: #f1e0cf;
  --surface: rgba(255, 250, 243, 0.78);
  --surface-strong: rgba(255, 248, 240, 0.92);
  --text: #221b19;
  --muted: #665752;
  --line: rgba(34, 27, 25, 0.12);
  --accent: #f36b45;
  --accent-deep: #c74e2d;
  --accent-soft: #ffd2c6;
  --accent-bright: #ff8d52;
  --accent-rgb: 243, 107, 69;
  --sage: #617a6e;
  --gold: #e3ad54;
  --shadow: 0 22px 70px rgba(58, 34, 18, 0.14);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Space Grotesk", "Trebuchet MS", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(var(--accent-rgb), 0.18), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(97, 122, 110, 0.18), transparent 24%),
    linear-gradient(180deg, #fcf7f1 0%, var(--bg) 44%, #f4ebde 100%);
  color: var(--text);
  font-family: var(--font-body);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(34, 27, 25, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 27, 25, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65), transparent 88%);
  pointer-events: none;
}

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

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

button,
input,
select,
textarea {
  border-radius: var(--radius-sm);
}

.site-shell {
  width: min(1240px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.site-header,
.site-footer,
.hero,
.insight-strip,
.section-grid,
.section-split,
.pricing-section,
.closing-cta {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  margin-bottom: 22px;
  border-radius: 28px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 249, 242, 0.92)),
    rgba(255, 250, 243, 0.74);
  box-shadow: 0 18px 48px rgba(58, 34, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-grid;
  gap: 8px;
  font-weight: 700;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(220px, 26vw, 340px);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 14px 28px rgba(34, 27, 25, 0.08));
}

.brand-mark-image {
  display: block;
  width: auto;
  height: 52px;
  filter: drop-shadow(0 14px 28px rgba(34, 27, 25, 0.12));
  flex: 0 0 auto;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--accent), var(--accent-bright));
  color: #fffaf6;
  text-transform: lowercase;
  border: 1px solid rgba(255, 255, 255, 0.32);
  box-shadow: 0 14px 28px rgba(var(--accent-rgb), 0.28);
}

.brand-lockup {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.24rem, 1.7vw, 1.48rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.brand-note {
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
}

.site-nav a {
  position: relative;
  padding-bottom: 4px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.95fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: center;
  padding: 20px 0 64px;
}

.hero-copy,
.hero-form-panel,
.signal-card,
.feature-card,
.benefit-card,
.tier-card,
.closing-cta,
.insight-strip,
.phone-shell {
  backdrop-filter: blur(18px);
}

.hero-copy {
  padding: 28px 8px 28px 0;
}

.eyebrow,
.panel-topline,
.scan-badge,
.tier-name,
.feature-step,
.signal-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow,
.panel-topline,
.signal-label {
  color: var(--accent-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

h1 {
  margin-top: 14px;
  font-size: clamp(3.3rem, 6vw, 6.4rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2.1rem, 3.7vw, 3.8rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.6rem;
}

.hero-text,
.hero-form-panel p,
.feature-card p,
.benefit-card p,
.tier-card li,
.closing-cta p,
.signal-card span,
.insight-strip span {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(145deg, var(--accent), var(--accent-bright));
  color: #fff8f4;
  box-shadow: 0 18px 32px rgba(var(--accent-rgb), 0.26);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 22px 40px rgba(var(--accent-rgb), 0.32);
}

.button-secondary {
  border-color: rgba(34, 27, 25, 0.12);
  background: rgba(255, 250, 243, 0.75);
}

.button-danger {
  border-color: rgba(114, 38, 30, 0.14);
  background: #7d3428;
  color: #fff7f3;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  font-weight: 700;
  color: var(--text);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li,
.chip-row span,
.food-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.75);
  border: 1px solid rgba(34, 27, 25, 0.08);
  color: var(--text);
}

.hero-stage {
  display: grid;
  gap: 18px;
}

.phone-shell {
  position: relative;
  width: min(100%, 390px);
  margin: 0 auto;
  padding: 16px;
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.95), rgba(252, 242, 235, 0.76)),
    rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(34, 27, 25, 0.08);
  box-shadow: var(--shadow);
  animation: float 8s ease-in-out infinite;
}

.phone-notch {
  width: 132px;
  height: 28px;
  margin: 0 auto 16px;
  border-radius: 0 0 18px 18px;
  background: rgba(34, 27, 25, 0.9);
}

.phone-screen {
  display: grid;
  gap: 12px;
}

.scan-header {
  display: grid;
  gap: 4px;
  padding-bottom: 8px;
}

.scan-header p {
  margin: 0;
  font-weight: 700;
  font-size: 1.4rem;
}

.scan-header small {
  color: var(--muted);
}

.scan-badge {
  color: var(--sage);
}

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

.food-card {
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid rgba(34, 27, 25, 0.08);
}

.food-card-featured {
  background: linear-gradient(180deg, rgba(243, 107, 69, 0.18), rgba(255, 251, 246, 0.92));
}

.food-card-tag {
  margin: 0 0 10px;
  color: var(--accent-deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.food-card h2 {
  font-size: 1.8rem;
}

.food-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.food-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.signal-card,
.hero-form-panel,
.insight-strip,
.feature-card,
.benefit-card,
.tier-card,
.closing-cta {
  background: var(--surface);
  border: 1px solid rgba(34, 27, 25, 0.08);
  box-shadow: var(--shadow);
}

.signal-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.signal-card strong {
  display: block;
  margin: 10px 0 10px;
  font-size: 1.2rem;
  line-height: 1.35;
}

.hero-form-panel {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.hero-form-panel h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

.insight-strip,
.section-grid,
.section-split,
.pricing-section {
  margin-top: 30px;
}

.insight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius-xl);
}

.insight-strip div {
  display: grid;
  gap: 8px;
}

.insight-strip strong {
  font-size: 1.08rem;
  line-height: 1.35;
}

.section-grid,
.section-split,
.pricing-section {
  padding: 74px 0 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 30px;
}

.pricing-copy {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.pricing-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.75);
  border: 1px solid rgba(34, 27, 25, 0.08);
  color: var(--text);
  font-weight: 700;
}

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

.feature-card,
.benefit-card,
.tier-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.tier-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.tier-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.tier-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 27, 25, 0.06);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.tier-price {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.tier-price span {
  margin-left: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.tier-subprice {
  margin: -4px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.tier-callout {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 251, 246, 0.76);
  color: var(--text);
  line-height: 1.65;
}

.tier-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

.tier-actions .button {
  width: 100%;
}

.feature-step {
  color: var(--sage);
}

.feature-card h3,
.benefit-card h3,
.tier-card h3 {
  margin-top: 12px;
  font-size: 1.7rem;
}

.benefit-stack {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 18px;
}

.benefit-card:nth-child(1) {
  min-height: 240px;
}

.benefit-card:nth-child(2),
.benefit-card:nth-child(3) {
  min-height: 210px;
}

.tier-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 18px;
}

.tier-card-basic {
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.92), rgba(255, 253, 250, 0.84)),
    var(--surface);
}

.tier-card-pro {
  background:
    linear-gradient(180deg, rgba(243, 107, 69, 0.18), rgba(255, 252, 248, 0.82)),
    var(--surface);
  border-color: rgba(var(--accent-rgb), 0.2);
  box-shadow:
    0 22px 70px rgba(58, 34, 18, 0.14),
    0 16px 38px rgba(var(--accent-rgb), 0.08);
}

.tier-card-partner {
  background:
    linear-gradient(180deg, rgba(227, 173, 84, 0.16), rgba(255, 252, 248, 0.82)),
    var(--surface);
}

.tier-card-pro .tier-badge {
  background: rgba(var(--accent-rgb), 0.12);
  color: var(--accent-deep);
}

.tier-card-partner .tier-badge {
  background: rgba(227, 173, 84, 0.18);
  color: #8b6121;
}

.closing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 74px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 4px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Reveal targets stay visible by default so throttled browser callbacks never blank a page. */
[data-reveal] {
  opacity: 1;
  transform: none;
}

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

.dashboard-page [data-reveal] {
  opacity: 1;
  transform: none;
}

.guest-page {
  background:
    radial-gradient(circle at 12% 16%, rgba(97, 122, 110, 0.2), transparent 26%),
    radial-gradient(circle at 86% 8%, rgba(243, 107, 69, 0.2), transparent 28%),
    linear-gradient(180deg, #faf6ef 0%, #f3ecdf 46%, #efe7d8 100%);
}

.host-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(227, 173, 84, 0.16), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(97, 122, 110, 0.18), transparent 28%),
    linear-gradient(180deg, #f8f4eb 0%, #efe7db 46%, #ebe0d0 100%);
}

.dashboard-page {
  background:
    radial-gradient(circle at 12% 14%, rgba(243, 107, 69, 0.18), transparent 24%),
    radial-gradient(circle at 86% 8%, rgba(97, 122, 110, 0.18), transparent 28%),
    linear-gradient(180deg, #f7f2e8 0%, #eee4d3 48%, #e7dbc8 100%);
}

.guest-shell {
  width: min(1280px, calc(100vw - 28px));
}

.host-shell {
  width: min(1280px, calc(100vw - 28px));
}

.dashboard-shell {
  width: min(1360px, calc(100vw - 28px));
}

.dashboard-shell.is-loading {
  cursor: progress;
}

.dashboard-shell.is-loading .dashboard-main {
  opacity: 0.74;
  transition: opacity 160ms ease;
}

.guest-header {
  padding-bottom: 24px;
}

.host-header {
  padding-bottom: 24px;
}

.dashboard-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 16px;
  padding: 10px 14px 12px;
  background:
    linear-gradient(180deg, rgba(247, 242, 232, 0.98), rgba(247, 242, 232, 0.9) 70%, rgba(247, 242, 232, 0));
  backdrop-filter: blur(18px);
}

.dashboard-header__identity {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.dashboard-header__utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.dashboard-header .brand {
  gap: 6px;
}

.dashboard-header .brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  box-shadow: 0 10px 22px rgba(var(--accent-rgb), 0.22);
}

.dashboard-header .brand-mark-image {
  height: 44px;
}

.dashboard-header .brand-lockup {
  gap: 4px;
}

.dashboard-header .brand-text {
  font-size: clamp(1.02rem, 1.2vw, 1.16rem);
  line-height: 0.98;
}

.dashboard-header .brand-note {
  font-size: 0.68rem;
  line-height: 1.25;
}

.dashboard-header .site-nav {
  gap: 14px;
}

.dashboard-header .site-nav a {
  padding-bottom: 2px;
  font-size: 0.9rem;
}

.dashboard-header__summary {
  margin: 0;
  padding-left: 6px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.dashboard-header__auth-form {
  margin: 0;
}

.dashboard-header__auth-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 251, 247, 0.98), rgba(255, 245, 238, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(34, 27, 25, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.dashboard-header__auth-link:hover,
.dashboard-header__auth-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 28px rgba(var(--accent-rgb), 0.16);
}

.dashboard-header__auth-link[type="submit"] {
  cursor: pointer;
  font: inherit;
}

.guest-main {
  display: grid;
  gap: 22px;
}

.host-main {
  display: grid;
  gap: 22px;
}

.dashboard-main {
  display: grid;
  gap: 22px;
}

.dashboard-main section[id],
.dashboard-main article[id] {
  scroll-margin-top: clamp(150px, 24vh, 260px);
}

.guest-hero,
.guest-summary-panel,
.guest-insight-panel,
.guest-filter-panel,
.guide-card,
.guide-empty,
.guest-not-found,
.host-hero,
.host-summary-panel,
.host-step-card,
.survey-card,
.preview-card {
  background: var(--surface);
  border: 1px solid rgba(34, 27, 25, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dashboard-alert,
.dashboard-login-card,
.dashboard-hero,
.dashboard-menu-bar,
.dashboard-card {
  background: var(--surface);
  border: 1px solid rgba(34, 27, 25, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.guest-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.guest-hero-text,
.filter-caption,
.guide-card-text,
.guide-card-subtitle,
.guide-card-quote,
.guest-summary-panel p,
.summary-tile span,
.guest-not-found p {
  color: var(--muted);
  line-height: 1.65;
}

.guest-hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.04rem;
}

.guest-summary-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.guest-summary-topline {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
}

.guest-summary-panel h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.guest-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.summary-tile {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 250, 244, 0.82);
  border: 1px solid rgba(34, 27, 25, 0.08);
}

.summary-tile span {
  display: block;
  font-size: 0.84rem;
}

.summary-tile strong {
  display: block;
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.35;
}

.guest-insight-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
  padding: 26px 30px;
  border-radius: var(--radius-xl);
}

.guest-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.guest-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 249, 241, 0.82);
  border: 1px solid rgba(34, 27, 25, 0.09);
  font-weight: 700;
}

.guest-filter-panel {
  padding: 24px 30px;
  border-radius: var(--radius-xl);
}

.filter-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.filter-caption {
  max-width: 38ch;
  margin: 0;
}

.filter-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.filter-chip {
  display: grid;
  gap: 2px;
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid rgba(34, 27, 25, 0.1);
  background: rgba(255, 250, 243, 0.72);
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.filter-chip span {
  font-weight: 700;
}

.filter-chip small {
  color: var(--muted);
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.32);
}

.filter-chip.is-active {
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.18), rgba(255, 251, 247, 0.92));
  border-color: rgba(var(--accent-rgb), 0.35);
  box-shadow: 0 14px 30px rgba(var(--accent-rgb), 0.15);
}

.filter-result-count {
  margin: 18px 0 0;
  color: var(--accent-deep);
  font-weight: 700;
}

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

.guide-card {
  display: grid;
  overflow: hidden;
  border-radius: 30px;
}

.guide-card.is-hidden {
  display: none;
}

.guide-card-media {
  position: relative;
  min-height: 200px;
  padding: 20px;
  color: #fffaf6;
  overflow: hidden;
}

.guide-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guide-card-media.has-image::before {
  background:
    linear-gradient(180deg, rgba(34, 27, 25, 0.06) 0%, rgba(34, 27, 25, 0.55) 100%),
    rgba(255, 255, 255, 0.18);
}

.guide-card-media::before,
.guide-card-media::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  opacity: 0.22;
}

.guide-card-media::before {
  width: 180px;
  height: 180px;
  right: -30px;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.28);
}

.guide-card-media::after {
  width: 120px;
  height: 120px;
  top: -24px;
  left: -14px;
  background: rgba(255, 255, 255, 0.18);
}

.media-sunset {
  background:
    linear-gradient(160deg, rgba(34, 27, 25, 0.15), rgba(34, 27, 25, 0.05)),
    linear-gradient(135deg, #ff9a5a 0%, #f36b45 48%, #8c433d 100%);
}

.media-harbor {
  background:
    linear-gradient(160deg, rgba(34, 27, 25, 0.15), rgba(34, 27, 25, 0.05)),
    linear-gradient(135deg, #4f7b84 0%, #6ba5ad 42%, #f0c88d 100%);
}

.media-citrus {
  background:
    linear-gradient(160deg, rgba(34, 27, 25, 0.15), rgba(34, 27, 25, 0.05)),
    linear-gradient(135deg, #f2b93f 0%, #f58e3d 52%, #5d9156 100%);
}

.media-morning {
  background:
    linear-gradient(160deg, rgba(34, 27, 25, 0.14), rgba(34, 27, 25, 0.04)),
    linear-gradient(135deg, #f3d59d 0%, #c88356 46%, #6b4e3a 100%);
}

.media-sage {
  background:
    linear-gradient(160deg, rgba(34, 27, 25, 0.15), rgba(34, 27, 25, 0.05)),
    linear-gradient(135deg, #6f8f78 0%, #8bb3a3 44%, #f1d6a4 100%);
}

.guide-card-category,
.guide-card-favorite {
  position: relative;
  z-index: 1;
}

.guide-card-category {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.18);
  border: 1px solid rgba(255, 250, 243, 0.24);
  font-weight: 700;
}

.guide-card-favorite {
  display: block;
  margin-top: 14px;
  font-size: 1.7rem;
  line-height: 1;
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.guide-card-body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.guide-card-heading h3 {
  font-size: 2rem;
}

.guide-card-subtitle {
  margin: 10px 0 0;
  font-size: 0.96rem;
}

.guide-card-text,
.guide-card-quote {
  margin: 0;
}

.guide-card-quote {
  padding-left: 14px;
  border-left: 3px solid rgba(var(--accent-rgb), 0.35);
  font-style: italic;
}

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

.guide-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.guide-tag-row span {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.86);
  border: 1px solid rgba(34, 27, 25, 0.08);
  font-size: 0.94rem;
}

.guide-button {
  width: fit-content;
}

.guide-feedback {
  display: grid;
  gap: 10px;
  padding-top: 6px;
  border-top: 1px solid rgba(34, 27, 25, 0.08);
}

.guide-feedback-head {
  display: grid;
  gap: 10px;
}

.guide-feedback-label {
  font-weight: 700;
}

.guide-feedback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.guide-feedback-button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.1);
  background: rgba(255, 250, 243, 0.9);
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.guide-feedback-button:hover,
.guide-feedback-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(255, 245, 237, 0.98);
  box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.08);
}

.guide-feedback-button.is-selected {
  border-color: rgba(97, 122, 110, 0.22);
  background: rgba(239, 248, 243, 0.94);
  box-shadow: none;
}

.guide-feedback-button:disabled {
  cursor: default;
}

.guide-feedback-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.guide-feedback[data-feedback-submitted="true"] .guide-feedback-note {
  color: var(--text);
}

.guide-empty,
.guest-not-found {
  padding: 30px;
  border-radius: var(--radius-xl);
}

.guest-guide-empty {
  display: grid;
  gap: 12px;
}

.guest-guide-empty h2,
.guest-guide-empty p {
  margin: 0;
}

.guest-guide-empty p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.guest-not-found-standalone {
  margin-top: 44px;
}

.host-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  padding: 30px;
  border-radius: var(--radius-xl);
}

.host-hero-text,
.host-summary-panel p,
.host-step-card p,
.survey-card p,
.preview-card p,
.preview-row p {
  color: var(--muted);
  line-height: 1.65;
}

.host-hero-text {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.04rem;
}

.host-summary-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.host-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

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

.host-step-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.host-step-card h3 {
  margin-top: 12px;
  font-size: 1.5rem;
}

.host-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
}

.survey-card,
.preview-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.survey-block + .survey-block {
  margin-top: 24px;
}

.survey-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.survey-pill-row {
  justify-content: flex-start;
}

.preview-stack {
  display: grid;
  gap: 18px;
}

.preview-recommendations {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.preview-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(34, 27, 25, 0.08);
}

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

.preview-row strong {
  display: block;
  font-size: 1rem;
}

.preview-row p {
  margin: 6px 0 0;
}

.preview-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.84);
  border: 1px solid rgba(34, 27, 25, 0.08);
  font-weight: 700;
}

.preview-card-accent {
  background:
    linear-gradient(180deg, rgba(227, 173, 84, 0.14), rgba(255, 251, 247, 0.86)),
    var(--surface);
}

.dashboard-alert {
  padding: 16px 18px;
  border-radius: 18px;
}

.dashboard-alert p {
  margin: 0;
  font-weight: 700;
}

.dashboard-alert-success {
  border-color: rgba(97, 122, 110, 0.22);
  background: rgba(239, 248, 243, 0.88);
}

.dashboard-alert-error {
  border-color: rgba(199, 78, 45, 0.22);
  background: rgba(255, 242, 238, 0.92);
}

.dashboard-login-wrap {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 180px);
}

.dashboard-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: min(100%, 1080px);
}

.dashboard-login-card {
  width: 100%;
  padding: 34px;
  border-radius: var(--radius-xl);
}

.dashboard-auth-card {
  height: 100%;
}

.dashboard-login-card p {
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-auth-note {
  margin-top: 0;
}

.dashboard-login-form {
  margin-top: 22px;
}

.dashboard-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: var(--radius-xl);
}

.dashboard-hero h1 {
  margin-top: 6px;
  font-size: clamp(2.05rem, 3.8vw, 3.1rem);
  max-width: 11ch;
  line-height: 0.98;
}

.dashboard-hero-copy {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.dashboard-hero-compact {
  align-items: start;
  padding-block: 14px;
}

.dashboard-hero-compact .dashboard-hero-copy {
  gap: 10px;
}

.dashboard-hero-compact .dashboard-hero-compass {
  gap: 8px;
}

.dashboard-hero-compact .dashboard-hero-jumps {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.dashboard-hero-compact .dashboard-hero-jump {
  gap: 2px;
  padding: 8px 10px;
}

.dashboard-hero-compact .dashboard-hero-jump-copy {
  display: none;
}

.dashboard-hero-text {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.5;
}

.dashboard-hero-compass {
  display: grid;
  gap: 10px;
}

.dashboard-hero-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.dashboard-hero-path-item {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 252, 247, 0.82);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dashboard-hero-path-item.is-current {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--text);
}

.dashboard-hero-jumps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 8px;
}

.dashboard-hero-jump {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 241, 0.94)),
    rgba(255, 250, 243, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 12px 24px rgba(34, 27, 25, 0.05);
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.dashboard-hero-jump:hover,
.dashboard-hero-jump:focus-visible,
.dashboard-hero-jump.is-active {
  transform: translateY(-1px);
  border-color: rgba(var(--accent-rgb), 0.28);
  background:
    linear-gradient(180deg, rgba(255, 245, 237, 0.98), rgba(255, 250, 245, 0.98)),
    rgba(255, 250, 243, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(var(--accent-rgb), 0.1);
}

.dashboard-hero-jump.is-active {
  border-color: rgba(var(--accent-rgb), 0.34);
}

.dashboard-hero-jump-eyebrow {
  color: rgba(var(--accent-rgb), 0.9);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-hero-jump strong {
  font-size: 0.9rem;
  letter-spacing: -0.02em;
}

.dashboard-hero-jump-copy {
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.4;
}

.dashboard-menu-bar {
  display: grid;
  gap: 18px;
  padding: 18px;
  border-radius: var(--radius-xl);
}

.dashboard-menu-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-menu-heading h2 {
  max-width: none;
  font-size: 1.35rem;
}

.dashboard-top-nav {
  display: block;
}

.dashboard-top-nav-header {
  grid-column: 1 / -1;
  margin-top: 2px;
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 247, 239, 0.94)),
    rgba(255, 250, 243, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 18px 34px rgba(34, 27, 25, 0.08);
}

.dashboard-top-nav-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-top-nav-copy {
  max-width: 68ch;
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-top-nav-context {
  display: grid;
  gap: 4px;
  min-width: min(100%, 240px);
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.dashboard-top-nav-context span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-top-nav-context strong {
  font-size: 1rem;
}

.dashboard-top-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
}

.dashboard-top-item {
  display: flex;
  min-width: 0;
}

.dashboard-top-link {
  display: grid;
  gap: 8px;
  width: 100%;
  min-height: 96px;
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 252, 247, 0.92);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
  touch-action: manipulation;
}

.dashboard-top-link:hover,
.dashboard-top-link:focus-visible,
.dashboard-top-link.is-active {
  transform: translateY(-1px);
  border-color: rgba(243, 107, 69, 0.34);
  background: linear-gradient(180deg, rgba(255, 245, 238, 0.98), rgba(255, 251, 246, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(243, 107, 69, 0.12);
}

.dashboard-top-link strong {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.dashboard-top-link small {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.dashboard-top-link.is-disabled {
  cursor: not-allowed;
  opacity: 0.52;
}

.dashboard-top-link.is-disabled:hover,
.dashboard-top-link.is-disabled:focus-visible {
  transform: none;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.dashboard-shell a,
.dashboard-shell button {
  touch-action: manipulation;
}

.dashboard-hero-meta {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.dashboard-account-pill {
  display: grid;
  gap: 2px;
  min-width: min(100%, 250px);
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.82);
  box-shadow: 0 12px 30px rgba(34, 27, 25, 0.05);
}

.dashboard-account-pill strong {
  font-size: 0.9rem;
}

.dashboard-account-pill span,
.dashboard-account-email {
  color: var(--muted);
  font-size: 0.82rem;
  word-break: break-word;
}

.dashboard-account-email {
  margin: 0;
}

.dashboard-account-note {
  margin: 0;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-account-divider {
  height: 1px;
  margin: 22px 0;
  background: linear-gradient(90deg, rgba(34, 27, 25, 0.14), rgba(34, 27, 25, 0.03));
}

.dashboard-account-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dashboard-account-stats div {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-plan-upgrade-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.12), rgba(255, 252, 248, 0.92)),
    rgba(255, 250, 243, 0.82);
  box-shadow: 0 14px 28px rgba(var(--accent-rgb), 0.08);
}

.dashboard-plan-upgrade-card h3 {
  font-size: 1.8rem;
}

.dashboard-plan-upgrade-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-account-stats span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(248px, 300px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.dashboard-sidebar {
  display: grid;
  grid-column: 1;
  gap: 18px;
  align-content: start;
}

.dashboard-content {
  display: grid;
  grid-column: 2;
  grid-row: 1;
  gap: 18px;
  align-content: start;
}

.dashboard-rail-card {
  position: relative;
  grid-column: 1;
  overflow: hidden;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 240, 0.94)),
    var(--surface);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 34px rgba(58, 34, 18, 0.08);
}

.dashboard-rail-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  pointer-events: none;
}

.dashboard-rail-card::before {
  background: linear-gradient(90deg, rgba(34, 27, 25, 0.9), rgba(243, 107, 69, 0.9));
}

.dashboard-rail-card {
  position: sticky;
  top: 18px;
  z-index: 2;
}

.dashboard-card {
  padding: 24px;
  border-radius: var(--radius-xl);
}

.dashboard-app-rail-card {
  display: grid;
  gap: 24px;
}

.dashboard-app-rail-group {
  display: grid;
  gap: 16px;
}

.dashboard-app-rail-heading {
  display: grid;
  gap: 8px;
}

.dashboard-app-rail-heading h2 {
  max-width: none;
  font-size: 1.18rem;
}

.dashboard-app-rail-caption {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-app-primary-nav {
  display: grid;
  gap: 10px;
}

.dashboard-app-primary-link {
  display: grid;
  gap: 6px;
  padding: 15px 16px;
  border-radius: 20px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 252, 247, 0.92);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.dashboard-app-primary-link:hover,
.dashboard-app-primary-link:focus-visible,
.dashboard-app-primary-link.is-active {
  transform: translateY(-1px);
  border-color: rgba(243, 107, 69, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 245, 238, 0.98), rgba(255, 251, 246, 0.98)),
    rgba(255, 250, 243, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(243, 107, 69, 0.1);
}

.dashboard-app-primary-link strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
}

.dashboard-app-primary-link small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.dashboard-app-primary-link.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

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

.dashboard-rail-profile > div {
  display: grid;
  gap: 4px;
}

.dashboard-rail-profile h2 {
  max-width: none;
  font-size: 1.24rem;
  letter-spacing: -0.03em;
}

.dashboard-rail-profile p {
  margin: 6px 0 0;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.dashboard-rail-stats {
  margin-top: 20px;
}

.dashboard-rail-actions {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.dashboard-rail-focus {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.dashboard-rail-focus-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(var(--accent-rgb), 0.16);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.12), rgba(255, 251, 246, 0.94)),
    rgba(255, 250, 243, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 14px 28px rgba(var(--accent-rgb), 0.08);
}

.dashboard-rail-focus-card strong {
  font-size: 1rem;
}

.dashboard-rail-focus-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-rail-focus-card .dashboard-candidate-pill {
  width: fit-content;
}

.dashboard-app-rail-guide {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-app-rail-guide span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-app-rail-guide strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.dashboard-app-rail-guide p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-page-bar {
  display: grid;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 28px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 241, 0.96)),
    rgba(255, 250, 243, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 32px rgba(34, 27, 25, 0.06);
}

.dashboard-page-bar-main {
  display: grid;
  gap: 16px;
}

.dashboard-page-bar-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-page-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-page-path-item {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 252, 247, 0.82);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-page-path-item.is-current {
  border-color: rgba(var(--accent-rgb), 0.28);
  background: rgba(var(--accent-rgb), 0.14);
  color: var(--text);
}

.dashboard-page-bar-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-page-bar-copy {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.dashboard-page-bar-copy h1 {
  max-width: none;
}

.dashboard-page-bar-text {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-page-bar-side {
  display: grid;
  gap: 12px;
  justify-items: end;
}

.dashboard-page-statuses,
.dashboard-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.dashboard-page-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-page-shortcut {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 252, 247, 0.92);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.dashboard-page-shortcut:hover,
.dashboard-page-shortcut:focus-visible,
.dashboard-page-shortcut.is-active {
  transform: translateY(-1px);
  border-color: rgba(243, 107, 69, 0.28);
  background: linear-gradient(180deg, rgba(255, 245, 237, 0.98), rgba(255, 250, 245, 0.98));
  box-shadow: 0 10px 20px rgba(243, 107, 69, 0.08);
}

.dashboard-account-context {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 24px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 241, 0.96)),
    rgba(255, 250, 243, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(34, 27, 25, 0.06);
}

.dashboard-context-tabs-account {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(168px, 1fr));
  gap: 12px;
}

.dashboard-account-tab {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 22px;
}

.dashboard-account-tab-eyebrow {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-account-tab-label {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dashboard-account-tab.is-active .dashboard-account-tab-eyebrow,
.dashboard-account-tab:hover .dashboard-account-tab-eyebrow,
.dashboard-account-tab:focus-visible .dashboard-account-tab-eyebrow {
  color: var(--text);
}

.dashboard-guide-context {
  display: grid;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 26px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 241, 0.96)),
    rgba(255, 250, 243, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 32px rgba(34, 27, 25, 0.06);
}

.dashboard-sticky-shell {
  position: sticky;
  top: 78px;
  z-index: 9;
}

.dashboard-guide-context-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
}

.dashboard-guide-context-copy {
  display: grid;
  gap: 6px;
}

.dashboard-guide-context-copy strong {
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.dashboard-guide-context-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-guide-context-tools {
  display: grid;
  grid-template-columns: minmax(280px, 360px) auto;
  gap: 16px;
  align-items: end;
}

.dashboard-guide-context-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.dashboard-context-tabs-workflow {
  gap: 12px;
}

.dashboard-workflow-tab {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 8px;
  min-height: 0;
  padding: 14px 16px;
  border-radius: 22px;
}

.dashboard-workflow-tab-step {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-workflow-tab-label {
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dashboard-mobile-quicknav {
  display: none;
}

.dashboard-guide-workspace {
  display: grid;
  gap: 20px;
}

.dashboard-guide-workspace-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-guide-workspace-bar {
  display: grid;
  gap: 18px;
}

.dashboard-guide-workspace-tools {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 16px;
  align-items: end;
}

.dashboard-guide-workspace-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.dashboard-workflow-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-workflow-step {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 184px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 241, 0.96)),
    rgba(255, 250, 243, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(34, 27, 25, 0.05);
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.dashboard-workflow-step:hover,
.dashboard-workflow-step:focus-visible,
.dashboard-workflow-step.is-active {
  transform: translateY(-1px);
  border-color: rgba(243, 107, 69, 0.3);
  background:
    linear-gradient(180deg, rgba(255, 244, 238, 0.98), rgba(255, 250, 245, 0.98)),
    rgba(255, 250, 243, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 16px 30px rgba(243, 107, 69, 0.12);
}

.dashboard-workflow-step-order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(34, 27, 25, 0.06);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-workflow-step-copy {
  display: grid;
  gap: 6px;
}

.dashboard-workflow-step-copy strong {
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

.dashboard-workflow-step-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-workflow-step .dashboard-candidate-pill {
  width: fit-content;
}

.dashboard-subnav-panel {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 240, 0.92)),
    rgba(255, 250, 243, 0.8);
}

.dashboard-subnav-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-guide-switcher {
  display: grid;
  gap: 8px;
}

.dashboard-guide-switcher label {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}

.dashboard-guide-switcher-row,
.dashboard-directory-search {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dashboard-guide-switcher-row select,
.dashboard-directory-search input {
  flex: 1 1 280px;
  min-width: 0;
}

.dashboard-guide-switcher select,
.dashboard-directory-search input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(34, 27, 25, 0.12);
  background: rgba(255, 251, 246, 0.9);
  color: var(--text);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.dashboard-guide-switcher select:focus,
.dashboard-directory-search input:focus {
  outline: none;
  border-color: rgba(243, 107, 69, 0.5);
  box-shadow: 0 0 0 4px rgba(243, 107, 69, 0.12);
  background: rgba(255, 252, 248, 0.98);
}

.dashboard-context-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-context-tabs-secondary {
  padding-top: 4px;
  border-top: 1px solid rgba(34, 27, 25, 0.08);
}

.dashboard-context-tab {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 252, 247, 0.9);
  color: var(--text);
  font-weight: 700;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background-color 150ms ease,
    box-shadow 150ms ease;
}

.dashboard-context-tab:hover,
.dashboard-context-tab:focus-visible,
.dashboard-context-tab.is-active {
  transform: translateY(-1px);
  border-color: rgba(243, 107, 69, 0.28);
  background: linear-gradient(180deg, rgba(255, 245, 237, 0.98), rgba(255, 250, 245, 0.98));
  box-shadow: 0 10px 20px rgba(243, 107, 69, 0.08);
}

.dashboard-directory-toolbar {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.dashboard-directory-toolbar label {
  margin: 0;
}

.dashboard-guide-home-shell,
.dashboard-guide-library-shell,
.dashboard-guide-creator-shell,
.dashboard-guide-home-insights {
  display: grid;
  gap: 22px;
}

.dashboard-guide-library-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.dashboard-guide-library-grid,
.dashboard-guide-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: start;
}

.dashboard-guide-library-list {
  max-height: 72vh;
  overflow: auto;
  padding-right: 6px;
}

.dashboard-guide-library-list::-webkit-scrollbar {
  width: 10px;
}

.dashboard-guide-library-list::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(34, 27, 25, 0.12);
}

.dashboard-guide-library-preview {
  display: grid;
  gap: 16px;
  align-self: start;
  position: sticky;
  top: 24px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 241, 0.96)),
    rgba(255, 250, 243, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 32px rgba(34, 27, 25, 0.06);
}

.dashboard-guide-library-preview h3 {
  margin: 0;
  font-size: 1.34rem;
  letter-spacing: -0.03em;
}

.dashboard-guide-home-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dashboard-guide-home-kpis-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dashboard-guide-home-kpi {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-guide-home-kpi span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-guide-home-kpi strong {
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}

.dashboard-guide-home-kpi p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-overview-card {
  display: grid;
  gap: 22px;
}

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

.dashboard-overview-panel {
  display: grid;
  gap: 10px;
  padding: 20px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-overview-panel span {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-overview-panel strong {
  font-size: 1.08rem;
}

.dashboard-overview-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.dashboard-overview-panel-wide {
  grid-column: 1 / -1;
}

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

.dashboard-revision-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 255, 255, 0.52);
}

.dashboard-revision-copy {
  display: grid;
  gap: 6px;
}

.dashboard-revision-copy strong {
  font-size: 1rem;
}

.dashboard-revision-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.dashboard-onboarding-step {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-onboarding-step-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-onboarding-step-copy {
  display: grid;
  gap: 6px;
}

.dashboard-onboarding-step-copy strong {
  font-size: 1rem;
}

.dashboard-onboarding-step-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-onboarding-step .dashboard-candidate-pill {
  color: var(--text);
  font-weight: 600;
}

.dashboard-onboarding-step.is-ready-state {
  border-color: rgba(97, 122, 110, 0.18);
  background: rgba(242, 249, 245, 0.92);
}

.dashboard-onboarding-step.is-next-state {
  border-color: rgba(243, 107, 69, 0.18);
  background: rgba(255, 244, 238, 0.94);
}

.dashboard-onboarding-step.is-pending-state {
  border-color: rgba(227, 173, 84, 0.16);
  background: rgba(255, 248, 234, 0.84);
}

.dashboard-readiness-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dashboard-overview-panel .dashboard-candidate-pill {
  color: var(--text);
  font-weight: 600;
}

.dashboard-readiness-stack {
  display: grid;
  gap: 8px;
}

.dashboard-readiness-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-readiness-note.is-blocker {
  border-color: rgba(243, 107, 69, 0.2);
  background: rgba(255, 242, 236, 0.92);
  color: var(--text);
}

.dashboard-card-copy,
.dashboard-inline-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-card-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  max-width: none;
}

.dashboard-card-actions,
.dashboard-logout-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-guide-list,
.dashboard-recommendation-list {
  display: grid;
  gap: 12px;
}

.dashboard-overview-list {
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 247, 239, 0.72));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.dashboard-empty-state {
  display: grid;
  gap: 12px;
  padding: 22px;
  border-radius: 18px;
  border: 1px dashed rgba(34, 27, 25, 0.18);
  background: rgba(255, 250, 243, 0.72);
}

.dashboard-empty-state h3,
.dashboard-empty-state p {
  margin: 0;
}

.dashboard-empty-state p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-inventory-snapshot {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.dashboard-inventory-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.82);
}

.dashboard-inventory-row > div {
  min-width: 0;
}

.dashboard-inventory-feedback {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.dashboard-inventory-row {
  max-height: 2200px;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    max-height 220ms ease,
    margin 220ms ease,
    padding 220ms ease,
    border-width 220ms ease;
}

.dashboard-inventory-row.is-removing {
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
}

.dashboard-inventory-row strong,
.dashboard-inventory-row span {
  display: block;
}

.dashboard-inventory-row strong {
  font-size: 1rem;
}

.dashboard-inventory-row span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.dashboard-inventory-detail {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-inventory-row.is-ready-state {
  border-color: rgba(97, 122, 110, 0.18);
  background: rgba(242, 249, 245, 0.92);
}

.dashboard-inventory-row.is-disabled-state {
  border-color: rgba(126, 116, 109, 0.14);
  background: rgba(247, 242, 238, 0.94);
}

.dashboard-inventory-row.is-survey-state {
  border-color: rgba(227, 173, 84, 0.2);
  background: rgba(255, 248, 234, 0.94);
}

.dashboard-inventory-edit {
  min-height: 36px;
  padding: 0 14px;
}

.dashboard-inventory-delete {
  margin: 0;
}

.dashboard-inventory-delete-button {
  min-height: 36px;
  padding: 0 14px;
}

.dashboard-guide-link {
  display: grid;
  gap: 7px;
  padding: 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 248, 241, 0.94));
  border: 1px solid rgba(34, 27, 25, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    box-shadow 150ms ease,
    background-color 150ms ease;
}

.dashboard-overview-list .dashboard-guide-link {
  position: relative;
  padding: 16px 18px 16px 22px;
  border-color: rgba(34, 27, 25, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 10px 22px rgba(34, 27, 25, 0.05);
}

.dashboard-overview-list .dashboard-guide-link::before {
  content: "";
  position: absolute;
  inset: 10px auto 10px 10px;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(243, 107, 69, 0.42), rgba(243, 107, 69, 0.14));
}

.dashboard-guide-link:hover,
.dashboard-guide-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(243, 107, 69, 0.3);
  background: linear-gradient(180deg, rgba(255, 248, 243, 0.98), rgba(255, 242, 234, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 24px rgba(243, 107, 69, 0.08);
}

.dashboard-guide-link strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.dashboard-guide-link span,
.dashboard-guide-link small {
  color: var(--muted);
}

.dashboard-guide-link span {
  font-weight: 700;
}

.dashboard-guide-link small {
  font-size: 0.82rem;
  line-height: 1.5;
}

.dashboard-guide-link.is-active {
  background: linear-gradient(180deg, rgba(243, 107, 69, 0.14), rgba(255, 247, 241, 0.96));
  border-color: rgba(243, 107, 69, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 14px 28px rgba(243, 107, 69, 0.12);
}

.dashboard-sidebar-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 252, 247, 0.92);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.dashboard-form {
  display: grid;
  gap: 14px;
}

.dashboard-field {
  display: grid;
  gap: 6px;
  align-content: start;
}

.dashboard-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 0.96rem;
}

.dashboard-label-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dashboard-help-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.16);
  background: rgba(255, 250, 243, 0.9);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  cursor: help;
}

.dashboard-help-mark:focus-visible {
  outline: 2px solid rgba(243, 107, 69, 0.42);
  outline-offset: 2px;
}

.dashboard-required-mark {
  color: #c83f21;
  font-weight: 800;
}

.dashboard-required-note {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(200, 63, 33, 0.18);
  background: rgba(200, 63, 33, 0.07);
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.dashboard-form input,
.dashboard-form select,
.dashboard-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(34, 27, 25, 0.12);
  background: rgba(255, 251, 246, 0.9);
  color: var(--text);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.dashboard-form input:focus,
.dashboard-form select:focus,
.dashboard-form textarea:focus {
  outline: none;
  border-color: rgba(243, 107, 69, 0.5);
  box-shadow: 0 0 0 4px rgba(243, 107, 69, 0.12);
  background: rgba(255, 252, 248, 0.98);
}

.dashboard-form small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.dashboard-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.dashboard-field-full {
  grid-column: 1 / -1;
}

.dashboard-checkbox-field {
  display: flex;
  align-items: end;
}

.dashboard-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}

.dashboard-checkbox input {
  width: auto;
  margin: 0;
}

.dashboard-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dashboard-property-preview-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-brand-preview-card {
  gap: 14px;
}

.dashboard-brand-preview-meta,
.dashboard-brand-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.dashboard-brand-swatch,
.dashboard-brand-preview-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 251, 246, 0.86);
  color: var(--text);
  font-weight: 700;
}

.dashboard-brand-swatch-chip {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.08);
}

.dashboard-brand-preview-actions .button {
  pointer-events: none;
}

.dashboard-property-preview-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dashboard-property-address-preview {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  white-space: pre-line;
}

.dashboard-guide-assignment-list {
  display: grid;
  gap: 12px;
}

.dashboard-guide-assignment-card {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
  cursor: pointer;
}

.dashboard-guide-assignment-toggle {
  display: flex;
  align-items: start;
  gap: 12px;
}

.dashboard-guide-assignment-card input {
  width: auto;
  margin: 4px 0 0;
  flex: 0 0 auto;
}

.dashboard-guide-assignment-copy {
  display: grid;
  gap: 6px;
}

.dashboard-guide-assignment-copy strong {
  font-size: 1rem;
}

.dashboard-guide-assignment-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-import-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 18px;
  margin-top: 18px;
  align-items: start;
}

.dashboard-import-help {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-import-help strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.dashboard-import-help p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-import-columns {
  margin-top: 12px;
}

.dashboard-inline-danger {
  margin-top: 18px;
}

.dashboard-inline-secondary,
.dashboard-inline-form {
  margin-top: 12px;
}

.dashboard-team-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.dashboard-team-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-team-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.dashboard-team-card strong {
  font-size: 1rem;
}

.dashboard-team-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-dialog-open {
  overflow: hidden;
}

.dashboard-recommendation-dialog[hidden] {
  display: none;
}

.dashboard-recommendation-dialog {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.dashboard-recommendation-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
}

.dashboard-recommendation-dialog-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 27, 25, 0.54);
}

.dashboard-recommendation-dialog-panel {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  max-height: min(86vh, 920px);
  overflow: auto;
  overscroll-behavior: contain;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(34, 27, 25, 0.1);
  background: rgba(255, 250, 243, 0.98);
  box-shadow: 0 28px 90px rgba(34, 27, 25, 0.28);
  transform: translateY(12px) scale(0.98);
  transition: transform 180ms ease;
}

.dashboard-recommendation-dialog.is-open .dashboard-recommendation-dialog-panel {
  transform: translateY(0) scale(1);
}

.dashboard-recommendation-dialog-head {
  position: sticky;
  top: -24px;
  z-index: 2;
  margin: -24px -24px 18px;
  padding: 24px;
  border-bottom: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.96);
  backdrop-filter: blur(12px);
}

.dashboard-dialog-close {
  min-height: 36px;
  padding: 0 14px;
}

.dashboard-dialog-state {
  display: grid;
  gap: 12px;
  min-height: 180px;
  align-content: center;
}

.dashboard-dialog-state p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.dashboard-dialog-state.is-error {
  color: var(--danger);
}

.dashboard-confirm-dialog-panel {
  width: min(540px, calc(100vw - 32px));
  max-height: none;
}

.dashboard-confirm-dialog-state {
  min-height: 0;
  gap: 14px;
}

.dashboard-confirm-dialog-state .eyebrow {
  margin: 0;
}

.dashboard-notice-dialog-panel {
  width: min(520px, calc(100vw - 32px));
  max-height: none;
}

.dashboard-notice-dialog-state {
  min-height: 0;
  gap: 16px;
}

.dashboard-notice-dialog-state .eyebrow {
  margin: 0;
}

.dashboard-notice-dialog-actions {
  justify-content: flex-end;
}

.dashboard-notice-dialog-actions .button[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.dashboard-help-find-dialog-panel {
  width: min(560px, calc(100vw - 32px));
  max-height: none;
}

.dashboard-help-find-dialog-state {
  min-height: 0;
  gap: 16px;
}

.dashboard-help-find-dialog-state .eyebrow {
  margin: 0;
}

.dashboard-help-find-options {
  display: grid;
  gap: 12px;
}

.dashboard-help-find-option {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid rgba(34, 27, 25, 0.1);
  border-radius: 20px;
  background: rgba(255, 251, 246, 0.92);
  color: var(--text);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.dashboard-help-find-option strong {
  font-family: var(--font-display);
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.dashboard-help-find-option span {
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-help-find-option:hover,
.dashboard-help-find-option:focus-visible {
  border-color: rgba(243, 107, 69, 0.36);
  background: rgba(255, 253, 250, 0.98);
  box-shadow: 0 18px 36px rgba(34, 27, 25, 0.08);
  transform: translateY(-1px);
}

.dashboard-help-find-option:focus-visible {
  outline: none;
}

.dashboard-help-find-dialog-actions {
  justify-content: flex-end;
}

.dashboard-confirm-dialog-match {
  display: grid;
  gap: 8px;
}

.dashboard-confirm-dialog-match label {
  font-weight: 700;
  font-size: 0.96rem;
}

.dashboard-confirm-dialog-match input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(34, 27, 25, 0.12);
  background: rgba(255, 251, 246, 0.9);
  color: var(--text);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.dashboard-confirm-dialog-match input:focus {
  outline: none;
  border-color: rgba(243, 107, 69, 0.5);
  box-shadow: 0 0 0 4px rgba(243, 107, 69, 0.12);
  background: rgba(255, 252, 248, 0.98);
}

.dashboard-confirm-dialog-match small {
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-confirm-dialog-actions {
  justify-content: flex-end;
  margin-top: 6px;
}

.dashboard-recommendation-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.dashboard-recommendation-meta strong {
  font-size: 1.08rem;
}

.dashboard-recommendation-meta p {
  margin: 6px 0 0;
  color: var(--muted);
}

.dashboard-recommendation-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: end;
}

.dashboard-candidate-search-form {
  margin-top: 18px;
}

.dashboard-candidate-search-form.is-submitting input,
.dashboard-candidate-search-form.is-submitting select {
  opacity: 0.72;
}

.dashboard-search-progress {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(243, 107, 69, 0.18);
  background: rgba(255, 246, 239, 0.92);
  color: var(--text);
  font-weight: 700;
}

.dashboard-search-progress[hidden] {
  display: none;
}

.dashboard-search-progress-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
  border: 0;
  border-radius: 0;
  background: rgba(34, 27, 25, 0.42);
  backdrop-filter: blur(8px);
}

.dashboard-search-progress-overlay[hidden] {
  display: none;
}

.dashboard-search-spinner {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 999px;
  border: 3px solid rgba(243, 107, 69, 0.2);
  border-top-color: var(--accent);
  animation: dashboard-spin 780ms linear infinite;
}

.dashboard-search-cancel {
  min-height: 40px;
  margin-left: auto;
  padding: 0 16px;
}

.dashboard-search-overlay-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  width: min(680px, 100%);
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(34, 27, 25, 0.1);
  background: rgba(255, 250, 243, 0.98);
  box-shadow: 0 24px 80px rgba(34, 27, 25, 0.28);
}

.dashboard-search-overlay-card strong,
.dashboard-search-overlay-card p {
  margin: 0;
}

.dashboard-search-overlay-card p {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.55;
}

.dashboard-candidate-results-head,
.dashboard-survey-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.dashboard-candidate-results-head {
  margin-top: 24px;
}

.dashboard-candidate-results-head p,
.dashboard-survey-head p,
.dashboard-survey-summary p {
  margin: 6px 0 0;
  color: var(--muted);
}

.dashboard-candidate-results-tags {
  margin-top: 12px;
}

.dashboard-candidate-list,
.dashboard-survey-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.dashboard-survey-list {
  gap: 30px;
}

.dashboard-candidate-batch-form {
  margin-top: 18px;
}

.dashboard-candidate-card,
.dashboard-survey-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-survey-card {
  position: relative;
  padding: 22px;
  border-color: rgba(34, 27, 25, 0.18);
  background: rgba(255, 252, 248, 0.98);
  box-shadow:
    0 18px 34px rgba(34, 27, 25, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.dashboard-survey-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(243, 107, 69, 0.78), rgba(243, 107, 69, 0.22));
}

.dashboard-survey-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -18px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(34, 27, 25, 0), rgba(34, 27, 25, 0.16) 12%, rgba(34, 27, 25, 0.16) 88%, rgba(34, 27, 25, 0));
  pointer-events: none;
}

.dashboard-survey-filter-list {
  display: grid;
  gap: 10px;
}

.dashboard-survey-filter-option {
  display: block;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(34, 27, 25, 0.12);
  background: rgba(255, 247, 239, 0.74);
}

.dashboard-survey-filter-toggle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.dashboard-survey-filter-option input {
  margin-top: 2px;
}

.dashboard-survey-filter-copy strong {
  display: block;
}

.dashboard-survey-filter-copy p {
  margin: 4px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.dashboard-candidate-card {
  position: relative;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
}

.dashboard-candidate-card:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -8px;
  height: 1px;
  background: linear-gradient(90deg, rgba(34, 27, 25, 0), rgba(34, 27, 25, 0.16), rgba(34, 27, 25, 0));
  pointer-events: none;
}

.dashboard-candidate-card.has-image {
  grid-template-columns: auto 112px minmax(0, 1fr);
}

.dashboard-candidate-card.is-existing {
  opacity: 0.78;
}

.dashboard-candidate-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  cursor: pointer;
}

.dashboard-candidate-check input {
  width: auto;
  cursor: pointer;
}

.dashboard-candidate-check input:disabled {
  cursor: not-allowed;
}

.dashboard-candidate-body {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.dashboard-candidate-media {
  overflow: hidden;
  width: 112px;
  height: 92px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 249, 242, 0.88);
}

.dashboard-candidate-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard-candidate-topline {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-candidate-topline strong {
  font-size: 1.02rem;
}

.dashboard-candidate-topline span,
.dashboard-candidate-meta,
.dashboard-candidate-address {
  color: var(--muted);
}

.dashboard-candidate-meta,
.dashboard-candidate-address {
  margin: 0;
}

.dashboard-candidate-address {
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.dashboard-candidate-tags,
.dashboard-delivery-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dashboard-candidate-tags span,
.dashboard-candidate-pill,
.dashboard-delivery-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 249, 242, 0.88);
  color: var(--text);
  font-weight: 600;
}

.dashboard-candidate-pill.is-delivery {
  border-color: rgba(97, 122, 110, 0.22);
  background: rgba(239, 248, 243, 0.92);
}

.dashboard-candidate-pill.is-existing {
  border-color: rgba(54, 84, 112, 0.18);
  background: rgba(239, 245, 251, 0.94);
}

.dashboard-candidate-pill.is-survey {
  border-color: rgba(227, 173, 84, 0.22);
  background: rgba(255, 246, 227, 0.96);
}

.dashboard-candidate-pill.is-disabled {
  border-color: rgba(126, 116, 109, 0.2);
  background: rgba(239, 236, 232, 0.94);
  color: var(--muted);
}

.dashboard-candidate-pill.is-attention {
  border-color: rgba(243, 107, 69, 0.22);
  background: rgba(255, 242, 236, 0.94);
}

.dashboard-candidate-pill.is-ready {
  border-color: rgba(97, 122, 110, 0.22);
  background: rgba(239, 248, 243, 0.92);
}

.dashboard-candidate-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.dashboard-candidate-footer a {
  color: var(--accent);
  font-weight: 700;
}

.dashboard-survey-summary {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-health-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.dashboard-health-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-health-card span {
  display: block;
  color: var(--muted);
}

.dashboard-health-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2rem;
  font-family: var(--font-display);
}

.dashboard-health-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.dashboard-bootstrap-billing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.dashboard-bootstrap-billing-panel {
  min-width: 0;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 250, 243, 0.78);
}

.dashboard-bootstrap-billing-panel h3 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.dashboard-bootstrap-event-list {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.dashboard-bootstrap-event-item {
  min-width: 0;
  padding: 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.dashboard-bootstrap-event-item strong {
  display: block;
  margin-top: 8px;
  font-size: 0.98rem;
}

.dashboard-bootstrap-event-item .dashboard-account-note {
  margin-top: 8px;
}

.dashboard-qr-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.dashboard-qr-preview {
  padding: 18px;
  border-radius: 26px;
  background: #fff;
  border: 1px solid rgba(34, 27, 25, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.dashboard-qr-preview img {
  display: block;
  width: 100%;
  height: auto;
}

.dashboard-qr-copy {
  display: grid;
  gap: 14px;
}

.dashboard-qr-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.dashboard-qr-url {
  padding: 13px 15px;
  border-radius: 16px;
  border: 1px solid rgba(34, 27, 25, 0.08);
  background: rgba(243, 107, 69, 0.08);
  color: var(--text);
  overflow-wrap: anywhere;
}

.dashboard-image-preview {
  overflow: hidden;
  width: min(100%, 320px);
  margin-bottom: 12px;
  border-radius: 18px;
  border: 1px solid rgba(34, 27, 25, 0.08);
}

.dashboard-image-preview img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes dashboard-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-form-panel {
    grid-column: 1 / -1;
  }

  .benefit-stack,
  .feature-grid,
  .tier-grid,
  .insight-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-hero,
  .guest-insight-panel,
  .guide-grid,
  .host-hero,
  .host-workbench,
  .host-step-grid,
  .dashboard-auth-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-qr-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-import-grid,
  .dashboard-health-grid,
  .dashboard-overview-grid,
  .dashboard-bootstrap-billing-grid,
  .dashboard-guide-home-kpis,
  .dashboard-guide-library-grid,
  .dashboard-guide-home-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-top-list,
  .dashboard-workflow-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dashboard-content,
  .dashboard-sidebar,
  .dashboard-rail-card {
    grid-column: 1;
    grid-row: auto;
  }

  .dashboard-rail-card {
    position: static;
  }

  .dashboard-guide-workspace-head,
  .dashboard-top-nav-intro,
  .dashboard-guide-workspace-tools,
  .dashboard-guide-switcher-row,
  .dashboard-directory-search,
  .dashboard-subnav-head,
  .dashboard-guide-library-head {
    display: grid;
  }

  .dashboard-guide-workspace-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100vw - 20px, 100%);
  }

  .dashboard-main > *,
  .dashboard-grid,
  .dashboard-sidebar,
  .dashboard-content,
  .dashboard-hero,
  .dashboard-card,
  .dashboard-rail-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }

  .site-header,
  .closing-cta,
  .site-footer,
  .hero {
    grid-template-columns: 1fr;
    display: grid;
  }

  .site-header,
  .site-footer,
  .closing-cta {
    justify-content: stretch;
  }

  .site-header {
    padding: 16px;
    margin-bottom: 18px;
  }

  .brand-logo {
    width: min(100%, 290px);
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .dashboard-header {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .dashboard-header__utility {
    justify-content: flex-start;
  }

  .dashboard-header__summary {
    padding-left: 0;
  }

  .dashboard-top-nav-context {
    min-width: 0;
  }

  .hero,
  .feature-grid,
  .benefit-stack,
  .tier-grid,
  .insight-strip,
  .guest-summary-grid,
  .host-summary-grid,
  .dashboard-form-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    max-width: 10ch;
  }

  .hero-copy {
    padding-right: 0;
  }

  .filter-header,
  .closing-actions,
  .guest-pill-row,
  .dashboard-hero,
  .dashboard-menu-heading,
  .dashboard-card-head,
  .dashboard-inventory-row,
  .dashboard-hero-meta {
    display: grid;
    justify-content: stretch;
  }

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

  .dashboard-top-list,
  .dashboard-workflow-nav {
    grid-template-columns: 1fr;
  }

  .dashboard-top-link,
  .dashboard-workflow-step {
    min-height: 0;
  }

  .dashboard-inventory-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .dashboard-inventory-row .dashboard-recommendation-statuses {
    width: 100%;
  }

  .dashboard-candidate-card,
  .dashboard-candidate-card.has-image,
  .dashboard-candidate-results-head,
  .dashboard-survey-head,
  .dashboard-recommendation-meta,
  .dashboard-team-card-head {
    grid-template-columns: 1fr;
    display: grid;
    justify-content: stretch;
  }

  .dashboard-recommendation-statuses {
    justify-content: start;
  }

  .dashboard-candidate-media {
    width: 100%;
    height: 160px;
  }

  .dashboard-candidate-topline {
    display: grid;
  }

  .dashboard-recommendation-dialog {
    align-items: stretch;
    padding: 10px;
  }

  .dashboard-recommendation-dialog-panel {
    width: 100%;
    max-height: calc(100dvh - 20px);
    padding: 18px;
    border-radius: 18px;
  }

  .dashboard-recommendation-dialog-head {
    top: -18px;
    margin: -18px -18px 18px;
    padding: 18px;
  }

  .dashboard-search-overlay-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .dashboard-search-overlay-card .dashboard-search-cancel {
    width: 100%;
    margin-left: 0;
  }

  .guide-button {
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .dashboard-content {
    grid-column: 1;
    grid-row: auto;
  }

  .dashboard-page-bar-head,
  .dashboard-guide-context-top,
  .dashboard-guide-context-tools {
    display: grid;
    grid-template-columns: 1fr;
  }

  .dashboard-page-bar-side {
    justify-items: start;
  }

  .dashboard-page-statuses,
  .dashboard-page-actions,
  .dashboard-guide-context-actions {
    justify-content: flex-start;
  }

  .dashboard-context-tabs,
  .dashboard-page-shortcuts {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .dashboard-context-tabs::-webkit-scrollbar,
  .dashboard-page-shortcuts::-webkit-scrollbar {
    display: none;
  }

  .dashboard-context-tab,
  .dashboard-page-shortcut {
    flex: 0 0 auto;
  }

  .dashboard-context-tabs-account {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(190px, 76vw);
  }

  .dashboard-guide-library-list {
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .dashboard-guide-library-preview {
    position: static;
    top: auto;
  }

  .dashboard-workflow-tab {
    min-width: 180px;
  }

  .dashboard-sticky-shell {
    position: static;
  }

  .dashboard-main {
    padding-bottom: 92px;
  }

  .dashboard-mobile-quicknav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 30;
    padding: 8px;
    border-radius: 22px;
    border: 1px solid rgba(34, 27, 25, 0.08);
    background: rgba(247, 242, 232, 0.94);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.78),
      0 20px 36px rgba(34, 27, 25, 0.16);
    backdrop-filter: blur(18px);
  }

  .dashboard-mobile-quicknav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 10px;
    border-radius: 16px;
    color: var(--muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
  }

  .dashboard-mobile-quicknav-link.is-active {
    background: linear-gradient(180deg, rgba(255, 245, 238, 0.98), rgba(255, 250, 245, 0.98));
    color: var(--text);
    box-shadow: 0 10px 20px rgba(243, 107, 69, 0.12);
  }
}

@media (max-width: 820px) {
  .dashboard-page-bar,
  .dashboard-guide-context {
    padding: 18px;
  }

  .dashboard-page-bar-kicker {
    display: grid;
    justify-content: stretch;
  }

  .dashboard-mobile-quicknav {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }

  .dashboard-mobile-quicknav-link {
    min-height: 44px;
    font-size: 0.8rem;
  }
}

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

  .phone-shell,
  [data-reveal],
  .button,
  .site-nav a::after {
    animation: none;
    transition: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
