/* =============================================================
   PerfectPlay.dev — Clean Rebuild CSS
   Fonts: Outfit (headings), Inter (body), Source Code Pro (mono)
   Brand: Crimson #981920 nav/footer, white sections, dark accents
   ============================================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: #1d1e20;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- CSS VARS ---- */
:root {
  --crimson:        #981920;
  --crimson-dark:   #7a1318;
  --crimson-light:  #c42028;
  --white:          #ffffff;
  --off-white:      #f8f8f8;
  --dark:           #1d1e20;
  --gray:           #727586;
  --gray-light:     #f2f3f6;
  --gray-border:    #dadce0;
  --success:        #00b090;
  --warning:        #ffcd35;
  --container:      1240px;
  --radius:         12px;
  --radius-sm:      8px;
  --shadow:         0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:      0 8px 48px rgba(0,0,0,.18);
  --transition:     .22s cubic-bezier(.4,0,.2,1);
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(152, 25, 32, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(122, 19, 24, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-text {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  letter-spacing: .3px;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  text-transform: uppercase;
}
.nav-link:hover, .nav-link.active {
  color: #fff;
  border-bottom-color: rgba(255,255,255,.7);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO SPLIT (NEW)
   ============================================================ */
.hero-split {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 72px;
  background: var(--crimson); /* Red background */
}
.hero-split-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-split-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.access-form-wrap {
  width: 100%;
  max-width: 480px;
  text-align: left;
}
.access-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
}
.access-subtitle {
  font-family: 'Source Code Pro', monospace;
  font-size: 15px;
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
}
.hero-access-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.hero-access-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-access-form .form-label {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-body);
}
.hero-access-form .form-input {
  background: #fff;
  border: none;
  border-radius: 0;
  padding: 16px;
  font-family: 'Source Code Pro', monospace;
  font-size: 14px;
  color: var(--dark);
  width: 100%;
}
.hero-access-form .form-textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-pill {
  background: #000;
  color: #fff;
  border-radius: 50px;
  padding: 16px 48px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  align-self: flex-start;
  margin-top: 8px;
  border: 1px solid rgba(255,255,255,.2);
  transition: transform var(--transition), background var(--transition);
  cursor: pointer;
}
.btn-pill:hover {
  background: #222;
  transform: translateY(-2px);
}
.hero-split-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Align the form wrapper to the right of the column */
}
.hero-giant-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5.5vw, 76px); /* Reduced maximum size to fit without crowding */
  font-weight: 800;
  color: #fff;
  line-height: 1.15; /* Increased line-height for readability */
  letter-spacing: -2px;
  margin-bottom: 24px !important; /* Increased margin bottom to separate from subtitle */
}
.hero-giant-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2.2vw, 26px) !important; /* Balanced size for clean layout */
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.4; /* Increased line-height for readability */
  letter-spacing: -0.5px;
  margin-bottom: 40px !important; /* Increased margin to separate from switch button */
}
.hero-giant-subtitle .text-red {
  color: var(--warning); /* Use yellow for highlight to stand out on red background */
}
.hero-giant-subtitle-decision {
  display: inline;
  text-align: left;
  width: auto;
  color: var(--warning);
}

/* ---- HERO EYEBROW & LAYOUT ---- */
.hero-eyebrow {
  display: inline-block;
  font-family: 'Source Code Pro', monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--warning);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ---- TOGGLE SWITCH BUTTON LINK ---- */
