:root {
  --bg: #f8f4f0;
  --surface: #ffffff;
  --surface-soft: #f3ece7;
  --ink: #2e2229;
  --muted: #64525c;
  --line: rgba(46, 34, 41, 0.12);
  --line-strong: rgba(46, 34, 41, 0.22);
  --jade: #5a3244;
  --jade-dark: #371c2b;
  --gold: #bd9668;
  --success: #2e6b44;
  --warning: #8a3d1c;
  --shadow: 0 24px 48px rgba(55, 28, 43, 0.10);
  --radius-lg: 16px;
  --radius-pill: 999px;
  --max: 1200px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(90, 50, 68, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf7f3 0%, var(--bg) 100%);
}

img {
  display: block;
  max-width: 100%;
}

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

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

button {
  cursor: pointer;
}

.page-shell {
  min-height: 100dvh;
}

.static-fallback {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 20px;
}

.static-fallback nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.static-fallback h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 8vw, 4rem);
  line-height: 0.95;
  color: var(--jade-dark);
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(250, 247, 241, 0.9);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 84px;
}

.brand-lockup {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(90, 50, 68, 0.2);
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.85), transparent 45%),
    linear-gradient(160deg, rgba(90, 50, 68, 0.18), rgba(90, 50, 68, 0.02));
  display: grid;
  place-items: center;
  color: var(--jade);
  font-size: 14px;
  font-weight: 700;
}

.brand-mark span {
  display: block;
  text-align: center;
  line-height: 1.05;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  overflow-wrap: anywhere;
}

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

.brand-copy small {
  display: block;
  color: var(--muted);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  justify-content: center;
}

.nav-link {
  color: var(--muted);
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--ink);
}

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

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.lang-toggle button {
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(46, 34, 41, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.button,
.button-ghost,
.button-soft,
.chip-button {
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button-ghost:hover,
.button-soft:hover,
.chip-button:hover {
  transform: translateY(-1px);
}

.button {
  background: var(--jade);
  color: #fff;
  padding: 14px 22px;
  box-shadow: 0 14px 32px rgba(90, 50, 68, 0.2);
}

.button:active,
.button-ghost:active,
.button-soft:active {
  transform: translateY(0);
}

.button-ghost {
  background: transparent;
  color: var(--jade);
  padding: 14px 20px;
  border-color: rgba(90, 50, 68, 0.22);
}

.button-soft,
.chip-button {
  background: var(--surface-soft);
  color: var(--ink);
  padding: 12px 18px;
  border-color: rgba(46, 34, 41, 0.08);
}

.section {
  padding: 84px 0;
}

.section-band {
  background: rgba(255, 255, 255, 0.58);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
  min-height: auto;
  padding: 34px 0 46px;
}

.hero-grid > *,
.hero-copy {
  min-width: 0;
}

.hero-copy h1,
.page-title,
.section-title,
.cta-title,
.timeline-title,
.faq-title {
  font-family: var(--font-display);
  letter-spacing: -0.045em;
  color: var(--jade-dark);
}

.hero-copy h1 {
  font-size: clamp(2.7rem, 5.2vw, 4.15rem);
  line-height: 1.02;
  margin: 0 0 20px;
  max-width: 15ch;
}

.hero-copy p,
.section-intro,
.lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}

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

.hero-visual {
  position: relative;
  display: grid;
  gap: 14px;
}

.hero-card {
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 18%, rgba(89, 147, 126, 0.2), transparent 34%),
    linear-gradient(145deg, #fdfcf7 0%, #eef4ee 52%, #dfeae3 100%);
  border: 1px solid rgba(46, 34, 41, 0.1);
  box-shadow: var(--shadow);
}

.marketing-board {
  min-height: 430px;
  padding: clamp(22px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}

.board-header {
  display: grid;
  gap: 8px;
}

.board-header span {
  max-width: 12ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.board-header small {
  max-width: 28ch;
  color: #47514b;
  font-size: 0.98rem;
  line-height: 1.5;
}

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

.board-node {
  min-height: 116px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(46, 34, 41, 0.1);
  box-shadow: 0 18px 45px rgba(42, 76, 63, 0.1);
}

.board-node:nth-child(1),
.board-node:nth-child(4) {
  background: rgba(46, 34, 41, 0.92);
  color: #fffdf7;
}

.board-node span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.board-node:nth-child(1) span,
.board-node:nth-child(4) span {
  color: rgba(255, 253, 247, 0.64);
}

.board-node strong {
  color: inherit;
  font-size: 1.05rem;
  line-height: 1.18;
}

.hero-note,
.status-pill {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(46, 34, 41, 0.1);
  color: var(--ink);
}

.hero-note {
  position: static;
  max-width: 360px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--jade);
  flex: 0 0 auto;
}

.proof-grid,
.trust-grid,
.resource-list,
.services-grid,
.footer-grid,
.audit-layout,
.pricing-layout,
.about-layout,
.results-layout,
.two-column,
.timeline,
.mosaic-wrap,
.surface-grid {
  display: grid;
  gap: 24px;
}

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

.proof-card,
.service-card,
.plan-card,
.surface-card,
.faq-item,
.resource-card,
.about-card,
.results-card,
.empty-state,
.form-card,
.timeline-panel,
.deposit-card,
.placeholder-card,
.chat-panel,
.chat-fallback,
.control-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(46, 34, 41, 0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.proof-card,
.service-card,
.resource-card,
.about-card,
.results-card,
.empty-state,
.placeholder-card,
.chat-fallback,
.control-card,
.faq-item {
  padding: 24px;
}

.proof-card strong,
.service-card strong,
.plan-card strong,
.resource-card strong,
.about-card strong,
.results-card strong,
.control-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 10px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: stretch;
}

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

.audience-card {
  min-height: 220px;
  border-radius: 24px;
  border: 1px solid rgba(46, 34, 41, 0.08);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(90, 50, 68, 0.05), rgba(255, 255, 255, 0.96));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.audience-card.dark {
  background: linear-gradient(180deg, rgba(55, 28, 43, 0.96), rgba(90, 50, 68, 0.9));
  color: #f7f4ef;
}

.audience-card > div {
  padding: 24px;
}

.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin: 0 0 12px;
  letter-spacing: -0.04em;
}

.audience-card p {
  margin: 0;
  line-height: 1.75;
}

.mosaic-wrap {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
}

.mosaic-frame {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(46, 34, 41, 0.08);
  box-shadow: var(--shadow);
}

.mosaic-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-lockup {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.founder-silhouette {
  min-height: 360px;
  border-radius: 24px;
  border: 1px solid rgba(46, 34, 41, 0.1);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.75), transparent 28%),
    linear-gradient(180deg, rgba(46, 34, 41, 0.12), rgba(46, 34, 41, 0.04));
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.founder-silhouette::before {
  content: "";
  width: 180px;
  height: 220px;
  border-radius: 88px 88px 52px 52px;
  background: rgba(46, 34, 41, 0.22);
  box-shadow:
    0 -56px 0 -18px rgba(46, 34, 41, 0.22),
    0 120px 0 40px rgba(46, 34, 41, 0.22);
  transform: translateY(12px);
}

.founder-lock {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(46, 34, 41, 0.08);
}

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

.timeline-step {
  padding: 22px 0 0;
  position: relative;
}

.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(90, 50, 68, 0.2);
  background: rgba(255, 255, 255, 0.82);
  display: grid;
  place-items: center;
  color: var(--jade);
  font-weight: 700;
}

.timeline-step h3 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: -0.04em;
}

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

