/* ═══════════════════════════════════════════════════════════
   Mineral.Locker — Design System v4
   "Texas Heritage Desk" — Timeless, Nostalgic, Trustworthy
   Cream & Parchment · Lora Serif · No Neon · No Glass
   ═══════════════════════════════════════════════════════════ */

/* ── CSS Custom Properties ──────────────────────────────── */
:root {
  /* Backgrounds — Warm Creams */
  --cream:         #F5F0E6;
  --cream-deep:    #EDE6D8;
  --parchment:     #E2D9C8;
  --warm-white:    #FAF7F2;

  /* Dark Sections */
  --charcoal:      #2C2825;
  --ink:           #1A1714;

  /* Accents — Warm Browns / Earth */
  --saddle:        #7B5B3A;
  --saddle-light:  #9A7B5C;
  --saddle-dark:   #5C3F25;
  --espresso:      #3B2F2F;
  --espresso-light:#5A4A42;

  /* Legacy accent names (mapped for easy migration) */
  --copper:        var(--saddle);
  --copper-light:  var(--saddle-light);
  --copper-dark:   var(--saddle-dark);
  --copper-muted:  var(--saddle-light);
  --warm-gold:     #B8963A;
  --sage:          #7A8B6F;

  /* Surfaces */
  --bg:            var(--cream);
  --bg-warm:       var(--cream-deep);
  --bg-dark:       var(--ink);
  --surface:       #FDFAF5;
  --surface-dark:  var(--charcoal);

  /* Semantic */
  --success:       #6B8F5E;
  --warning:       #C49A3C;
  --danger:        #B84A3C;
  --shield-gold:   #B8963A;

  /* Text — Dark on Light */
  --text:          #2C2825;
  --text-muted:    #5A5048;
  --text-on-dark:  #F5F0E6;
  --text-on-dark-muted: #E8E3DC;

  /* Layout */
  --container:     1200px;
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     14px;
  --radius-xl:     20px;

  /* Shadows — soft, warm, no colored glow */
  --shadow-sm:     0 1px 4px rgba(60,48,36,0.08);
  --shadow:        0 4px 20px rgba(60,48,36,0.10);
  --shadow-lg:     0 12px 40px rgba(60,48,36,0.12);
  --shadow-warm:   0 4px 24px rgba(123, 91, 58, 0.08);

  /* Transitions — understated */
  --ease:          cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-spring:   cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration:      0.3s;
  --duration-slow: 0.45s;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--espresso);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-family: 'Source Sans 3', sans-serif; font-weight: 600; }

p { margin-bottom: 1rem; }
a { color: var(--saddle); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--saddle-dark); }
img { max-width: 100%; display: block; }
ul, ol { padding-left: 1.5rem; }

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

/* ── Sections ───────────────────────────────────────────── */
.section {
  padding: 120px 0;
  position: relative;
  background: var(--bg);
}
/* Clean section breaks — no divider lines for spacious feel */
.section + .section::before {
  display: none;
}
.section--dark {
  background: var(--charcoal);
}
.section--dark h2,
.section--dark h3 {
  color: var(--text-on-dark);
}
.section--steel {
  background: var(--ink);
}
.section--steel h2,
.section--steel h3 {
  color: var(--text-on-dark);
}

/* ── Typography Helpers ─────────────────────────────────── */
.eyebrow {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--saddle);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--parchment);
  border-radius: 1px;
}

.text-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.12rem);
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.text-center { text-align: center; }
.text-center .eyebrow { justify-content: center; }
.highlight--gold { color: var(--shield-gold); }

.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mt-4 { margin-top: 3rem; }

/* ── Grid System ────────────────────────────────────────── */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

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

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--duration) var(--ease);
  text-decoration: none;
  line-height: 1;
  position: relative;
}
.btn__arrow {
  transition: transform var(--duration) var(--ease);
  display: inline-block;
}
.btn:hover .btn__arrow { transform: translateX(3px); }

.btn--primary {
  background: var(--espresso);
  color: var(--cream);
  border-color: transparent;
}
.btn--primary:hover {
  background: var(--saddle-dark);
  color: var(--cream);
  box-shadow: var(--shadow);
}