.hero-cta-wrap {
  margin-top: 32px;
}
.switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 12px 28px;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.switch-btn:hover {
  background: rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.switch-label {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}
.switch-track {
  width: 44px;
  height: 24px;
  background: var(--success); /* Green for ON */
  border-radius: 100px;
  position: relative;
  display: inline-block;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
  transition: background var(--transition);
}
.switch-thumb {
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 23px; /* Toggled to the right (ON) */
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: transform var(--transition), left var(--transition);
}
.switch-btn:hover .switch-thumb {
  transform: scale(1.05);
}

/* ---- IMMERSIVE LIVE ANALYTICS CARD ---- */
.hero-analytics-card {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 440px;
  font-family: 'Source Code Pro', monospace;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.hero-analytics-card:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(255, 255, 255, 0.2);
}
.analytics-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.analytics-status {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.status-dot {
  width: 6px;
  height: 6px;
  background-color: var(--success);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px var(--success);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}
.analytics-system-tag {
  font-size: 10px;
  color: var(--warning);
  border: 1px solid rgba(255, 205, 53, 0.25);
  border-radius: 4px;
  padding: 2px 8px;
  letter-spacing: 0.5px;
}
.analytics-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.analytics-metric-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.metric-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}
.metric-val {
  font-size: 20px;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
}
.text-warning {
  color: var(--warning);
}
.text-success {
  color: var(--success);
}

/* ---- CARDS SEEN MOCK INPUT ---- */
.analytics-cards-seen-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
  margin-bottom: 20px;
}
.mock-input-field {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-family: 'Source Code Pro', monospace;
  font-size: 13px;
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.mock-input-text {
  font-weight: 400;
  letter-spacing: 1.5px;
}
.mock-input-cursor {
  font-weight: 700;
  color: var(--crimson);
  animation: blink 1s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* ---- DEALT CARD DISTRIBUTION ---- */
.analytics-distribution-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 14px;
}
.distribution-bars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.dist-bar-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dist-label-row {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
}
.dist-cat {
  font-weight: 400;
}
.dist-val {
  color: rgba(255, 255, 255, 0.6);
}
.dist-progress {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  overflow: hidden;
}
.dist-fill {
  height: 100%;
  border-radius: 3px;
}
.bg-success {
  background-color: var(--success);
}
.bg-warning {
  background-color: var(--warning);
}
.bg-danger {
  background-color: var(--crimson-light);
}
.text-danger {
  color: var(--crimson-light);
}

@media (max-width: 900px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
    padding: 40px 20px;
  }
  .hero-split-left {
    justify-content: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .hero-cta-wrap {
    margin: 0 auto;
  }
  .hero-split-right {
    align-items: center;
    justify-content: center;
  }
  .hero-analytics-card {
    margin: 0 auto;
  }
}


/* ============================================================
   BUTTONS
   ============================================================ */
:root {
  --font-body: 'Source Code Pro', monospace;
  --font-heading: 'Outfit', sans-serif;
  --font-mono: 'Source Code Pro', monospace;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  letter-spacing: .3px;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: #fff;
  color: var(--crimson);
  border-color: #fff;
}
.btn-primary:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.3);
}
.btn-crimson {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson);
}
.btn-crimson:hover {
  background: var(--crimson-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(152,25,32,.35);
}
.btn-full { width: 100%; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section-light { background: var(--off-white); }
.section-white { background: #fff; }
.section-crimson { background: var(--crimson); }
.section-crimson-bg-img {
  background:
    linear-gradient(135deg, rgba(122,19,24,.94) 0%, rgba(20,10,10,.88) 100%),
    url('https://assets.zyrosite.com/Yg2j8Mpyq1I6w8nE/pexels-pixabay-158826-d954NLWzBkhx4ELe.jpg')
    center/cover fixed;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header-light { color: #fff; }
.section-header-light p { color: rgba(255,255,255,.75); }
.section-label {
  display: inline-block;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}
.label-light { color: rgba(255,255,255,.7); }
.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--dark);
}
.section-header-light h2 { color: #fff; }
.section-header p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================================
   TOOLS GRID
   ============================================================ */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) {
  .tools-grid { grid-template-columns: 1fr; }
}
.tool-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 1.5px solid var(--gray-border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.tool-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.tool-card:hover {
  border-color: var(--crimson);
  box-shadow: 0 12px 40px rgba(152,25,32,.12);
  transform: translateY(-4px);
}
.tool-card:hover::before { transform: scaleX(1); }
.tool-card-icon {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--crimson);
  line-height: 1;
}
.tool-tag {
  display: inline-block;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  font-weight: 400;
  color: var(--crimson);
  background: rgba(152,25,32,.08);
  border-radius: 4px;
  padding: 3px 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.tool-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.tool-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}
.tool-card-stats {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}
.stat { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.stat-val {
  font-family: 'Source Code Pro', monospace;
  font-size: 20px;
  font-weight: 400;
  color: var(--crimson);
}
.stat-label {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: .3px;
}
.tool-card-cta {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: .3px;
  transition: gap var(--transition);
}
.tool-card:hover .tool-card-cta { letter-spacing: .8px; }

.tool-card-featured {
  background: var(--crimson);
  color: #fff;
  border-color: var(--crimson-dark);
}
.tool-card-featured .tool-card-icon { color: #fff; }
.tool-card-featured .tool-tag {
  color: #fff;
  background: rgba(255,255,255,.2);
}
.tool-card-featured .tool-card-title,
.tool-card-featured .tool-card-desc,
.tool-card-featured .stat-val,
.tool-card-featured .stat-label,
.tool-card-featured .tool-card-cta {
  color: #fff;
}
.tool-card-featured:hover {
  box-shadow: 0 12px 40px rgba(152,25,32,.3);
}
.tool-card-featured::before {
  background: #fff;
}

/* ============================================================
   TWO-COL LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col-text .section-label { display: block; }
.two-col-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.15;
}
.two-col-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--dark);
}
.feature-icon {
  width: 22px;
  height: 22px;
  background: rgba(152,25,32,.1);
  color: var(--crimson);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- BET RAMP DEMO ---- */
.bet-ramp-demo {
  background: var(--dark);
  border-radius: 16px;
  padding: 32px;
  font-family: 'Source Code Pro', monospace;
}
.bet-ramp-title {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.ramp-rows { display: flex; flex-direction: column; gap: 8px; }
.ramp-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: background var(--transition);
}
.ramp-row:hover { background: rgba(255,255,255,.07); }
.ramp-tc { color: rgba(255,255,255,.6); font-size: 14px; }
.ramp-bet {
  font-size: 14px;
  font-weight: 400;
  border-radius: 4px;
  padding: 3px 10px;
}
.ramp-min  { color: rgba(255,255,255,.4); background: rgba(255,255,255,.06); }
.ramp-low  { color: #ffcd35; background: rgba(255,205,53,.1); }
.ramp-med  { color: #fea419; background: rgba(254,164,25,.1); }
.ramp-high { color: #fc5185; background: rgba(252,81,133,.1); }
.ramp-max  { color: #00b090; background: rgba(0,176,144,.12); }
.bet-ramp-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255,255,255,.35);
  text-align: center;
  letter-spacing: .5px;
}

/* ---- SLIDER DEMO ---- */
.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 16px;
  background: var(--dark);
}
.slider-track {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  animation: fadeSlide 10s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide:nth-child(1) {
  animation-delay: 0s;
}
.slide:nth-child(2) {
  animation-delay: -5s;
}
@keyframes fadeSlide {
  0%, 100% { opacity: 1; }
  45% { opacity: 1; }
  50% { opacity: 0; }
  95% { opacity: 0; }
}
.slider-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: #fff;
  font-size: 14px;
}

/* ============================================================
   FULL COMPOSITION PAGE
   ============================================================ */
.page-full-comp {
  background-color: var(--crimson-dark);
  color: #fff;
}

.fc-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.fc-card {
  position: relative;
  background: rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.fc-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.25);
  background-color: rgba(0, 0, 0, 0.25);
}

.fc-split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .fc-split-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.fc-card-content {
  position: relative;
  z-index: 2;
}

.fc-card-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--crimson-light);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.fc-card-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.fc-card-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .fc-card { padding: 32px; }
  .fc-card-title { font-size: 24px; }
}

/* ============================================================
   SIDE BETS
   ============================================================ */
.sidebet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.sidebet-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
  transition: all var(--transition);
}
.sidebet-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.sidebet-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.sidebet-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.sidebet-card p {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  line-height: 1.6;
  margin-bottom: 16px;
}
.sidebet-ev {
  display: inline-block;
  font-family: 'Source Code Pro', monospace;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 12px;
}
.ev-positive { background: rgba(0,176,144,.2); color: #00b090; }
.ev-neutral  { background: rgba(255,205,53,.15); color: #ffcd35; }

/* ============================================================
   STEPS
   ============================================================ */
.steps-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.step-card {
  flex: 1;
  text-align: center;
  padding: 32px 24px;
  background: var(--gray-light);
  border-radius: 14px;
  position: relative;
}
.step-connector {
  width: 60px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
}
.step-connector::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gray-border);
}
.step-number {
  font-family: 'Source Code Pro', monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--crimson);
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: block;
}
.step-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.65;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.form-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.15;
}
.text-white { color: #fff; }
.text-white-70 { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.65; margin-bottom: 28px; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info li {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  font-family: 'Source Code Pro', monospace;
  letter-spacing: .3px;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
  font-family: 'Source Code Pro', monospace;
  letter-spacing: .5px;
}
.form-input {
  background: #ffffff;
  border: none;
  border-radius: 8px !important;
  padding: 16px;
  font-family: 'Source Code Pro', monospace;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  outline: none;
  width: 100%;
  transition: opacity var(--transition);
}
.form-input::placeholder {
  color: #a0a0a0;
  font-family: 'Source Code Pro', monospace;
  font-weight: 400;
}
.form-input:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,.2);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .btn-submit {
  background: #ffffff !important;
  color: #1d1e20 !important;
  border: none;
  border-radius: 8px !important;
  padding: 16px;
  font-family: 'Source Code Pro', monospace;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  transition: background var(--transition), color var(--transition);
}
.contact-form .btn-submit:hover {
  background: #f2f3f6 !important;
  color: #000000 !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--crimson);
  color: rgba(255,255,255,.8);
  font-family: var(--font-body);
  font-weight: 400; /* Regular weight, not bold */
}
.footer-inner {
  padding: 64px 24px 48px;
  display: flex;
  gap: 64px;
  align-items: flex-start;
}
.footer-brand {
  flex: 1;
  max-width: 280px;
}
.footer-brand .logo-text { color: #fff; font-size: 20px; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; font-weight: 400; }
.footer-nav { display: flex; gap: 64px; }
.footer-nav-col h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-nav-col a {
  font-size: 14px;
  color: rgba(255,255,255,.75);
  font-weight: 400;
  transition: color var(--transition);
}
.footer-nav-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.footer-disclaimer { font-size: 12px !important; font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .form-layout { grid-template-columns: 1fr; gap: 48px; }
  .steps-row { flex-direction: column; }
  .step-connector { display: none; }
  .footer-inner { flex-direction: column; gap: 40px; }
  .footer-nav { flex-direction: column; gap: 32px; }
}
@media (max-width: 700px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(120,18,24,.97);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .nav-links.open { display: flex; }
  .nav-link { font-size: 16px; padding: 12px 8px; border-bottom: 1px solid rgba(255,255,255,.07); width: 100%; }
  .hamburger { display: flex; }
  .hero-title { letter-spacing: -1.5px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .tools-grid { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .footer-inner { padding: 48px 24px 32px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
  animation: fadeInUp .6s cubic-bezier(.4,0,.2,1) both;
}
[data-delay="1"] { animation-delay: .1s; }
[data-delay="2"] { animation-delay: .2s; }
[data-delay="3"] { animation-delay: .3s; }

/* ============================================================
   NAV DROPDOWN
   ============================================================ */
.nav-dropdown-wrap {
  position: relative;
  display: inline-block;
}
.more-btn {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  transition: color var(--transition);
}
.more-btn:hover {
  color: #fff;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: #1d1e20;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 180px;
  display: none;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  margin-top: 8px;
}
.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: transparent;
  z-index: -1;
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 16px;
  width: 12px;
  height: 12px;
  background: #1d1e20;
  transform: rotate(45deg);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.dropdown-menu li {
  width: 100%;
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-family: var(--font-body);
  transition: background var(--transition), color var(--transition);
  text-align: left;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}
.nav-dropdown-wrap:hover .dropdown-menu {
  display: flex;
}

@media (max-width: 700px) {
  .dropdown-menu {
    position: static;
    background: rgba(0, 0, 0, 0.25);
    border: none;
    box-shadow: none;
    margin-top: 4px;
    padding: 4px 0;
    width: 100%;
    display: none;
  }
  .dropdown-menu::before {
    display: none;
  }
  .nav-dropdown-wrap:hover .dropdown-menu {
    display: flex;
  }
  .dropdown-menu a {
    padding: 12px 24px;
    font-size: 14px;
  }
}
