/* ================================================================
   Moonshot Clinic — Marketing Design System
   Shared CSS for all public-facing marketing pages.
   Dark theme: --bg #09090B, --accent #C9B99A, Inter font
   ================================================================ */

/* ---- Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #09090B;
  --bg-subtle: #111113;
  --surface: rgba(255,255,255,0.04);
  --surface-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(255,255,255,0.15);
  --text: #FAFAFA;
  --text-muted: #A1A1AA;
  --text-dim: rgba(255,255,255,0.35);
  --accent: #C9B99A;
  --accent-light: #D9CCAE;
  --accent-bg: rgba(201,185,154,0.10);
  --accent-border: rgba(201,185,154,0.15);
  --radius: 16px;
  --radius-sm: 10px;
  --max-width: 1080px;
  --nav-height: 60px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---- Container ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ================================================================
   NAV (injected by marketing-nav.js)
   ================================================================ */
.mkt-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  background: rgba(9,9,11,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s, box-shadow 0.3s;
}
.mkt-nav.scrolled {
  background: rgba(9,9,11,0.95);
  box-shadow: 0 1px 24px rgba(0,0,0,0.4);
}
.mkt-nav-logo {
  height: 28px; opacity: 0.9;
  transition: opacity 0.2s;
  
}
.mkt-nav-logo:hover { opacity: 1; }

.mkt-nav-center {
  display: flex; align-items: center; gap: 32px;
}
.mkt-nav-center > a,
.mkt-nav-center > .mkt-dropdown > a {
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
  letter-spacing: 0.01em; padding: 8px 0;
}
.mkt-nav-center > a:hover,
.mkt-nav-center > .mkt-dropdown:hover > a { color: var(--text); }

.mkt-nav-right {
  display: flex; align-items: center; gap: 16px;
}
.mkt-nav-signin {
  color: var(--text-muted); font-size: 13px; font-weight: 500;
  text-decoration: none; transition: color 0.2s;
}
.mkt-nav-signin:hover { color: var(--text); }
.mkt-nav-cta {
  background: var(--accent); color: var(--bg);
  padding: 8px 20px; border-radius: 6px;
  font-size: 13px; font-weight: 600; text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.mkt-nav-cta:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

/* ---- Features Dropdown ---- */
.mkt-dropdown { position: relative; }
.mkt-dropdown > a {
  display: flex; align-items: center; gap: 4px;
}
.mkt-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform 0.2s;
}
.mkt-dropdown:hover > a::after { transform: rotate(180deg); }

.mkt-dropdown-panel {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  width: 560px;
  background: #151517;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4px;
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(8px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  pointer-events: none;
}
/* Invisible bridge so cursor can travel from trigger to panel */
.mkt-dropdown-panel::before {
  content: '';
  position: absolute; top: -16px; left: 0; right: 0; height: 16px;
}
.mkt-dropdown:hover .mkt-dropdown-panel {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.mkt-dropdown-category {
  font-size: 10px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 8px 12px 4px;
  grid-column: 1 / -1;
}
.mkt-dropdown-category:not(:first-child) {
  margin-top: 8px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.mkt-dropdown-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px; border-radius: 8px;
  font-size: 13px; font-weight: 500; color: var(--text-muted);
  transition: background 0.15s, color 0.15s;
}
.mkt-dropdown-panel a:hover {
  background: var(--surface-hover); color: var(--text);
}
.mkt-dropdown-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg); border-radius: 8px;
  font-size: 14px;
}

/* ================================================================
   MOBILE MENU
   ================================================================ */
