/* ═══════════════════════════════════════════════════
   TABTRICKLE — Premium Scroll-Driven Site
   Brand: #3ce619 (green), #e17721 (copper), #000 (black), #c3c3c3 (grey)
   Fonts: Outfit (body) + Space Mono (labels/accents)
   ═══════════════════════════════════════════════════ */

/* ─── RESET & VARIABLES ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand */
  --green: #3ce619;
  --green-dim: #2db812;
  --green-glow: rgba(60, 230, 25, 0.25);
  --copper: #e17721;
  --copper-dim: #c46418;
  --black: #000000;
  --dark: #0a0a0a;
  --grey: #c3c3c3;
  --grey-mid: #666666;
  --white: #f0ede8;
  --off-white: #e8e4df;

  /* Semantic */
  --bg-light: #f0ede8;
  --bg-dark: #0a0a0a;
  --text-on-light: #1a1a1a;
  --text-on-dark: #f0ede8;

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-mono: 'Space Mono', monospace;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-display);
  background: var(--bg-dark);
  color: var(--text-on-dark);
  overflow-x: hidden;
  line-height: 1.7;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ─── LOADER ─── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader-logo {
  width: 120px;
  height: auto;
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 8px var(--green-glow)); }
  50% { opacity: 0.6; filter: drop-shadow(0 0 20px var(--green-glow)); }
}
.loader-track {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
#loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--copper));
  border-radius: 2px;
  transition: width 0.15s ease;
}
#loader-percent {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--grey);
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: var(--space-sm) var(--space-md);
  transition: background 0.4s ease;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 40px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  transition: color 0.3s ease;
}
.nav-links a:hover, .nav-links a:focus-visible {
  color: var(--green);
}
.nav-cta {
  background: var(--green) !important;
  color: var(--black) !important;
  padding: 0.6rem 1.4rem !important;
  border-radius: 4px;
  font-weight: 700 !important;
  transition: background 0.3s ease, transform 0.2s ease !important;
}
.nav-cta:hover {
  background: var(--green-dim) !important;
  transform: translateY(-1px);
}
.nav-cta:active {
  transform: translateY(0);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ─── HERO ─── */
.hero-standalone {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 5vw;
  z-index: 5;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.3) 100%),
    linear-gradient(to top, rgba(10,10,10,1) 0%, transparent 30%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 55vw;
}
.hero-label {
  display: inline-block;
  margin-bottom: var(--space-sm);
}
.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}
.hero-heading .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
}
.hero-heading .accent {
  color: var(--green);
  text-shadow: 0 0 40px var(--green-glow);
}
.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--off-white);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: var(--space-md);
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta-btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  background: var(--green);
  color: var(--black);
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta-btn:hover {
  background: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
}
.hero-cta-btn:active {
  transform: translateY(0);
}
.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}
.hero-cta-group .hero-cta-btn {
  opacity: 1;
  transform: none;
}
.hero-cta-secondary {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.hero-cta-secondary:hover {
  background: rgba(60, 230, 25, 0.1);
  color: var(--green);
}

.scroll-indicator {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  color: var(--grey);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── CANVAS ─── */
.canvas-wrap {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  clip-path: circle(0% at 50% 50%);
}
.canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.canvas-wrap-secondary {
  z-index: 2;
  clip-path: none;
  opacity: 0;
}

/* ─── DARK OVERLAY ─── */
#dark-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  background: var(--bg-dark);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.05s linear;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  position: fixed;
  z-index: 3;
  width: 100%;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#marquee-1 {
  top: 15%;
}
#marquee-2 {
  bottom: 12%;
}
.marquee-text {
  font-family: var(--font-display);
  font-size: clamp(6vw, 12vw, 14vw);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(60, 230, 25, 0.12);
  letter-spacing: 0.02em;
  line-height: 1;
  will-change: transform;
}

/* ─── SCROLL CONTAINER ─── */
#scroll-container {
  position: relative;
  width: 100%;
  height: 800vh;
  z-index: 4;
}

/* ─── SECTIONS (Shared) ─── */
.scroll-section {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  will-change: opacity;
}
.scroll-section > * { pointer-events: auto; }

/* Side alignment — text in outer 40% zones */
.align-left {
  padding-left: 5vw;
  padding-right: 55vw;
  justify-content: flex-start;
}
.align-right {
  padding-left: 55vw;
  padding-right: 5vw;
  justify-content: flex-end;
}
.align-left .section-inner,
.align-right .section-inner {
  max-width: 40vw;
}

/* ─── TYPOGRAPHY ─── */
.section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: var(--space-md);
}
.section-body {
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  color: var(--off-white);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.section-note {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--copper);
  line-height: 1.5;
}

/* ─── STATS SECTION ─── */
.section-stats {
  justify-content: center;
  padding: 0 5vw;
  text-align: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  max-width: 1000px;
  margin: 0 auto;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 30px var(--green-glow);
}
.stat-suffix {
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: var(--copper);
  font-weight: 700;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-top: 8px;
}

