/*
Theme Name: RacingLine
Theme URI: https://racingline.app/
Author: RacingLine Analytics LLC
Author URI: https://racingline.app/
Description: Premium F1 handicapping theme with professional predictions, metallic icon styling and refined UI
Version: 1.1.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: racingline
Tags: custom-colors, custom-menu, featured-images, responsive-layout, sports
*/

/* Root Variables and Color System */
:root {
  /* Base Brand and Neutrals */
  --gray-tones--dark-blue: #0d1929;
  --gray-tones--dark-background: #0a0f1c;
  --gray-tones--darker: #13265c;
  --gray-tones--darkest: #091229;
  --gray-tones--off-white: #f8fafc;
  --gray-tones--superlight: #eef2f6;
  --gray-tones--medium: #94a3b8;
  --gray-tones--scorpion: #64748b;

  /* Extended surfaces */
  --gray-tones--light-background: #0c1730;
  --gray-tones--card-background: #0f1b34;

  /* Brand metals */
  --brand--gold--main: #D4A574;
  --brand--gold--light: #E5C09A;
  --brand--gold--dark: #B8925C;
  --brand--emerald--main: #0F766E;
  --brand--emerald--light: #14B8A6;
  --brand--emerald--dark: #064E3B;
  --brand--silver--main: #8B97A8;
  --brand--silver--light: #CBD5E1;
  --brand--silver--dark: #475569;
  --brand--primary--main: #1E56A0;

  /* Accents */
  --accent--burgundy--main: #991B1B;
  --accent--carbon--main: #1F2937;
  --accent--platinum--main: #E5E7EB;

  /* Status */
  --status--success: #059669;
  --status--warning: #D97706;
  --status--error: #DC2626;

  /* Gradients */
  --gradient--gold: linear-gradient(135deg, #D4A574 0%, #E5C09A 50%, #B8925C 100%);
  --gradient--emerald: linear-gradient(135deg, #064E3B 0%, #0F766E 50%, #14B8A6 100%);
  --gradient--silver: linear-gradient(135deg, #475569 0%, #8B97A8 50%, #CBD5E1 100%);
  --gradient--premium: linear-gradient(135deg, #1E56A0 0%, #D4A574 100%);

  /* Fonts */
  --font-families--unbounded: 'Unbounded', sans-serif;
  --font-families--lexend-deca: 'Lexend Deca', sans-serif;
  --font-sizes--title-large: 48px;
  --font-sizes--title-medium: 32px;
  --font-sizes--title-small: 24px;
  --font-sizes--body-large: 18px;
  --font-sizes--body-small: 14px;

  /* Mapping previously undefined Mantine tokens to theme palette for consistency */
  --mantine-color-neutral-9: var(--gray-tones--dark-background);
  --mantine-color-neutral-7: #1f2738;
  --mantine-color-neutral-4: var(--gray-tones--medium);
  --mantine-color-danger-4: #ef7070;
  --mantine-color-primaryBlue-7: #163f7a;
  --mantine-color-primaryBlue-5: #2a66bf;
}

/* Resets and Base */
* { 
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-families--lexend-deca);
  line-height: 1.6;
  color: var(--gray-tones--off-white);
  background-color: var(--gray-tones--dark-blue);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}
a { color: var(--brand--gold--main); transition: all 0.3s ease; text-decoration: none; }
a:hover { color: var(--brand--emerald--main); }
img { max-width: 100%; height: auto; }

/* Typography helpers */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gradient {
  background: var(--gradient--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@300;400;500;600;700&family=Lexend+Deca:wght@300;400;500;600;700&display=swap');

/* Icon Font (Flaticon) */
@font-face {
  font-family: "Flaticon";
  src: url("assets/fonts/1170471-formula-1/font/Flaticon.eot");
  src: url("assets/fonts/1170471-formula-1/font/Flaticon.eot?#iefix") format("embedded-opentype"),
       url("assets/fonts/1170471-formula-1/font/Flaticon.woff") format("woff"),
       url("assets/fonts/1170471-formula-1/font/Flaticon.ttf") format("truetype"),
       url("assets/fonts/1170471-formula-1/font/Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("assets/fonts/1170471-formula-1/font/Flaticon.svg#Flaticon") format("svg");
  }
}

/* Metallic Icon System */
[class^="flaticon-"], [class*=" flaticon-"] {
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
  font-family: Flaticon;
  font-style: normal;
  color: currentColor;
  display: inline-block;
  background: linear-gradient(135deg, currentColor 0%, rgba(255, 255, 255, 0.35) 45%, currentColor 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, 0.15));
  position: relative;
  transition: filter 0.4s ease, transform 0.3s ease, background-position 0.8s ease;
}

/* Enhanced metallic sheen for larger or emphasized icons */
.icon-metal,
.nav-icon,
.feature-icon,
.metric-icon,
.step-icon,
.cta-icon,
.cta-icon-large,
.footer-social-link i {
  position: relative;
}
.icon-metal:before,
.nav-icon:before,
.feature-icon:before,
.metric-icon:before,
.step-icon:before,
.cta-icon:before,
.cta-icon-large:before,
.footer-social-link i:before {
  background-image:
    linear-gradient(135deg, currentColor 0%, rgba(255,255,255,0.55) 30%, currentColor 55%, rgba(255,255,255,0.35) 70%, currentColor 100%),
    radial-gradient(120px 40px at 10% 10%, rgba(255,255,255,0.25), transparent 60%);
  background-size: 200% 200%;
  background-position: 0% 50%;
}
.icon-metal:hover:before,
.nav-icon:hover:before,
.feature-icon:hover:before,
.metric-icon:hover:before,
.step-icon:hover:before,
.cta-icon:hover:before,
.cta-icon-large:hover:before,
.footer-social-link:hover i:before {
  animation: iconShine 1.75s ease-in-out;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.25)) drop-shadow(0 4px 14px rgba(0,0,0,0.45));
}
@keyframes iconShine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Extra-bold metallic for oversized use cases */
.flaticon-large:before,
[style*="font-size: 3rem"] [class^="flaticon-"]:before,
[style*="font-size: 4rem"] [class^="flaticon-"]:before {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45)) drop-shadow(0 0 12px rgba(255,255,255,0.35));
}

/* Icon glyph mappings (kept as-is and extended) */
.flaticon-001-champagne:before { content: "\f100"; }
.flaticon-002-speedometer:before { content: "\f101"; }
.flaticon-003-gear-shift:before { content: "\f102"; }
.flaticon-004-racing:before { content: "\f103"; }
.flaticon-005-wheel-pressure:before { content: "\f104"; }
.flaticon-006-finish-flag:before { content: "\f105"; }
.flaticon-007-turbo:before { content: "\f106"; }
.flaticon-008-car-key:before { content: "\f107"; }
.flaticon-009-mechanic:before { content: "\f108"; }
.flaticon-010-racing-helmet:before { content: "\f109"; }
.flaticon-011-podium:before { content: "\f10a"; }
.flaticon-012-setting:before { content: "\f10b"; }
.flaticon-013-road:before { content: "\f10c"; }
.flaticon-014-race-car:before { content: "\f10d"; }
.flaticon-015-battery:before { content: "\f10e"; }
.flaticon-016-timing-belt:before { content: "\f10f"; }
.flaticon-017-gear-shift-1:before { content: "\f110"; }
.flaticon-018-steering-wheel:before { content: "\f111"; }
.flaticon-019-cheerleader:before { content: "\f112"; }
.flaticon-020-gloves:before { content: "\f113"; }
.flaticon-021-gold-medal:before { content: "\f114"; }
.flaticon-022-wheel:before { content: "\f115"; }
.flaticon-023-tires:before { content: "\f116"; }
.flaticon-024-truck:before { content: "\f117"; }
.flaticon-025-spark-plug:before { content: "\f118"; }
.flaticon-026-cone:before { content: "\f119"; }
.flaticon-027-repair:before { content: "\f11a"; }
.flaticon-028-steering-wheel-1:before { content: "\f11b"; }
.flaticon-029-supporter:before { content: "\f11c"; }
.flaticon-030-jacket:before { content: "\f11d"; }
.flaticon-031-trophy:before { content: "\f11e"; }
.flaticon-032-pin:before { content: "\f11f"; }
.flaticon-033-check:before { content: "\f120"; }
.flaticon-034-formula-1:before { content: "\f121"; }
.flaticon-035-piston:before { content: "\f122"; }
.flaticon-036-axletree:before { content: "\f123"; }
.flaticon-037-brake:before { content: "\f124"; }
.flaticon-038-rearview-mirror:before { content: "\f125"; }
.flaticon-039-race:before { content: "\f126"; }
.flaticon-040-rain:before { content: "\f127"; }
.flaticon-041-fire-extinguisher:before { content: "\f128"; }
.flaticon-042-drift:before { content: "\f129"; }
.flaticon-043-circuit:before { content: "\f12a"; }
.flaticon-044-traffic:before { content: "\f12b"; }
.flaticon-045-car:before { content: "\f12c"; }
.flaticon-046-gas:before { content: "\f12d"; }
.flaticon-047-fuel-station:before { content: "\f12e"; }
.flaticon-048-thermometer:before { content: "\f12f"; }
.flaticon-049-screen:before { content: "\f130"; }
.flaticon-050-sun:before { content: "\f131"; }