.mkt-hamburger {
  display: none;
  background: none; border: none;
  width: 32px; height: 32px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; cursor: pointer; z-index: 1010;
}
.mkt-hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mkt-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mkt-hamburger.open span:nth-child(2) { opacity: 0; }
.mkt-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed; top: 0; right: 0;
  width: 300px; max-width: 85vw; height: 100vh;
  background: #111113;
  border-left: 1px solid var(--border);
  z-index: 1005;
  padding: 80px 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-overlay {
  position: fixed; inset: 0; z-index: 1004;
  background: rgba(0,0,0,0.6);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mobile-menu-overlay.open { opacity: 1; visibility: visible; }

.mobile-menu-category {
  font-size: 10px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  padding: 16px 0 4px;
}
.mobile-menu a {
  display: block; padding: 10px 0;
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
  text-decoration: none;
}
.mobile-menu a:hover { color: var(--text); }

.mobile-menu-actions {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 12px;
  padding-top: 24px;
}
.mobile-menu-actions .btn {
  text-align: center; justify-content: center;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
  font-family: inherit; line-height: 1;
}
.btn-primary { background: var(--accent); color: var(--bg); }
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent; color: var(--text-muted);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--border-hover); color: var(--text);
}
.btn-ghost {
  background: transparent; color: var(--text-muted);
  padding: 14px 20px;
}
.btn-ghost:hover { color: var(--text); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }

/* ================================================================
   HERO (homepage full-height)
   ================================================================ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(201,185,154,0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(201,185,154,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 720px; }
.hero-badge {
  display: inline-block;
  background: var(--accent-bg); border: 1px solid var(--accent-border);
  padding: 6px 16px; border-radius: 20px;
  font-size: 11px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.03em; margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted); line-height: 1.6;
  max-width: 540px; margin: 0 auto 40px;
}
.hero-actions {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
/* page-header (sub-page hero) p has no bottom margin, so give the
   button row deliberate breathing room above it — otherwise it jams
   directly under the subtitle while 48px+ sits below. */
.page-header .hero-actions { margin-top: 32px; }

/* ================================================================
   PAGE HEADER (sub-page hero, shorter)
   ================================================================ */
.page-header {
  padding: calc(var(--nav-height) + 48px) 24px 48px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 40% 30%, rgba(201,185,154,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.page-header .container { position: relative; }
.page-header-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-bottom: 20px;
}
.page-header-breadcrumb a {
  font-size: 12px; color: var(--text-dim);
  text-decoration: none; transition: color 0.2s;
}
.page-header-breadcrumb a:hover { color: var(--text-muted); }
.page-header-breadcrumb span {
  font-size: 12px; color: var(--text-dim);
}
.page-header-breadcrumb .current {
  color: var(--text-muted); font-weight: 500;
}
.page-header h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.15; margin-bottom: 14px;
}
.page-header h1 span { color: var(--accent); }
.page-header p {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-muted); line-height: 1.6;
  max-width: 560px; margin: 0 auto;
}

/* ================================================================
   SECTION TYPOGRAPHY
   ================================================================ */
section { padding: 100px 24px; }

.section-label {
  font-size: 11px; font-weight: 600; color: var(--accent);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.15; margin-bottom: 16px;
}
.section-sub {
  font-size: 16px; color: var(--text-muted);
  max-width: 520px; line-height: 1.6;
}
.section-center { text-align: center; }
.section-center .section-sub {
  margin-left: auto; margin-right: auto;
}

/* ================================================================
   PHOTO STRIP
   ================================================================ */
.photo-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin: 0 -24px; overflow: hidden;
}
.photo-strip img {
  width: 100%; height: 280px;
  object-fit: cover; display: block;
  filter: brightness(0.7) saturate(0.8);
  transition: all 0.4s;
}
.photo-strip img:hover { filter: brightness(0.85) saturate(0.9); }

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin-top: 48px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.2s;
}
.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
}
.feature-icon {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg);
  border-radius: 10px;
  font-size: 18px; margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 8px;
}
.feature-card p {
  font-size: 13px; color: var(--text-muted); line-height: 1.6;
}

/* ================================================================
   BUILT FOR
   ================================================================ */
.built-for { background: var(--bg-subtle); }
.built-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 48px;
}
.built-image {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.built-image img {
  width: 100%; display: block; filter: brightness(0.85);
}
.built-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 20px;
}
.built-list li {
  display: flex; gap: 14px; align-items: flex-start;
}
.built-check {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,185,154,0.12); border-radius: 6px;
  font-size: 12px; color: var(--accent); margin-top: 2px;
}
.built-list h4 {
  font-size: 14px; font-weight: 600; margin-bottom: 2px;
}
.built-list p {
  font-size: 13px; color: var(--text-muted);
}

