/* ============ RESET & VARIABLES ============ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #09090B;
  --surface: #111113;
  --surface-2: #18181B;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
  --text: #FAFAFA;
  --text-2: rgba(255,255,255,0.6);
  --text-3: rgba(255,255,255,0.35);
  --accent: #06B6D4;
  --accent-hover: #22D3EE;
  --accent-dim: rgba(6,182,212,0.15);
  --success: #34D399;
  --danger: #F87171;
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  /* Backwards-compatible aliases for sub-pages */
  --navy: #111114;
  --deep-blue: #18181B;
  --mid-blue: rgba(255,255,255,0.6);
  --light-blue: rgba(255,255,255,0.1);
  --ice: rgba(6,182,212,0.1);
  --white: #FAFAFA;
  --warm-white: #111113;
  --text-muted: rgba(255,255,255,0.5);
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ============ NAV ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(9,9,11,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text); font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.nav-logo { width: 32px; height: 32px; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.nav-link-btn { color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-link-btn:hover { color: var(--text); }
.nav-cta { background: var(--accent); color: var(--bg); padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.nav-cta:hover { background: var(--accent-hover); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; flex-direction: column; gap: 6px; }
.mobile-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text); border-radius: 1px; }

/* ============ HERO ============ */
.hero { padding: 160px 0 80px; position: relative; overflow: hidden; }
.hero-glow { position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 600px; background: radial-gradient(ellipse, rgba(6,182,212,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-content { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.hero-label { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.6s 0.1s ease forwards; }
.hero h1 { font-family: var(--font-display); font-size: clamp(36px, 5.5vw, 60px); font-weight: 700; line-height: 1.1; letter-spacing: -1.5px; margin-bottom: 24px; opacity: 0; animation: fadeUp 0.6s 0.2s ease forwards; }
.gold { color: var(--accent); }
.hero-sub { font-size: 17px; line-height: 1.7; color: var(--text-2); max-width: 520px; margin: 0 auto 40px; opacity: 0; animation: fadeUp 0.6s 0.3s ease forwards; }
.hero-actions { display: flex; gap: 16px; justify-content: center; opacity: 0; animation: fadeUp 0.6s 0.4s ease forwards; }

.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: var(--bg); padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; font-family: var(--font-body); border: none; cursor: pointer; transition: all 0.2s; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 30px rgba(6,182,212,0.2); }
.btn-ghost { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: var(--text-2); padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 500; text-decoration: none; transition: color 0.2s; }
.btn-ghost:hover { color: var(--text); }
.btn-outline { display: inline-flex; align-items: center; justify-content: center; background: transparent; color: var(--text); padding: 14px 32px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; border: 1px solid var(--border); transition: all 0.2s; width: 100%; }
.btn-outline:hover { border-color: var(--border-hover); background: var(--surface); }

/* ============ PRODUCT MOCK ============ */
.product-mock { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; max-width: 960px; margin: 0 auto; opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards; box-shadow: 0 24px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04) inset; }
.mock-bar { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.mock-dots { display: flex; gap: 6px; margin-right: 12px; }
.mock-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.mock-tab { font-size: 12px; color: var(--text-3); font-weight: 500; padding: 4px 12px; border-radius: 6px; cursor: default; }
.mock-tab.active { color: var(--text); background: rgba(255,255,255,0.06); }
.mock-body { display: flex; min-height: 340px; }
.mock-sidebar { width: 180px; padding: 20px; border-right: 1px solid var(--border); flex-shrink: 0; }
.mock-filter-label { font-size: 10px; font-weight: 700; color: var(--text-3); letter-spacing: 1.5px; margin-bottom: 12px; margin-top: 4px; }
.mock-filter { font-size: 13px; color: var(--text-3); padding: 6px 10px; border-radius: 6px; margin-bottom: 2px; cursor: default; }
.mock-filter.active { color: var(--text); background: rgba(255,255,255,0.04); }
.mock-divider { height: 1px; background: var(--border); margin: 16px 0; }
.mock-main { flex: 1; padding: 0; overflow: hidden; }
.mock-header-row { display: grid; grid-template-columns: 2.2fr 0.5fr 1.3fr 0.6fr 0.7fr 0.5fr; padding: 14px 20px; font-size: 11px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; border-bottom: 1px solid var(--border); gap: 10px; }
.mock-data-row { display: grid; grid-template-columns: 2.2fr 0.5fr 1.3fr 0.6fr 0.7fr 0.5fr; padding: 12px 20px; font-size: 13px; color: var(--text-2); border-bottom: 1px solid rgba(255,255,255,0.03); align-items: center; transition: background 0.15s; gap: 10px; }
.mock-data-row:hover { background: rgba(255,255,255,0.02); }
.carrier-cell { display: flex; align-items: center; gap: 10px; color: var(--text); font-weight: 500; }
.dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ch { font-size: 11px; padding: 3px 10px; border-radius: 100px; font-weight: 500; white-space: nowrap; }
.ch.direct { background: rgba(52,211,153,0.1); color: var(--success); }
.ch.agg { background: rgba(6,182,212,0.12); color: #06B6D4; }
.rate { color: var(--text); font-weight: 600; font-variant-numeric: tabular-nums; }
.rate.dim { color: var(--text-3); }
.rate.hi { color: var(--accent); }
.trust { color: var(--text-2); font-weight: 600; }
.trust.hi { color: var(--accent); }

/* ============ VALUE STRIP ============ */
.value-strip { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.value-item h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.value-item p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* ============ FEATURES ============ */
.features { padding: 120px 0; }
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 120px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-label { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.feature-text h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 20px; }
.feature-desc { font-size: 16px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.feature-link { color: var(--accent); text-decoration: none; font-weight: 600; font-size: 15px; transition: color 0.2s; }
.feature-link:hover { color: var(--accent-hover); }

.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 32px; }

/* Mini Profile */
.mp-header { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.mp-avatar { width: 44px; height: 44px; border-radius: 12px; background: #D32F2F; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 18px; color: #fff; }
.mp-name { font-weight: 600; font-size: 16px; }
.mp-type { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.mp-score { margin-left: auto; font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--accent); }
.mp-bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.mp-bar-row span:first-child { font-size: 12px; color: var(--text-3); width: 100px; flex-shrink: 0; }
.mp-track { flex: 1; height: 6px; background: rgba(255,255,255,0.04); border-radius: 100px; overflow: hidden; }
.mp-fill { height: 100%; background: var(--accent); border-radius: 100px; }
.mp-val { font-size: 12px; color: var(--text-2); font-weight: 600; width: 28px; text-align: right; }
.mp-quote { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--border); font-size: 13px; color: var(--text-2); font-style: italic; line-height: 1.6; }
.mp-quote span { color: var(--text-3); font-style: normal; }

/* Aggregator Compare */
.agg-compare { display: flex; align-items: stretch; gap: 0; }
.agg-col { flex: 1; padding: 24px; text-align: center; }
.agg-col.dim { opacity: 0.5; }
.agg-name { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.agg-rate-big { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.agg-col.dim .agg-rate-big { color: var(--text); }
.agg-label { font-size: 12px; color: var(--text-3); margin-bottom: 20px; }
.agg-detail { font-size: 13px; color: var(--text-2); margin-bottom: 6px; }
.agg-bottom { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); font-family: var(--font-display); font-size: 24px; font-weight: 700; color: var(--accent); }
.agg-col.dim .agg-bottom { color: var(--text-2); }
.agg-bottom span { font-size: 13px; font-weight: 400; color: var(--text-3); }
.agg-vs { display: flex; align-items: center; justify-content: center; width: 50px; font-size: 13px; color: var(--text-3); font-weight: 600; border-left: 1px solid var(--border); border-right: 1px solid var(--border); }
.agg-gap { text-align: center; padding: 20px; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-2); }
.agg-gap span { color: var(--accent); font-weight: 700; }

/* ============ TOOLS ============ */
.tools-section { padding: 120px 0; border-top: 1px solid var(--border); }
.tools-header { text-align: center; margin-bottom: 56px; }
.tools-header h2 { font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); font-weight: 700; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 12px; }
.tools-sub { font-size: 16px; color: var(--text-2); }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 0 auto; }
.tool-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 36px; text-decoration: none; color: var(--text); transition: all 0.25s; }
.tool-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.tool-icon { font-family: var(--font-display); font-size: 28px; font-weight: 800; color: var(--accent); margin-bottom: 20px; width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: var(--accent-dim); border-radius: 14px; }
.tool-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.tool-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 20px; }
.tool-cta { font-size: 14px; color: var(--accent); font-weight: 600; }

/* ============ PRICING ============ */
.pricing { padding: 120px 0; border-top: 1px solid var(--border); }
.pricing-title { font-family: var(--font-display); font-size: clamp(28px, 3vw, 38px); font-weight: 700; text-align: center; margin-bottom: 56px; letter-spacing: -0.5px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 720px; margin: 0 auto; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 40px; position: relative; }
.price-card.featured { border-color: var(--accent); }
.pc-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.pc-tier { font-size: 14px; font-weight: 600; color: var(--text-2); margin-bottom: 12px; }
.pc-price { font-family: var(--font-display); font-size: 48px; font-weight: 800; letter-spacing: -2px; line-height: 1; margin-bottom: 4px; }
.pc-period { font-size: 13px; color: var(--text-3); margin-bottom: 32px; }
.pc-features { list-style: none; margin-bottom: 32px; }
.pc-features li { font-size: 14px; color: var(--text-2); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.03); display: flex; align-items: center; gap: 10px; }
.pc-features li::before { content: '✓'; color: var(--accent); font-size: 12px; font-weight: 700; }

/* ============ CTA ============ */
.final-cta { padding: 120px 0; text-align: center; border-top: 1px solid var(--border); }
.final-cta h2 { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; letter-spacing: -1px; margin-bottom: 16px; }
.final-cta p { font-size: 17px; color: var(--text-2); margin-bottom: 36px; }
.cta-note { display: block; margin-top: 16px; font-size: 13px; color: var(--text-3); }

/* ============ FOOTER ============ */
.footer { padding: 60px 0 40px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand-col p { font-size: 13px; color: var(--text-3); margin-top: 12px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: var(--text-2); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 24px; display: flex; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--text-3); }

/* ============ SHARED (for sub-pages) ============ */
.page-header { padding: 140px 0 60px; background: var(--surface); border-bottom: 1px solid var(--border); }
.page-header h1 { font-family: var(--font-display); font-size: clamp(36px, 5vw, 52px); font-weight: 700; color: var(--text); letter-spacing: -1px; margin-bottom: 12px; }
.page-header p { font-size: 18px; color: var(--text-2); max-width: 560px; line-height: 1.65; }
.section-label { font-size: 13px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(32px, 4vw, 48px); font-weight: 700; line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; color: var(--text); }
.section-subtitle { font-size: 18px; line-height: 1.7; color: var(--text-2); max-width: 640px; }

/* Sub-page shared elements */
.directory-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 16px; padding: 48px 0 100px; }
.directory-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; text-decoration: none; color: var(--text); transition: all 0.2s; }
.directory-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.card-logo-row { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.card-info h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; }
.card-info span { font-size: 12px; color: var(--text-3); }
.card-stats { display: flex; gap: 24px; padding-top: 16px; border-top: 1px solid var(--border); }
.card-stat-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.card-stat-value.gold { color: var(--accent); }
.card-stat-label { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* Search */
.directory-search { position: relative; margin-top: 32px; }
.directory-search input { width: 100%; padding: 16px 20px 16px 48px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; font-size: 16px; font-family: var(--font-body); color: var(--text); outline: none; transition: border-color 0.2s; }
.directory-search input:focus { border-color: var(--accent); }
.directory-search input::placeholder { color: var(--text-3); }
.directory-search svg { position: absolute; left: 18px; top: 50%; transform: translateY(-50%); color: var(--text-3); width: 18px; height: 18px; }

/* Problem section (if used) */
.problem { padding: 100px 0; background: var(--surface); }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.problem-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 36px; transition: all 0.25s; }
.problem-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.problem-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.problem-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }
.problem-icon { height: 120px; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; }
.problem-icon img { max-height: 100%; max-width: 100%; object-fit: contain; }