/* Additional aliases used in existing markup */
.flaticon-003-trophy:before { content: "\f102"; }
.flaticon-004-check:before { content: "\f103"; }
.flaticon-006-circuit:before { content: "\f105"; }
.flaticon-009-brake:before { content: "\f108"; }
.flaticon-010-currency-dollar:before { content: "\f109"; }
.flaticon-012-brain:before { content: "\f10b"; }
.flaticon-013-turbo:before { content: "\f10c"; }
.flaticon-017-finish-flag:before { content: "\f110"; }
.flaticon-021-racing-helmet:before { content: "\f114"; }
.flaticon-024-search:before { content: "\f117"; }
.flaticon-025-rocket:before { content: "\f118"; }
.flaticon-026-screen:before { content: "\f119"; }
.flaticon-028-speedometer:before { content: "\f11b"; }
.flaticon-031-piston:before { content: "\f11e"; }
.flaticon-036-mechanic:before { content: "\f123"; }
.flaticon-037-fuel:before { content: "\f124"; }
.flaticon-048-supporter:before { content: "\f12f"; }

/* Header / Navbar */
.navbar-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(13, 26, 58, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  width: 100%;
}
.navbar-header.scrolled {
  background: rgba(9, 18, 41, 0.95);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}
.navbar-container { 
  width: 100%; 
  max-width: 1600px;
  margin: 0 auto; 
  padding: 0 16px;
}
.navbar-content { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  height: 72px; 
  transition: height 0.25s ease; 
}
.navbar-header.scrolled .navbar-content { height: 64px; }

.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.logo-img { height: 36px; width: auto; transition: transform 0.3s ease, filter 0.3s ease; }
.logo-img:hover { transform: scale(1.04); filter: drop-shadow(0 4px 14px rgba(212, 165, 116, 0.2)); }

.desktop-nav { display: flex; align-items: center; gap: 28px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: white; font-weight: 500; font-size: 16px; text-decoration: none;
  padding: 10px 14px; border-radius: 10px; position: relative; overflow: hidden;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.nav-link:focus-visible { outline: 3px solid rgba(212,165,116,0.5); outline-offset: 2px; border-radius: 10px; }
.nav-link:hover {
  color: var(--brand--gold--main);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}
.nav-link .nav-icon { font-size: 18px; transition: transform 0.2s ease; color: var(--brand--silver--light); }
.nav-link:hover .nav-icon { transform: translateY(-1px) scale(1.05); color: var(--brand--gold--main); }

/* Current page indicator */
.nav-link.current-page {
  color: var(--brand--gold--main);
  background: rgba(212, 165, 116, 0.1);
  border: 1px solid rgba(212, 165, 116, 0.3);
}

.nav-link.current-page .nav-icon {
  color: var(--brand--gold--main);
}

/* External link indicator */
.external-link::after {
  content: '↗';
  font-size: 0.85em;
  margin-left: 6px;
  opacity: 0.7;
}

.nav-cta-buttons { display: flex; align-items: center; gap: 12px; margin-left: 8px; }
.btn-login {
  color: white; font-weight: 500; text-decoration: none; padding: 10px 18px; border-radius: 10px;
  transition: all 0.25s ease; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255,255,255,0.04);
}
.btn-login:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.45); transform: translateY(-1px); }
.btn-login:focus-visible { outline: 3px solid rgba(212,165,116,0.5); outline-offset: 2px; }

.btn-signup {
  background: var(--gradient--gold);
  color: var(--gray-tones--darkest);
  font-weight: 700; text-decoration: none; padding: 12px 20px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease; display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 10px 22px rgba(212,165,116,0.28);
}
.btn-signup:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(212,165,116,0.34); }
.btn-signup:focus-visible { outline: 3px solid rgba(212,165,116,0.5); outline-offset: 2px; }

/* Mobile Nav */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  z-index: 1001;
}
.mobile-menu-toggle:focus-visible {
  outline: 3px solid rgba(212,165,116,0.5);
  outline-offset: 2px;
}
.hamburger-line {
  width: 24px;
  height: 2px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  width: 100%;
  height: calc(100vh - 64px);
  background: rgba(13, 26, 58, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-nav.active {
  transform: translateX(0);
}
.mobile-nav-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 16px;
  max-width: 100%;
  margin: 0 auto;
}
.mobile-nav-link {
  display: flex; align-items: center; gap: 12px; color: white; font-weight: 500; text-decoration: none;
  padding: 12px 20px; border-radius: 12px; transition: all 0.25s ease;
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
}
.mobile-nav-link:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); color: var(--brand--gold--main); }
.mobile-nav-divider { height: 1px; background: rgba(255, 255, 255, 0.1); margin: 8px 0; }
.mobile-btn-login {
  color: white; font-weight: 600; text-decoration: none; padding: 12px 20px; border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3); background: rgba(255, 255, 255, 0.05);
  text-align: center; transition: all 0.25s ease;
}
.mobile-btn-login:hover { background: rgba(255, 255, 255, 0.1); }
.mobile-btn-signup {
  background: var(--gradient--gold); color: var(--gray-tones--darkest); font-weight: 800;
  text-decoration: none; padding: 12px 20px; border-radius: 12px; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.25s ease;
}