/* ================================================================
   STATS
   ================================================================ */
.stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px; text-align: center;
}
.stat-num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800; color: var(--accent);
  letter-spacing: -0.02em; line-height: 1;
}
.stat-label {
  font-size: 13px; color: var(--text-muted); margin-top: 4px;
}

/* ================================================================
   CTA BOX
   ================================================================ */
.cta-section { text-align: center; padding: 80px 24px; }
.cta-box {
  max-width: 600px; margin: 0 auto;
  background: linear-gradient(165deg, rgba(201,185,154,0.08) 0%, rgba(201,185,154,0.02) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 60px 40px;
}
.cta-box h2 {
  font-size: 28px; font-weight: 800;
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.cta-box p {
  color: var(--text-muted); font-size: 15px; margin-bottom: 28px;
}

/* ================================================================
   TWO-COL (alternating image + text)
   ================================================================ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding: 60px 0;
}
.two-col:nth-child(even) .two-col-media { order: -1; }

.two-col-text .section-label { margin-bottom: 10px; }
.two-col-text .section-title { margin-bottom: 14px; }
.two-col-text .section-sub { margin-bottom: 24px; }
.two-col-text ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px;
}
.two-col-text ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-muted); line-height: 1.5;
}
.two-col-text ul li::before {
  content: '\2713';
  flex-shrink: 0; width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg); border-radius: 5px;
  font-size: 11px; color: var(--accent); margin-top: 1px;
}
.two-col-media {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border);
}
.two-col-media img {
  width: 100%; display: block; filter: brightness(0.9);
}

/* ================================================================
   SCREENSHOT FRAME (browser mockup)
   ================================================================ */
.screenshot-frame {
  background: #1A1A1D;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.screenshot-frame-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.screenshot-frame-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
}
.screenshot-frame-url {
  flex: 1; text-align: center;
  font-size: 11px; color: var(--text-dim);
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
}
.screenshot-frame img {
  width: 100%; display: block;
}

/* ================================================================
   COMPARISON TABLE
   ================================================================ */
.comparison-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.comparison-table {
  width: 100%; border-collapse: collapse;
  margin-top: 48px;
}
.comparison-table thead th {
  text-align: left; padding: 14px 20px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}
.comparison-table thead th:first-child {
  color: var(--text-muted);
}
.comparison-table thead th.highlight {
  color: var(--accent);
  background: rgba(201,185,154,0.05);
  border-bottom-color: var(--accent-border);
}
.comparison-table tbody td {
  padding: 14px 20px; font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comparison-table tbody td:first-child {
  font-weight: 600; color: var(--text);
}
.comparison-table tbody td.highlight {
  background: rgba(201,185,154,0.03);
  color: var(--text);
}
.comparison-table .check {
  color: var(--accent); font-weight: 700; font-size: 16px;
}
.comparison-table .cross {
  color: var(--text-dim); font-size: 16px;
}
.comparison-table tbody tr:hover td {
  background: var(--surface);
}
.comparison-table tbody tr:hover td.highlight {
  background: rgba(201,185,154,0.06);
}

/* ================================================================
   FAQ ACCORDION
   ================================================================ */
.faq-accordion {
  max-width: 720px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 4px;
}
.faq-accordion details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, background 0.2s;
}
.faq-accordion details[open] {
  border-color: var(--border-hover);
  background: var(--surface-hover);
}
.faq-accordion summary {
  padding: 18px 24px;
  font-size: 15px; font-weight: 600; color: var(--text);
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  user-select: none;
  transition: color 0.2s;
}
.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::marker { display: none; content: ''; }
.faq-accordion summary::after {
  content: '+';
  font-size: 20px; font-weight: 400; color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-accordion details[open] summary::after {
  transform: rotate(45deg);
}
.faq-accordion .faq-answer {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
  animation: faqReveal 0.25s ease-out;
}
@keyframes faqReveal {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   BADGE STRIP
   ================================================================ */
.badge-strip {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  padding: 32px 24px;
}
.badge-strip-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-muted);
  transition: border-color 0.2s;
}
.badge-strip-item:hover { border-color: var(--border-hover); }
.badge-strip-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg); border-radius: 6px;
  font-size: 14px;
}

