:root, [data-theme='dark'] {
  --bg: #0D0D0D;
  --surface: #161616;
  --surface-2: #1E1E1E;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-glow: rgba(201, 168, 76, 0.10);
  --text-1: #F5F5F0;
  --text-2: #8A8A80;
  --border: #2A2A2A;
  --success: #4CAF82;
  --error: #E05C5C;
  --warning-bg: rgba(232, 169, 76, 0.08);
  --warning-border: rgba(232, 169, 76, 0.25);
  --warning-text: #E8A94C;
  --warning: #E8A94C;
}

[data-theme='light'] {
  --bg: #F5F0E8;
  --surface: #FFFFFF;
  --surface-2: #F0EBE0;
  --gold: #B8921F;
  --gold-light: #9A7A18;
  --gold-glow: rgba(184, 146, 31, 0.10);
  --text-1: #1A1A1A;
  --text-2: #6B6560;
  --border: #E0D9CE;
  --success: #2E8B57;
  --error: #C0392B;
  --warning-bg: rgba(184, 146, 31, 0.08);
  --warning-border: rgba(184, 146, 31, 0.30);
  --warning-text: #9A7A18;
  --warning: #9A7A18;
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme='dark']) {
    --bg: #F5F0E8;
    --surface: #FFFFFF;
    --surface-2: #F0EBE0;
    --gold: #B8921F;
    --gold-light: #9A7A18;
    --gold-glow: rgba(184, 146, 31, 0.10);
    --text-1: #1A1A1A;
    --text-2: #6B6560;
    --border: #E0D9CE;
    --success: #2E8B57;
    --error: #C0392B;
    --warning-bg: rgba(184, 146, 31, 0.08);
    --warning-border: rgba(184, 146, 31, 0.30);
    --warning-text: #9A7A18;
    --warning: #9A7A18;
  }
}

#theme-toggle-btn:hover {
  background: var(--gold-glow);
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text-1);
  font-family: 'DM Sans', sans-serif;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px 128px;
}

.page-wrapper {
  position: relative;
  z-index: 1;
  padding: 60px 20px 80px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header */
.site-header {
  text-align: center;
  margin-bottom: 48px;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  display: block;
}

.tagline {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  color: var(--text-2);
  margin-top: 6px;
}

/* Main card with ambient glow */
.card-wrap {
  position: relative;
  width: 100%;
  max-width: 580px;
}

.card-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, var(--gold-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.main-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  width: 100%;
}

/* Section labels */
.section-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

/* Upload area */
.upload-area {
  border: 2px dashed var(--gold);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
}

.upload-area:hover {
  transform: scale(1.01);
  border-color: var(--gold-light);
  background: rgba(201,168,76,0.04);
  box-shadow: 0 0 20px rgba(201,168,76,0.08);
}

.upload-area.drag-over {
  transform: scale(1.01);
  border-color: var(--gold-light);
  background: rgba(201,168,76,0.06);
  box-shadow: 0 0 24px rgba(201,168,76,0.12);
}

.upload-area.file-selected {
  border-style: solid;
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
}

.upload-icon {
  color: var(--gold);
  margin-bottom: 4px;
}

.upload-main-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
}

.upload-sub-text {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
}

.file-selected-info {
  display: none;
  align-items: center;
  gap: 12px;
  width: 100%;
  justify-content: center;
}

.file-selected-info.visible { display: flex; }

.checkmark-icon { color: var(--success); }

.file-name {
  font-size: 14px;
  color: var(--text-1);
  font-weight: 500;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.remove-file {
  background: none;
  border: none;
  color: var(--text-2);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  padding: 2px 6px;
  border-radius: 4px;
  transition: color 0.2s;
}

.remove-file:hover { color: var(--error); }

/* Privacy note */
.privacy-note {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 10px;
  text-align: center;
}

/* Disclaimer banner */
.disclaimer-banner {
  background: rgba(232,169,76,0.08);
  border: 1px solid rgba(232,169,76,0.28);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.disclaimer-icon {
  color: var(--warning);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.disclaimer-text {
  font-size: 12px;
  color: var(--warning);
  line-height: 1.6;
}

/* Divider */
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 28px 0;
}

/* Email field */
.field-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 8px;
}

.email-input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text-1);
  outline: none;
  transition: border-color 0.2s;
}

.email-input::placeholder { color: var(--text-2); }

.email-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.email-input.error-field {
  border-color: var(--error);
}

/* Tier cards */
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.tier-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
}

.tier-card:hover {
  border-color: rgba(201,168,76,0.4);
  background: #232323;
}

.tier-card.selected {
  border-color: var(--gold);
  background: #1c1a13;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}

.tier-card.featured {
  box-shadow: 0 0 0 1px rgba(201,168,76,0.2), 0 0 20px rgba(201,168,76,0.08);
}

.tier-badge {
  font-size: 10px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
  display: block;
  min-height: 16px;
}

.tier-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  display: block;
  margin-bottom: 8px;
}

.tier-price {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.tier-briefs {
  font-size: 12px;
  color: var(--text-2);
  display: block;
  margin-bottom: 4px;
}

.tier-duration {
  font-size: 11px;
  color: var(--text-2);
  font-weight: 300;
  display: block;
}

/* Add-on rows */
.addon-rows { display: flex; flex-direction: column; gap: 0; }

.addon-row {
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 12px;
  transition: all 0.2s ease;
}

.addon-row.addon-active {
  background: var(--surface-2);
  border-color: transparent;
  border-left: 2px solid var(--gold);
}

.addon-row-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.addon-info { flex: 1; }

.addon-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
}

.addon-desc {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-2);
  margin-top: 2px;
}

.addon-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}

