/* ========================================
   Field IQ Baseball — Design System
   Bold & Athletic
   ======================================== */

/* --- Tokens --- */
:root {
  --navy:       #0a1628;
  --navy-mid:   #152238;
  --navy-light: #1e3354;
  --red:        #d01030;
  --red-dark:   #a80d26;
  --red-bright: #e8112f;
  --gold:       #f0a500;
  --gold-light: #ffc840;
  --cream:      #f9f5ef;
  --off-white:  #f4f2ef;
  --gray-100:   #f1f3f5;
  --gray-200:   #e3e6ea;
  --gray-400:   #adb5bd;
  --gray-600:   #6c757d;
  --gray-800:   #2d3540;
  --white:      #ffffff;

  --font-sans:    'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Oswald', 'Impact', sans-serif;

  --radius-sm: 4px;
  --radius:    10px;
  --radius-lg: 18px;

  --shadow-sm: 0 2px 6px rgba(0,0,0,.07);
  --shadow:    0 6px 20px rgba(0,0,0,.13);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.20);

  --transition: 0.18s ease;
  --max-width: 1160px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .025em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p  { max-width: 68ch; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .6rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 88px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--gray { background: var(--off-white); }
.section--slate { background: var(--navy-mid); color: var(--white); }

.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.mt-1{margin-top:8px}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-5{margin-top:56px}
.mb-1{margin-bottom:8px}.mb-2{margin-bottom:16px}.mb-3{margin-bottom:24px}.mb-4{margin-bottom:32px}.mb-5{margin-bottom:56px}

/* Angled divider between sections */
.angle-down {
  position: relative;
  padding-bottom: 64px;
}
.angle-down::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 0);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
}
.btn:hover::after { background: rgba(255,255,255,.08); }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(208,16,48,.35);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 20px rgba(208,16,48,.45);
  transform: translateY(-2px);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
}
.btn-secondary:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(240,165,0,.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 20px rgba(240,165,0,.45);
  transform: translateY(-2px);
}
.btn-sm { padding: 9px 20px; font-size: .82rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--gray-200);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card-body { padding: 24px; }
.card-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-200);
  background: var(--off-white);
}

