:root {
  --bg: #F1ECE0;
  --bg-card: #ECE6D7;
  --ink: #0F0D0A;
  --ink-soft: #4A4640;
  --ink-muted: #8A847A;
  --rule: #1F1B16;
  --rule-soft: #C9C0AE;
  --accent: #E8412A;
  --accent-deep: #B82E1B;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'ss01', 'cv11';
  overflow-x: hidden;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.04 0 0 0 0 0.03 0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 700px) { .container { padding: 0 20px; } }

/* ============ NAV ============ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.02em;
}
.logo {
  font-family: var(--serif);
  font-size: 24px;
  font-style: italic;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.logo span { color: var(--accent); font-style: normal; font-family: var(--mono); font-size: 14px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--ink);
  color: var(--bg);
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid var(--ink);
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); }
@media (max-width: 700px) { .nav-links { display: none; } }

/* ============ HERO ============ */
.hero {
  padding: 80px 0 120px;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.hero-tag {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}
h1.hero-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  max-width: 1100px;
}
h1.hero-title .accent {
  font-style: italic;
  color: var(--accent);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 40px;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }
.hero-sub {
  font-size: 22px;
  line-height: 1.4;
  color: var(--ink-soft);
  max-width: 540px;
  font-weight: 400;
}
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-actions { display: flex; flex-direction: column; gap: 16px; }
.btn-primary, .btn-secondary {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 18px 28px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--accent);
  transform: translateX(4px);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow, .btn-secondary:hover .btn-arrow { transform: translateX(4px); }

/* ============ STAT STRIP ============ */
.stat-strip {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.stat-strip::after {
  content: 'SPEED';
  position: absolute;
  bottom: -60px;
  right: -20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 280px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  line-height: 1;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .stat-grid { grid-template-columns: 1fr; gap: 40px; } }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(96px, 18vw, 240px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.stat-num .unit {
  font-size: 0.35em;
  color: var(--accent);
  font-style: italic;
  vertical-align: top;
  margin-left: 4px;
}
.stat-text {
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
  color: rgba(241, 236, 224, 0.7);
}
.stat-text strong { color: var(--bg); font-weight: 500; }
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  display: block;
}
.bench-bar {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bench-row {
  display: grid;
  grid-template-columns: 140px 1fr 80px;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
}
.bench-row .name { color: rgba(241,236,224,0.6); }
.bench-row .val { color: var(--bg); text-align: right; }
.bench-track {
  height: 4px;
  background: rgba(241,236,224,0.1);
  position: relative;
}
.bench-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  animation: fillBar 2s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  animation-delay: 0.3s;
}
.bench-fill.us { background: var(--accent); animation-delay: 0.1s; }
.bench-fill.them1 { animation-delay: 0.4s; background: rgba(241,236,224,0.4); }
.bench-fill.them2 { animation-delay: 0.7s; background: rgba(241,236,224,0.4); }
.bench-fill.them3 { animation-delay: 1s; background: rgba(241,236,224,0.4); }
@keyframes fillBar {
  to { width: var(--w); }
}

/* ============ PROBLEM SECTION ============ */
.problem {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.section-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 40px; } }
h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
h2 .italic { font-style: italic; color: var(--accent); }
.problem-body {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.problem-body p { margin-bottom: 20px; }
.problem-body p:last-child { color: var(--ink); font-weight: 500; }

/* ============ PILLARS ============ */
.pillars {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--rule);
}
@media (max-width: 900px) { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  padding: 56px 40px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  transition: background 0.3s;
}
.pillar:nth-child(3) { border-right: none; }
@media (max-width: 900px) { .pillar { border-right: none; } }
.pillar:hover { background: var(--bg-card); }
.pillar-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink-muted);
  margin-bottom: 24px;
  display: block;
}
.pillar-title {
  font-family: var(--serif);
  font-size: 48px;
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1;
}
.pillar-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.pillar-icon {
  position: absolute;
  top: 56px;
  right: 40px;
  width: 32px;
  height: 32px;
  color: var(--accent);
}