/* ================================================================
   PRICING CARDS
   ================================================================ */
.pricing-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 48px; align-items: start;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}
.pricing-card.popular {
  border-color: var(--accent-border);
  background: linear-gradient(180deg, rgba(201,185,154,0.06) 0%, var(--surface) 100%);
  position: relative;
}
.pricing-card.popular::before {
  content: 'Most Popular';
  position: absolute; top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: var(--bg);
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 4px 14px; border-radius: 20px;
  white-space: nowrap;
}
.pricing-card-name {
  font-size: 14px; font-weight: 600; color: var(--text-muted);
  margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.04em;
}
.pricing-card-price {
  font-size: 42px; font-weight: 800; color: var(--text);
  letter-spacing: -0.03em; line-height: 1; margin-bottom: 4px;
}
.pricing-card-price span {
  font-size: 15px; font-weight: 500; color: var(--text-muted);
  letter-spacing: 0;
}
.pricing-card-desc {
  font-size: 13px; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.pricing-card-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 12px;
  margin-bottom: 28px; flex: 1;
}
.pricing-card-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--text-muted); line-height: 1.4;
}
.pricing-card-features li::before {
  content: '\2713';
  flex-shrink: 0; color: var(--accent);
  font-weight: 700; font-size: 12px; margin-top: 1px;
}
.pricing-card .btn {
  width: 100%; justify-content: center; text-align: center;
}

/* ================================================================
   FOUNDER CARD
   ================================================================ */
.founder-card {
  display: flex; align-items: flex-start; gap: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 640px;
  transition: border-color 0.2s;
}
.founder-card:hover { border-color: var(--border-hover); }
.founder-card-photo {
  width: 100px; height: 100px; flex-shrink: 0;
  border-radius: 12px; overflow: hidden;
  border: 2px solid var(--border);
}
.founder-card-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.founder-card-name {
  font-size: 18px; font-weight: 700; margin-bottom: 2px;
}
.founder-card-title {
  font-size: 13px; font-weight: 600; color: var(--accent);
  margin-bottom: 12px;
}
.founder-card-bio {
  font-size: 14px; color: var(--text-muted); line-height: 1.6;
}

/* ================================================================
   FOOTER (4-column, injected by marketing-nav.js)
   ================================================================ */