/* Footer */
.footer-section {
  background: var(--mantine-color-neutral-9);
  color: white; 
  padding: 56px 0 48px; 
  position: relative; 
  overflow: hidden;
  width: 100%;
}
.footer-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 300px at -10% -20%, rgba(212,165,116,0.10), transparent 60%),
    radial-gradient(800px 300px at 110% 120%, rgba(15,118,110,0.10), transparent 60%);
  pointer-events: none;
}
.footer-container { 
  width: 100%; 
  max-width: 1600px;
  margin: 0 auto; 
  padding: 0 16px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-column { display: flex; flex-direction: column; gap: 14px; }
.footer-brand { color: white; font-weight: 800; font-size: 26px; margin: 0 0 8px; letter-spacing: 0.3px; }
.footer-description { color: var(--mantine-color-neutral-4); max-width: 360px; line-height: 1.7; margin: 0 0 18px; }

.footer-social { display: flex; flex-direction: column; gap: 10px; }
.footer-social-title { color: white; font-weight: 700; font-size: 13px; margin: 0; text-transform: uppercase; letter-spacing: 0.6px; opacity: 0.85; }
.footer-social-links { display: flex; gap: 12px; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 10px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--mantine-color-neutral-4); transition: all 0.25s ease; text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.footer-social-link:hover {
  color: var(--brand--gold--main);
  background: rgba(212, 165, 116, 0.1);
  border-color: rgba(212, 165, 116, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(212, 165, 116, 0.22);
}
.footer-social-link i { font-size: 20px; }

/* SVG Social Icons */
.footer-social-link .x-icon,
.footer-social-link .instagram-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: all 0.25s ease;
}

.footer-social-link:hover .x-icon,
.footer-social-link:hover .instagram-icon {
  transform: translateY(-1px) scale(1.05);
  filter: drop-shadow(0 0 10px rgba(212,165,116,0.3));
}

/* Better Substack icon treatment for metallic parity */
.footer-substack { overflow: hidden; }
.substack-icon {
  filter: saturate(110%) brightness(0.92) contrast(1.05);
  transition: transform 0.25s ease, filter 0.25s ease;
}
.footer-social-link:hover .substack-icon {
  transform: translateY(-1px) scale(1.05);
  filter: saturate(120%) brightness(1) contrast(1.1) drop-shadow(0 0 10px rgba(212,165,116,0.3));
}

.footer-title { color: white; font-weight: 700; font-size: 15px; margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.6px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-link {
  color: var(--mantine-color-neutral-4); text-decoration: none; font-size: 14px;
  transition: color 0.25s ease, transform 0.25s ease;
}
.footer-link:hover { color: white; transform: translateX(2px); }
.footer-divider { height: 1px; background: var(--mantine-color-neutral-7); margin: 32px 0 24px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
}
.footer-copyright { color: var(--mantine-color-neutral-4); font-size: 14px; margin: 0; }
.footer-disclaimer { color: var(--mantine-color-danger-4); font-size: 12px; font-weight: 700; margin: 0; max-width: 680px; text-align: right; }

/* Sections and Cards (polished) */
.site-content { 
  min-height: 100vh; 
  overflow: visible;
  position: relative;
  width: 100%;
}

/* Container System - FIXED */
.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* Full-width sections - no padding */
.hero-section-exact,
.hero-section-about,
.hero-section-social,
.final-cta-section,
.final-cta-section-social,
.cta-section-about,
.footer-section {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/* Regular sections with padding */
.performance-section,
.features-section,
.how-it-works-section,
.pricing-section,
.faq-section,
.cta-section,
.results-section,
.story-section,
.methodology-section {
  width: 100%;
  padding: 80px 0;
  overflow: visible;
}

/* MISSING PRICING CARD STYLES */
.pricing-section {
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--gray-tones--card-background);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-card.premium-card {
  border: 2px solid var(--brand--gold--main);
  background: linear-gradient(135deg, rgba(212,165,116,0.1) 0%, var(--gray-tones--dark-background) 50%, var(--gray-tones--card-background) 100%);
  transform: scale(1.05);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.25),
    0 4px 16px rgba(212, 165, 116, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.pricing-card.premium-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient--gold);
  opacity: 0.9;
}

.pricing-card.premium-card:hover {
  transform: scale(1.05) translateY(-4px);
}

.best-value-badge {
  position: absolute;
  top: 10px;
  right: 20px;
  background: var(--gradient--gold);
  color: var(--gray-tones--darkest);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(212, 165, 116, 0.3);
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin: 20px 0 12px;
  color: white;
}

.plan-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--brand--gold--main);
  margin-bottom: 8px;
  font-family: var(--font-families--unbounded);
}

.gradient-price {
  background: var(--gradient--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 18px;
  font-weight: 500;
  color: var(--gray-tones--medium);
}

.plan-description {
  color: var(--gray-tones--medium);
  margin-bottom: 24px;
  font-size: 16px;
}

.premium-desc {
  color: var(--brand--gold--light);
  font-weight: 600;
}

.plan-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 24px 0;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  text-align: left;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--gray-tones--off-white);
  font-size: 15px;
}

.plan-features i {
  color: var(--brand--gold--main);
  font-size: 14px;
  flex-shrink: 0;
}

.plan-button {
  display: block;
  width: 100%;
  padding: 16px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid;
}

.btn-outline {
  background: transparent;
  color: var(--brand--gold--main);
  border-color: var(--brand--gold--main);
}

.btn-outline:hover {
  background: var(--brand--gold--main);
  color: var(--gray-tones--darkest);
  transform: translateY(-2px);
}

.btn-premium {
  background: var(--gradient--gold);
  color: var(--gray-tones--darkest);
  border-color: var(--brand--gold--main);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212,165,116,0.4);
}

/* MISSING ABOUT PAGE HERO STYLES */
.hero-section-about {
  position: relative;
  min-height: 70vh;
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, var(--mantine-color-primaryBlue-7) 0%, var(--mantine-color-primaryBlue-5) 100%);
  width: 100%;
}

.hero-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.about-hero-icon {
  margin-bottom: 24px;
}

.about-hero-icon i {
  font-size: 64px;
  color: var(--brand--gold--main);
}

.text-gradient {
  background: var(--gradient--gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* MISSING SECTION STYLES */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(212, 165, 116, 0.2);
  color: var(--brand--gold--main);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid rgba(212, 165, 116, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  color: white;
  font-family: var(--font-families--unbounded);
}

.section-subtitle {
  font-size: 18px;
  color: var(--gray-tones--medium);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.hero-section-exact {
  position: relative; 
  min-height: 100vh; 
  padding: 120px 0 80px;
  overflow: hidden; 
  display: flex; 
  align-items: center;
  background: linear-gradient(45deg, var(--mantine-color-primaryBlue-7) 0%, var(--mantine-color-primaryBlue-5) 100%);
  width: 100%;
}
.hero-video-bg { 
  position: absolute; 
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover; 
  z-index: 0; 
  opacity: 0.4;
  pointer-events: none;
}
.hero-overlay {
  position: absolute; inset: 0; background-image: url('assets/images/racing-hero-static.jpg');
  background-size: cover; background-position: center; opacity: 0.3; z-index: 1;
}
.hero-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13, 26, 58, 0.7) 0%, rgba(13, 26, 58, 0.4) 100%); z-index: 2; }
.hero-content-wrapper { 
  position: relative; 
  z-index: 3; 
  width: 100%; 
  max-width: 1600px;
  margin: 0 auto; 
  padding: 0 16px;
}
.hero-grid { display: grid; grid-template-columns: 7fr 5fr; gap: 50px; align-items: center; }
.hero-text-content { color: white; }
.badge-professional {
  display: inline-block;
  background: rgba(212, 165, 116, 0.2);
  color: var(--brand--gold--main);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
  border: 1px solid rgba(212, 165, 116, 0.3);
}
.hero-main-title { font-size: 52px; font-weight: 800; line-height: 1.2; letter-spacing: -0.01em; margin: 0 0 20px; color: white; font-family: var(--font-families--unbounded); }
.hero-subtitle { font-size: 20px; font-weight: 500; line-height: 1.6; opacity: 0.92; margin: 0 0 28px; max-width: 640px; color: white; }
.hero-buttons { display: flex; gap: 16px; margin-bottom: 24px; }
.btn-create-account {
  background: var(--gradient--gold); color: var(--gray-tones--darkest); padding: 16px 32px; border-radius: 10px;
  font-weight: 800; text-decoration: none; border: 1px solid rgba(255,255,255,0.25);
  transition: all 0.25s ease; display: inline-block; box-shadow: 0 12px 26px rgba(212,165,116,0.34);
}
.btn-create-account:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212, 165, 116, 0.4); }
.btn-view-performance {
  color: white; padding: 16px 32px; border-radius: 10px; text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.25); transition: all 0.25s ease; display: inline-block; background: rgba(255,255,255,0.04);
}
.btn-view-performance:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-2px); }

.hero-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; }
.disclaimer-text { color: white; opacity: 0.8; font-size: 14px; }
.social-links { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.social-link-hero {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  text-decoration: none;
}

.social-link-hero:hover {
  color: var(--brand--gold--main);
  transform: translateY(-1px) scale(1.1);
}

.social-link-hero svg {
  width: 16px;
  height: 16px;
}

.social-link-hero .substack-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%) opacity(60%);
  transition: filter 0.3s ease;
}

.social-link-hero:hover .substack-icon {
  filter: brightness(0) saturate(100%) invert(73%) sepia(19%) saturate(526%) hue-rotate(9deg) brightness(96%) contrast(85%);
}

/* Sections */
.features-section { background: var(--mantine-color-neutral-9); }
.pricing-section { background: var(--mantine-color-neutral-9); }

/* Cards */
.performance-grid, .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.performance-card, .feature-card {
  background: linear-gradient(135deg, var(--gray-tones--dark-background) 0%, var(--gray-tones--darker) 100%);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 16px; 
  padding: 32px; 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.15),
    0 1px 3px rgba(212, 165, 116, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.performance-card::before, .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    var(--brand--gold--main) 0%, 
    var(--brand--emerald--main) 50%, 
    var(--brand--gold--main) 100%);
  opacity: 0.8;
}