/* Toggle switch */
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border);
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.toggle-slider::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--text-2);
  left: 3px;
  top: 3px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--gold);
}

.toggle-switch input:checked + .toggle-slider::after {
  transform: translateX(18px);
  background: #0D0D0D;
}

/* Add-on sub-options */
.addon-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, opacity 0.2s ease;
  opacity: 0;
  margin-top: 0;
}

.addon-sub.visible {
  max-height: 120px;
  opacity: 1;
  margin-top: 12px;
}

/* Format sub-panel needs more room for 9 pills + pricing note */
#format-sub.visible {
  max-height: 360px;
}

/* Export sub-panel needs more room for 8 pills + helper note */
#export-sub.visible {
  max-height: 280px;
}

/* Pill selectors */
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.pill:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--text-1);
}

.pill.selected {
  background: rgba(201,168,76,0.15);
  border-color: var(--gold);
  color: var(--gold);
}

/* Tooltip */
.pill[data-tooltip] { position: relative; }

.pill[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #2a2a2a;
  color: var(--text-2);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  border: 1px solid var(--border);
  z-index: 10;
}

.pill[data-tooltip]:hover::after { opacity: 1; }

/* Language dropdown */
.lang-select {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-1);
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A8A80' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.lang-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.lang-select option { background: var(--surface-2); color: var(--text-1); }

/* Order summary */
.order-summary {
  background: var(--surface-2);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.order-desc {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
}

.order-total {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}

/* CTA button */
.cta-btn {
  width: 100%;
  height: 52px;
  background: var(--gold);
  color: #0D0D0D;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: 0.01em;
}

.cta-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.25);
}

.cta-btn:active {
  transform: scale(0.97) translateY(0);
}

.cta-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.cta-btn.loading {
  opacity: 0.85;
  cursor: not-allowed;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-spinner {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(13, 13, 13, 0.3);
  border-top-color: #0D0D0D;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 6px;
}

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

@media (prefers-reduced-motion: reduce) {
  .btn-spinner {
    animation: none;
    border-top-color: #0D0D0D;
  }
}

.cta-sub {
  text-align: center;
  font-size: 12px;
  color: var(--text-2);
  font-weight: 300;
  margin-top: 10px;
}

/* Error messages */
.field-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
  display: none;
}

.field-error.visible { display: block; }

.file-warning {
  font-size: 12px;
  color: var(--warning);
  margin-top: 8px;
  padding: 8px 12px;
  background: rgba(232,169,76,0.08);
  border-radius: 6px;
  display: none;
}

.file-warning.visible { display: block; }

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  15% { transform: translateX(-6px); }
  30% { transform: translateX(6px); }
  45% { transform: translateX(-4px); }
  60% { transform: translateX(4px); }
  75% { transform: translateX(-2px); }
  90% { transform: translateX(2px); }
}

.shake { animation: shake 0.5s ease; }

/* Processing state */
.processing-card {
  position: relative;
  overflow: hidden;
}

.progress-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 200% 100%;
  animation: sweep 1.8s linear infinite;
}

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

.processing-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--text-1);
  margin-bottom: 8px;
  text-align: center;
}

.processing-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 36px 0 28px;
}

.step-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-indicator {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.step-indicator.active {
  border-color: var(--gold);
  background: rgba(201,168,76,0.1);
}

.step-indicator.done {
  border-color: var(--success);
  background: rgba(76,175,130,0.1);
}

.step-spinner {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(201,168,76,0.3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.step-check {
  color: var(--success);
  font-size: 16px;
  display: none;
}

.step-indicator.done .step-spinner { display: none; }
.step-indicator.done .step-check { display: block; }
.step-indicator:not(.active):not(.done) .step-spinner { display: none; }

.step-label {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  transition: color 0.2s;
}

.step-label.active { color: var(--text-1); }

.processing-sub {
  font-size: 13px;
  color: var(--text-2);
  text-align: center;
  font-weight: 300;
  line-height: 1.6;
}

/* Brief state */
.brief-card {
  animation: fadeUp 0.4s ease forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.brief-header-row {
  margin-bottom: 8px;
}

.brief-ready-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--text-1);
  margin-bottom: 6px;
}

.brief-meta {
  font-size: 13px;
  font-weight: 300;
  color: var(--text-2);
  margin-bottom: 2px;
}

.brief-ref {
  font-size: 12px;
  color: var(--text-2);
  font-weight: 300;
}

.review-banner {
  background: rgba(232,169,76,0.08);
  border: 1px solid rgba(232,169,76,0.28);
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.review-banner-text {
  font-size: 12px;
  color: var(--warning);
  line-height: 1.6;
}

/* Brief body */
.brief-body {
  background: var(--surface-2);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 20px;
  line-height: 1.8;
}

.brief-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin: 20px 0 8px;
  text-transform: capitalize;
}

.brief-section-title:first-child { margin-top: 0; }

.brief-para {
  font-size: 14px;
  color: var(--text-1);
  font-weight: 300;
  margin-bottom: 6px;
}

.brief-bullet {
  font-size: 14px;
  color: var(--text-1);
  font-weight: 300;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.brief-bullet::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* Email confirmation */
.email-confirmed {
  background: rgba(76,175,130,0.08);
  border: 1px solid rgba(76,175,130,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--success);
  margin-bottom: 16px;
}

/* Download buttons */
.download-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.download-btn:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-1px);
}

/* Flag link */
.flag-link {
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
  display: inline-block;
  margin-bottom: 24px;
}

.flag-link:hover { color: var(--text-1); }

/* Share nudge */
.share-section {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  margin-top: 4px;
}

.share-nudge {
  font-size: 14px;
  color: var(--text-2);
  margin-bottom: 12px;
}

.share-copy-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-1);
  cursor: pointer;
  transition: all 0.2s;
}