/* Features (sub-page) */
.features-section { padding: 100px 0; }
.feature-block { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.feature-number { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--accent); margin-bottom: 12px; }
.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.feature-tag { background: var(--accent-dim); color: var(--accent); padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 600; }

/* How It Works */
.how-it-works { padding: 120px 0; background: var(--surface); border-top: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.step-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px; text-align: center; transition: all 0.25s; }
.step-card:hover { border-color: var(--border-hover); transform: translateY(-2px); }
.step-number { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: var(--accent); opacity: 0.25; margin-bottom: 20px; line-height: 1; }
.step-card h3 { font-family: var(--font-display); font-size: 20px; font-weight: 600; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--text-2); line-height: 1.7; }

/* CTA Section (sub-pages) */
.cta-section { padding: 80px 0; }
.cta-box { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 72px 48px; text-align: center; }
.cta-box h2 { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 40px); font-weight: 700; margin-bottom: 16px; }
.cta-box p { font-size: 17px; color: var(--text-2); max-width: 480px; margin: 0 auto 32px; line-height: 1.6; }

/* Pricing */
.popular-badge { position: absolute; top: 16px; right: 16px; background: var(--accent); color: var(--bg); font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 100px; }
.price-tier { font-size: 14px; font-weight: 600; color: var(--text-2); margin-bottom: 12px; }
.price-amount { font-family: var(--font-display); font-size: 48px; font-weight: 800; letter-spacing: -2px; }
.price-period { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.price-desc { font-size: 14px; color: var(--text-2); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.price-features { list-style: none; margin-bottom: 28px; }
.price-feature { font-size: 14px; color: var(--text-2); padding: 6px 0; display: flex; align-items: center; gap: 10px; }
.price-feature svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }
.btn-price { display: flex; justify-content: center; padding: 14px; border-radius: 10px; font-size: 15px; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.btn-price.outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-price.outline:hover { border-color: var(--border-hover); background: var(--surface); }
.btn-price.filled { background: var(--accent); color: var(--bg); border: none; }
.btn-price.filled:hover { background: var(--accent-hover); }

/* Signup/Login shared */
.signup-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 100px 0; background: var(--bg); }
.signup-container { max-width: 640px; margin: 0 auto; }
.signup-header h1, .signup-section-title { font-family: var(--font-display); font-weight: 700; color: var(--text); }
.signup-header p, .signup-section-desc { color: var(--text-2); }

/* About */
.about-content { padding: 80px 0 120px; }
.about-inner { max-width: 680px; margin: 0 auto; }
.about-inner h2 { font-family: var(--font-display); font-size: 28px; font-weight: 600; margin: 48px 0 16px; }
.about-inner p { font-size: 16px; line-height: 1.8; color: var(--text-2); margin-bottom: 16px; }
.highlight-text { font-size: 20px; line-height: 1.6; color: var(--text); font-style: italic; border-left: 3px solid var(--accent); padding-left: 24px; margin: 32px 0; }
.commitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.commitment-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; }
.commitment-card h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.commitment-card p { font-size: 14px; color: var(--text-2); line-height: 1.6; }