.performance-card:hover, .feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.2),
    0 2px 6px rgba(212, 165, 116, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  border-color: rgba(212, 165, 116, 0.3);
}
.card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.card-icon {
  width: 40px; 
  height: 40px; 
  border-radius: 8px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 20px;
  position: relative;
  transition: all 0.3s ease;
}

.card-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.card-icon.trophy-icon { 
  background: rgba(30, 86, 160, 0.15); 
  color: #2a66bf; 
  border: 1px solid rgba(30, 86, 160, 0.25);
  box-shadow: 0 0 20px rgba(30, 86, 160, 0.2);
}

.card-icon.trophy-icon::before {
  background: radial-gradient(circle, rgba(42, 102, 191, 0.3) 0%, transparent 70%);
}

.card-icon.speedometer-icon { 
  background: rgba(212, 165, 116, 0.15); 
  color: var(--brand--gold--main); 
  border: 1px solid rgba(212, 165, 116, 0.25);
  box-shadow: 0 0 20px rgba(212, 165, 116, 0.2);
}

.card-icon.speedometer-icon::before {
  background: radial-gradient(circle, rgba(212, 165, 116, 0.3) 0%, transparent 70%);
}

.card-icon.helmet-icon { 
  background: rgba(15, 118, 110, 0.15); 
  color: var(--brand--emerald--light); 
  border: 1px solid rgba(15, 118, 110, 0.25);
  box-shadow: 0 0 20px rgba(15, 118, 110, 0.2);
}

.card-icon.helmet-icon::before {
  background: radial-gradient(circle, rgba(20, 184, 166, 0.3) 0%, transparent 70%);
}

.performance-card:hover .card-icon::before,
.feature-card:hover .card-icon::before {
  opacity: 1;
}

.performance-card:hover .card-icon,
.feature-card:hover .card-icon {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 30px rgba(212, 165, 116, 0.4);
}
.card-badge {
  padding: 4px 12px; 
  border-radius: 12px; 
  font-size: 12px; 
  font-weight: 600;
  border: 1px solid;
}

.card-badge.badge-primaryblue {
  background: rgba(30, 86, 160, 0.1); 
  color: #2a66bf;
  border-color: rgba(30, 86, 160, 0.25);
}

.card-badge.badge-gold {
  background: rgba(212, 165, 116, 0.1); 
  color: var(--brand--gold--main);
  border-color: rgba(212, 165, 116, 0.25);
}

.card-badge.badge-emerald {
  background: rgba(15, 118, 110, 0.1); 
  color: var(--brand--emerald--light);
  border-color: rgba(15, 118, 110, 0.25);
}
.card-title { font-size: 24px; font-weight: 800; margin: 0 0 8px; color: white; font-family: var(--font-families--unbounded); }
.card-description { color: var(--gray-tones--superlight); font-size: 15px; line-height: 1.6; opacity: 0.92; }

/* Performance section - dark theme styling */
.performance-section { 
  background: var(--mantine-color-neutral-9); 
}

/* ROI Chart Styling */
.roi-chart-placeholder {
  background: rgba(9, 18, 41, 0.5);
  border: 1px solid rgba(212, 165, 116, 0.2);
  border-radius: 12px;
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.chart-container {
  text-align: center;
}

.chart-title {
  color: white;
  font-family: var(--font-families--unbounded);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.chart-subtitle {
  color: rgba(148, 163, 184, 0.9);
  font-size: 14px;
  margin: 0 0 20px 0;
}

.chart-visual {
  margin: 20px 0;
}

.roi-line-chart {
  width: 100%;
  height: auto;
  max-height: 300px;
}

.chart-metrics {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: nowrap;
}

.chart-metric {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex: 1;
  max-width: 150px;
}

.chart-metric.highlight {
  border: 2px solid #D4A574;
  background: linear-gradient(135deg, rgba(212,165,116,0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.chart-metric .metric-label {
  font-size: 12px;
  color: rgba(148, 163, 184, 0.9);
  font-weight: 500;
}

.chart-metric .metric-value {
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-families--unbounded);
}

.text-gradient-emerald {
  background: linear-gradient(135deg, #064E3B 0%, #0F766E 50%, #14B8A6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-badge {
  background: var(--gradient--gold);
  color: var(--gray-tones--darkest);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}

/* General site styles (posts/pages, navs, forms, tables) */
.site-header {
  background: linear-gradient(135deg, var(--gray-tones--dark-background) 0%, var(--gray-tones--darker) 100%);
  color: white; padding: 2rem 0; border-bottom: 3px solid var(--brand--gold--main);
  position: relative; overflow: hidden;
}
.site-header::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,165,116,0.05) 0%, rgba(15,118,110,0.05) 100%);
  pointer-events: none;
}
.site-branding { position: relative; z-index: 1; }
.site-branding h1, .site-branding .site-title {
  margin: 0; color: var(--brand--gold--main);
  font-family: var(--font-families--unbounded); font-size: 2.5rem; font-weight: 800;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.site-branding a { color: inherit; text-decoration: none; transition: color 0.25s ease; }
.site-branding a:hover { color: var(--brand--emerald--main); }
.site-description { color: var(--gray-tones--medium); margin: 0.5rem 0 0; font-size: 1.1rem; font-weight: 300; }

.main-navigation { position: relative; z-index: 1; margin-top: 1.25rem; }
.main-navigation ul { list-style: none; display: flex; gap: 1.25rem; margin: 0; padding: 0; flex-wrap: wrap; }
.main-navigation a {
  color: white; text-decoration: none; padding: 0.75rem 1.25rem; border-radius: 10px;
  transition: all 0.25s ease; font-weight: 600; position: relative; overflow: hidden;
}
.main-navigation a::before {
  content: ''; position: absolute; top: 0; left: -120%; width: 120%; height: 100%;
  background: var(--gradient--gold); transition: left 0.3s ease; z-index: -1; opacity: 0.15;
}
.main-navigation a:hover { color: var(--gray-tones--darkest); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3); }
.main-navigation a:hover::before { left: 0; }

.site-main { 
  background: transparent; 
  color: white; 
  padding: 0; 
}

.site-main .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.post, .page {
  background: transparent;
  border: none;
  border-radius: 0; 
  padding: 0; 
  margin-bottom: 0; 
  position: relative; 
  overflow: visible;
  transition: none;
  box-shadow: none;
}
.post::before, .page::before {
  display: none;
}
.post:hover, .page:hover {
  transform: none;
  box-shadow: none;
  border-color: transparent;
}
.entry-title {
  color: var(--brand--gold--main); margin-top: 0; font-family: var(--font-families--unbounded);
  font-weight: 800; font-size: 2rem; line-height: 1.2;
}
.entry-title a { color: var(--brand--gold--main); text-decoration: none; transition: color 0.25s ease; }
.entry-title a:hover { color: var(--brand--emerald--main); text-shadow: 0 2px 10px rgba(15, 118, 110, 0.3); }
.entry-meta { color: var(--gray-tones--medium); font-size: 0.95rem; margin-bottom: 1.5rem; font-weight: 300; }
.entry-meta a { color: var(--brand--emerald--main); }
.entry-meta a:hover { color: var(--brand--gold--main); }
.entry-content { line-height: 1.85; font-size: 1.12rem; }
.entry-content p { margin-bottom: 1.4rem; }
.entry-content h1, .entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  color: var(--brand--gold--main); font-family: var(--font-families--unbounded); margin-top: 2rem; margin-bottom: 1rem;
}
.entry-footer { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.1); color: var(--gray-tones--medium); font-size: 0.95rem; }