.share-copy-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* New brief button */
.new-brief-btn {
  width: 100%;
  height: 48px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 16px;
}

.new-brief-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Error state */
.error-ref {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--gold);
  margin: 16px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.error-ref-copy {
  font-size: 12px;
  color: var(--text-2);
}

/* Spacing helpers */
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-28 { margin-top: 28px; }
.mt-32 { margin-top: 32px; }

/* Mobile responsiveness */
@media (max-width: 640px) {
  .page-wrapper { padding: 40px 16px 60px; }
  .main-card { padding: 24px 20px; }
  .wordmark { font-size: 28px; }
  .tier-cards { grid-template-columns: 1fr; gap: 10px; }
  .upload-area { min-height: 100px; padding: 24px 16px; }
  .download-btns { flex-direction: column; }
  .download-btn { width: 100%; justify-content: center; }
  .order-summary { flex-direction: column; align-items: flex-start; gap: 4px; }
  .addon-row-header { flex-wrap: wrap; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   EXTENDED — NAV, FOOTER, FREE TIER, DW PANELS, REFERRAL, WAITLIST, PAGES
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── NAV ─────────────────────────────────────────────────────────────── */
.site-nav {
  position: relative;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  border-bottom: 1px solid var(--border);
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(10px);
}

.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav-wordmark:hover { color: var(--gold-light); }

.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--text-1); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-1);
  transition: transform 0.2s, opacity 0.2s;
}
.nav-mobile-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-mobile-toggle.open span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* ─── Language selector (in nav) ─────────────────────────────────────── */
.lang-selector { position: relative; }
.lang-selector-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 12px;
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.lang-selector-btn:hover,
.lang-selector.open .lang-selector-btn {
  border-color: var(--gold);
  color: var(--gold);
}
.lang-globe { flex: 0 0 14px; opacity: 0.95; }
.lang-current { min-width: 48px; text-align: center; white-space: nowrap; }
.lang-chevron {
  flex: 0 0 10px;
  transition: transform 0.15s;
  opacity: 0.85;
}
.lang-selector.open .lang-chevron { transform: rotate(180deg); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 60;
}
.lang-menu li {
  padding: 9px 12px;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-2);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.lang-menu li:hover,
.lang-menu li:focus {
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  outline: none;
}
.lang-menu li:focus-visible {
  box-shadow: inset 0 0 0 1px var(--gold);
}
.lang-selector-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── Language banner (below nav) ─────────────────────────────────────── */
.lang-banner {
  text-align: center;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-2);
  padding: 10px 16px;
  line-height: 1.5;
}
.lang-banner[dir="rtl"] { direction: rtl; }

@media (max-width: 720px) {
  .site-nav { padding: 14px 20px; }
  .nav-right { gap: 12px; }
  .nav-mobile-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 24px 20px;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    z-index: 55;
  }
  .nav-links.open { max-height: 320px; }
  .lang-selector-btn { padding: 6px 10px; font-size: 12px; }
  .lang-current { min-width: 0; }
  .lang-menu { right: 0; min-width: 140px; }
}

/* ─── PAGE CONTENT WRAP ───────────────────────────────────────────────── */
.page-content { min-height: calc(100vh - 220px); }

/* ─── FOOTER ──────────────────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: #0a0a0a;
  padding: 48px 32px 24px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  align-items: start;
}

.footer-brand { }
.footer-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.footer-tagline {
  margin-top: 6px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 300;
}

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-heading {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text-1); }

.footer-copy {
  text-align: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid #1a1a1a;
  color: var(--text-2);
  font-size: 12px;
  font-weight: 300;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 36px 20px 20px; }
}

/* ─── HOME PAGE TWEAKS ────────────────────────────────────────────────── */
.home-wrapper { padding-top: 40px; }

/* ─── EMAIL TICK ──────────────────────────────────────────────────────── */
.email-wrap { position: relative; }
.email-tick {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%) scale(0.4);
  color: var(--success);
  font-weight: 700;
  font-size: 16px;
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  pointer-events: none;
}
.email-tick.visible {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* ─── 4-CARD TIER GRID + FREE TIER ────────────────────────────────────── */
.tier-cards-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.tier-card.tier-free {
  border-style: dashed;
  border-color: rgba(76,175,130,0.4);
}
.tier-card.tier-free:hover { border-color: var(--success); }
.tier-card.tier-free.selected {
  border-color: var(--success);
  background: rgba(76,175,130,0.05);
  box-shadow: 0 4px 20px rgba(76,175,130,0.15);
}
.tier-card.tier-free .tier-price { color: var(--success); }

.tier-badge-free {
  background: rgba(76,175,130,0.15);
  color: var(--success) !important;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 9px !important;
  display: inline-block !important;
  min-height: auto !important;
  margin-bottom: 8px !important;
}

.tier-fineprint {
  display: block;
  font-size: 10px;
  color: var(--text-2);
  font-weight: 300;
  margin-top: 6px;
  font-style: italic;
}

@media (max-width: 720px) {
  .tier-cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .tier-cards-4 { grid-template-columns: 1fr; }
}

/* ─── BETA LANGUAGE NOTE ──────────────────────────────────────────────── */
.lang-beta-note {
  display: none;
  margin-top: 10px;
  padding: 8px 12px;
  background: rgba(232,169,76,0.08);
  border: 1px solid rgba(232,169,76,0.3);
  border-radius: 6px;
  color: var(--warning);
  font-size: 12px;
  line-height: 1.5;
}
.lang-beta-note.visible { display: block; animation: fadeIn 0.2s ease; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Allow language sub-section to expand for the beta note */
#language-sub.visible { max-height: 220px; }

/* ─── FREE TIER VERIFICATION STATE ────────────────────────────────────── */
.state-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--text-1);
  margin-bottom: 8px;
}
.state-sub {
  font-size: 14px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.6;
}
.verify-email { color: var(--gold); font-weight: 500; }