.btn--outline {
  color: var(--saddle);
  border-color: var(--parchment);
  background: transparent;
}
.btn--outline:hover {
  background: rgba(123, 91, 58, 0.06);
  border-color: var(--saddle-light);
  color: var(--espresso);
}
.section--dark .btn--outline,
.section--steel .btn--outline {
  color: var(--saddle-light);
  border-color: rgba(250,247,242,0.15);
}
.section--dark .btn--outline:hover,
.section--steel .btn--outline:hover {
  background: rgba(250,247,242,0.06);
  border-color: rgba(250,247,242,0.25);
  color: var(--text-on-dark);
}

.btn--ghost {
  color: var(--text-muted);
  border-color: var(--parchment);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--saddle-light);
  background: rgba(123, 91, 58, 0.04);
  color: var(--saddle);
}

.btn--sm { padding: 12px 22px; font-size: 0.9rem; }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }

/* No pulse glow on timeless design */
.btn--pulse { animation: none; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--duration) var(--ease);
  border: 1px solid var(--parchment);
  position: relative;
}
.card:hover {
  box-shadow: var(--shadow);
  border-color: var(--saddle-light);
}
.card--dark {
  background: rgba(250,247,242,0.04);
  border-color: rgba(255,255,255,0.06);
  box-shadow: none;
}
.card--dark:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--saddle);
}
.card__icon--gold { color: var(--warm-gold); }
.card__icon--steel { color: var(--text-muted); }
.card__icon--success { color: var(--success); }

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(245, 240, 230, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--parchment);
  transition: all var(--duration) var(--ease);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--espresso);
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.nav__brand .shield-icon {
  font-size: 1.5rem;
  color: var(--saddle);
}
.nav__brand .dot {
  color: var(--saddle);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav__links a {
  color: var(--espresso);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--saddle);
  transition: width var(--duration) var(--ease);
  border-radius: 1px;
}
.nav__links a:hover { color: var(--espresso); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--espresso);
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all var(--duration) var(--ease);
}
.nav__cta::after { display: none !important; }
.nav__cta:hover {
  background: var(--saddle-dark);
  color: var(--cream) !important;
}
.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--espresso);
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: rgba(245, 240, 230, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--parchment);
  }
  .nav__links.active { display: flex; }
  .nav__links a { font-size: 1rem; }
  .nav__links a::after { display: none; }
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream-deep);
  padding-top: 68px;
  padding-bottom: 40px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg-v5.png') center/cover no-repeat;
  opacity: 0.35;
  filter: sepia(40%) saturate(60%);
}
/* Dark scrim so heading text is always legible */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,23,20,0.60) 0%,
    rgba(26,23,20,0.50) 60%,
    rgba(26,23,20,0.45) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Subtle paper grain */
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  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");
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(123,91,58,0.02) 0%, transparent 60%),
              linear-gradient(180deg, transparent 70%, var(--cream-deep) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 100px;
}
.hero__content h1 {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.30);
}
.highlight {
  color: var(--warm-gold);
}
.hero__content .text-lead {
  color: #E8E3DC;
  margin-left: 0;
  margin-bottom: 40px;
  max-width: 560px;
  font-size: 1.18rem;
  line-height: 1.85;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Launch Badge */
.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: var(--warm-gold);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.15);
}

/* Hero Trust Strip */
.hero__trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero__trust-item {
  color: #E8E3DC;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero__trust-item strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Hero-scoped eyebrow override */
.hero .eyebrow {
  color: var(--warm-gold);
}
.hero .eyebrow::before {
  background: rgba(255,255,255,0.25);
}

/* ── Pain Points ────────────────────────────────────────── */
.pain-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--parchment);
}
.pain-point:last-child { border-bottom: none; }
.pain-point__indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.pain-point__indicator--red { background: var(--danger); }
.pain-point__indicator--amber { background: var(--warning); }
.pain-point__text {
  font-weight: 600;
  color: var(--espresso);
  font-size: 0.95rem;
}
.pain-point__sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 3px;
}