.site-footer {
  background: linear-gradient(135deg, var(--gray-tones--darker) 0%, var(--gray-tones--dark-background) 100%);
  color: white; text-align: center; padding: 4rem 0 2rem; border-top: 3px solid var(--brand--gold--main);
  position: relative; overflow: hidden;
}
.site-footer::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at top left, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(15, 118, 110, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.site-info { color: var(--gray-tones--medium); position: relative; z-index: 1; }
.site-info a { color: var(--brand--gold--main); }
.site-info a:hover { color: var(--brand--emerald--main); text-shadow: 0 0 10px rgba(15,118,110,0.4); }

/* Buttons */
.button-premium, .btn-premium, .btn-premium-large, .btn-claim {
  font-family: var(--font-families--lexend-deca); background: var(--gradient--gold); color: var(--gray-tones--darkest);
  border-radius: 14px; padding: 14px 32px; font-weight: 700; letter-spacing: 0.1px; transform-style: preserve-3d;
  transition: all 0.25s ease; text-decoration: none; display: inline-block; border: none; cursor: pointer; position: relative; overflow: hidden;
  box-shadow: 0 10px 22px rgba(212,165,116,0.28);
}
.button-premium::before, .btn-premium::before, .btn-premium-large::before, .btn-claim::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent); transition: left 0.5s;
}
.button-premium:hover, .btn-premium:hover, .btn-premium-large:hover, .btn-claim:hover {
  transform: translateY(-2px); box-shadow: 0 12px 26px rgba(212,165,116,0.35);
}
.button-premium:hover::before, .btn-premium:hover::before, .btn-premium-large:hover::before, .btn-claim:hover::before { left: 100%; }
.btn-premium-large { padding: 1.1rem 2.4rem; font-size: 1.2rem; }
.btn-outline {
  display: inline-block; padding: 1rem 2rem; background: transparent; color: var(--brand--gold--main);
  border: 2px solid var(--brand--gold--main); border-radius: 10px; font-weight: 700; transition: all 0.25s ease;
}
.btn-outline:hover { background: var(--brand--gold--main); color: var(--gray-tones--darkest); transform: translateY(-2px); }

/* Forms */
input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="search"], textarea, select {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(212, 165, 116, 0.24);
  border-radius: 10px; color: white; padding: 0.8rem 1rem; width: 100%; margin-bottom: 1rem; font-family: inherit;
  transition: all 0.25s ease;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="password"]:focus, input[type="search"]:focus, textarea:focus, select:focus {
  outline: none; border-color: var(--brand--gold--main); box-shadow: 0 0 0 3px rgba(212,165,116,0.22); background: rgba(255,255,255,0.08);
}
button, input[type="submit"], input[type="button"] {
  background: var(--gradient--gold); color: var(--gray-tones--darkest); border: none; padding: 0.8rem 1.5rem; border-radius: 10px;
  cursor: pointer; font-weight: 700; display: inline-block; transition: all 0.25s ease; font-family: inherit;
  box-shadow: 0 8px 20px rgba(212,165,116,0.3);
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover {
  background: var(--gradient--emerald); color: white; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(15,118,110,0.3);
}

/* Tables */
table { width: 100%; border-collapse: collapse; margin-bottom: 2rem; background: var(--gray-tones--darker); border-radius: 10px; overflow: hidden; }
th, td { padding: 1rem; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
th { background: var(--gray-tones--dark-background); color: var(--brand--gold--main); font-weight: 800; }
tr:hover { background: rgba(212, 165, 116, 0.06); }

/* Lists */
ul, ol { margin-bottom: 1.5rem; }
li { margin-bottom: 0.5rem; }

/* Blockquotes */
blockquote {
  background: rgba(212, 165, 116, 0.1); border-left: 4px solid var(--brand--gold--main);
  padding: 1.5rem; margin: 2rem 0; border-radius: 0 10px 10px 0; font-style: italic;
}

/* Utility spacing */
.section-padding { padding: 4rem 0; }
.section-padding-large { padding: 6rem 0; }

/* Custom Hero Implementations */
.hero-premium {
  position: relative; overflow: hidden; padding: 8rem 0;
  background: linear-gradient(135deg, var(--gray-tones--dark-blue) 0%, var(--gray-tones--dark-background) 100%);
}
.hero-video-background { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.3; filter: brightness(0.7); z-index: 0; }
.hero-gradient-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212, 165, 116, 0.15) 0%, transparent 40%),
              linear-gradient(135deg, rgba(13, 26, 58, 0.95) 0%, rgba(9, 18, 41, 0.85) 100%);
  z-index: 1;
}

/* Additional High-fidelity sections (from previous build, polished where appropriate) */
.hero-section {
  position: relative; padding: 8rem 0 6rem;
  background: linear-gradient(135deg, var(--gray-tones--dark-blue) 0%, #0d1a3a 100%);
  color: var(--gray-tones--off-white); overflow: hidden; text-align: center;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: url('assets/images/racing-hero-static.jpg'); background-size: cover; background-position: center; opacity: 0.3; z-index: 0;
}
.hero-section::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,26,58,0.8) 0%, rgba(9,18,41,0.9) 100%); z-index: 1; }
.hero-content { position: relative; z-index: 2; width: 100%; margin: 0 auto; }
.hero-title {
  font-family: var(--font-families--unbounded); font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.08;
  margin-bottom: 1.5rem; color: var(--gray-tones--off-white);
}
.text-gradient-gold {
  background: linear-gradient(135deg, #D4A574 0%, #FFD700 50%, #D4A574 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  text-shadow: 0 0 12px rgba(212, 165, 116, 0.8), 0 0 20px rgba(255, 215, 0, 0.35);
}
.hero-disclaimer { font-size: 0.9rem; opacity: 0.75; margin-top: 1.1rem; }

/* Metrics */
.metrics-section { padding: 6rem 0; background: var(--gray-tones--light-background); }
.metrics-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.metric-card {
  background: var(--gray-tones--card-background); border-radius: 16px; padding: 2.4rem 1.6rem; text-align: center;
  border: 1px solid rgba(212, 165, 116, 0.24); box-shadow: 0 10px 28px rgba(0,0,0,0.18); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.metric-card:hover { transform: translateY(-3px); box-shadow: 0 16px 44px rgba(0,0,0,0.22); }
.metric-icon { font-size: 3rem; color: var(--brand--gold--main); margin-bottom: 0.75rem; }
.metric-value { font-family: var(--font-families--unbounded); font-size: 3rem; font-weight: 900; color: var(--brand--gold--main); margin-bottom: 0.35rem; }
.metric-label { font-weight: 700; font-size: 1.05rem; color: var(--gray-tones--superlight); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.35rem; opacity: 0.9; }
.metric-desc { font-size: 0.95rem; color: var(--gray-tones--medium); opacity: 0.85; }

/* Features */
.features-section, .methodology-section { padding: 6rem 0; background: var(--gray-tones--dark-background); }
.section-title {
  font-family: var(--font-families--unbounded); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; text-align: center;
  margin-bottom: 2.4rem; color: var(--gray-tones--off-white);
}
.section-subtitle { font-size: 1.2rem; text-align: center; color: var(--gray-tones--medium); margin-bottom: 2.6rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 2.4rem; }
.feature-card { background: rgba(255, 255, 255, 0.05); border-radius: 16px; padding: 2.2rem; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.25s ease; }
.feature-card:hover { transform: translateY(-3px); border-color: rgba(212, 165, 116, 0.3); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.22); }
.feature-card.feature-gold { border-color: rgba(212, 165, 116, 0.3); background: linear-gradient(135deg, rgba(212, 165, 116, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%); }
.feature-card.feature-silver { border-color: rgba(165, 178, 189, 0.3); background: linear-gradient(135deg, rgba(165, 178, 189, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%); }
.feature-card.feature-emerald { border-color: rgba(64, 225, 176, 0.3); background: linear-gradient(135deg, rgba(64, 225, 176, 0.10) 0%, rgba(255, 255, 255, 0.04) 100%); }
.feature-icon { font-size: 3rem; color: var(--brand--gold--main); margin-bottom: 1.15rem; }
.feature-card h3 { font-family: var(--font-families--unbounded); font-size: 1.5rem; font-weight: 800; color: var(--gray-tones--off-white); margin-bottom: 0.8rem; }
.feature-card p { color: var(--gray-tones--medium); line-height: 1.65; }

/* Pricing */
.pricing-section { padding: 6rem 0; background: var(--gray-tones--light-background); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2.4rem; }
.pricing-card {
  background: var(--gray-tones--card-background); border-radius: 16px; padding: 2.2rem; text-align: center;
  border: 2px solid rgba(212, 165, 116, 0.22); position: relative; transition: all 0.25s ease;
}
.pricing-card:hover { transform: translateY(-3px); border-color: var(--brand--gold--main); box-shadow: 0 16px 44px rgba(0,0,0,0.2); }
.pricing-card.popular { border-color: var(--brand--gold--main); background: linear-gradient(135deg, rgba(212,165,116,0.12) 0%, var(--gray-tones--card-background) 100%); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--brand--gold--main); color: var(--gray-tones--darkest); padding: 0.5rem 1.5rem;
  border-radius: 20px; font-size: 0.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.6px;
}
.plan-name { font-family: var(--font-families--unbounded); font-size: 1.5rem; font-weight: 800; color: var(--gray-tones--off-white); margin-bottom: 0.8rem; }
.plan-price { font-family: var(--font-families--unbounded); font-size: 3rem; font-weight: 900; color: var(--brand--gold--main); margin-bottom: 0.4rem; }
.plan-desc { color: var(--gray-tones--medium); margin-bottom: 1.6rem; }
.plan-features { list-style: none; padding: 0; margin: 1.6rem 0; text-align: left; }
.plan-features li { padding: 0.5rem 0; color: var(--gray-tones--superlight); position: relative; padding-left: 1.5rem; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--brand--emerald--main); font-weight: 900; }

/* FAQ */
.faq-section { padding: 6rem 0; background: var(--gray-tones--dark-background); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 2rem; margin-top: 2.4rem; }
.faq-item { background: rgba(255, 255, 255, 0.05); border-radius: 12px; padding: 2rem; border: 1px solid rgba(255, 255, 255, 0.1); }
.faq-item h4 { font-family: var(--font-families--unbounded); font-size: 1.2rem; font-weight: 800; color: var(--brand--gold--main); margin-bottom: 0.8rem; }
.faq-item p { color: var(--gray-tones--medium); line-height: 1.65; }

/* Story / Infrastructure */
.story-section { padding: 6rem 0; background: var(--gray-tones--dark-background); }
.story-content { max-width: 800px; margin: 0 auto; text-align: center; }
.story-icon { font-size: 4rem; color: var(--brand--gold--main); margin-bottom: 2rem; }
.story-content h2 { font-family: var(--font-families--unbounded); font-size: 2.5rem; font-weight: 800; color: var(--gray-tones--off-white); margin-bottom: 1.8rem; }
.story-text p { font-size: 1.15rem; line-height: 1.8; color: var(--gray-tones--medium); margin-bottom: 1.2rem; }
.data-infrastructure { background: rgba(255,255,255,0.05); border-radius: 16px; padding: 2.2rem; margin-top: 2.2rem; text-align: center; border: 1px solid rgba(212,165,116,0.24); }
.infrastructure-icon { font-size: 3rem; color: var(--brand--gold--main); margin-bottom: 1.2rem; }
.data-infrastructure h3 { font-family: var(--font-families--unbounded); font-size: 1.8rem; font-weight: 800; color: var(--gray-tones--off-white); margin-bottom: 0.8rem; }
.data-infrastructure p { font-size: 1.05rem; line-height: 1.7; color: var(--gray-tones--medium); }

/* CTAs */
.cta-section, .final-cta-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--gray-tones--dark-blue) 0%, #2a4d7a 100%);
  position: relative; overflow: hidden;
  width: 100%;
}
.cta-content, .final-cta-content { 
  text-align: center; 
  max-width: 700px; 
  margin: 0 auto; 
  position: relative; 
  z-index: 1; 
  padding: 0 16px;
}
.cta-icon, .cta-icon-large { font-size: 4rem; color: var(--brand--gold--main); margin-bottom: 2rem; filter: drop-shadow(0 0 14px rgba(212,165,116,0.4)); }
.cta-icon-large { font-size: 5rem; }
.cta-content h2, .final-cta-content h2 {
  font-family: var(--font-families--unbounded); font-size: 2.4rem; font-weight: 900; color: var(--gray-tones--off-white); margin-bottom: 1.2rem;
}
.cta-content p, .final-cta-content p { font-size: 1.15rem; line-height: 1.65; color: var(--gray-tones--off-white); opacity: 0.9; margin-bottom: 2rem; }
.disclaimer, .legal-disclaimer { font-size: 0.9rem; opacity: 0.85; margin-top: 1.1rem; color: var(--gray-tones--medium); }