.faq-item {
  padding: 0;
  overflow: hidden;
}

.faq-button {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  color: var(--ink);
  text-align: left;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.faq-answer {
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.cta-panel {
  border-radius: 28px;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(55, 28, 43, 1), rgba(90, 50, 68, 0.96)),
    var(--jade-dark);
  color: #f7f4ef;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.cta-panel .button-ghost {
  color: #f7f4ef;
  border-color: rgba(247, 244, 239, 0.3);
}

.cta-panel .cta-title,
.cta-panel p,
.cta-panel .support-copy {
  color: #f7f4ef;
}

.page-hero {
  padding: 64px 0 24px;
}

.page-title {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  margin: 0 0 14px;
}

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

.service-card.dark {
  background: linear-gradient(180deg, rgba(55, 28, 43, 0.98), rgba(90, 50, 68, 0.9));
  color: #f7f4ef;
}

.service-card.dark p,
.service-card.dark .support-copy,
.service-card.dark strong {
  color: #f7f4ef;
}

.service-card ul,
.plan-card ul,
.about-card ul,
.results-card ul,
.empty-state ul,
.resource-card ul,
.timeline-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-list {
  margin: 18px 0 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}

.timeline-list li + li {
  margin-top: 8px;
}

.service-card.dark ul {
  color: rgba(247, 244, 239, 0.8);
}

.service-card.dark li {
  color: inherit;
}

.pricing-layout,
.results-layout,
.about-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.plan-stack,
.surface-stack,
.faq-stack,
.resource-stack {
  display: grid;
  gap: 18px;
}

.plan-card {
  padding: 26px;
}

.plan-meta {
  color: var(--muted);
  margin-bottom: 16px;
}

.locked-copy {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(243, 238, 229, 0.84);
  color: var(--muted);
}

.timeline-panel,
.deposit-card,
.form-card,
.chat-panel {
  padding: 28px;
}

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

.status-item {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.status-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.status-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--jade-dark);
  background: rgba(46, 34, 41, 0.06);
  border: 1px solid rgba(46, 34, 41, 0.1);
}