.verify-code-input {
  font-size: 28px !important;
  letter-spacing: 0.4em;
  text-align: center;
  font-family: 'Playfair Display', serif;
}

.muted-link {
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.muted-link:hover { color: var(--gold); }

/* ─── DEEP WORK PANELS (Tone Engine + Follow-up) ──────────────────────── */
.dw-panel {
  background: linear-gradient(180deg, rgba(201,168,76,0.04) 0%, transparent 100%);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  animation: fadeUp 0.4s ease forwards;
}

.dw-panel-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.dw-badge {
  background: var(--gold);
  color: #0D0D0D;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  border-radius: 10px;
}

.dw-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0;
}

.dw-desc {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
  margin-top: 6px;
  line-height: 1.5;
}

.dw-action-btn {
  background: var(--gold);
  color: #0D0D0D;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.dw-action-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.dw-action-btn:active { transform: scale(0.97); }
.dw-action-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.dw-status {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 10px;
  min-height: 16px;
}
.dw-status.error { color: var(--error); }
.dw-status.success { color: var(--success); }

.followup-result { margin-top: 14px; }
.followup-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-1);
  line-height: 1.7;
  resize: vertical;
  min-height: 200px;
  outline: none;
}
.followup-textarea:focus { border-color: var(--gold); }

.followup-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Brief fade transition for tone changes */
.brief-body.fading {
  opacity: 0;
  transition: opacity 0.25s ease;
}
.brief-body.fade-in {
  animation: fadeUp 0.4s ease forwards;
}

/* ─── REFERRAL PANEL ──────────────────────────────────────────────────── */
.referral-panel {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.referral-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.referral-title {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0;
}

.referral-counter {
  font-size: 11px;
  color: var(--gold);
  background: rgba(201,168,76,0.12);
  padding: 3px 10px;
  border-radius: 12px;
  font-weight: 500;
}

.referral-desc {
  font-size: 13px;
  color: var(--text-2);
  font-weight: 300;
  margin-top: 6px;
  line-height: 1.5;
}

.referral-link-row {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.referral-url-input {
  flex: 1;
  background: #0D0D0D;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: 'DM Sans', monospace;
  font-size: 12px;
  color: var(--gold);
  outline: none;
}

/* ─── TEAMS WAITLIST ──────────────────────────────────────────────────── */
.teams-banner {
  background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.teams-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0;
}

.teams-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 4px;
  font-weight: 300;
}

.teams-form {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.teams-input {
  flex: 1;
  font-size: 13px !important;
  padding: 10px 12px !important;
}

.teams-status {
  font-size: 12px;
  margin-top: 10px;
  min-height: 16px;
  color: var(--text-2);
}
.teams-status.success { color: var(--success); }
.teams-status.error { color: var(--error); }

@media (max-width: 540px) {
  .teams-form { flex-direction: column; }
  .referral-link-row { flex-direction: column; }
}

/* ─── COPY BUTTON CONFIRMATION ────────────────────────────────────────── */
.share-copy-btn.copied {
  border-color: var(--success);
  color: var(--success);
  background: rgba(76,175,130,0.08);
}

/* ─── MICRO-ANIMATIONS ────────────────────────────────────────────────── */
.upload-area.flash {
  animation: borderFlash 0.6s ease;
}
@keyframes borderFlash {
  0% { border-color: var(--gold); box-shadow: 0 0 0 0 rgba(201,168,76,0.4); }
  50% { border-color: var(--gold-light); box-shadow: 0 0 0 12px rgba(201,168,76,0); }
  100% { border-color: var(--gold); }
}

.checkmark-icon.bounce { animation: checkBounce 0.5s ease; }
@keyframes checkBounce {
  0% { transform: scale(0.4); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

.tier-card.lift-active {
  animation: tierLift 0.3s ease;
}
@keyframes tierLift {
  0% { transform: translateY(-2px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(-2px); }
}

.addon-row.addon-active { animation: rowLight 0.3s ease; }
@keyframes rowLight {
  0% { background: var(--surface-2); }
  50% { background: rgba(201,168,76,0.1); }
  100% { background: var(--surface-2); }
}

.order-summary.flash-update {
  animation: summaryFlash 0.25s ease;
}
@keyframes summaryFlash {
  0% { opacity: 1; }
  50% { opacity: 0.4; }
  100% { opacity: 1; }
}

.step-indicator.done {
  animation: doneRipple 0.6s ease;
}
@keyframes doneRipple {
  0% { box-shadow: 0 0 0 0 rgba(76,175,130,0.4); }
  100% { box-shadow: 0 0 0 14px rgba(76,175,130,0); }
}

.brief-section-title {
  opacity: 0;
  transform: translateY(8px);
  animation: stagger 0.4s ease forwards;
}
@keyframes stagger {
  to { opacity: 1; transform: translateY(0); }
}
.brief-body .brief-para,
.brief-body .brief-bullet {
  opacity: 0;
  transform: translateY(6px);
  animation: stagger 0.4s ease forwards;
}

/* ─── CONTENT PAGES ───────────────────────────────────────────────────── */
.content-page {
  padding-top: 40px;
  padding-bottom: 60px;
  align-items: center;
}

.content-card {
  position: relative;
  z-index: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 760px;
}

.page-title {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-lede {
  font-size: 17px;
  color: var(--text-2);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 32px;
}

.page-h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin: 32px 0 12px;
}

.content-card p {
  font-size: 15px;
  color: var(--text-1);
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 14px;
}

.page-list {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}
.page-list li {
  font-size: 15px;
  color: var(--text-1);
  font-weight: 300;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
}
.page-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
}
.page-list li strong { color: var(--text-1); font-weight: 500; }

.content-card a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.content-card a:hover { border-bottom-color: var(--gold); }

.content-card code {
  background: var(--surface-2);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
  color: var(--gold);
  font-family: 'SF Mono', monospace;
}

.page-cta-row { margin-top: 36px; }

.page-cta {
  display: inline-block;
  background: var(--gold);
  color: #0D0D0D !important;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: none !important;
  transition: all 0.2s;
}
.page-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  border-bottom: none !important;
}

.page-cta-secondary {
  display: inline-block;
  background: transparent;
  color: var(--gold) !important;
  border: 1px solid var(--gold);
  padding: 11px 22px;
  border-radius: 10px;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 1px solid var(--gold) !important;
  transition: all 0.2s;
}
.page-cta-secondary:hover {
  background: rgba(201,168,76,0.08);
}

/* ─── HOW-IT-WORKS STEPS ──────────────────────────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 36px;
}
.how-step {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
}
.how-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #0D0D0D;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}
.how-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--text-1);
  margin-bottom: 8px;
}
.how-step p {
  font-size: 13px !important;
  line-height: 1.6 !important;
  color: var(--text-2) !important;
  margin: 0 !important;
}
@media (max-width: 720px) {
  .how-steps { grid-template-columns: 1fr; }
}

/* ─── FAQ ─────────────────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.faq-item:last-of-type { border-bottom: none; }
.faq-q {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 8px;
}
.faq-a {
  font-size: 14px !important;
  color: var(--text-2) !important;
  line-height: 1.7 !important;
  margin: 0 !important;
}

/* ─── CONTACT FORM ────────────────────────────────────────────────────── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-textarea {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-1);
  outline: none;
  resize: vertical;
  min-height: 140px;
  transition: border-color 0.2s;
}
.contact-textarea:focus { border-color: var(--gold); }
.contact-status {
  font-size: 13px;
  color: var(--text-2);
  margin-top: 8px;
  text-align: center;
  min-height: 18px;
}
.contact-status.error { color: var(--error); }
.contact-status.success { color: var(--success); }

/* ─── CONTENT-PAGE RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 720px) {
  .content-card { padding: 32px 24px; }
  .page-title { font-size: 28px; }
  .page-lede { font-size: 15px; }
  .page-h2 { font-size: 18px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO TWO-COLUMN LAYOUT (desktop ≥960px)
   ═══════════════════════════════════════════════════════════════════════════ */

.hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-left { display: none; }
.hero-right { width: 100%; max-width: 580px; }

.mobile-only-header { display: block; }

@media (min-width: 960px) {
  .hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 580px);
    gap: 60px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }

  /* On desktop, the marketing hero replaces the centered Trootone display header */
  .mobile-only-header { display: none; }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 420px;
    padding-right: 8px;
  }

  .hero-right {
    width: 100%;
    max-width: 580px;
  }

  /* On desktop the form card no longer needs auto-centering since the grid handles it */
  .hero-right.card-wrap { margin: 0; }
}