/* How it works */
.how-it-works-section { padding: 6rem 0; background: var(--mantine-color-neutral-9); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 2.4rem; }
.step-card { text-align: center; padding: 2rem; }
.step-icon { font-size: 4rem; color: var(--brand--gold--main); margin-bottom: 1.2rem; filter: drop-shadow(0 0 14px rgba(212,165,116,0.3)); }
.step-card h3 { font-family: var(--font-families--unbounded); font-size: 1.5rem; font-weight: 800; color: var(--gray-tones--off-white); margin-bottom: 0.8rem; }
.step-card p { color: var(--gray-tones--medium); line-height: 1.65; }

.offer-box {
  background: rgba(255,255,255,0.05); border: 2px solid rgba(212,165,116,0.3); border-radius: 16px; padding: 2.2rem; margin: 2rem auto; max-width: 640px;
}
.offer-items { display: flex; align-items: center; justify-content: center; gap: 2rem; margin-bottom: 1.6rem; flex-wrap: wrap; }
.offer-item { text-align: center; }
.offer-item strong { display: block; font-weight: 900; font-size: 1.1rem; color: var(--gray-tones--off-white); margin-bottom: 0.4rem; }
.offer-item span { font-size: 0.95rem; color: var(--gray-tones--medium); }
.offer-plus { font-size: 2rem; font-weight: 900; color: var(--brand--gold--main); }
.offer-features { display: flex; justify-content: center; gap: 1.4rem; margin-top: 1.2rem; flex-wrap: wrap; }
.offer-features span { display: flex; align-items: center; gap: 0.5rem; font-size: 0.95rem; color: var(--gray-tones--off-white); }
.offer-features i { color: var(--brand--emerald--main); }

/* Accessibility Utilities */
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important; width: 1px; word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #f1f1f1; border-radius: 4px; box-shadow: 0 0 2px 2px rgba(0,0,0,0.6); clip: auto !important; clip-path: none; color: #0b264d; display: block; font-size: 0.95rem; font-weight: 800; height: auto; left: 8px; line-height: normal; padding: 14px 22px; text-decoration: none; top: 8px; width: auto; z-index: 100000;
}

/* WordPress alignment */
.alignleft { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin: 0 auto 1rem; }
.alignwide { margin-left: auto; margin-right: auto; width: 100%; }
.alignfull { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); width: 100vw; }

