/* ============================================================
   BrappZone — core stylesheet
   Loaded on every page. Contains the design tokens, base type,
   chrome (ticker / nav / footer / modal / back-to-top) and the
   home-page section styles that the interior pages reuse.

   Interior-page-only components live in pages.css.
   ============================================================ */

:root {
  --ink: #0B1729;
  --ink-2: #0F1D34;
  --ink-3: #17284A;
  --paper: #F4EFE4;
  --paper-2: #ECE5D4;
  --orange: #FF5A1F;
  --orange-2: #FF7A3C;
  --steel: #6A7A91;
  --line: rgba(11, 23, 41, 0.12);
  --line-dark: rgba(244, 239, 228, 0.14);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Archivo', sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
/* Grain texture overlay */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 700px) { .container { padding: 0 20px; } }

/* Offset for sticky nav when jumping via anchor */
section[id], header[id] { scroll-margin-top: 80px; }

/* ========== TOP BAR ========== */
.topbar {
  background: var(--ink);
  color: var(--paper);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-dark);
}
.ticker {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: slide 45s linear infinite;
}
.ticker span { opacity: 0.75; }
.ticker .dot { color: var(--orange); opacity: 1; }
@keyframes slide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========== NAV ========== */
nav.primary {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  backdrop-filter: blur(8px);
  background: rgba(244, 239, 228, 0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.logo img {
  height: 56px;
  width: auto;
  display: block;
}
@media (max-width: 1320px) {
  .logo img { height: 48px; }
}
@media (max-width: 600px) {
  .logo img { height: 40px; }
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { opacity: 1; color: var(--orange); }
/* Active-section indicator */
.nav-links a:not(.nav-cta).active {
  opacity: 1;
  color: var(--orange);
}
.nav-links a:not(.nav-cta).active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--orange);
}
.nav-cta {
  background: var(--ink);
  color: var(--paper) !important;
  padding: 10px 18px !important;
  border-radius: 6px;
  font-family: 'Archivo', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
  opacity: 1 !important;
  transition: background 0.18s ease, box-shadow 0.18s ease !important;
}
.nav-cta:hover {
  background: #05101f;
  color: var(--paper) !important;
  box-shadow: 0 4px 12px rgba(11,23,41,0.2);
}
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--ink);
  cursor: pointer;
  position: relative;
  padding: 0;
}
.hamburger span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s, top 0.25s;
}
.hamburger span:nth-child(1) { top: 13px; }
.hamburger span:nth-child(2) { top: 19px; }
.hamburger span:nth-child(3) { top: 25px; }
.hamburger.open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 1200px) {
  .hamburger { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 8px 0;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 18px 40px;
    border-top: 1px solid var(--line);
    font-size: 15px;
  }
  .nav-links a:first-child { border-top: 0; }
  .nav-links a:not(.nav-cta).active::after { display: none; }
  .nav-links a:not(.nav-cta).active { background: rgba(255, 90, 31, 0.08); }
  .nav-cta { margin: 8px 20px; text-align: center; }
  @media (max-width: 500px) { .container { padding: 0 20px; } }
}

/* ========== HERO ========== */
.hero {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.hero-video,
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.45;
  filter: saturate(0.85) contrast(1.05);
}
/* The parts-counter still is busier than the video it replaced and its
   subject sits centre-left, so it is anchored there and lifted slightly
   so the headline reads against the darker upper half. */
.hero-media {
  object-position: 42% 55%;
  opacity: 0.92;
  filter: saturate(0.95) contrast(1.02);
}
@media (max-width: 800px) {
  .hero-media { object-position: 46% 55%; }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg,
      rgba(11,23,41,0.90) 0%,
      rgba(11,23,41,0.78) 30%,
      rgba(11,23,41,0.42) 58%,
      rgba(11,23,41,0.18) 82%,
      rgba(11,23,41,0.10) 100%),
    linear-gradient(180deg, rgba(11,23,41,0.30) 0%, rgba(11,23,41,0) 35%, rgba(11,23,41,0.34) 100%);
  pointer-events: none;
}
/* Narrow screens put the copy over the middle of the frame, so the
   shading has to run top-to-bottom rather than left-to-right. */