/* ─── HERO HEADLINE ──────────────────────────────────────────────────────── */
.hero-headline {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--gold);
  margin: 0 0 20px;
}

@media (min-width: 1200px) {
  .hero-headline { font-size: 46px; }
}

/* ─── HERO SUB COPY ──────────────────────────────────────────────────────── */
.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 28px;
  max-width: 380px;
}

/* ─── HERO ILLUSTRATION ──────────────────────────────────────────────────── */
.hero-illustration {
  width: 100%;
  max-width: 340px;
  margin: 4px 0 28px;
  opacity: 0;
  animation: heroFadeIn 0.8s ease 0.15s forwards;
}
.hero-illustration svg,
.hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, 0.4));
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── HERO FEATURE PILLS ─────────────────────────────────────────────────── */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--surface);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 20px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-2);
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.hero-pill:hover {
  border-color: var(--gold);
  color: var(--text-1);
  transform: translateY(-1px);
}
.hero-pill svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ─── DESKTOP: align home wrapper to top so the two columns center nicely ── */
@media (min-width: 960px) {
  .home-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING-PAGE SECTIONS  (below hero — alternating image/text rows)
   ═══════════════════════════════════════════════════════════════════════════ */

html { scroll-behavior: smooth; }

.landing-sections {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

/* ─── Single landing row ─────────────────────────────────────────────────── */
.landing-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.landing-row:last-child { border-bottom: 0; }

.landing-image {
  width: 100%;
  max-width: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.landing-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.35));
}

/* Section 4 dual-image */
.landing-image-pair {
  max-width: 400px;
  gap: 24px;
}
.landing-image-pair img {
  max-width: 180px;
  width: 50%;
}

.landing-text {
  width: 100%;
  max-width: 560px;
}
.landing-text h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin: 0 0 18px;
}
.landing-text p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  margin: 0 0 14px;
}
.landing-text p:last-child { margin-bottom: 0; }