/* Post navigation */
.post-navigation, .posts-navigation { margin: 3rem 0; }
.nav-links { display: flex; justify-content: space-between; gap: 1rem; }
.nav-previous, .nav-next { flex: 1; }
.nav-previous a, .nav-next a {
  display: block; padding: 1.4rem; background: linear-gradient(135deg, var(--gray-tones--dark-background) 0%, var(--gray-tones--darker) 100%);
  border: 1px solid rgba(212, 165, 116, 0.22); border-radius: 12px; color: var(--brand--gold--main);
  text-decoration: none; transition: all 0.25s ease; text-align: center;
}
.nav-previous a:hover, .nav-next a:hover {
  background: var(--gradient--gold); color: var(--gray-tones--darkest); transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

/* Animations and Micro-interactions */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { 
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.slide-up { 
  animation: slideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(212, 165, 116, 0.3); }
  50% { box-shadow: 0 0 30px rgba(212, 165, 116, 0.6); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* Enhanced Card Hover Effects */
.performance-card, .feature-card, .result-card, .methodology-card {
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-card:hover, .feature-card:hover, .result-card:hover, .methodology-card:hover {
  transform: translateY(-12px) rotateX(5deg);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.3),
    0 12px 24px rgba(212, 165, 116, 0.2);
}

/* Button Hover Enhancements */
.btn-create-account, .btn-premium, .btn-premium-large, .cta-button, .btn-claim {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.btn-create-account::before, .btn-premium::before, .btn-premium-large::before, .cta-button::before, .btn-claim::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn-create-account:hover::before, .btn-premium:hover::before, .btn-premium-large:hover::before, .cta-button:hover::before, .btn-claim:hover::before {
  left: 100%;
}

/* Enhanced Icon Animations */
.feature-icon, .metric-icon, .step-icon, .cta-icon, .result-icon {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(212, 165, 116, 0.3));
}

.performance-card:hover .card-icon, .feature-card:hover .feature-icon, .result-card:hover .result-icon {
  transform: translateY(-4px) scale(1.1);
  animation: pulse 2s infinite;
  filter: drop-shadow(0 0 15px currentColor) drop-shadow(0 0 30px rgba(212, 165, 116, 0.5));
}

/* Pricing Card Special Effects */
.pricing-card.premium-card {
  position: relative;
  overflow: hidden;
}

.pricing-card.premium-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(212, 165, 116, 0.1) 50%, transparent 70%);
  animation: shine 3s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Loading States */
.roi-chart-placeholder {
  position: relative;
}

/* Loading spinner removed */

/* Enhanced Mobile Interactions */
@media (hover: hover) {
  .nav-link:hover, .footer-link:hover {
    transform: translateX(4px);
  }
}

/* Touch device optimizations */
@media (hover: none) {
  .performance-card:active, .feature-card:active, .result-card:active {
    transform: scale(0.98);
  }
  
  .btn-create-account:active, .btn-premium:active, .cta-button:active {
    transform: scale(0.95);
  }
}

/* Parallax Effects */
.hero-video-bg {
  transform: translate3d(-50%, -50%, 0);
  transition: transform 0.1s ease-out;
}

/* Scroll-triggered animations */
.performance-card, .feature-card, .pricing-card, .result-card, .step-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.performance-card.fade-in, .feature-card.fade-in, .pricing-card.fade-in, .result-card.fade-in, .step-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.performance-card:nth-child(1) { transition-delay: 0.1s; }
.performance-card:nth-child(2) { transition-delay: 0.2s; }
.performance-card:nth-child(3) { transition-delay: 0.3s; }

.feature-card:nth-child(1) { transition-delay: 0.1s; }
.feature-card:nth-child(2) { transition-delay: 0.2s; }
.feature-card:nth-child(3) { transition-delay: 0.3s; }

.pricing-card:nth-child(1) { transition-delay: 0.1s; }
.pricing-card:nth-child(2) { transition-delay: 0.2s; }
.pricing-card:nth-child(3) { transition-delay: 0.3s; }

/* Enhanced Focus States */
.nav-link:focus-visible, .btn-login:focus-visible, .btn-signup:focus-visible,
.btn-create-account:focus-visible, .btn-premium:focus-visible, .cta-button:focus-visible {
  outline: 3px solid rgba(212,165,116,0.6);
  outline-offset: 2px;
  border-radius: 8px;
}

/* Video Loading Placeholder */
.hero-video-bg[style*="display: none"] + .hero-overlay {
  background-image: url('assets/images/racing-hero-static.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.6;
}

::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--gray-tones--darker); border-radius: 6px; }
::-webkit-scrollbar-thumb { background: var(--brand--gold--main); border-radius: 6px; transition: background 0.3s ease; }
::-webkit-scrollbar-thumb:hover { background: var(--brand--gold--light); }

/* Selection color */
::selection { background-color: var(--brand--gold--main); color: var(--gray-tones--darkest); }
::-moz-selection { background-color: var(--brand--gold--main); color: var(--gray-tones--darkest); }

/* Additional Sections */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 40px;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 30px;
}

.process-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.process-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(212, 165, 116, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand--emerald--main);
  font-size: 20px;
}

.process-content {
  flex: 1;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-tones--off-white);
}

.roi-chart-placeholder {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
}

.chart-loading {
  color: var(--gray-tones--medium);
  font-size: 18px;
}

/* FAQ Container */
.faq-container {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(212, 165, 116, 0.3);
}

.faq-question {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 18px;
  color: var(--gray-tones--off-white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--brand--gold--main);
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--brand--gold--main);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--gray-tones--medium);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 500px;
}

/* Final CTA Section */
.final-cta-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(45deg, var(--mantine-color-primaryBlue-7) 0%, var(--mantine-color-primaryBlue-5) 100%);
  overflow: hidden;
  width: 100%;
}

.cta-bg-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/images/racing-cta-static.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.cta-title {
  font-family: var(--font-families--unbounded);
  font-size: 48px;
  font-weight: 800;
  color: var(--gray-tones--off-white);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 20px;
  color: var(--gray-tones--medium);
  opacity: 1;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: var(--gradient--gold);
  color: var(--gray-tones--darkest);
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 26px rgba(212,165,116,0.35);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(212,165,116,0.45);
}

.cta-disclaimer {
  margin-top: 24px;
  color: white;
  opacity: 0.7;
  font-size: 14px;
}

/* Light Background Sections */
.light-bg {
  background: var(--gray-tones--superlight) !important;
}

.light-bg .section-title {
  color: var(--gray-tones--darkest);
}

.light-bg .section-subtitle {
  color: var(--gray-tones--scorpion);
}

.light-bg .card-title,
.light-bg .feature-title {
  color: var(--gray-tones--darkest);
}

.light-bg .card-description,
.light-bg .feature-description {
  color: var(--gray-tones--scorpion);
}

/* Light background result cards */
.light-bg .result-card {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.light-bg .result-card:hover {
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--brand--gold--main);
}

.light-bg .result-value {
  color: var(--brand--gold--main);
}

.light-bg .result-label {
  color: var(--gray-tones--darkest);
}

.light-bg .result-desc {
  color: var(--gray-tones--scorpion);
}

/* About Page Styles */
.hero-section-about {
  position: relative;
  min-height: 80vh;
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: linear-gradient(45deg, var(--mantine-color-primaryBlue-7) 0%, var(--mantine-color-primaryBlue-5) 100%);
  width: 100%;
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.methodology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.methodology-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.methodology-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 165, 116, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.methodology-card h3 {
  font-family: var(--font-families--unbounded);
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 15px 0;
}

.methodology-card p {
  color: var(--gray-tones--medium);
  line-height: 1.6;
  font-size: 15px;
}

.method-icon {
  font-size: 36px;
  margin-bottom: 15px;
}

.cta-section-about {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(45deg, var(--mantine-color-primaryBlue-7) 0%, var(--mantine-color-primaryBlue-5) 100%);
  overflow: hidden;
  width: 100%;
}

/* Social Landing Page Styles */
.hero-section-social {
  position: relative;
  min-height: 100vh;
  padding: 120px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--mantine-color-neutral-9);
  width: 100%;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #D4A574 0%, #FFD700 50%, #D4A574 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 12px rgba(212, 165, 116, 0.8), 0 0 20px rgba(255, 215, 0, 0.35);
}

.btn-premium-large {
  display: inline-block;
  background: var(--gradient--gold);
  color: var(--gray-tones--darkest);
  padding: 20px 40px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 26px rgba(212,165,116,0.35);
  margin: 30px 0;
}

.btn-premium-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(212,165,116,0.45);
}

.hero-disclaimer {
  font-size: 14px;
  opacity: 0.75;
  margin-top: 20px;
  color: white;
}

/* Results Section */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.result-card {
  background: var(--gray-tones--card-background);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 165, 116, 0.3);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25);
}

.result-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.result-icon.emerald-icon {
  color: var(--brand--emerald--main);
}

.result-icon.gold-icon {
  color: var(--brand--gold--main);
}

.result-icon.blue-icon {
  color: var(--mantine-color-primaryBlue-5);
}

.result-value {
  font-family: var(--font-families--unbounded);
  font-size: 48px;
  font-weight: 900;
  color: var(--brand--gold--main);
  margin-bottom: 10px;
}

.result-label {
  font-weight: 700;
  font-size: 18px;
  color: var(--gray-tones--off-white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.result-desc {
  font-size: 14px;
  color: var(--gray-tones--medium);
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 36px;
  position: relative;
  transition: all 0.3s ease;
}

.blue-emerald-gradient {
  background: linear-gradient(135deg, var(--mantine-color-primaryBlue-5) 0%, var(--brand--emerald--main) 100%);
}

.emerald-gold-gradient {
  background: linear-gradient(135deg, var(--brand--emerald--main) 0%, var(--brand--gold--main) 100%);
}

.gold-blue-gradient {
  background: linear-gradient(135deg, var(--brand--gold--main) 0%, var(--mantine-color-primaryBlue-5) 100%);
}

.step-card h3 {
  font-family: var(--font-families--unbounded);
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-tones--off-white);
  margin-bottom: 15px;
}

.step-card p {
  color: var(--gray-tones--medium);
  font-size: 16px;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta-section-social {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(45deg, var(--mantine-color-primaryBlue-7) 0%, var(--mantine-color-primaryBlue-5) 100%);
  overflow: hidden;
  width: 100%;
}

.final-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0 16px;
}

.cta-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
  pointer-events: none;
}