.footer-full {
  border-top: 1px solid var(--border);
  padding: 60px 24px 40px;
  background: var(--bg);
}
.footer-full-inner {
  max-width: var(--max-width); margin: 0 auto;
}
.footer-full-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px; margin-bottom: 40px;
}
.footer-full-col h4 {
  font-size: 12px; font-weight: 700; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-full-col a {
  display: block; padding: 4px 0;
  font-size: 13px; color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-full-col a:hover { color: var(--text); }
.footer-full-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-full-brand {
  font-size: 14px; font-weight: 700; color: var(--text-muted);
}
.footer-full-copy {
  font-size: 11px; color: var(--text-dim);
}
.footer-full-address {
  font-size: 11px; color: var(--text-dim);
  width: 100%; text-align: center; margin-top: 8px;
}

/* ================================================================
   PROSE (long-form content on inner pages)
   ================================================================ */
.prose { max-width: 720px; }
.prose h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 16px; margin-top: 64px; line-height: 1.2;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-size: 18px; font-weight: 700;
  margin-bottom: 12px; margin-top: 40px;
}
.prose p {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 20px;
}
.prose p strong { color: var(--text); font-weight: 600; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 20px 24px; margin: 32px 0;
  background: var(--surface);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.prose blockquote p {
  color: var(--text); font-style: italic; margin-bottom: 0;
}
.prose blockquote cite {
  display: block; font-size: 13px; color: var(--text-muted);
  font-style: normal; margin-top: 10px;
}
.prose ul, .prose ol {
  margin: 0 0 20px 20px; color: var(--text-muted);
}
.prose li {
  font-size: 15px; line-height: 1.7; margin-bottom: 6px;
}

/* ================================================================
   TEAM GRID (about page)
   ================================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 32px;
}
.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden; transition: all 0.2s;
}
.team-card:hover { border-color: var(--border-hover); }
.team-card img {
  width: 100%; height: auto; aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #1a1a1e;
}
.team-card-info { padding: 24px; }
.team-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-card .team-role {
  font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 12px;
}
.team-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ================================================================
   PLATFORM GRID (about page — "what we tried")
   ================================================================ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 12px; margin-top: 20px;
}
.platform-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px; transition: all 0.2s;
}
.platform-item:hover { border-color: var(--border-hover); }
.platform-name {
  font-size: 14px; font-weight: 700; margin-bottom: 4px;
}
.platform-cat {
  font-size: 11px; color: var(--accent); text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600; margin-bottom: 8px;
}
.platform-item p { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

/* ================================================================
   COMMITMENT BLOCK (about page)
   ================================================================ */
.commitment-block {
  background: linear-gradient(165deg, rgba(201,185,154,0.06) 0%, transparent 100%);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius);
  padding: 48px 40px; margin: 48px 0;
}
.commitment-block h2 {
  font-size: 24px; font-weight: 800;
  margin-bottom: 16px; letter-spacing: -0.02em; color: var(--accent);
}
.commitment-block p {
  font-size: 16px; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 12px;
}
.commitment-block p:last-of-type { margin-bottom: 0; }
.commitment-block p strong { color: var(--text); }
.commitment-block ul {
  list-style: none; padding: 0; margin: 16px 0 0;
}
.commitment-block ul li {
  font-size: 15px; color: var(--text-muted);
  padding: 6px 0 6px 28px; position: relative; line-height: 1.6;
}
.commitment-block ul li::before {
  content: '\2713'; position: absolute; left: 0;
  color: var(--accent); font-weight: 700;
}

/* ================================================================
   CLINIC BLOCK (about page)
   ================================================================ */
.clinic-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center; margin-top: 48px;
}
.clinic-block img {
  width: 100%; border-radius: var(--radius);
  border: 1px solid var(--border);
  filter: brightness(0.85);
}
.clinic-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.clinic-info address {
  font-style: normal; font-size: 15px;
  color: var(--text-muted); line-height: 1.7;
}

/* ================================================================
   VIDEO WRAPPER (demo page)
   ================================================================ */
.video-wrap {
  max-width: 960px; margin: 0 auto;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); background: #000;
  aspect-ratio: 16/9;
}
.video-wrap video {
  width: 100%; height: 100%; display: block; object-fit: contain;
}

/* ================================================================
   COLLAPSIBLE (demo transcript)
   ================================================================ */
.collapsible-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; width: 100%; text-align: left;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer; transition: all 0.2s;
  font-size: 15px; font-weight: 600; color: var(--text);
  font-family: inherit;
}
.collapsible-header:hover {
  background: var(--surface-hover); border-color: var(--border-hover);
}
.collapsible-arrow {
  transition: transform 0.3s; font-size: 12px; color: var(--text-muted);
}
.collapsible-header.open .collapsible-arrow { transform: rotate(180deg); }
.collapsible-header.open {
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.collapsible-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
  background: var(--surface);
  border: 1px solid var(--border); border-top: none;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}
.collapsible-body.open { max-height: 3000px; }
.collapsible-body-inner { padding: 24px; }
.collapsible-body p {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 12px;
}
.collapsible-body p:last-child { margin-bottom: 0; }
.collapsible-body h3,
.collapsible-body h4 {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin: 16px 0 6px;
}
.collapsible-body h3:first-child,
.collapsible-body h4:first-child { margin-top: 0; }