/* ============ COMPARISON ============ */
.comparison {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.compare-table {
  margin-top: 64px;
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  font-family: var(--mono);
}
.compare-table th, .compare-table td {
  padding: 20px 16px;
  text-align: left;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: top;
}
.compare-table thead th {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--rule);
  padding-bottom: 16px;
}
.compare-table thead th:first-child { color: var(--ink); }
.compare-table thead th.us {
  color: var(--accent);
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 22px;
  font-weight: 400;
}
.compare-table tbody td:first-child {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.compare-table tbody td.us {
  color: var(--ink);
  background: rgba(232, 65, 42, 0.04);
  font-weight: 500;
}
.compare-table .check { color: var(--accent); }
.compare-table .x { color: var(--ink-muted); }
@media (max-width: 900px) {
  .compare-wrap { overflow-x: auto; margin: 0 -20px; padding: 0 20px; }
  .compare-table { min-width: 720px; }
}

/* ============ SETUP STEPS ============ */
.setup {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.setup-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
@media (max-width: 900px) { .setup-intro { grid-template-columns: 1fr; gap: 32px; } }
.setup-side {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  border-top: 2px solid var(--ink);
  padding-top: 32px;
  position: relative;
}
.step-num {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-num .time {
  color: var(--ink-muted);
  font-size: 11px;
}
.step-title {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.step-text {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-soft);
}
.steps-footer {
  margin-top: 64px;
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  text-align: center;
  color: var(--ink);
}
.steps-footer .accent { color: var(--accent); }

/* ============ PRICING ============ */
.pricing {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
  background: var(--bg-card);
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 var(--ink);
}
.price-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.price-card.featured .price-tier { color: var(--accent); }
.price-card.featured .price-amount { color: var(--bg); }
.price-card.featured .price-period { color: rgba(241,236,224,0.5); }
.price-card.featured .price-desc { color: rgba(241,236,224,0.7); }
.price-card.featured .price-feat { color: rgba(241,236,224,0.85); border-color: rgba(241,236,224,0.15); }
.price-card.featured .price-feat::before { color: var(--accent); }
.featured-tag {
  position: absolute;
  top: -12px;
  left: 32px;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.price-tier {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.price-amount {
  font-family: var(--serif);
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 4px;
}
.price-amount .currency {
  font-size: 36px;
  vertical-align: top;
  margin-right: 4px;
  color: var(--ink-muted);
}
.price-period {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.price-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule-soft);
}
.price-features {
  list-style: none;
  flex: 1;
  margin-bottom: 32px;
}
.price-feat {
  font-size: 14px;
  line-height: 1.4;
  padding: 12px 0;
  padding-left: 24px;
  position: relative;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule-soft);
}
.price-feat:last-child { border-bottom: none; }
.price-feat::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--accent);
  font-family: var(--mono);
}
.price-cta {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  transition: all 0.2s;
  display: block;
}
.price-card.featured .price-cta {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.price-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.price-card.featured .price-cta:hover {
  background: var(--bg);
  color: var(--ink);
}
.guarantee {
  margin-top: 48px;
  padding: 24px 32px;
  border: 1px dashed var(--rule);
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.guarantee strong { color: var(--ink); }

/* Discount display */
.price-original {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--ink-muted);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  margin-right: 12px;
  vertical-align: middle;
  display: inline-block;
}
.price-card.featured .price-original { color: rgba(241,236,224,0.4); }
.price-discount-badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--accent);
  color: var(--bg);
  padding: 4px 12px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.price-launch-note {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-weight: 500;
}
.price-card.featured .price-launch-note { color: var(--accent); }

/* Demo button (in nav) */
.nav-demo {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--rule);
  padding: 7px 14px;
  margin-right: 12px;
  transition: all 0.2s;
  background: transparent;
  cursor: pointer;
}
.nav-demo:hover { border-color: var(--accent); color: var(--accent); }
@media (max-width: 700px) { .nav-demo { display: none; } }