@media (max-width: 800px) {
  .hero-scrim {
    background:
      linear-gradient(180deg, rgba(11,23,41,0.80) 0%, rgba(11,23,41,0.72) 45%, rgba(11,23,41,0.60) 75%, rgba(11,23,41,0.72) 100%);
  }
}
.hero-inner { position: relative; z-index: 3; }
.hero-meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-meta::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--orange);
}
.hero h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(38px, 7.2vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
  text-transform: uppercase;
}
.hero h1 .line { display: block; }
.hero h1 .outline {
  -webkit-text-stroke: 2px var(--paper);
  color: transparent;
  font-style: italic;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(18px, 1.6vw, 22px);
  max-width: 640px;
  opacity: 0.78;
  margin-bottom: 48px;
  line-height: 1.45;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-transform: none;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08), 0 6px 14px rgba(255,90,31,0.22);
}
.btn-primary:hover {
  background: #e64a0f;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1), 0 10px 22px rgba(255,90,31,0.32);
}
.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid rgba(244, 239, 228, 0.3);
}
.btn-ghost:hover {
  background: rgba(244, 239, 228, 0.08);
  border-color: rgba(244, 239, 228, 0.6);
}
.btn .arrow { display: inline-block; transition: transform 0.18s ease; }
.btn:hover .arrow { transform: translateX(3px); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 90px;
  border-top: 1px solid var(--line-dark);
}
.hstat {
  padding: 32px 24px 0;
  border-right: 1px solid var(--line-dark);
}
.hstat:last-child { border-right: 0; }
.hstat .n {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--paper);
  margin-bottom: 12px;
}
.hstat .l {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hstat { border-right: 0; border-bottom: 1px solid var(--line-dark); padding: 24px 0; }
}

/* ========== SECTION FRAME ========== */
section.block { padding: 120px 0; position: relative; }
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.sec-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.sec-num::after {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--orange);
}
.sec-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 900px;
}
.sec-title .italic {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-style: italic;
}
.sec-desc {
  font-size: 17px;
  max-width: 380px;
  opacity: 0.75;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .sec-head { flex-direction: column; align-items: flex-start; }
}

/* ========== PROBLEM ========== */
.problem {
  background: var(--paper);
  color: var(--ink);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-copy p {
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.problem-copy .lead {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 30px;
}
.problem-copy .lead b { background: var(--orange); color: var(--paper); padding: 0 8px; }
.fate-list {
  list-style: none;
  counter-reset: fate;
  padding: 0;
  border-top: 1px solid var(--line);
}
.fate-list li {
  counter-increment: fate;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: baseline;
}
.fate-list li::before {
  content: counter(fate, decimal-leading-zero);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--orange);
  letter-spacing: 0.1em;
}
.fate-list .title {
  font-family: 'Antonio', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.fate-list .desc { font-size: 15px; opacity: 0.7; }
@media (max-width: 900px) { .problem-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ========== SOLUTION — THREE CHANNELS ========== */
.solution {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid var(--ink-3);
  border-bottom: 1px solid var(--ink-3);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.solution-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
  filter: saturate(0.9) contrast(1.05);
}
.solution-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,23,41,0.52) 0%, rgba(11,23,41,0.6) 50%, rgba(11,23,41,0.72) 100%),
    radial-gradient(ellipse at 75% 55%, rgba(11,23,41,0) 0%, rgba(11,23,41,0.45) 100%);
  pointer-events: none;
}
.solution > .container { position: relative; z-index: 2; }
.solution .sec-head { border-bottom-color: var(--line-dark); }
.channels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.channel {
  padding: 48px 40px 56px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  position: relative;
  background: rgba(11, 23, 41, 0.66);
  transition: background 0.3s;
}
.channel:hover { background: rgba(15, 29, 52, 0.88); }
.channel .tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.channel .tag .idx { opacity: 0.6; color: var(--paper); }
.channel h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 40px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.channel h3 .sub {
  display: block;
  font-family: 'Antonio', sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 22px;
  opacity: 0.65;
  margin-top: 4px;
  letter-spacing: -0.01em;
  text-transform: none;
}
.channel p {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.78;
  margin-bottom: 32px;
}
.channel .icon {
  width: 56px; height: 56px;
  border: 1px solid var(--orange);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.channel .icon svg { width: 28px; height: 28px; stroke: var(--orange); }
@media (max-width: 900px) { .channels { grid-template-columns: 1fr; } }

/* ========== HOW IT WORKS ========== */
.how { background: var(--paper); position: relative; }
.how::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px);
  background-size: 100% 80px;
  opacity: 0.5;
  pointer-events: none;
}
.how .container { position: relative; }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.step {
  background: var(--paper);
  padding: 36px 28px;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
.step .num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 72px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
  position: relative;
}
.step .num::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 32px; height: 6px;
  background: var(--orange);
}
.step h4 {
  font-family: 'Antonio', sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}