/* ================================================================
   WORKFLOW CARDS (demo page)
   ================================================================ */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 48px;
}
.workflow-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.2s;
}
.workflow-card:hover {
  border-color: var(--border-hover);
  background: var(--surface-hover);
}
.workflow-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-bg); border-radius: 10px;
  font-size: 20px; margin-bottom: 16px;
}
.workflow-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.workflow-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.workflow-steps {
  list-style: none; padding: 0; margin: 12px 0 0;
}
.workflow-steps li {
  font-size: 12px; color: var(--text-muted); padding: 3px 0 3px 20px;
  position: relative; line-height: 1.5;
}
.workflow-steps li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: 0.6;
}

/* ================================================================
   UTILITIES
   ================================================================ */
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.mt-0 { margin-top: 0; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ================================================================
   RESPONSIVE BREAKPOINTS
   Mobile-first: 375px, 768px, 1024px, 1440px
   ================================================================ */

/* 1440px+ — wider container */
@media (min-width: 1440px) {
  .container { max-width: 1200px; }
}

/* 1024px and below — tablet */
@media (max-width: 1024px) {
  .mkt-nav-center { display: none; }
  .mkt-nav-signin { display: none; }
  .mkt-hamburger { display: flex; }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto; margin-right: auto;
  }

  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .two-col:nth-child(even) .two-col-media { order: 0; }

  .comparison-table { font-size: 13px; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 12px 14px; }

  .footer-full-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* 768px and below — large phones */
@media (max-width: 768px) {
  section { padding: 60px 24px; }

  .hero { min-height: 85vh; padding: 100px 20px 60px; }

  .built-grid { grid-template-columns: 1fr; gap: 32px; }

  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip img { height: 200px; }

  .stats { grid-template-columns: 1fr; gap: 24px; }

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

  .page-header {
    padding: calc(var(--nav-height) + 32px) 20px 32px;
  }

  .founder-card {
    flex-direction: column;
    align-items: center; text-align: center;
  }
  .founder-card-photo { width: 80px; height: 80px; }

  .cta-box { padding: 40px 24px; }

  .team-card img { height: 260px; }
  .clinic-block { grid-template-columns: 1fr; gap: 24px; }
  .commitment-block { padding: 32px 24px; }

  .footer-full-grid { grid-template-columns: 1fr 1fr; }
  .footer-full-bottom {
    flex-direction: column; text-align: center;
  }

  .comparison-table-wrap {
    margin: 48px -24px 0;
    padding: 0 24px;
  }
  .comparison-table-wrap .comparison-table {
    min-width: 540px; margin-top: 0;
  }
}

/* 375px and below — small phones */
@media (max-width: 375px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 15px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn {
    width: 100%; justify-content: center;
  }

  .page-header h1 { font-size: 24px; }

  .btn { padding: 12px 20px; font-size: 13px; }
  .btn-lg { padding: 14px 28px; font-size: 14px; }

  .pricing-card { padding: 28px 20px; }
  .pricing-card-price { font-size: 36px; }

  .cta-box h2 { font-size: 22px; }

  .badge-strip { gap: 12px; }
  .badge-strip-item { padding: 8px 14px; font-size: 12px; }

  .mkt-nav { padding: 0 16px; }
  .mobile-menu { padding: 80px 20px 32px; }

  .footer-full { padding: 40px 16px 28px; }
  .footer-full-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ================================================================
   Operator Quote Block — standardized founder testimonial component
   Added 2026-05-26 per deepreview design recommendation. Replaces
   6 different inline-styled implementations across the marketing pages.
   ================================================================ */
.operator-quote {
  background: rgba(201, 185, 154, 0.04);
  border-left: 3px solid #C9B99A;
  border-radius: 8px;
  padding: 32px 36px;
  margin: 0;
  font-style: italic;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.operator-quote p {
  font-size: 17px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.operator-quote p:last-of-type {
  margin-bottom: 0;
}
.operator-quote .operator-quote-attribution {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .operator-quote {
    padding: 24px 20px;
  }
  .operator-quote p {
    font-size: 16px;
  }
}