/* Demo Modal */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 13, 10, 0.85);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}
.modal-window {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  z-index: 9999;
  width: calc(100% - 40px);
  max-width: 540px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  background: var(--bg);
  border: 1px solid var(--ink);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 12px 12px 0 var(--accent);
}
.modal-window.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}
.modal-header {
  padding: 32px 32px 0;
  position: relative;
}
.modal-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.modal-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}
.modal-title {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.modal-title .italic { font-style: italic; color: var(--accent); }
.modal-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 24px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.modal-flodesk-wrap {
  padding: 0 32px 32px;
}
/* Restyle Flodesk form to match site aesthetic */
.modal-flodesk-wrap [data-ff-el="root"] .ff-69f6a2299195081b16b0156d__container {
  background: transparent;
  max-width: 100%;
}
.modal-flodesk-wrap [data-ff-el="root"] .ff-69f6a2299195081b16b0156d__form {
  padding: 0;
  font-family: var(--sans);
}
.modal-flodesk-wrap [data-ff-el="root"] .ff-69f6a2299195081b16b0156d__title {
  display: none;
}
.modal-flodesk-wrap [data-ff-el="root"] .ff-69f6a2299195081b16b0156d__subtitle {
  display: none;
}
.modal-flodesk-wrap [data-ff-el="root"] .ff-69f6a2299195081b16b0156d__control {
  font-family: var(--mono);
  border: 1px solid var(--ink);
  background: var(--bg);
  border-radius: 0;
  padding: 16px 20px;
  height: 56px;
  font-size: 14px;
}
.modal-flodesk-wrap [data-ff-el="root"] .ff-69f6a2299195081b16b0156d__label {
  font-family: var(--mono);
  font-size: 14px;
  padding: 18px 20px;
  color: var(--ink-muted);
}
.modal-flodesk-wrap [data-ff-el="root"] .ff-69f6a2299195081b16b0156d__button {
  background: var(--accent);
  border: 1px solid var(--accent);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 18px 24px;
  border-radius: 0;
  transition: all 0.2s;
}
.modal-flodesk-wrap [data-ff-el="root"] .ff-69f6a2299195081b16b0156d__button:hover {
  background: var(--ink);
  border-color: var(--ink);
}
.modal-trust {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-muted);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.02em;
}

/* Exit modal CTAs */
.exit-cta-primary, .exit-cta-secondary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 24px;
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 12px;
}
.exit-cta-primary {
  background: var(--accent);
  color: var(--bg);
}
.exit-cta-primary:hover {
  background: var(--ink);
  transform: translateX(4px);
}
.exit-cta-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.exit-cta-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Onboarding callout banner above pricing */
.onboarding-banner {
  margin-top: 64px;
  margin-bottom: -24px;
  background: var(--ink);
  color: var(--bg);
  padding: 40px 48px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .onboarding-banner {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 24px;
  }
}
.onboarding-banner::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 4px;
  height: 100%;
  background: var(--accent);
}
.ob-left { display: flex; flex-direction: column; gap: 8px; }
.ob-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 10px;
}
.ob-eyebrow::before {
  content: '★';
  font-size: 14px;
}
.ob-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 400;
}
.ob-strike {
  font-style: italic;
  color: rgba(241, 236, 224, 0.4);
  text-decoration: line-through;
  text-decoration-color: var(--accent);
  margin-left: 8px;
}
.ob-free {
  font-style: italic;
  color: var(--accent);
}
.ob-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(241, 236, 224, 0.75);
  font-family: var(--sans);
}
.ob-text strong { color: var(--bg); font-weight: 500; }

/* ============ FAQ ============ */
.faq {
  padding: 120px 0;
  border-bottom: 1px solid var(--rule);
}
.faq-list {
  margin-top: 64px;
  max-width: 900px;
}
.faq-item {
  border-top: 1px solid var(--rule);
  padding: 32px 0;
  cursor: pointer;
  transition: padding 0.2s;
}
.faq-item:last-child { border-bottom: 1px solid var(--rule); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--serif);
  font-size: 28px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.faq-toggle {
  font-family: var(--mono);
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
  transition: max-height 0.4s ease, margin 0.3s ease;
}
.faq-item.open .faq-a {
  max-height: 400px;
  margin-top: 20px;
}

/* ============ FINAL CTA ============ */
.final-cta {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--bg);
}
.final-cta h2 {
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  margin-bottom: 48px;
  letter-spacing: -0.03em;
}
.final-cta h2 .accent { color: var(--accent); font-style: italic; }
.final-actions {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
  min-width: 320px;
}
.final-cta .btn-primary {
  background: var(--accent);
  color: var(--bg);
  padding: 24px 32px;
  font-size: 15px;
}
.final-cta .btn-primary:hover { background: var(--bg); color: var(--ink); }
.final-cta .btn-secondary {
  border-color: rgba(241,236,224,0.3);
  color: var(--bg);
  padding: 24px 32px;
  font-size: 15px;
}
.final-cta .btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ============ FOOTER ============ */
footer {
  background: var(--bg);
  padding: 64px 0 32px;
  border-top: 1px solid var(--rule);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--rule-soft);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .logo { font-size: 32px; }