/* Card with left accent */
.card-accented {
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.card-accented:hover { border-left-color: var(--red-dark); }

/* --- Nav --- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
}
/* Red underline stripe on nav */
.site-nav::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.nav-logo .logo-mark {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo .logo-field {
  color: var(--white);
}
.nav-logo .logo-iq {
  color: var(--gold);
  padding: 1px 6px;
  background: var(--red);
  border-radius: var(--radius-sm);
  margin-left: 4px;
  font-size: 1rem;
  line-height: 1.4;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  color: rgba(255,255,255,.7);
  font-size: .82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); background: rgba(255,255,255,.1); }
.nav-cta { margin-left: 16px; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: 110px 0 130px;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  margin-bottom: -48px;
}
/* Noise/grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,.015) 60px,
      rgba(255,255,255,.015) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,.015) 60px,
      rgba(255,255,255,.015) 61px
    );
}
/* Red vertical accent bar */
.hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, var(--red) 0%, var(--gold) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero p { font-size: 1.1rem; color: rgba(255,255,255,.75); margin-bottom: 36px; max-width: 58ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Stats strip */
.hero-stats {
  display: flex;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 32px;
}
.hero-stat {
  flex: 1;
  padding-right: 32px;
  border-right: 1px solid rgba(255,255,255,.1);
  margin-right: 32px;
}
.hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat .label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 4px;
}

/* Decorative diamond in hero */
.hero-diamond {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 420px;
  height: 420px;
  border: 2px solid rgba(255,255,255,.04);
  opacity: 1;
}
.hero-diamond::before {
  content: '';
  position: absolute;
  inset: 40px;
  border: 2px solid rgba(255,255,255,.04);
}
.hero-diamond::after {
  content: '';
  position: absolute;
  inset: 80px;
  border: 2px solid rgba(255,255,255,.04);
}

/* --- Age group badges --- */
.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  padding: 3px 10px;
  border-radius: 3px;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
}
.age-8u  { background: #dbeafe; color: #1e3a8a; }
.age-9u  { background: #ccfbf1; color: #134e4a; }
.age-10u { background: #dcfce7; color: #14532d; }
.age-11u { background: #ffedd5; color: #7c2d12; }
.age-12u { background: #fef3c7; color: #78350f; }
.age-13u { background: #ede9fe; color: #4c1d95; }
.age-14u { background: #fce7f3; color: #831843; }

/* --- Tags / Pills --- */
.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  border-radius: 3px;
  font-size: .73rem;
  font-weight: 600;
  background: var(--gray-200);
  color: var(--gray-600);
  letter-spacing: .03em;
}
.tag-hitting    { background: #fef3c7; color: #78350f; }
.tag-pitching   { background: #dbeafe; color: #1e3a8a; }
.tag-fielding   { background: #dcfce7; color: #14532d; }
.tag-baserunning{ background: #f3e8ff; color: #581c87; }
.tag-catching   { background: #ffe4e6; color: #881337; }

/* --- Tabs --- */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 11px 22px;
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--gray-600);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}
.tab-btn:hover { color: var(--navy); }
.tab-btn.active { color: var(--red); border-bottom-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* --- Accordion --- */
.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  overflow: hidden;
}
.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  font-weight: 700;
  font-size: .92rem;
  background: var(--white);
  transition: var(--transition);
  text-align: left;
  gap: 12px;
}
.accordion-header:hover { background: var(--off-white); }
.accordion-header.open { background: var(--navy); color: var(--white); }
.accordion-header .chevron {
  transition: transform var(--transition);
  color: var(--gray-400);
  font-size: 1rem;
  flex-shrink: 0;
}
.accordion-header.open .chevron { transform: rotate(180deg); color: var(--gold); }
.accordion-body { display: none; padding: 0 20px 20px; color: var(--gray-600); font-size: .92rem; line-height: 1.7; border-top: 1px solid var(--gray-200); padding-top: 16px; }
.accordion-body.open { display: block; }

/* --- Filter bar --- */
.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-btn {
  padding: 7px 16px;
  border-radius: 3px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  background: var(--white);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.active { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* --- Pricing cards --- */
.pricing-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.pricing-card:hover { border-color: var(--navy); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--red);
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.pricing-card .badge-featured {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 3px;
  white-space: nowrap;
}
.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.02em;
}
.price sup { font-size: 1.4rem; vertical-align: top; margin-top: .5rem; }
.price-period { font-size: .85rem; color: var(--gray-400); margin-left: 2px; font-family: var(--font-sans); font-weight: 400; text-transform: none; letter-spacing: 0; }
.pricing-features { margin: 24px 0; }
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .92rem;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.pricing-features li:last-child { border-bottom: none; }
.check { color: #22c55e; flex-shrink: 0; font-size: 1rem; }
.pricing-card.featured .pricing-features li { border-bottom-color: rgba(255,255,255,.08); }
.pricing-card.featured .price-period { color: rgba(255,255,255,.45); }

/* --- Video placeholder --- */
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--navy-mid);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: .85rem;
  gap: 12px;
  cursor: pointer;
  transition: background var(--transition);
}
.video-placeholder:hover { background: var(--navy-light); }
.play-btn {
  width: 54px;
  height: 54px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(208,16,48,.4);
}
.video-placeholder:hover .play-btn { transform: scale(1.1); box-shadow: 0 6px 24px rgba(208,16,48,.5); }

/* --- Section header --- */
.section-header { max-width: 600px; }
.section-header.centered { margin: 0 auto; text-align: center; }
.section-header.centered p { margin: 0 auto; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }
.section-header.centered .section-label::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  flex-shrink: 0;
}

/* --- Icon box --- */
.icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.icon-box--red   { background: rgba(208,16,48,.1); }
.icon-box--gold  { background: rgba(240,165,0,.15); }
.icon-box--navy  { background: var(--navy); color: var(--white); }

/* --- Feature list --- */
.feature-item { display: flex; gap: 16px; align-items: flex-start; }
.feature-item + .feature-item { margin-top: 28px; }

/* --- Stat strip (dark sections) --- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat-item {
  padding: 28px 24px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-lbl {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 6px;
}

/* --- Red banner strip (scrolling ticker) --- */
.banner-strip {
  background: var(--red);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
}
.banner-track {
  display: flex;
  width: max-content;
  animation: banner-ticker 28s linear infinite;
}
.banner-track:hover { animation-play-state: paused; }
.banner-strip-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding-right: 40px;
}
.banner-strip-inner span { color: var(--white); }
.banner-divider { color: rgba(255,255,255,.3); }
@keyframes banner-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- Form --- */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 6px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--gray-800);
  background: var(--white);
  transition: var(--transition);
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,.08);
}
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236c757d' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

/* --- Breadcrumb --- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
  padding: 20px 0;
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.8); font-weight: 600; }

/* --- Page hero (inner pages) --- */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 48px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  margin-bottom: -32px;
}
.page-hero::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--red) 0%, var(--gold) 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,.7); font-size: 1.05rem; }

/* --- Footer --- */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,.55);
  padding: 72px 0 32px;
  position: relative;
}
.site-footer::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  position: absolute;
  top: 0; left: 0; right: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 52px;
}
.footer-brand p { font-size: .88rem; line-height: 1.7; max-width: 32ch; }
.footer-col h5 {
  font-family: var(--font-display);
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .88rem;
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* --- Highlight box --- */
.highlight-box {
  border-left: 4px solid var(--gold);
  background: rgba(240,165,0,.07);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* --- Section number --- */
.section-number {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--gray-200);
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: -8px;
}

/* --- Responsive --- */
@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  .section { padding: 60px 0; }
  .container { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 69px;
    left: 0; right: 0;
    background: var(--navy-mid);
    padding: 12px;
    gap: 2px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 99;
  }
  .hero { padding: 72px 0 100px; clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%); }
  .hero-diamond { display: none; }
  .hero-stats { gap: 0; flex-wrap: wrap; }
  .hero-stat { flex: 0 0 50%; border-right: none; margin-right: 0; padding-right: 0; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-stat:nth-child(3), .hero-stat:nth-child(4) { border-bottom: none; }
  .page-hero { clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:last-child, .stat-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  .pricing-card { padding: 28px 20px; }
  .banner-track { animation-duration: 20s; }
}

/* --- Scroll reveal --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.revealed { opacity: 1; transform: none; }