.landing-link a {
  display: inline-block;
  margin-top: 6px;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.landing-link a:hover { border-color: var(--gold); }

/* ─── Brief-screen Share Your Experience CTA (links to /review) ──────────── */
.share-experience-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 44px;
  margin-top: 20px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.share-experience-btn:hover {
  background: var(--gold);
  color: #0b0b0b;
}
.share-experience-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ─── About-page Share Your Experience CTA section ───────────────────────── */
.about-review-cta {
  width: 100%;
  background: var(--surface);
  padding: 64px 24px;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}
.about-review-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.about-review-h {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 26px;
  color: var(--text-1);
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.about-review-p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 24px;
}
.about-review-btn {
  display: inline-block;
  padding: 12px 28px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.about-review-btn:hover {
  background: var(--gold);
  color: #0b0b0b;
}

/* ─── Standalone /review page ────────────────────────────────────────────── */
.review-page { padding: 48px 24px 80px; }
.review-page-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
}
.review-page-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 32px;
  color: var(--text-1);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.review-page-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 28px;
}
.review-page-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.rp-field { display: flex; flex-direction: column; gap: 8px; }
.rp-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-1);
  letter-spacing: 0.01em;
}
.rp-input,
.rp-textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-1);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.rp-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}
.rp-input:focus,
.rp-textarea:focus { border-color: var(--gold); }

.rp-checkbox-row { margin: 4px 0; }
.rp-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-1);
}
.rp-checkbox input[type="checkbox"] {
  margin: 3px 0 0;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}
.rp-consent-row {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.20);
  border-radius: 8px;
  padding: 12px 14px;
}

.rp-org-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  animation: rpSlideIn 0.25s ease;
}
.rp-org-block[hidden] { display: none; }
@keyframes rpSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.rp-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--error);
  margin: 0;
}
.rp-submit {
  width: 100%;
  height: 48px;
  background: var(--gold);
  color: #0b0b0b;
  border: 0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.rp-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.rp-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.rp-thanks {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--gold);
  margin: 4px 0 0;
  text-align: center;
  padding: 16px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 10px;
}

@media (max-width: 540px) {
  .review-page-card { padding: 28px 22px; }
  .review-page-title { font-size: 26px; }
}

/* ─── Section 10: founding member + waitlist ─────────────────────────────── */
.landing-founding-row {
  flex-direction: column !important;
  align-items: center;
  text-align: center;
}
.landing-founding-illus {
  flex: 0 0 auto !important;
  max-width: 800px !important;
  width: 100%;
  margin: 0 auto 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.landing-founding-illus img {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.founding-block {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.founding-h {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  color: var(--text-1);
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.founding-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 20px;
}
.founding-counter {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  margin: 0 0 18px;
  letter-spacing: 0.01em;
}
.founding-tier-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  flex-wrap: wrap;
}
.founding-pill {
  background: var(--surface-2);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 8px 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-1);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.founding-pill:hover { background: rgba(201,168,76,0.10); }
.founding-pill.is-active {
  background: var(--gold);
  color: #0b0b0b;
}
.founding-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.founding-card {
  background: var(--surface-2);
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 28px;
  max-width: 460px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.founding-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-size: 11px;
  margin: 0 0 8px;
}
.founding-tier-name {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--text-1);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}
.founding-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founding-features li {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-1);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.founding-tick {
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  flex: 0 0 12px;
  line-height: 1.55;
}
.founding-pricing {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 6px;
  flex-wrap: wrap;
}
.founding-strike {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: line-through;
}
.founding-rate {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.founding-month {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-2);
}
.founding-save {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text-2);
  margin: 0 0 10px;
  line-height: 1.55;
}
.founding-onetime {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: var(--text-2);
  margin: 0 0 18px;
  line-height: 1.55;
}
.founding-cta {
  width: 100%;
  height: 48px;
  background: var(--gold);
  color: #0b0b0b;
  border: 0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.founding-cta:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.founding-cta:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.founding-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.founding-email-form {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: foundingSlideIn 0.25s ease;
}
@keyframes foundingSlideIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.founding-email-input {
  width: 100%;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-1);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.15s;
}
.founding-email-input:focus { border-color: var(--gold); }
.founding-confirm-btn {
  width: 100%;
  height: 44px;
  background: var(--gold);
  color: #0b0b0b;
  border: 0;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.founding-confirm-btn:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
}
.founding-confirm-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.founding-error {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: var(--error);
  margin: 0;
}

