/* ============================================================
   Conveyance — Shared Stylesheet v1.0
   Colors: Onyx #1A1A1A · Cream #F2EDE3
   Font: Georgia (serif)
   ============================================================ */

:root {
  --onyx: #1A1A1A;
  --charcoal: #2C2C2C;
  --mid: #6B6B6B;
  --light: #9A9A9A;
  --cream: #F2EDE3;
  --cream-mid: #E8E2D6;
  --cream-dark: #D4CBBB;
  --surface: #FAFAF8;
  --white: #FFFFFF;
  --max: 1080px;
  --nav-h: 64px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--onyx);
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* TYPOGRAPHY */
h1 { font-size: clamp(36px, 5.5vw, 70px); font-weight: normal; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.5vw, 44px); font-weight: normal; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: clamp(18px, 2vw, 24px); font-weight: normal; line-height: 1.3; }
h4 { font-size: 16px; font-weight: normal; }
p { font-size: 16px; line-height: 1.75; color: var(--charcoal); }
.eyebrow {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--light); display: block;
}
.lead { font-size: clamp(16px, 1.8vw, 20px); line-height: 1.65; color: var(--mid); }

/* CONTAINER */
.container { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
@media (max-width: 640px) { .container { padding: 0 24px; } }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--onyx);
  display: flex; align-items: center;
  border-bottom: 1px solid #2C2C2C;
  transition: background 0.2s;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark svg { width: 28px; height: 28px; }
.nav-logo-word {
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream);
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--light); text-decoration: none; transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--onyx); background: var(--cream); text-decoration: none;
  padding: 8px 18px; border-radius: 3px; flex-shrink: 0;
  transition: opacity 0.15s;
}
.nav-cta:hover { opacity: 0.85; }
.nav-mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-mobile-toggle span {
  display: block; width: 20px; height: 1.5px; background: var(--cream); margin: 4px 0;
  transition: all 0.2s;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav-inner { padding: 0 24px; }
}

/* PAGE OFFSET */
.page-body { padding-top: var(--nav-h); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: Georgia, serif; font-size: 13px; letter-spacing: 0.06em;
  text-decoration: none; border: none; cursor: pointer;
  padding: 14px 28px; border-radius: 3px;
  transition: all 0.15s;
}
.btn-primary { background: var(--onyx); color: var(--cream); }
.btn-primary:hover { background: var(--charcoal); }
.btn-outline { background: transparent; color: var(--onyx); border: 1px solid var(--onyx); }
.btn-outline:hover { background: var(--onyx); color: var(--cream); }
.btn-ghost { background: transparent; color: var(--light); border: 1px solid var(--cream-dark); }
.btn-ghost:hover { border-color: var(--onyx); color: var(--onyx); }
.btn-cream { background: var(--cream); color: var(--onyx); }
.btn-cream:hover { opacity: 0.9; }
.btn-lg { padding: 16px 36px; font-size: 14px; }
.btn-sm { padding: 9px 18px; font-size: 11px; letter-spacing: 0.1em; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--onyx); color: var(--cream);
  padding: 100px 40px 90px;
  text-align: center;
}
.hero .eyebrow { color: var(--mid); margin-bottom: 20px; }
.hero h1 { color: var(--cream); max-width: 820px; margin: 0 auto 24px; }
.hero .hero-sub {
  font-size: clamp(16px, 1.8vw, 20px); color: var(--mid);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  display: block; text-align: center; margin-top: 64px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #3A3A3A;
  text-decoration: none;
}
.hero-scroll::after { content: '↓'; display: block; margin-top: 6px; font-size: 16px; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--onyx); border-top: 1px solid #2C2C2C; border-bottom: 1px solid #2C2C2C;
}
.stats-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 28px 32px;
  border-right: 1px solid #2C2C2C;
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number { font-size: clamp(28px, 4vw, 44px); color: var(--cream); letter-spacing: -0.02em; display: block; line-height: 1; }
.stat-label { font-size: 12px; color: var(--mid); font-style: italic; margin-top: 8px; display: block; line-height: 1.4; }