/* ── Feature Split ──────────────────────────────────────── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split--reverse { direction: rtl; }
.feature-split--reverse > * { direction: ltr; }
.feature-split__list {
  list-style: none;
  padding: 0;
}
.feature-split__list li {
  position: relative;
  padding: 9px 0 9px 28px;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--parchment);
}
.feature-split__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--saddle);
  font-weight: 700;
}
.section--dark .feature-split__list li { border-color: rgba(255,255,255,0.06); color: var(--text-on-dark-muted); }
.section--dark .feature-split__list li::before { color: var(--saddle-light); }

@media (max-width: 768px) {
  .feature-split { grid-template-columns: 1fr; gap: 28px; }
  .feature-split--reverse { direction: ltr; }
  .feature-split__image { max-width: 100%; overflow: hidden; }
}

/* ── Process / Steps ────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process__step {
  position: relative;
  counter-increment: step;
  padding: 28px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--parchment);
  transition: all var(--duration) var(--ease);
}
.process__step:hover {
  border-color: var(--saddle-light);
  box-shadow: var(--shadow);
}
.process__step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--cream);
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.process__step h4 {
  color: var(--espresso);
  margin-bottom: 6px;
}
.process__step p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Dark-section overrides for process steps */
.section--dark .process__step,
.section--steel .process__step {
  background: rgba(250,247,242,0.04);
  border-color: rgba(255,255,255,0.06);
}
.section--dark .process__step:hover,
.section--steel .process__step:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.section--dark .process__step h4,
.section--steel .process__step h4 {
  color: var(--text-on-dark);
}
.section--dark .process__step p,
.section--steel .process__step p {
  color: var(--text-on-dark-muted);
}

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

/* ── Escalation Cards ───────────────────────────────────── */
.escalation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.escalation__card {
  background: rgba(250,247,242,0.05);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}
.escalation__card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  border-color: rgba(255,255,255,0.12);
}
.escalation__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}
.escalation__card:nth-child(1)::before { background: var(--success); }
.escalation__card:nth-child(2)::before { background: var(--saddle); }
.escalation__card:nth-child(3)::before { background: var(--warning); }
.escalation__card:nth-child(4)::before { background: var(--danger); }

.escalation__level {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.escalation__card:nth-child(1) .escalation__level { color: var(--success); }
.escalation__card:nth-child(2) .escalation__level { color: var(--saddle-light); }
.escalation__card:nth-child(3) .escalation__level { color: var(--warning); }
.escalation__card:nth-child(4) .escalation__level { color: var(--danger); }

.escalation__name {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text-on-dark);
}
.escalation__desc {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

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

/* ── Stats Row ──────────────────────────────────────────── */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin: 40px 0;
}
.stats-row__item { text-align: center; }
.stats-row__value {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--saddle-light);
  line-height: 1;
  margin-bottom: 4px;
}
.stats-row__label {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

@media (max-width: 600px) {
  .stats-row { gap: 20px; }
  .stats-row__item { flex: 0 0 40%; }
  .stats-row__value { font-size: 2rem; }
}

/* ── Pricing Cards ──────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  border: 1px solid var(--parchment);
  transition: all var(--duration) var(--ease);
  text-align: center;
  position: relative;
}
.pricing-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--saddle-light);
}
.pricing-card--featured {
  background: var(--charcoal);
  border-color: rgba(123,91,58,0.3);
  box-shadow: var(--shadow-warm);
  transform: scale(1.02);
  color: var(--text-on-dark);
}
.pricing-card--featured:hover {
  transform: scale(1.02);
}
.pricing-card--featured h3 { color: var(--text-on-dark); }
.pricing-card--featured .pricing-card__desc { color: var(--text-on-dark-muted); }
.pricing-card--featured .pricing-card__features li { color: var(--text-on-dark-muted); }
.pricing-card--featured .pricing-card__features li::before { color: var(--saddle-light); }

.pricing-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(123, 91, 58, 0.08);
  color: var(--saddle);
  margin-bottom: 14px;
  border: 1px solid var(--parchment);
}
.pricing-card--featured .pricing-card__badge {
  background: rgba(123, 91, 58, 0.15);
  border-color: rgba(123, 91, 58, 0.25);
  color: var(--saddle-light);
}

.pricing-card__name {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.pricing-card__price {
  font-family: 'Lora', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--espresso);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.pricing-card--featured .pricing-card__price {
  color: var(--saddle-light);
}
.pricing-card__period {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pricing-card--featured .pricing-card__period { color: var(--text-on-dark-muted); }

.pricing-card__desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}
.pricing-card__features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
  text-align: left;
}
.pricing-card__features li {
  padding: 7px 0 7px 26px;
  position: relative;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--parchment);
}
.pricing-card--featured .pricing-card__features li { border-color: rgba(255,255,255,0.06); }
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--saddle);
  font-weight: 700;
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: none; }
}

/* ── Competitor Table ───────────────────────────────────── */
.compare-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin-top: 24px;
  min-width: 480px;
}
.compare-table th,
.compare-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--parchment);
  white-space: nowrap;
}
.compare-table th {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saddle);
}
.compare-table td {
  color: var(--text-muted);
}
.compare-table tr.highlight-row td {
  color: var(--espresso);
  font-weight: 600;
  background: rgba(123, 91, 58, 0.05);
}