.step p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0.75;
  margin-top: auto;
}
@media (max-width: 1100px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }

.how-pull {
  margin-top: 80px;
  padding: 40px 48px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.how-pull p {
  font-family: 'Antonio', sans-serif;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
  flex: 1;
  min-width: 300px;
}
.how-pull p b { color: var(--orange); }

/* ========== FULFILLMENT ========== */
.fulfill { background: var(--paper-2); }
.fulfill-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ffcard {
  background: var(--paper);
  padding: 44px 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.ffcard:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 23, 41, 0.22);
  box-shadow:
    0 2px 4px rgba(11, 23, 41, 0.04),
    0 10px 24px rgba(11, 23, 41, 0.08);
}
.ffcard .chip {
  display: inline-block;
  background: rgba(255, 90, 31, 0.1);
  color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 28px;
}
.ffcard .visual {
  height: 140px;
  margin-bottom: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(11, 23, 41, 0.02);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ffcard h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 26px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 14px;
  line-height: 1;
}
.ffcard p { font-size: 15px; line-height: 1.55; opacity: 0.75; }
@media (max-width: 900px) { .fulfill-grid { grid-template-columns: 1fr; } }

/* ========== WHY ========== */
.why {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.why-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
  filter: saturate(0.9) contrast(1.05);
}
.why-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(11,23,41,0.52) 0%, rgba(11,23,41,0.6) 50%, rgba(11,23,41,0.72) 100%),
    radial-gradient(ellipse at 20% 50%, rgba(11,23,41,0) 0%, rgba(11,23,41,0.45) 100%);
  pointer-events: none;
}
.why > .container { position: relative; z-index: 2; }
.why .sec-head { border-bottom-color: var(--line-dark); }

.compare-wrap {
  background: rgba(11, 23, 41, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--line-dark);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Archivo', sans-serif;
}
.compare-table thead th {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  padding: 20px 16px;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 500;
  opacity: 0.6;
}
.compare-table thead th.bz {
  color: var(--orange);
  opacity: 1;
  background: rgba(15, 29, 52, 0.85);
}
.compare-table td {
  padding: 22px 16px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 15px;
}
.compare-table td.feature {
  font-family: 'Antonio', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.compare-table td.check {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
}
.compare-table td.yes { color: var(--orange); }
.compare-table td.no { opacity: 0.35; }
.compare-table td.bz { background: rgba(15, 29, 52, 0.85); }
@media (max-width: 800px) {
  .compare-table { font-size: 13px; }
  .compare-table td { padding: 14px 8px; }
  .compare-table td.feature { font-size: 14px; }
}

/* ========== DEALER SECTION ========== */
.dealer { background: var(--paper); }
.dealer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dealer-copy h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.dealer-copy h3 em {
  font-family: 'Antonio', sans-serif;
  font-weight: 500;
  font-style: italic;
  color: var(--orange);
}
.dealer-copy p { font-size: 17px; line-height: 1.55; margin-bottom: 20px; opacity: 0.85; }
.benefits {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit {
  background: var(--paper);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: start;
  gap: 14px;
}
.benefit .n {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.benefit .t {
  font-family: 'Antonio', sans-serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 4px;
  display: block;
}
.benefit .d { font-size: 14px; opacity: 0.7; line-height: 1.5; }
@media (max-width: 900px) { .dealer-grid { grid-template-columns: 1fr; gap: 48px; } }

/* ========== CTA ========== */
.cta-block {
  background: var(--orange);
  color: var(--ink);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
  filter: saturate(0.9) contrast(1.05);
}
.cta-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 90, 31, 0.5) 0%, rgba(255, 90, 31, 0.65) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(255, 90, 31, 0) 0%, rgba(255, 90, 31, 0.25) 100%);
  pointer-events: none;
}
.cta-block::before {
  content: 'BRAPPZONE BRAPPZONE BRAPPZONE BRAPPZONE';
  position: absolute;
  bottom: -40px;
  left: -5%;
  right: -5%;
  font-family: 'Archivo Black', sans-serif;
  font-size: 200px;
  letter-spacing: -0.04em;
  color: var(--ink);
  opacity: 0.08;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.cta-block .container { position: relative; z-index: 3; }
.cta-block h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  margin-bottom: 28px;
  max-width: 1100px;
}
.cta-block h2 .o {
  -webkit-text-stroke: 2px var(--ink);
  color: transparent;
  font-style: italic;
}
.cta-block p {
  font-size: 20px;
  line-height: 1.5;
  max-width: 640px;
  margin-bottom: 48px;
}
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-block .btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 2px rgba(0,0,0,0.12), 0 6px 14px rgba(11,23,41,0.25);
}
.cta-block .btn-primary:hover {
  background: #05101f;
  box-shadow: 0 2px 4px rgba(0,0,0,0.18), 0 10px 22px rgba(11,23,41,0.35);
}
.cta-block .btn-ghost {
  color: var(--ink);
  border-color: rgba(11,23,41,0.3);
}
.cta-block .btn-ghost:hover {
  background: rgba(11,23,41,0.06);
  border-color: rgba(11,23,41,0.7);
  color: var(--ink);
}