.footer-tag {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
}
@media (max-width: 700px) {
  .footer-bottom { flex-direction: column; gap: 8px; }
}

/* ============ ANIMATIONS ============ */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    animation: reveal 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .reveal-1 { animation-delay: 0.05s; }
  .reveal-2 { animation-delay: 0.15s; }
  .reveal-3 { animation-delay: 0.25s; }
  .reveal-4 { animation-delay: 0.35s; }
}
@keyframes reveal {
  to { opacity: 1; transform: translateY(0); }
}

/* ============ SUBPAGE STYLES ============ */
.subpage-hero {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--rule);
}
.subpage-hero .hero-tag { margin-bottom: 32px; }
.subpage-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  max-width: 1100px;
}
.subpage-hero h1 .accent {
  font-style: italic;
  color: var(--accent);
}
.subpage-hero .lede {
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 700px;
}

.content-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--rule);
}
.content-narrow {
  max-width: 760px;
}
.content-grid-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
}
@media (max-width: 800px) { .content-grid-split { grid-template-columns: 1fr; gap: 24px; } }
.content-grid-split h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 36px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  position: sticky;
  top: 100px;
  align-self: start;
}
.content-grid-split h2 .italic { font-style: italic; color: var(--accent); }

.content-body {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
}
.content-body p { margin-bottom: 24px; }
.content-body p:last-child { margin-bottom: 0; }
.content-body strong { font-weight: 600; }
.content-body a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  transition: opacity 0.2s;
}
.content-body a:hover { opacity: 0.7; }

.content-body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 28px;
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 16px;
}
.content-body h3:first-child { margin-top: 0; }

.content-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
.content-body ul li {
  padding: 8px 0 8px 24px;
  position: relative;
}
.content-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-family: var(--mono);
}

/* Info card / hours block */
.info-card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  padding: 32px;
  margin-bottom: 32px;
}
.info-card-eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.info-card-title {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  line-height: 1.05;
}
.info-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.info-card-text strong { color: var(--ink); }

/* Hours table */
.hours-table {
  font-family: var(--mono);
  font-size: 14px;
  margin-top: 16px;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: var(--ink-soft); }
.hours-time { color: var(--ink); }
.hours-time.closed { color: var(--ink-muted); font-style: italic; }

/* Tier response cards */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 700px) { .tier-grid { grid-template-columns: 1fr; } }
.tier-card {
  background: var(--bg-card);
  padding: 24px;
  border: 1px solid var(--rule);
}
.tier-card-name {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.tier-card-time {
  font-family: var(--serif);
  font-size: 32px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.tier-card-sub {
  font-size: 13px;
  color: var(--ink-muted);
  font-family: var(--mono);
}

/* Video placeholder */
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  margin: 48px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg);
  cursor: pointer;
  transition: all 0.3s;
}
.video-placeholder:hover { box-shadow: 8px 8px 0 var(--accent); }
.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' fill='%23fff'/%3E%3C/svg%3E");
}
.video-placeholder-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.video-placeholder-icon {
  width: 96px;
  height: 96px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s;
}
.video-placeholder:hover .video-placeholder-icon {
  background: var(--accent);
  transform: scale(1.05);
}
.video-placeholder-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--accent);
  margin-left: 4px;
  transition: fill 0.3s;
}
.video-placeholder:hover .video-placeholder-icon svg { fill: var(--bg); }
.video-placeholder-label {
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(241, 236, 224, 0.7);
  text-transform: uppercase;
}
.video-placeholder-title {
  font-family: var(--serif);
  font-size: 28px;
  margin-top: 8px;
  letter-spacing: -0.01em;
}

/* Contact methods */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--bg-card);
  padding: 32px;
  border: 1px solid var(--rule);
  transition: all 0.2s;
}
.contact-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.contact-card-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.contact-card-value {
  font-family: var(--serif);
  font-size: 24px;
  letter-spacing: -0.01em;
  display: block;
  color: var(--ink);
  text-decoration: none;
  margin-bottom: 8px;
  word-break: break-word;
}
.contact-card-value:hover { color: var(--accent); }
.contact-card-desc {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  border-bottom: none !important;
}

/* Legal page TOC */
.legal-meta {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