.founding-fineprint {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 11px;
  color: var(--text-2);
  margin: 14px 0 0;
  line-height: 1.55;
  text-align: center;
}
.founding-soldout {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-2);
  margin: 0;
  text-align: center;
}
.founding-confirmation {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--gold);
  margin: 0;
  text-align: center;
  padding: 14px 16px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.30);
  border-radius: 10px;
}
.founding-divider {
  width: 100%;
  max-width: 460px;
  border: 0;
  border-top: 1px solid var(--border);
  margin: 28px auto;
}
.founding-waitlist-block {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  text-align: center;
}
.founding-waitlist-h {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--text-1);
  margin: 0 0 6px;
}
.founding-waitlist-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 14px;
}
.founding-waitlist-form {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.founding-waitlist-form input[type="email"] {
  flex: 1 1 0;
  min-width: 0;
  padding: 11px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-1);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.15s;
}
.founding-waitlist-form input[type="email"]:focus { border-color: var(--gold); }
.founding-waitlist-form button {
  padding: 11px 18px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.founding-waitlist-form button:hover:not(:disabled) {
  background: var(--gold);
  color: #0b0b0b;
}
.founding-waitlist-form button:disabled { opacity: 0.6; cursor: not-allowed; }
.founding-waitlist-msg {
  margin-top: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}

/* Compact variant for the brief-screen banner */
.founding-block.compact {
  margin-top: 20px;
  padding: 22px 18px;
  background: linear-gradient(135deg, rgba(201,168,76,0.06) 0%, rgba(201,168,76,0.02) 100%);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  max-width: 100%;
}
.founding-block.compact .founding-h     { font-size: 20px; margin-bottom: 8px; }
.founding-block.compact .founding-sub   { font-size: 13px; margin-bottom: 14px; }
.founding-block.compact .founding-counter { font-size: 13px; margin-bottom: 12px; }
.founding-block.compact .founding-tier-pills { gap: 8px; margin-bottom: 12px; }
.founding-block.compact .founding-pill  { padding: 6px 14px; font-size: 12px; }
.founding-block.compact .founding-card  { padding: 18px; max-width: 100%; }
.founding-block.compact .founding-tier-name { font-size: 18px; margin-bottom: 12px; }
.founding-block.compact .founding-features { gap: 7px; margin-bottom: 14px; }
.founding-block.compact .founding-features li { font-size: 12px; line-height: 1.5; }
.founding-block.compact .founding-rate { font-size: 22px; }
.founding-block.compact .founding-strike,
.founding-block.compact .founding-month { font-size: 12px; }
.founding-block.compact .founding-save { font-size: 11px; margin-bottom: 8px; }
.founding-block.compact .founding-onetime { font-size: 11px; margin-bottom: 14px; }
.founding-block.compact .founding-cta { height: 42px; font-size: 13px; }
.founding-block.compact .founding-confirm-btn { height: 38px; font-size: 13px; }
.founding-block.compact .founding-fineprint { font-size: 10px; margin-top: 10px; }
.founding-block.compact .founding-divider { margin: 20px auto; }
.founding-block.compact .founding-waitlist-h { font-size: 13px; }
.founding-block.compact .founding-waitlist-sub { font-size: 12px; margin-bottom: 10px; }
.founding-block.compact .founding-waitlist-form input[type="email"] { font-size: 12px; padding: 9px 12px; }
.founding-block.compact .founding-waitlist-form button { font-size: 12px; padding: 9px 14px; }

@media (max-width: 540px) {
  .founding-h { font-size: 26px; }
  .founding-card { padding: 22px 18px; }
  .founding-waitlist-form { flex-direction: column; }
  .founding-waitlist-form button { width: 100%; }
}

/* ─── Founding member: 600px body text below the subheading ──────────────── */
.founding-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 22px;
  text-align: center;
}

/* ─── Founding member: per-tier counter rows ─────────────────────────────── */
.founding-counter-rows {
  width: 100%;
  max-width: 560px;
  margin: 0 auto 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.founding-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: var(--surface-2);
  border: 1px solid rgba(201, 168, 76, 0.30);
  border-radius: 999px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
}
.founding-counter-tier {
  font-weight: 500;
  color: var(--text-1);
  flex: 0 0 auto;
}
.founding-counter-price {
  color: var(--gold);
  font-weight: 500;
  flex: 1 1 auto;
  text-align: center;
}
.founding-counter-spots {
  color: var(--text-2);
  font-weight: 300;
  flex: 0 0 auto;
  text-align: right;
}
.founding-soldout-badge {
  display: inline-block;
  padding: 3px 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
}

/* ─── Founding member: per-tier sold-out states ──────────────────────────── */
.founding-pill.is-soldout {
  opacity: 0.55;
  cursor: not-allowed;
  text-decoration: line-through;
  text-decoration-color: rgba(201, 168, 76, 0.6);
}
.founding-pill.is-soldout:hover {
  background: var(--surface-2);
}
.founding-tier-soldout-msg {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--gold);
  margin: -8px auto 14px;
  max-width: 520px;
  text-align: center;
}
.founding-card.is-tier-soldout {
  opacity: 0.7;
}

