@charset "UTF-8";

/*
Theme Name: CMS Abode
Theme URI:  
Author: the AbodeXP team
Author URI: https://abodexp.com/
Description: 
Requires at least: 5.3
Tested up to: 5.7
Requires PHP: 5.6
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cmsabode
Tags: 
 
*/
 :root {
    --ink: #0D0D0D;
    --cream: #F5F0E8;
    --warm-white: #FAFAF7;
    --navy: #0A1628;
    --gold: #C8A96E;
    --gold-light: #E8D5A8;
    --slate: #4A5568;
    --sage: #7A8C7A;
    --coral: #C4634A;
    --mid: #8A8A82;
    --border: rgba(13,13,13,0.10);
    --border-light: rgba(255,255,255,0.12);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px;
    height: 68px;
    background: rgba(250,250,247,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    animation: fadeDown 0.6s ease both;
  }
  .nav-logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .nav-logo-mark {
    width: 32px; height: 32px;
    background: var(--navy);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-logo-mark svg { width: 18px; height: 18px; }
  .nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.3px;
    color: var(--navy);
  }
  .nav-logo-text span { color: var(--gold); }
  .nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
  }
  .nav-links a {
    font-size: 13.5px; font-weight: 500;
    color: var(--slate); text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    display: flex; align-items: center; gap: 12px;
  }
  .btn-ghost {
    font-size: 13.5px; font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s;
  }
  .btn-ghost:hover { background: rgba(0,0,0,0.05); }
  .btn-primary {
    font-size: 13.5px; font-weight: 600;
    background: var(--navy);
    color: #fff;
    padding: 10px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.1px;
  }
  .btn-primary:hover { background: #1a2d4a; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    padding: 120px 48px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: 
      radial-gradient(ellipse 900px 500px at 50% 0%, rgba(200,169,110,0.08) 0%, transparent 70%),
      radial-gradient(ellipse 600px 400px at 80% 80%, rgba(10,22,40,0.04) 0%, transparent 70%);
  }
  .hero-grid {
    position: absolute; inset: 0; z-index: 0;
    background-image: 
      linear-gradient(var(--border) 1px, transparent 1px),
      linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  }
  .hero-content { position: relative; z-index: 1; max-width: 900px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,169,110,0.12);
    border: 1px solid rgba(200,169,110,0.3);
    color: #8a6830;
    font-size: 12px; font-weight: 600;
    letter-spacing: 1.2px; text-transform: uppercase;
    padding: 6px 16px; border-radius: 100px;
    margin-bottom: 32px;
    animation: fadeUp 0.7s 0.1s ease both;
  }
  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--gold);
  }
  .hero-h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 8vw, 96px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -2px;
    color: var(--navy);
    animation: fadeUp 0.7s 0.2s ease both;
    margin-bottom: 8px;
  }
  .hero-h1 em {
    font-style: italic;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 18px; font-weight: 300;
    color: var(--slate);
    line-height: 1.6;
    max-width: 560px;
    margin: 24px auto 48px;
    animation: fadeUp 0.7s 0.3s ease both;
  }
  .hero-actions {
    display: flex; align-items: center; justify-content: center; gap: 16px;
    animation: fadeUp 0.7s 0.4s ease both;
    flex-wrap: wrap;
  }
  .btn-hero {
    font-size: 15px; font-weight: 600;
    background: var(--navy);
    color: #fff;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 24px rgba(10,22,40,0.25);
  }
  .btn-hero:hover { background: #1a2d4a; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10,22,40,0.3); }
  .btn-hero-ghost {
    font-size: 15px; font-weight: 500;
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 15px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-hero-ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

  /* ── RESULTS TICKER ── */
  .results-strip {
    background: var(--navy);
    padding: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  .results-track {
    display: flex;
    gap: 0;
    animation: ticker 40s linear infinite;
    width: max-content;
  }
  .results-strip:hover .results-track { animation-play-state: paused; }
  .result-card {
    display: flex; align-items: center;
    padding: 36px 64px;
    border-right: 1px solid rgba(255,255,255,0.08);
    min-width: 340px;
    cursor: default;
  }
  .result-card-inner { }
  .result-stat {
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px; font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
  }
  .result-label {
    font-size: 13px; font-weight: 400;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
  }
  .result-agency {
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.8px; text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-top: 4px;
  }

  /* ── SECTION SHELLS ── */
  section { padding: 100px 48px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
  }
  .section-h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--navy);
    max-width: 760px;
  }
  .section-h2 em { font-style: italic; color: var(--gold); }
  .section-lead {
    font-size: 16px; font-weight: 300;
    color: var(--slate);
    line-height: 1.7;
    max-width: 560px;
    margin-top: 20px;
  }

  /* ── TRACK SELECTOR ── */
  .tracks {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 48px;
  }
  .tracks-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 56px;
    border-radius: 16px; overflow: hidden;
    border: 1.5px solid var(--border);
  }
  .track-card {
    background: #fff;
    padding: 56px 52px;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none; color: inherit;
    display: block;
  }
  .track-card:hover { background: var(--navy); }
  .track-card:hover .track-title,
  .track-card:hover .track-desc,
  .track-card:hover .track-feature { color: rgba(255,255,255,0.85); }
  .track-card:hover .track-icon-wrap { background: rgba(200,169,110,0.15); border-color: rgba(200,169,110,0.3); }
  .track-card:hover .track-cta { color: var(--gold); }
  .track-card:hover .track-title-h { color: #fff; }
  .track-icon-wrap {
    width: 56px; height: 56px;
    background: rgba(10,22,40,0.06);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 28px;
    transition: all 0.3s;
  }
  .track-icon-wrap svg { width: 26px; height: 26px; }
  .track-title-h {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px; font-weight: 400;
    letter-spacing: -1px;
    color: var(--navy);
    margin-bottom: 12px;
    transition: color 0.3s;
  }
  .track-desc {
    font-size: 15px; font-weight: 300;
    color: var(--slate); line-height: 1.65;
    margin-bottom: 28px;
    transition: color 0.3s;
  }
  .track-features { list-style: none; margin-bottom: 36px; display: flex; flex-direction: column; gap: 10px; }
  .track-feature {
    font-size: 13.5px; font-weight: 400;
    color: var(--slate);
    display: flex; align-items: center; gap: 10px;
    transition: color 0.3s;
  }
  .track-feature::before {
    content: '';
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }
  .track-cta {
    font-size: 14px; font-weight: 600;
    color: var(--navy);
    display: flex; align-items: center; gap: 8px;
    transition: color 0.3s;
    letter-spacing: 0.3px;
  }
  .track-cta::after { content: '→'; }

  /* ── MODULES ── */
  .modules-section { padding: 100px 48px; background: var(--warm-white); }
  .modules-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 64px;
    gap: 32px;
  }
  .modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5px;
    background: var(--border);
    border-radius: 16px; overflow: hidden;
    border: 1.5px solid var(--border);
  }
  .module-card {
    background: #fff;
    padding: 40px 36px;
    position: relative;
    transition: background 0.25s;
  }
  .module-card:hover { background: #FAFAF5; }
  .module-num {
    font-family: 'DM Mono', monospace;
    font-size: 11px; font-weight: 500;
    color: var(--mid);
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
  .module-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .module-icon svg { width: 22px; height: 22px; }
  .module-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    letter-spacing: -0.5px;
    color: var(--navy);
    margin-bottom: 12px;
  }
  .module-desc {
    font-size: 13.5px; font-weight: 300;
    color: var(--slate);
    line-height: 1.65;
  }
  .module-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.8px; text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }

  /* ── INTEGRATIONS ── */
  .integrations {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 100px 48px;
  }
  .integrations-logos {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 48px;
  }
  .int-pill {
    display: flex; align-items: center; gap: 8px;
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 13px; font-weight: 500;
    color: var(--slate);
    transition: border-color 0.2s, color 0.2s;
  }
  .int-pill:hover { border-color: var(--navy); color: var(--navy); }
  .int-dot {
    width: 8px; height: 8px; border-radius: 50%;
  }
  .int-section-label {
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--mid);
    margin: 28px 0 12px;
    width: 100%;
  }

  /* ── TESTIMONIALS ── */
  .testimonials { background: var(--navy); padding: 100px 48px; }
  .testimonials .section-h2 { color: #fff; }
  .testimonials .section-label { color: var(--gold); }
  .testimonials-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 56px;
  }
  .testi-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 40px;
  }
  .testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 20px; }
  .testi-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 300; font-style: italic;
    color: rgba(255,255,255,0.88);
    line-height: 1.55;
    margin-bottom: 28px;
  }
  .testi-author { display: flex; align-items: center; gap: 14px; }
  .testi-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, #a07840 100%);
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 600; color: #fff;
    font-family: 'Cormorant Garamond', serif;
    flex-shrink: 0;
  }
  .testi-name { font-size: 14px; font-weight: 600; color: #fff; }
  .testi-role { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }

  /* ── PRICING TIERS ── */
  .pricing { background: var(--warm-white); padding: 100px 48px; }
  .pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 56px;
  }
  .price-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 48px 40px;
    position: relative;
    background: #fff;
    transition: border-color 0.25s, transform 0.25s;
  }
  .price-card:hover { border-color: var(--navy); transform: translateY(-4px); }
  .price-card.featured {
    background: var(--navy);
    border-color: var(--navy);
  }
  .price-card.featured .price-tier,
  .price-card.featured .price-amount,
  .price-card.featured .price-cycle,
  .price-card.featured .price-feature { color: rgba(255,255,255,0.85); }
  .price-card.featured .price-title { color: #fff; }
  .price-card.featured .price-divider { border-color: rgba(255,255,255,0.1); }
  .featured-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold);
    color: var(--navy);
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 100px;
  }
  .price-tier {
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--mid); margin-bottom: 16px;
  }
  .price-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px; font-weight: 400;
    letter-spacing: -0.8px; color: var(--navy);
    margin-bottom: 8px;
  }
  .price-amount {
    font-size: 42px; font-weight: 600;
    color: var(--navy); line-height: 1;
    margin-bottom: 4px;
  }
  .price-amount span { font-size: 20px; font-weight: 400; }
  .price-cycle { font-size: 13px; color: var(--mid); margin-bottom: 24px; }
  .price-divider { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
  .price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
  .price-feature {
    font-size: 13.5px; font-weight: 400;
    color: var(--slate);
    display: flex; align-items: flex-start; gap: 10px;
  }
  .price-feature::before {
    content: '✓';
    color: var(--gold); font-weight: 700;
    flex-shrink: 0; margin-top: 1px;
  }
  .btn-price {
    display: block; width: 100%;
    text-align: center;
    font-size: 14px; font-weight: 600;
    padding: 14px 24px; border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
  }
  .btn-price-outline {
    border: 1.5px solid var(--navy);
    color: var(--navy);
    background: transparent;
  }
  .btn-price-outline:hover { background: var(--navy); color: #fff; }
  .btn-price-gold {
    background: var(--gold);
    color: var(--navy);
    border: 1.5px solid var(--gold);
  }
  .btn-price-gold:hover { background: #b8964a; }

  /* ── CTA FOOTER ── */
  .cta-footer {
    background: var(--cream);
    border-top: 1px solid var(--border);
    padding: 120px 48px;
    text-align: center;
  }
  .cta-footer .section-h2 { max-width: 600px; margin: 0 auto 16px; }
  .cta-footer .section-lead { margin: 0 auto 48px; text-align: center; }
  .cta-footer-note {
    font-size: 13px; color: var(--mid);
    margin-top: 20px;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 64px 48px 40px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }
  .footer-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-weight: 600;
    color: #fff; margin-bottom: 12px;
  }
  .footer-brand-name span { color: var(--gold); }
  .footer-brand-desc { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.45); max-width: 220px; }
  .footer-col h4 {
    font-size: 11px; font-weight: 600;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 16px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; font-size: 13px; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: rgba(255,255,255,0.25);
  }
  .footer-bottom-links { display: flex; gap: 24px; }
  .footer-bottom-links a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
  .footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes ticker {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1; transform: translateY(0);
  }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* ── COMPARE BAR ── */
  .compare-bar {
    background: var(--warm-white);
    padding: 80px 48px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .compare-row {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 32px; max-width: 1000px; margin: 56px auto 0;
  }
  .compare-col-head {
    font-size: 11px; font-weight: 600;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--mid);
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
    margin-bottom: 20px;
  }
  .compare-col-head.abode { color: var(--navy); border-color: var(--navy); }
  .compare-item {
    font-size: 14px; font-weight: 300;
    color: var(--slate); line-height: 1.6;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: flex-start; gap: 12px;
  }
  .compare-item .mark { flex-shrink: 0; margin-top: 2px; }
  .compare-item.positive .mark { color: #3a9a6a; }
  .compare-item.negative .mark { color: #c44a3a; }

  /* ── PRESS ── */
  .press { padding: 64px 48px; background: var(--warm-white); text-align: center; }
  .press-label {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--mid); margin-bottom: 32px;
  }
  .press-logos {
    display: flex; align-items: center; justify-content: center;
    flex-wrap: wrap; gap: 40px;
  }
  .press-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px; font-weight: 600;
    color: #C4C4B8;
    letter-spacing: -0.5px;
    transition: color 0.2s;
  }
  .press-logo:hover { color: var(--slate); }

  /* ── HAMBURGER MENU ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 6px;
    background: none;
    border: none;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s;
  }
  .nav-mobile-menu {
    display: none;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: rgba(250,250,247,0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 24px 24px 32px;
    z-index: 99;
    flex-direction: column;
    gap: 0;
  }
  .nav-mobile-menu.open { display: flex; }
  .nav-mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 15px; font-weight: 500;
    color: var(--slate);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .nav-mobile-menu a:hover { color: var(--navy); }
  .nav-mobile-menu .mobile-cta {
    margin-top: 20px;
    display: flex; flex-direction: column; gap: 10px;
    border-bottom: none;
    padding: 0;
  }
  .nav-mobile-menu .mobile-cta a {
    border-bottom: none;
    text-align: center;
    padding: 13px 24px;
    border-radius: 8px;
    font-size: 14px;
  }
  .nav-mobile-menu .mobile-cta .btn-primary {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
  }
  .nav-mobile-menu .mobile-cta .btn-ghost {
    border: 1.5px solid var(--border);
    color: var(--slate);
  }

  /* ── TABLET: 1024px ── */
  @media (max-width: 1024px) {
    nav { padding: 0 24px; }
    .nav-links { gap: 20px; }
    .hero { padding: 100px 32px 60px; }
    section { padding: 80px 32px; }
    .tracks { padding: 80px 32px; }
    .modules-section { padding: 80px 32px; }
    .integrations { padding: 80px 32px; }
    .testimonials { padding: 80px 32px; }
    .pricing { padding: 80px 32px; }
    .compare-bar { padding: 64px 32px; }
    .press { padding: 48px 32px; }
    .cta-footer { padding: 80px 32px; }
    footer { padding: 56px 32px 32px; }

    .modules-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
    .footer-inner > div:first-child { grid-column: span 3; }
  }

  /* ── MOBILE: 768px ── */
  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-hamburger { display: flex; }

    .hero { padding: 100px 20px 60px; min-height: auto; }
    .hero-h1 { font-size: clamp(40px, 10vw, 64px); letter-spacing: -1.5px; }
    .hero-sub { font-size: 16px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
    .btn-hero, .btn-hero-ghost { text-align: center; width: 100%; }

    .result-card { padding: 28px 40px; min-width: 260px; }

    section { padding: 64px 20px; }
    .tracks { padding: 64px 20px; }
    .modules-section { padding: 64px 20px; }
    .integrations { padding: 64px 20px; }
    .testimonials { padding: 64px 20px; }
    .pricing { padding: 64px 20px; }
    .compare-bar { padding: 56px 20px; }
    .press { padding: 40px 20px; }
    .cta-footer { padding: 64px 20px; }
    footer { padding: 48px 20px 28px; }

    .tracks-grid { grid-template-columns: 1fr; gap: 2px; }
    .track-card { padding: 40px 32px; }

    .modules-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .modules-grid { grid-template-columns: 1fr; }
    .module-card { padding: 32px 28px; }

    .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
    .testi-card { padding: 28px; }

    .pricing-grid { grid-template-columns: 1fr; gap: 20px; }
    .price-card { padding: 36px 28px; }

    .compare-row { grid-template-columns: 1fr; gap: 24px; }

    .press-logos { gap: 24px; }

    .footer-inner {
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }
    .footer-inner > div:first-child { grid-column: span 2; }
    .footer-bottom {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
    }
    .footer-bottom-links { flex-wrap: wrap; gap: 16px; }

    .section-h2 { font-size: clamp(28px, 7vw, 44px); letter-spacing: -1px; }
    .integrations-logos { gap: 6px; }
    .int-pill { font-size: 12px; padding: 8px 14px; }
  }

  /* ── SMALL MOBILE: 480px ── */
  @media (max-width: 480px) {
    .hero-h1 { font-size: clamp(34px, 11vw, 52px); }
    .hero-sub { font-size: 15px; }
    .hero-badge { font-size: 11px; padding: 5px 12px; }

    .result-card { padding: 24px 28px; min-width: 220px; }
    .result-stat { font-size: 32px; }

    .track-card { padding: 32px 24px; }
    .track-title-h { font-size: 28px; }

    .testi-quote { font-size: 17px; }
    .testi-card { padding: 24px; }

    .price-card { padding: 28px 22px; }
    .price-amount { font-size: 36px; }

    .footer-inner { grid-template-columns: 1fr; }
    .footer-inner > div:first-child { grid-column: span 1; }

    .press-logos { gap: 18px; }
    .press-logo { font-size: 15px; }

    .section-h2 { font-size: clamp(26px, 8vw, 38px); }
    footer { padding: 40px 16px 24px; }
    section { padding: 56px 16px; }
    .tracks, .modules-section, .integrations, .testimonials, .pricing { padding: 56px 16px; }
    .cta-footer { padding: 56px 16px; }
  }