.status-item[data-state="done"] .status-badge {
  background: rgba(46, 107, 68, 0.16);
  color: var(--success);
  border-color: rgba(46, 107, 68, 0.18);
}

.status-item[data-state="active"] .status-badge {
  background: rgba(200, 160, 92, 0.18);
  color: var(--ink);
  border-color: rgba(200, 160, 92, 0.22);
}

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

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

.field,
.field-full {
  display: grid;
  gap: 8px;
}

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

.field label,
.field-full label {
  font-weight: 600;
}

.field input,
.field select,
.field textarea,
.chat-input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(46, 34, 41, 0.14);
  background: var(--surface);
  padding: 14px 16px;
  color: var(--ink);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.chat-input:focus {
  outline: none;
  border-color: rgba(90, 50, 68, 0.72);
  box-shadow: 0 0 0 4px rgba(90, 50, 68, 0.12);
}

.field textarea,
.field-full textarea {
  min-height: 118px;
  resize: vertical;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: start;
}

.choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.choice-grid label {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(243, 238, 229, 0.8);
  border: 1px solid rgba(46, 34, 41, 0.08);
}

.field-error input,
.field-error select,
.field-error textarea {
  border-color: rgba(138, 61, 28, 0.72);
  box-shadow: 0 0 0 4px rgba(138, 61, 28, 0.1);
}

.error-copy {
  color: var(--warning);
  font-size: 0.92rem;
}

.form-note,
.subtle-note,
.support-copy {
  color: var(--muted);
  line-height: 1.7;
}

.inline-banner,
.locked-banner,
.preview-banner {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(46, 34, 41, 0.08);
  background: rgba(243, 238, 229, 0.82);
}

.preview-banner {
  background: rgba(55, 28, 43, 0.08);
}

.warning-banner {
  background: rgba(138, 61, 28, 0.1);
  border-color: rgba(138, 61, 28, 0.2);
  color: var(--warning);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.loading-row {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(90, 50, 68, 0.2);
  border-top-color: var(--jade);
  animation: spin 0.9s linear infinite;
}

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

.skeleton-card {
  border-radius: 22px;
  min-height: 220px;
  background:
    linear-gradient(
      90deg,
      rgba(243, 238, 229, 0.8) 0%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(243, 238, 229, 0.8) 100%
    );
  background-size: 200% 100%;
  animation: shimmer 1.5s linear infinite;
  border: 1px solid rgba(46, 34, 41, 0.08);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

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

.empty-state strong {
  font-size: 1.2rem;
}

.about-layout .about-card,
.results-layout .results-card {
  min-height: 100%;
}

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

.chat-dock {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.chat-toggle {
  border: 0;
  border-radius: var(--radius-pill);
  padding: 14px 18px;
  background: var(--jade);
  color: #fff;
  box-shadow: 0 16px 36px rgba(90, 50, 68, 0.24);
}

.chat-context {
  justify-self: end;
  max-width: 230px;
  padding: 9px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(46, 34, 41, 0.1);
  color: var(--muted);
  font-size: 0.86rem;
  box-shadow: 0 12px 30px rgba(46, 34, 41, 0.12);
}

.chat-panel {
  width: min(380px, calc(100vw - 24px));
  background: rgba(255, 255, 255, 0.97);
}

.chat-header,
.chat-footer,
.chat-human-exit,
.chat-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.chat-subhead {
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.6;
}

.chat-body {
  display: grid;
  gap: 14px;
  margin: 20px 0;
  max-height: 360px;
  overflow: auto;
}

.chat-disclosure-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(243, 238, 229, 0.72);
  border: 1px solid rgba(46, 34, 41, 0.08);
}

.chat-disclosure-item {
  display: inline-flex;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.6;
}

.chat-message {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  line-height: 1.7;
}

.chat-message.assistant {
  background: rgba(243, 238, 229, 0.92);
}

.chat-message.user {
  background: var(--jade);
  color: #fff;
  margin-left: auto;
}

.chat-human-exit {
  flex-wrap: wrap;
  justify-content: start;
  margin-top: 14px;
}

.chat-fallback {
  display: grid;
  gap: 14px;
}

.deposit-card.locked {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(243, 238, 229, 0.98));
}

.deposit-state {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(243, 238, 229, 0.82);
  border: 1px solid rgba(46, 34, 41, 0.08);
  color: var(--ink);
}

.deposit-state.success {
  background: rgba(46, 107, 68, 0.14);
  color: var(--success);
}

.deposit-state.warning {
  background: rgba(138, 61, 28, 0.12);
  color: var(--warning);
}

.footer {
  padding: 30px 0 46px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-column strong {
  display: block;
  margin-bottom: 12px;
}

.footer-column a,
.footer-column p,
.footer-note {
  display: block;
  color: var(--muted);
  line-height: 1.8;
}

.footer-note {
  padding-top: 24px;
}

.not-found {
  padding: 96px 0 120px;
}

.not-found-panel {
  text-align: center;
  padding: 52px;
}

.not-found-panel strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 9rem);
  color: var(--jade);
  line-height: 1;
}