/* Dark section overrides for compare table */
.section--dark .compare-table th,
.section--dark .compare-table td,
.section--steel .compare-table th,
.section--steel .compare-table td {
  border-bottom-color: rgba(255,255,255,0.06);
}
.section--dark .compare-table td,
.section--steel .compare-table td {
  color: var(--text-on-dark-muted);
}
.section--dark .compare-table tr.highlight-row td,
.section--steel .compare-table tr.highlight-row td {
  color: var(--text-on-dark);
  background: rgba(123,91,58,0.08);
}

@media (max-width: 600px) {
  .compare-table th,
  .compare-table td {
    padding: 10px 10px;
    font-size: 0.8rem;
  }
}

/* ── FAQ Accordion ──────────────────────────────────────── */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--parchment);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--espresso);
  text-align: left;
  transition: color var(--duration) var(--ease);
}
.faq-question:hover { color: var(--saddle); }
.faq-question .faq-icon {
  font-size: 1.3rem;
  transition: transform var(--duration) var(--ease);
  color: var(--saddle-light);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration) var(--ease);
}
.faq-answer__inner {
  padding: 0 0 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
.faq-item.active .faq-answer { max-height: 300px; }

/* ── Early Access Form ──────────────────────────────────── */
.early-access-wrap {
  max-width: 560px;
  margin: 0 auto;
  background: rgba(250,247,242,0.06);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}
.early-access-wrap h2 { color: var(--text-on-dark); margin-bottom: 8px; }
.early-access-wrap .text-lead { color: var(--text-on-dark-muted); margin-bottom: 24px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  margin-bottom: 5px;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
}
.form-field input:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--saddle-light);
  box-shadow: 0 0 0 2px rgba(123, 91, 58, 0.15);
}
.form-field input::placeholder { color: rgba(255,255,255,0.3); }
.form-field select option { background: var(--ink); color: var(--text-on-dark); }
.form-fine {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  margin-top: 12px;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .early-access-wrap { padding: 28px 18px; }
}

/* ── Form Grid (index.html early access) ───────────────── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-on-dark-muted);
  margin-bottom: 5px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  color: var(--text-on-dark);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem;
  transition: all var(--duration) var(--ease);
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--saddle-light);
  box-shadow: 0 0 0 2px rgba(123, 91, 58, 0.15);
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--ink); color: var(--text-on-dark); }

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

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(123, 91, 58, 0.15);
  padding: 56px 0 28px;
  color: var(--text-on-dark);
  position: relative;
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer__brand {
  font-family: 'Lora', Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text-on-dark);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.footer__brand .dot {
  color: var(--saddle-light);
}
.footer__tagline {
  font-size: 0.88rem;
  color: var(--text-on-dark-muted);
  max-width: 300px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer__seo-text {
  font-size: 0.85rem;
  color: rgba(212,207,200,0.72);
  line-height: 1.7;
  max-width: 300px;
}
.footer__col-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--saddle-light);
  margin-bottom: 14px;
}
.footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__col-links li {
  margin-bottom: 8px;
}
.footer__col-links a {
  color: var(--text-on-dark-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.footer__col-links a:hover {
  color: var(--warm-white);
}
.footer__copy {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-on-dark-muted);
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

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

/* ── Animations ─────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Global Mobile Fixes ───────────────────────────────── */
@media (max-width: 768px) {
  .hero__content { padding-top: 48px; padding-bottom: 48px; }
  .hero__content h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .section { padding: 80px 0; }
  h2 { font-size: clamp(1.5rem, 5.5vw, 1.9rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 52px; }
  .hero__content { padding-top: 28px; padding-bottom: 28px; }
  .escalation { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
}

/* ── Utility ────────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