@media (max-width: 640px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid #2C2C2C; }
  .stat-item:last-child { border-bottom: none; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 88px 40px; }
.section-sm { padding: 56px 40px; }
.section-dark { background: var(--onyx); color: var(--cream); }
.section-dark p { color: var(--mid); }
.section-dark .eyebrow { color: #3A3A3A; }
.section-surface { background: var(--surface); }

.section-header { margin-bottom: 52px; }
.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { max-width: 640px; }
.section-header p { margin-top: 16px; max-width: 560px; }
.section-header.center { text-align: center; }
.section-header.center h2, .section-header.center p { margin-left: auto; margin-right: auto; }

/* ============================================================
   STEP / PROCESS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2px; }
.step {
  background: var(--surface); padding: 36px 32px;
  position: relative;
}
.step-num {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--light); margin-bottom: 20px; display: block;
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 14px; line-height: 1.65; }
.step .step-tag {
  display: inline-block; margin-top: 16px;
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--cream-mid); color: var(--mid); padding: 3px 10px; border-radius: 2px;
}

/* ============================================================
   CARDS / GRID
   ============================================================ */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

@media (max-width: 900px) { .card-grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid-3, .card-grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--cream-dark); border-radius: 4px;
  padding: 28px; transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.07); transform: translateY(-2px); }
.card .card-icon { font-size: 18px; margin-bottom: 14px; color: var(--mid); }
.card h4 { margin-bottom: 10px; }
.card p { font-size: 14px; line-height: 1.6; color: var(--mid); }

.card-dark {
  background: var(--charcoal); border-color: #3A3A3A;
}
.card-dark h4 { color: var(--cream); }
.card-dark p { color: #6B6B6B; }

/* SYSTEM CARDS */
.system-card {
  background: var(--surface); border: 1px solid var(--cream-dark); border-radius: 4px;
  padding: 24px 26px; display: flex; align-items: flex-start; gap: 16px;
}
.system-num {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--light);
  flex-shrink: 0; padding-top: 4px; width: 28px;
}
.system-content h4 { margin-bottom: 6px; }
.system-content p { font-size: 13px; color: var(--mid); line-height: 1.55; }

/* ============================================================
   VALUE PROP / COMPARISON
   ============================================================ */