.mobile-banner {
  display: none;
}

.mobile-header-cta {
  display: none;
}

@media (min-width: 861px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .audience-grid,
  .mosaic-wrap,
  .founder-lockup,
  .pricing-layout,
  .results-layout,
  .about-layout,
  .services-grid,
  .resource-list,
  .surface-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .founder-silhouette {
    min-height: 300px;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .header-row {
    grid-template-columns: 1fr auto auto;
    gap: 14px;
    padding: 14px 0;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(46, 34, 41, 0.12);
    background: rgba(255, 255, 255, 0.88);
  }

  .mobile-header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: var(--jade);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    white-space: nowrap;
  }

  .site-nav {
    grid-column: 1 / -1;
    display: none;
  }

  .site-nav.open {
    display: block;
  }

  .nav-links,
  .header-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    padding: 12px 0;
  }

  .header-actions {
    padding: 0 0 14px;
  }

  .hero-grid {
    padding-top: 28px;
  }

  .proof-grid,
  .timeline,
  .audience-stack,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .chat-dock {
    right: 12px;
    bottom: 96px;
  }

  .mobile-banner {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 25;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
    background: rgba(55, 28, 43, 0.94);
    color: #fff;
    box-shadow: 0 18px 32px rgba(46, 34, 41, 0.24);
  }

  .mobile-banner .button {
    box-shadow: none;
    background: #fff;
    color: var(--jade-dark);
    padding: 12px 16px;
  }
}

@media (max-width: 640px) {
  .header-row {
    grid-template-columns: minmax(0, 1fr) 52px;
    position: relative;
    padding-right: 64px;
  }

  .brand-copy strong {
    font-size: 1.12rem;
    line-height: 1.05;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .mobile-header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex !important;
    justify-self: end;
    position: fixed;
    right: 16px;
    top: 18px;
    z-index: 60;
    transform: none;
  }

  .container {
    width: min(calc(100% - 24px), var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
    width: min(10.5ch, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    overflow-wrap: break-word;
  }

  .hero-copy p {
    width: min(32ch, calc(100vw - 24px));
    max-width: calc(100vw - 24px);
    font-size: 1rem;
    line-height: 1.62;
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
  }

  .hero-actions .button,
  .hero-actions .button-ghost {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    line-height: 1.45;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-note {
    display: none;
  }

  .cta-panel,
  .form-card,
  .chat-panel,
  .deposit-card,
  .timeline-panel {
    padding: 22px;
  }

  .marketing-board {
    min-height: auto;
    padding: 20px;
  }

  .board-header span {
    max-width: 11ch;
    font-size: 2rem;
  }

  .board-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .board-node {
    min-height: 86px;
    padding: 14px;
  }

  .board-node strong {
    font-size: 0.94rem;
  }

  .chat-context {
    display: none;
  }
}

/* VIP band */
.vip-band .vip-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
}

.vip-band .eyebrow {
  color: var(--gold);
}

.vip-slot {
  display: flex;
  justify-content: center;
  width: 100%;
}

.vip-open {
  font-size: 1.05rem;
  padding: 16px 34px;
}

.vip-form {
  width: 100%;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.vip-success {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  padding: 24px;
}

@media (max-width: 900px) {
  .vip-band .vip-panel {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

/* Hero photo */
.hero-photo-frame {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  background: var(--surface);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.hero-photo-frame figcaption {
  padding: 12px 18px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--surface);
}

/* Dark hero band */
.hero-dark {
  background:
    radial-gradient(circle at 82% 12%, rgba(189, 150, 104, 0.14), transparent 42%),
    linear-gradient(158deg, #2b1520 0%, #371c2b 56%, #4a2839 100%);
}

.hero-dark .eyebrow {
  color: var(--gold);
}

.hero-dark .hero-copy h1 {
  color: #f7efe8;
}

.hero-dark .hero-copy p {
  color: rgba(247, 239, 232, 0.84);
}

.hero-dark .button {
  background: var(--gold);
  color: #2b1520;
}

.hero-dark .button:hover {
  background: #cda878;
}

.hero-dark .button-ghost {
  color: #f7efe8;
  border-color: rgba(247, 239, 232, 0.45);
}

.hero-dark .button-ghost:hover {
  border-color: rgba(247, 239, 232, 0.8);
}

.hero-dark .hero-photo-frame {
  border-color: rgba(247, 239, 232, 0.25);
  box-shadow: 0 30px 60px rgba(15, 6, 11, 0.45);
}