.btn-claim {
  display: inline-block;
  background: var(--gradient--gold);
  color: var(--gray-tones--darkest);
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 12px 26px rgba(212,165,116,0.35);
  margin: 20px 0;
  width: 100%;
  display: block;
}

.btn-claim:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(212,165,116,0.45);
}

.legal-disclaimer {
  font-size: 12px;
  color: white;
  opacity: 0.7;
  margin-top: 30px;
}

/* Privacy Page Styles */
.privacy-hero {
  background: var(--mantine-color-neutral-9);
  padding: 120px 0 80px;
  text-align: center;
}

.privacy-hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.privacy-icon {
  font-size: 72px;
  color: var(--brand--gold--main);
  margin-bottom: 30px;
  filter: drop-shadow(0 0 20px rgba(212, 165, 116, 0.4));
}

.privacy-badge {
  display: inline-block;
  background: rgba(212, 165, 116, 0.1);
  color: var(--brand--gold--main);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 165, 116, 0.2);
}

.privacy-hero h1 {
  font-family: var(--font-families--unbounded);
  font-size: 48px;
  font-weight: 900;
  color: var(--gray-tones--off-white);
  margin-bottom: 15px;
}

.privacy-date {
  color: var(--gray-tones--medium);
  font-size: 16px;
}

.privacy-content {
  padding: 80px 0;
}

.privacy-paper {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 60px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.privacy-section {
  margin-bottom: 40px;
}

.privacy-section h2 {
  font-family: var(--font-families--unbounded);
  font-size: 24px;
  font-weight: 700;
  color: var(--gray-tones--darkest);
  margin-bottom: 20px;
  border-bottom: 2px solid var(--brand--gold--main);
  padding-bottom: 10px;
}

.privacy-section p {
  color: var(--gray-tones--scorpion);
  line-height: 1.7;
  margin-bottom: 16px;
}

.privacy-list {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.privacy-list li {
  color: var(--gray-tones--scorpion);
  line-height: 1.7;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.privacy-list li::before {
  content: '•';
  color: var(--brand--gold--main);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.privacy-list li strong {
  color: var(--gray-tones--darkest);
  font-weight: 600;
}

.privacy-footer {
  text-align: center;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.privacy-footer p {
  color: var(--gray-tones--scorpion);
  font-size: 14px;
}

/* MOBILE FIRST RESPONSIVE DESIGN - FIXED */

/* Base mobile styles (320px and up) */
@media (max-width: 767px) {
  .navbar-content {
    height: 64px;
  }

  .logo-img {
    height: 32px;
  }

  .desktop-nav {
    display: none;
  }

  /* Hero Section Mobile */
  .hero-section-exact {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-chart-container {
    display: none;
  }

  .hero-main-title {
    font-size: 28px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 100%;
  }

  .hero-footer {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  /* Section Spacing Mobile */
  .performance-section,
  .features-section,
  .how-it-works-section,
  .pricing-section,
  .faq-section,
  .cta-section,
  .results-section,
  .privacy-hero,
  .privacy-content {
    padding: 60px 0;
  }

  .section-title {
    font-size: 24px;
  }

  /* Privacy Page Mobile */
  .privacy-hero h1 {
    font-size: 32px;
  }

  .privacy-paper {
    margin: 0 16px;
    padding: 40px 24px;
  }

  .privacy-section h2 {
    font-size: 20px;
  }

  /* Grid Layouts Mobile */
  .performance-grid,
  .features-grid,
  .pricing-grid,
  .results-grid,
  .faq-grid,
  .steps-grid,
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  /* How it works mobile fixes */
  .how-it-works-section {
    overflow-x: hidden;
  }

  .how-it-works-content {
    text-align: center !important;
    padding: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }
  
  .how-it-works-content .section-badge {
    margin-bottom: 16px !important;
    display: inline-block !important;
  }
  
  .how-it-works-content .section-title {
    text-align: center !important;
  }
  
  .how-it-works-content .section-subtitle {
    text-align: center !important;
  }
  
  .process-list {
    padding: 0 16px;
    gap: 20px;
  }
  
  .process-item {
    gap: 12px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-bottom: 20px;
  }
  
  .process-icon {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  .process-content {
    font-size: 15px;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* ROI Chart Mobile Fixes */
  .roi-chart-placeholder {
    max-width: 100%;
    padding: 16px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .chart-title {
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .chart-subtitle {
    font-size: 12px;
    margin: 0 0 16px 0;
  }

  .chart-visual {
    width: 100%;
    margin: 16px 0;
    overflow: hidden;
  }

  .roi-line-chart {
    width: 100%;
    height: auto;
    max-width: 100%;
  }

  .chart-metrics {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
  }

  .chart-metric {
    flex: 1;
    min-width: 80px;
    max-width: 120px;
    padding: 8px 12px;
    text-align: center;
    box-sizing: border-box;
  }

  /* Cards Mobile */
  .performance-card,
  .feature-card,
  .pricing-card,
  .result-card,
  .step-card {
    padding: 24px 20px;
  }

  .pricing-card.premium-card {
    transform: scale(1);
  }

  .plan-price {
    font-size: 32px;
  }

  /* Footer Mobile */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .footer-social-links {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .footer-disclaimer {
    text-align: center;
    max-width: none;
  }
}

/* Small Mobile (up to 375px) */
@media (max-width: 375px) {
  .container,
  .navbar-container,
  .footer-container,
  .hero-content-wrapper {
    padding: 0 12px;
  }
  
  .hero-main-title {
    font-size: 24px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .section-title {
    font-size: 22px;
  }
}

/* Tablet Portrait (576px and up) */
@media (min-width: 576px) {
  .container,
  .navbar-container,
  .footer-container,
  .hero-content-wrapper {
    padding: 0 20px;
  }
  
  .hero-main-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
  }
  
  .hero-buttons a {
    width: auto;
    min-width: 200px;
  }
  
  .performance-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  
  .plan-price {
    font-size: 36px;
  }
}

/* Tablet Landscape (768px and up) */
@media (min-width: 768px) {
  .container,
  .navbar-container,
  .footer-container,
  .hero-content-wrapper {
    padding: 0 24px;
  }
  
  .hero-main-title {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .desktop-nav {
    display: flex;
    gap: 20px;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .navbar-content {
    height: 72px;
  }
  
  .logo-img {
    height: 36px;
  }
  
  .performance-grid,
  .features-grid,
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  
  .steps-grid,
  .how-it-works-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    text-align: left;
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .footer-disclaimer {
    text-align: right;
    max-width: 400px;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .container,
  .navbar-container,
  .footer-container,
  .hero-content-wrapper {
    padding: 0 32px;
    max-width: 1200px;
  }
  
  .hero-grid {
    grid-template-columns: 7fr 5fr;
    gap: 50px;
    text-align: left;
  }
  
  .hero-chart-container {
    display: block;
  }
  
  .hero-main-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 20px;
    max-width: 640px;
  }
  
  .hero-buttons {
    justify-content: flex-start;
  }
  
  .hero-footer {
    flex-direction: row;
    text-align: left;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .hero-section-exact {
    padding: 120px 0 80px;
  }
  
  .performance-section,
  .features-section,
  .how-it-works-section,
  .pricing-section,
  .faq-section,
  .cta-section,
  .results-section {
    padding: 80px 0;
  }
  
  .performance-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .results-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
  .container,
  .navbar-container,
  .footer-container,
  .hero-content-wrapper {
    padding: 0 40px;
    max-width: 1400px;
  }
  
  .hero-main-title {
    font-size: 52px;
  }
  
  :root {
    --font-sizes--title-large: 48px;
    --font-sizes--title-medium: 32px;
    --font-sizes--title-small: 24px;
    --font-sizes--body-large: 18px;
    --font-sizes--body-small: 14px;
  }
}

/* Extra Large Desktop (1440px and up) */
@media (min-width: 1440px) {
  .container,
  .navbar-container,
  .footer-container,
  .hero-content-wrapper {
    max-width: 1600px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast support */
@media (prefers-contrast: high) {
  :root {
    --brand--gold--main: #FFD700;
    --brand--emerald--main: #00FF88;
    --gray-tones--off-white: #FFFFFF;
    --gray-tones--dark-blue: #000000;
  }
}