.comparison {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--cream-dark);
  border-radius: 4px; overflow: hidden;
}
.comparison-side { padding: 36px 40px; }
.comparison-side.old { background: var(--surface); }
.comparison-side.new { background: var(--onyx); }
.comparison-side .side-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 20px; display: block;
}
.comparison-side.old .side-label { color: var(--light); }
.comparison-side.new .side-label { color: #555; }
.comparison-item {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 10px 0; border-bottom: 1px solid;
  font-size: 14px;
}
.comparison-side.old .comparison-item { border-color: var(--cream-mid); color: var(--charcoal); }
.comparison-side.new .comparison-item { border-color: #2C2C2C; color: var(--cream); }
.comparison-item:last-child { border-bottom: none; }
.comparison-item .ci-label { color: inherit; opacity: 0.7; font-style: italic; }
.comparison-item .ci-val { font-size: 16px; letter-spacing: -0.01em; }
.comparison-side.old .comparison-item .ci-val { color: var(--onyx); }
.comparison-side.new .comparison-item .ci-val { color: var(--cream); }

.saving-callout {
  background: var(--onyx); color: var(--cream); text-align: center;
  padding: 24px; border-radius: 4px; margin-top: 16px;
}
.saving-callout .amount { font-size: 36px; letter-spacing: -0.02em; display: block; }
.saving-callout p { font-size: 13px; color: var(--mid); font-style: italic; margin-top: 6px; }

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

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--cream-dark); border-radius: 4px; overflow: hidden; }
.pricing-card { background: var(--surface); padding: 32px 28px; }
.pricing-card.featured { background: var(--onyx); }
.pricing-card .tier-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light);
  margin-bottom: 16px; display: block;
}
.pricing-card.featured .tier-label { color: #555; }
.pricing-card .price { font-size: 36px; letter-spacing: -0.02em; line-height: 1; }
.pricing-card .price-period { font-size: 13px; color: var(--light); font-style: italic; margin-left: 3px; }
.pricing-card .build-fee { font-size: 12px; color: var(--mid); margin: 8px 0 20px; font-style: italic; }
.pricing-card.featured .price { color: var(--cream); }
.pricing-card.featured .build-fee { color: #555; }
.pricing-card .feature-list { margin: 0; }
.pricing-card .feature-list li {
  font-size: 13px; padding: 7px 0; border-bottom: 1px solid var(--cream-mid);
  display: flex; gap: 10px; align-items: flex-start; line-height: 1.4;
}
.pricing-card.featured .feature-list li { border-color: #2C2C2C; color: var(--cream); }
.pricing-card .feature-list li:last-child { border-bottom: none; }
.pricing-card .feature-list li::before { content: "—"; color: var(--light); flex-shrink: 0; margin-top: 1px; }
.pricing-card .card-cta { margin-top: 24px; width: 100%; text-align: center; display: block; }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  font-family: Georgia, serif; font-size: 16px; color: var(--onyx);
  padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 20px;
}
.faq-q:hover { color: var(--mid); }
.faq-toggle { font-size: 18px; flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 0 20px 0;
  font-size: 14px; color: var(--mid); line-height: 1.7; font-style: italic;
}
.faq-item.open .faq-a { display: block; }

/* ============================================================
   WAITLIST FORM
   ============================================================ */
.wl-form { max-width: 520px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--light); margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px 16px;
  border: 1px solid var(--cream-dark); border-radius: 3px;
  background: var(--white); font-family: Georgia, serif; font-size: 15px; color: var(--onyx);
  transition: border-color 0.15s;
}
.form-input:focus { outline: none; border-color: var(--onyx); }
.form-input::placeholder { color: var(--light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit { width: 100%; margin-top: 8px; }
.form-note { font-size: 12px; color: var(--light); font-style: italic; margin-top: 12px; }

@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--onyx); padding: 80px 40px; text-align: center;
}
.cta-banner h2 { color: var(--cream); margin-bottom: 16px; }
.cta-banner p { color: var(--mid); font-style: italic; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.cta-banner .eyebrow { color: #3A3A3A; margin-bottom: 12px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--onyx); border-top: 1px solid #2C2C2C;
  padding: 40px;
}
.footer-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap;
}
.footer-logo { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--light); text-decoration: none; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #3A3A3A; text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--light); }
.footer-copy { font-size: 11px; color: #3A3A3A; font-style: italic; }

/* ============================================================
   INTERIOR PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--onyx); padding: 72px 40px 64px;
}
.page-hero .eyebrow { color: #3A3A3A; margin-bottom: 12px; }
.page-hero h1 { color: var(--cream); max-width: 720px; margin-bottom: 16px; }
.page-hero .lead { max-width: 560px; }

/* ============================================================
   DIVIDERS / UTILITIES
   ============================================================ */
.rule { width: 48px; height: 1px; background: var(--cream-dark); margin: 28px 0; }
.rule-dark { background: #2C2C2C; }
.text-mid { color: var(--mid); }
.text-light { color: var(--light); }
.italic { font-style: italic; }
.mt-8 { margin-top: 8px; } .mt-12 { margin-top: 12px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; } .mb-32 { margin-bottom: 32px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .section { padding: 64px 32px; }
  .hero { padding: 72px 32px 64px; }
  .stats-inner { padding: 0 32px; }
}
@media (max-width: 640px) {
  .section { padding: 48px 24px; }
  .hero { padding: 56px 24px 48px; }
  h1 { font-size: clamp(30px, 8vw, 44px); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cta-banner { padding: 56px 24px; }
}