/* ─── TESTIMONIAL ─── */
.testimonial-quote {
  font-style: italic;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem) !important;
  color: var(--white) !important;
  position: relative;
  padding-left: var(--space-md);
  border-left: 3px solid var(--copper);
}
.testimonial-attr {
  color: var(--grey) !important;
  font-style: normal;
}

/* ─── CTA SECTION ─── */
.section-cta {
  justify-content: center;
  text-align: center;
  padding: 0 5vw;
}
.cta-inner {
  max-width: 650px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-heading {
  text-align: center;
}
.cta-button {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  background: var(--green);
  color: var(--black);
  border-radius: 4px;
  margin-top: var(--space-md);
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.cta-button:hover {
  background: var(--green-dim);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px var(--green-glow);
}
.cta-button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}
.cta-button:active {
  transform: translateY(0);
}
.cta-sub {
  margin-top: var(--space-sm);
  color: var(--grey-mid) !important;
  font-size: 0.8rem !important;
}

/* ─── FOOTER ─── */
.site-footer {
  position: relative;
  z-index: 5;
  padding: var(--space-lg) var(--space-md);
  background: var(--black);
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}
.footer-logo { opacity: 0.6; }
.footer-socials {
  display: flex;
  gap: var(--space-md);
  margin: var(--space-sm) 0;
}
.footer-socials a {
  color: var(--grey-mid);
  transition: color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-socials a:hover {
  color: var(--green);
  transform: translateY(-2px);
}
.footer-text {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--grey-mid);
}
.footer-sub {
  font-size: 0.7rem;
  color: var(--grey-mid);
  opacity: 0.6;
}
.footer-credit {
  font-size: 0.65rem;
  color: var(--grey-mid);
  opacity: 0.4;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(195,195,195,0.1);
  letter-spacing: 0.02em;
}

/* ─── GRAIN OVERLAY (Texture) ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .align-left { padding-right: 40vw; }
  .align-right { padding-left: 40vw; }
  .align-left .section-inner,
  .align-right .section-inner { max-width: 55vw; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,10,0.98);
    padding: var(--space-md);
    gap: var(--space-sm);
    backdrop-filter: blur(12px);
  }
  .nav-toggle { display: flex; }

  .hero-content { max-width: 90vw; }
  .hero-heading { font-size: clamp(2.5rem, 12vw, 4rem); }

  .align-left,
  .align-right {
    padding: 0 var(--space-md);
    justify-content: center;
  }
  .align-left .section-inner,
  .align-right .section-inner {
    max-width: 90vw;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: var(--space-md);
    border-radius: 8px;
  }

  #scroll-container { height: 540vh; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }
  .stat-number { font-size: 2.5rem; }

  .marquee-text { font-size: 15vw; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: var(--space-sm); }
  .section-heading { font-size: clamp(1.8rem, 8vw, 2.5rem); }
}

/* ─── SELECTION ─── */
::selection {
  background: var(--green);
  color: var(--black);
}

/* ─── FOOTER LEGAL ─── */
.footer-legal-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin: var(--space-sm) 0;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer-legal-links a {
  color: var(--grey-mid);
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: var(--green);
}
.footer-legal-links span {
  color: var(--grey-mid);
  opacity: 0.4;
}

/* ─── GDPR COOKIE BANNER ─── */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: rgba(10,10,10,0.97);
  border-top: 1px solid rgba(60,230,25,0.2);
  backdrop-filter: blur(12px);
}
.cookie-inner {
  max-width: 900px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.5;
  flex: 1;
  min-width: 280px;
}
.cookie-inner a {
  color: var(--green);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.7rem 1.5rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.cookie-btn:hover { transform: translateY(-1px); }
.cookie-btn-accept {
  background: var(--green);
  color: var(--black);
}
.cookie-btn-accept:hover { background: var(--green-dim); }
.cookie-btn-reject {
  background: transparent;
  color: var(--grey);
  border: 1px solid var(--grey-mid);
}
.cookie-btn-reject:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ─── DBR PERFORMANCE OFFER SECTION ─── */
.dbr-offer { background: var(--black); color: var(--white); padding: 80px 0; }
.dbr-offer .container { max-width: 1100px; margin: 0 auto; padding: 0 5vw; }
.dbr-offer .eyebrow {
  font-family: var(--font-mono);
  color: var(--green);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.dbr-offer h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 3.75rem);
  margin: 0 0 0.75rem;
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--white);
}
.dbr-offer h3 {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  margin: 0 0 2rem;
  color: var(--grey);
}
.dbr-offer h3 em { color: var(--green); font-style: normal; font-weight: 600; }
.dbr-offer p {
  font-size: 1.125rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 0 1.25rem;
  color: var(--white);
}
.dbr-offer .lead { font-size: 1.375rem; }
.dbr-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 540px;
  margin: 2.25rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--dark);
  border-left: 4px solid var(--green);
}
.dbr-pricing .dbr-row { font-size: 1.125rem; color: var(--white); }
.dbr-pricing .dbr-row strong {
  color: var(--green);
  font-size: 1.5rem;
  min-width: 5rem;
  display: inline-block;
  font-family: var(--font-mono);
}
.dbr-pricing .dbr-headline {
  padding-top: 0.75rem;
  border-top: 1px solid #333;
  margin-top: 0.5rem;
  font-size: 1.25rem;
}
.dbr-guarantee {
  background: var(--dark);
  padding: 1.25rem 1.75rem;
  border: 2px solid var(--green);
  max-width: 720px;
}
.dbr-guarantee strong { color: var(--green); }
.dbr-cta { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.dbr-cta .cta-button-primary {
  background: var(--green);
  color: var(--black) !important;
  padding: 1.125rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
  text-transform: uppercase;
}
.dbr-cta .cta-button-primary:hover { background: var(--green-dim); transform: translateY(-2px); }
.dbr-cta .cta-button-secondary {
  background: transparent;
  color: var(--white) !important;
  padding: 1.125rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2px solid var(--white);
  border-radius: 4px;
  transition: border-color 0.3s ease, color 0.3s ease;
  text-transform: uppercase;
}
.dbr-cta .cta-button-secondary:hover { border-color: var(--green); color: var(--green) !important; }

@media (max-width: 768px) {
  .dbr-offer { padding: 56px 0; }
  .dbr-offer .container { padding: 0 6vw; }
  .dbr-pricing { padding: 1.25rem; }
  .dbr-cta .cta-button-primary,
  .dbr-cta .cta-button-secondary { width: 100%; text-align: center; }
}

/* ─── DBR CALCULATOR ─── */
.dbr-calculator {
  margin: 2.5rem 0 2rem;
  padding: 2rem 2rem 1.75rem;
  background: var(--dark);
  border: 1px solid #1e1e1e;
  border-left: 4px solid var(--green);
  max-width: 720px;
}
.dbr-calc-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  color: var(--white);
  letter-spacing: -0.01em;
}
.dbr-calc-sub {
  font-family: var(--font-mono);
  font-size: 0.8rem !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey) !important;
  margin: 0 0 1.5rem !important;
  max-width: none !important;
}
.dbr-calc-input { margin-bottom: 1.25rem; }
.dbr-calc-input label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.dbr-calc-value {
  font-family: var(--font-mono);
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Slider — track + thumb (cross-browser) */
.dbr-calc-input input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.dbr-calc-input input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 3px solid var(--black);
  box-shadow: 0 0 0 1px var(--green), 0 4px 14px var(--green-glow);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.dbr-calc-input input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.12);
  box-shadow: 0 0 0 1px var(--green), 0 6px 22px var(--green-glow);
}
.dbr-calc-input input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  cursor: pointer;
  border: 3px solid var(--black);
  box-shadow: 0 0 0 1px var(--green), 0 4px 14px var(--green-glow);
}
.dbr-calc-input input[type="range"]::-moz-range-track {
  height: 4px;
  background: #2a2a2a;
  border-radius: 2px;
}
.dbr-calc-input input[type="range"]:focus-visible::-webkit-slider-thumb {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

/* Results */
.dbr-calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin: 1.75rem 0 1rem;
}
.dbr-calc-result {
  background: var(--black);
  padding: 1rem 1.1rem;
  border: 1px solid #1e1e1e;
  border-radius: 4px;
}
.dbr-calc-result-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0.4rem;
}
.dbr-calc-result-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.dbr-calc-result-headline {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(60,230,25,0.08), rgba(60,230,25,0.02));
  border-color: var(--green);
}
.dbr-calc-result-headline .dbr-calc-result-label { color: var(--green); }
.dbr-calc-result-headline .dbr-calc-result-value {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--green);
}

.dbr-calc-disclaimer {
  font-size: 0.8rem !important;
  color: var(--grey-mid) !important;
  margin: 0 !important;
  font-style: italic;
  max-width: none !important;
}

@media (max-width: 768px) {
  .dbr-calculator { padding: 1.5rem 1.25rem; }
  .dbr-calc-results { grid-template-columns: 1fr; }
  .dbr-calc-result-headline { grid-column: auto; }
}

/* ─── HERO FRICTION LINE ─── */
.hero-friction {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey);
  opacity: 0;
  transform: translateY(20px);
  max-width: 520px;
}

/* ─── TESTIMONIAL AFTERMATH (line under the quote) ─── */
.testimonial-aftermath {
  margin-top: 1.25rem;
  font-style: italic;
  color: var(--off-white);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem) !important;
}

/* ─── BOLD LABELS INSIDE SECTION BODY (e.g. CAE points, steps) ─── */
.section-body strong {
  color: var(--green);
  font-weight: 700;
}

/* ─── CTA-SUB BENEATH IN-SECTION CTA BUTTONS ─── */
.scroll-section .cta-sub {
  margin-top: 0.75rem;
  font-style: italic;
  color: var(--grey) !important;
  font-size: 0.85rem !important;
}