/* Navbar for sub-pages */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(9,9,11,0.8); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; height: 64px; }
.nav-brand { color: var(--text); }
.nav-links-list, .nav-links { list-style: none; display: flex; gap: 32px; }
.nav-links a, .nav-links li a { color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-links a:hover, .nav-links li a:hover { color: var(--text); }
.nav-links a.active, .nav-links li a.active { color: var(--text); }

/* Selection items (signup) */
.selection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.selection-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 16px; cursor: pointer; transition: all 0.2s; text-align: center; }
.selection-item:hover { border-color: var(--border-hover); }
.selection-item.selected { border-color: var(--accent); background: var(--accent-dim); }
.sel-name { font-size: 13px; font-weight: 500; color: var(--text); }
.sel-check { display: none; }
.selection-item.selected .sel-check { display: block; color: var(--accent); font-size: 12px; }

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal { opacity: 0; transform: translateY(20px); transition: all 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 968px) {
  .feature-row, .feature-row.reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-row.reverse { direction: ltr; }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .mock-sidebar { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand-col { grid-column: 1 / -1; }
  .commitment-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-actions { display: none; }
  .nav-links.open, .nav-actions.open { display: flex; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(9,9,11,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); }
  .nav-actions.open { top: auto; border-top: 1px solid var(--border); padding-top: 16px; }
  .mobile-toggle { display: flex; }
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: 32px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-ghost { justify-content: center; }
  .product-mock { border-radius: 12px; }
  .mock-body { overflow-x: auto; }
  .mock-main { min-width: 620px; }
  .mock-header-row, .mock-data-row { font-size: 12px; padding: 10px 16px; gap: 10px; }
  .value-grid { grid-template-columns: 1fr; gap: 32px; }
  .tools-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr !important; max-width: 400px !important; margin: 0 auto !important; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .directory-grid { grid-template-columns: 1fr; }
  .selection-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Legacy footer layout for sub-pages */
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.footer-brand svg { width: 32px; height: 32px; }
.footer-tagline { font-size: 13px; color: var(--text-3); margin-top: 12px; }
.footer-links { display: flex; gap: 60px; }
.footer-legal { font-size: 12px; color: var(--text-3); }
.footer-copyright { font-size: 12px; color: var(--text-3); margin-top: 8px; }

/* Nav auth items for sub-pages */
.nav-auth-logged-out a { color: var(--text-2); text-decoration: none; font-size: 14px; font-weight: 500; }
.nav-auth-logged-in a { color: var(--text-2); text-decoration: none; font-size: 14px; }
.nav-login { border: 1px solid var(--border) !important; padding: 8px 20px !important; border-radius: 8px !important; }

/* Directory section */
.directory-section { padding: 40px 0 100px; }

/* Mobile toggle for sub-pages (3 spans) */
.mobile-toggle { display: none; }
@media (max-width: 640px) {
  .mobile-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .mobile-toggle span { display: block; width: 20px; height: 1.5px; background: var(--text); border-radius: 1px; }
  ul.nav-links { display: none; list-style: none; }
  ul.nav-links.show-mobile { display: flex !important; flex-direction: column; position: fixed; top: 64px; left: 0; right: 0; background: rgba(9,9,11,0.98); backdrop-filter: blur(20px); padding: 24px; gap: 16px; border-bottom: 1px solid var(--border); z-index: 99; }
}

/* Carrier/Aggregator Profile Sections */
.peek-section { padding: 48px 0 100px; }
.peek-container { max-width: 800px; }
.peek-data-section { margin-bottom: 40px; }
.peek-data-section h3 { font-family: var(--font-display); font-size: 22px; font-weight: 600; margin-bottom: 16px; color: var(--text); }

/* Sort Pills */
.sort-pill { padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 600; border: 1px solid var(--border); background: transparent; color: var(--text-3); cursor: pointer; transition: all 0.2s; font-family: var(--font-body); }
.sort-pill:hover { border-color: var(--border-hover); color: var(--text-2); }
.sort-pill.active { background: var(--accent); border-color: var(--accent); color: var(--bg); }