/* ========== FOOTER ========== */
footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
footer h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--orange);
}
footer ul { list-style: none; }
footer li { margin-bottom: 10px; }
footer a {
  color: var(--paper);
  text-decoration: none;
  opacity: 0.7;
  font-size: 14px;
  transition: opacity 0.2s;
}
footer a:hover { opacity: 1; color: var(--orange); }
.footer-brand {
  display: block;
  margin-bottom: 20px;
  line-height: 0;
}
.footer-brand img {
  height: 64px;
  width: auto;
  display: block;
}
@media (max-width: 600px) {
  .footer-brand img { height: 52px; }
}
.footer-tagline { font-size: 14px; opacity: 0.65; max-width: 280px; line-height: 1.5; }
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Entrance animations */
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.rise { animation: rise 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }
.d5 { animation-delay: 0.7s; }

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ========== ENROLL MODAL ========== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 23, 41, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal-backdrop.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 580px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 10px;
  padding: 40px;
  position: relative;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.modal-backdrop.open .modal { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  opacity: 0.55;
  transition: opacity 0.2s, background 0.2s;
}
.modal-close:hover { opacity: 1; background: rgba(11, 23, 41, 0.06); }
.modal-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.modal h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.modal p.sub {
  font-size: 14px;
  opacity: 0.7;
  margin-bottom: 26px;
  line-height: 1.5;
}
.modal form { display: flex; flex-direction: column; gap: 14px; }
.modal .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.modal label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.modal label > span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.65;
}
.modal input,
.modal select,
.modal textarea {
  font-family: 'Archivo', sans-serif;
  font-size: 15px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
  box-sizing: border-box;
}
.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 90, 31, 0.15);
}
.modal textarea {
  min-height: 80px;
  resize: vertical;
  font-family: 'Archivo', sans-serif;
}
.modal button[type="submit"] {
  margin-top: 6px;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
}
.modal .legal {
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.modal-success {
  text-align: center;
  padding: 20px 0 10px;
  display: none;
}
.modal-success.show { display: block; }
.modal form.hidden { display: none; }
.modal-success .check {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 90, 31, 0.12);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.modal-success h4 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.modal-success p {
  font-size: 15px;
  opacity: 0.75;
  line-height: 1.5;
  max-width: 380px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .modal { padding: 32px 22px; border-radius: 8px; }
  .modal .row { grid-template-columns: 1fr; gap: 14px; }
  .modal h3 { font-size: 24px; }
}

/* ========== SCROLL TO TOP ========== */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid rgba(244, 239, 228, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease, box-shadow 0.2s ease;
  z-index: 90;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.08);
  padding: 0;
}
.to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.to-top:hover {
  background: var(--orange);
  box-shadow: 0 6px 18px rgba(255, 90, 31, 0.35), 0 2px 4px rgba(0, 0, 0, 0.1);
}
.to-top svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}
.to-top:hover svg { transform: translateY(-2px); }
@media (max-width: 600px) {
  .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; }
}

/* ========== ACCESSIBILITY BASELINE ========== */
:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--orange);
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 12px 18px;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .ticker { animation: none; }
}