/* ─── Brief-delivery screen: simplified Teams banner ─────────────────────── */
.brief-teams-banner {
  margin-top: 24px;
  padding: 22px 20px;
  background: var(--surface-2);
  border: 1px solid rgba(201, 168, 76, 0.20);
  border-radius: 12px;
  text-align: center;
}
.brief-teams-h {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-1);
  margin: 0 0 6px;
}
.brief-teams-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-2);
  margin: 0 0 16px;
}
.brief-teams-rows {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.brief-teams-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
}
.brief-teams-row:last-child { border-bottom: 0; }
.brief-teams-tier {
  font-weight: 500;
  color: var(--text-1);
  flex: 0 0 auto;
}
.brief-teams-fee {
  color: var(--gold);
  flex: 1 1 auto;
  text-align: center;
  font-weight: 500;
}
.brief-teams-spots {
  color: var(--text-2);
  flex: 0 0 auto;
  text-align: right;
}
.brief-teams-btn {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: transparent;
  color: var(--gold);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.brief-teams-btn:hover {
  background: var(--gold);
  color: var(--bg-1, #0D0D0D);
}
.brief-teams-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
@media (max-width: 540px) {
  .founding-counter-row { flex-wrap: wrap; gap: 6px; padding: 10px 14px; }
  .founding-counter-price { text-align: left; flex: 0 0 100%; order: 3; }
  .founding-counter-spots { text-align: left; }
  .brief-teams-row { flex-wrap: wrap; gap: 4px; }
  .brief-teams-fee { text-align: left; flex: 0 0 100%; }
  .brief-teams-spots { text-align: left; }
}

/* ─── Section 10: legacy waitlist form (kept for any other usage) ────────── */
.landing-waitlist-form {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}
.landing-waitlist-form input[type="email"] {
  flex: 1 1 240px;
  min-width: 0;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-1);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.landing-waitlist-form input[type="email"]:focus {
  border-color: var(--gold);
}
.landing-waitlist-form button {
  padding: 12px 22px;
  background: var(--gold);
  color: #0b0b0b;
  border: 0;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}
.landing-waitlist-form button:hover:not(:disabled) {
  background: var(--gold-light, #d8b864);
  transform: translateY(-1px);
}
.landing-waitlist-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.landing-waitlist-msg {
  margin-top: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

/* ─── Desktop: alternate image/text columns ──────────────────────────────── */
@media (min-width: 960px) {
  .landing-row {
    flex-direction: row;
    gap: 80px;
    align-items: center;
    justify-content: space-between;
  }
  .landing-row.image-left  { flex-direction: row; }
  .landing-row.image-right { flex-direction: row-reverse; }

  .landing-image {
    flex: 0 0 360px;
    max-width: 360px;
  }
  .landing-image-pair {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .landing-text {
    flex: 1 1 0;
    max-width: 560px;
  }
  .landing-text h2 { font-size: 32px; }
}

/* ─── Brief-screen review form ─────────────────────────────────────────── */
.review-panel {
  margin-top: 32px;
  padding: 24px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.review-head { margin-bottom: 16px; }
.review-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--text-1);
  margin: 0 0 6px;
}
.review-sub {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 13px;
  color: var(--text-2);
  margin: 0;
}
.review-form { display: flex; flex-direction: column; gap: 14px; }
.review-field { display: flex; flex-direction: column; gap: 6px; }
.review-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-1);
  letter-spacing: 0.01em;
}
.review-optional {
  font-weight: 400;
  font-size: 11px;
  color: var(--text-2);
  margin-left: 6px;
}
.review-textarea,
.review-input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: var(--text-1);
  line-height: 1.6;
  transition: border-color 0.15s;
  box-sizing: border-box;
}
.review-textarea {
  min-height: 80px;
  resize: vertical;
}
.review-textarea:focus,
.review-input:focus {
  outline: none;
  border-color: var(--gold);
}
.review-textarea::placeholder,
.review-input::placeholder {
  color: var(--text-2);
}
.review-submit-btn {
  align-self: flex-start;
  background: var(--gold);
  color: #0b0b0b;
  border: none;
  border-radius: 8px;
  padding: 11px 22px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.review-submit-btn:hover { background: var(--gold-light); transform: translateY(-1px); }
.review-submit-btn:disabled { opacity: 0.7; cursor: default; transform: none; }
.review-thanks {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--gold);
  margin: 0;
  line-height: 1.6;
}
.review-error {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #e57373;
  margin: 0;
}

/* ─── Section 9.5: full-width spotlight (From boardrooms to briefing rooms) ─ */
.landing-spotlight {
  margin-top: 0;
  padding: 72px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.landing-spotlight-inner {
  max-width: 600px;
  margin: 0 auto;
}
.landing-spotlight-h {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin: 0 0 18px;
}
.landing-spotlight-p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-2);
  max-width: 600px;
  margin: 0 auto 28px;
}
.landing-spotlight-btn {
  display: inline-block;
  padding: 12px 26px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.landing-spotlight-btn:hover {
  background: var(--gold);
  color: #0b0b0b;
  transform: translateY(-1px);
}
@media (max-width: 720px) {
  .landing-spotlight { padding: 56px 20px; }
  .landing-spotlight-h { font-size: 26px; }
}

/* ─── Section 11: full-width CTA ─────────────────────────────────────────── */
.landing-cta {
  margin-top: 120px;
  padding: 80px 24px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}
.landing-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.landing-cta h2 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--text-1);
  margin: 0 0 18px;
}
.landing-cta p {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin: 0 0 32px;
}
.landing-cta-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--gold);
  color: #0b0b0b;
  border: 0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.18);
}
.landing-cta-btn:hover {
  background: var(--gold-light, #d8b864);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.28);
}

@media (max-width: 720px) {
  .landing-cta { padding: 60px 20px; }
  .landing-cta h2 { font-size: 28px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY + LIGHT-MODE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════════ */

/* Light-mode tier-card overrides — keep selected card dark for clear contrast */
[data-theme='light'] .tier-card.selected,
[data-theme='light'] .tier-card.featured.selected {
  background: #2C2825;
  border: 2px solid var(--gold);
  color: #F5F5F0;
}

[data-theme='light'] .tier-card.selected .tier-name,
[data-theme='light'] .tier-card.selected .tier-briefs,
[data-theme='light'] .tier-card.selected .tier-duration,
[data-theme='light'] .tier-card.selected .tier-fineprint,
[data-theme='light'] .tier-card.featured.selected .tier-name,
[data-theme='light'] .tier-card.featured.selected .tier-briefs,
[data-theme='light'] .tier-card.featured.selected .tier-duration {
  color: #F5F5F0;
}

[data-theme='light'] .tier-card.selected .tier-price,
[data-theme='light'] .tier-card.featured.selected .tier-price {
  color: var(--gold);
}

[data-theme='light'] .tier-card:hover:not(.selected) {
  background: #EDE8DF;
  border-color: var(--gold);
  transform: translateY(-2px);
}

[data-theme='light'] .tier-card.tier-free {
  border: 2px dashed var(--gold);
  background: #FAF7F2;
}

[data-theme='light'] .tier-card.tier-free.selected {
  background: #2C2825;
  border: 2px solid var(--gold);
}

/* Visible focus rings for keyboard navigation */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Remove focus ring for mouse users only */
*:focus:not(:focus-visible) {
  outline: none;
}

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

/* Minimum tap target size */
button, a, input[type='checkbox'], label.toggle-switch {
  min-height: 44px;
  min-width: 44px;
}

/* Preserve compact pill design — pills are part of a larger interactive group
   and the parent row provides 44px tap area */
.pill {
  min-height: 0;
  min-width: 0;
}

/* Inline links inside body copy must not be forced to 44px */
.faq-a a, .page-content p a, .footer-copy a, .muted-link, .nav-links a {
  min-height: 0;
  min-width: 0;
}

/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--gold);
  color: #0D0D0D;
  padding: 8px 16px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  z-index: 9999;
  border-radius: 0 0 8px 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}
