/* ===========================================================
   Bhash Growth Accelerator — Custom styles
   Built with Tailwind CSS (pre-compiled) + custom animations,
   glass-card, hero grid, marquee, phone mockup helpers, etc.
   =========================================================== */

:root {
  --brand-dark: #0f172a;
  --brand-emerald: #059669;
  --brand-emerald-dark: #047857;
  --brand-gold: #d4af37;
  --brand-red: #ef4444;
  --brand-blue: #93c5fd;
  --text-body: #475569;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --surface: #f8fafc;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: #0f172a;
  background: #fff;
}

@media (max-width: 640px) {
    h3.text-3xl, h3.text-\[36px\] {
        font-size: 1.5rem !important;
        line-height: 1.15 !important;
    }
}

.font-display { font-family: "Playfair Display", Georgia, "Times New Roman", serif; }
.tabular-nums { font-variant-numeric: tabular-nums; }

/* Hero grid + spotlight (dark section decor) */
.hero-grid {
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}
.spotlight-emerald {
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(5,150,105,0.25), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(212,175,55,0.14), transparent 60%);
}
.noise-overlay {
  position: absolute; inset: 0; pointer-events: none;
  opacity: 0.4;
  background-image:
    radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px),
    radial-gradient(rgba(255,255,255,0.03) 2px, transparent 2px);
  background-size: 4px 4px, 8px 8px;
  background-position: 0 0, 3px 3px;
}

/* Card + glass */
.premium-card { transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.premium-card:hover { transform: translateY(-2px); border-color: #cbd5e1; box-shadow: 0 22px 48px -22px rgba(15,23,42,0.14); }
.card-soft-shadow { box-shadow: 0 8px 30px rgba(0,0,0,0.04); }
.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.35);
}

/* Client marquee */
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.animate-marquee { animation: marquee 40s linear infinite; }

/* Partner carousel — fixed-size white logo tiles */
#partner-carousel .animate-marquee {
  gap: 0;
}
#partner-carousel .animate-marquee > span {
  width: 140px;
  height: 40px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 4px;
  margin-right: 64px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.1), 0 6px 16px -8px rgba(15, 23, 42, 0.25);
}
#partner-carousel .animate-marquee > span img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
#partner-carousel .animate-marquee > span:hover img {
  opacity: 1;
  transform: scale(1.06);
}

/* Mac-frame window (dashboard mockup) */
.mac-frame {
  background: #fff; border: 1px solid #e2e8f0; border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(15,23,42,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 100%;
}
.mac-titlebar {
  height: 34px; display: flex; align-items: center; padding: 0 12px;
  background: linear-gradient(#f8fafc, #eef2f7);
  border-bottom: 1px solid #e2e8f0;
}
.mac-dot { width: 12px; height: 12px; border-radius: 999px; margin-right: 6px; flex-shrink: 0; }

@media (max-width: 420px) {
  .mac-frame {
    border-radius: 10px;
  }
  .mac-titlebar {
    height: 28px;
    padding: 0 8px;
  }
  .mac-dot {
    width: 8px;
    height: 8px;
    margin-right: 4px;
  }
}

.custom-scrollbar::-webkit-scrollbar {
  height: 4px;
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* Reveal animation on scroll */
[data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
/* ========== HERO ON-LOAD ENTRANCE ========== */
@keyframes heroFadeUp {
  0% { opacity: 0; translate: 0 36px; scale: 0.96; }
  100% { opacity: 1; translate: 0 0; scale: 1; }
}
.hero-animate {
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-delay-1 { animation-delay: 0.1s; }
.hero-delay-2 { animation-delay: 0.2s; }
.hero-delay-3 { animation-delay: 0.35s; }
.hero-delay-4 { animation-delay: 0.5s; }
.hero-delay-5 { animation-delay: 0.65s; }

/* ========== PHONE PREVIEW STAGGERED INNER ELEMENTS ========== */
@keyframes phoneElIn {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}
.phone-el {
  opacity: 0;
  animation: phoneElIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.phone-el-d1 { animation-delay: 0.5s; }
.phone-el-d2 { animation-delay: 0.7s; }
.phone-el-d3 { animation-delay: 0.9s; }
.phone-el-d4 { animation-delay: 1.1s; }
.phone-el-d5 { animation-delay: 1.3s; }
.phone-el-d6 { animation-delay: 1.5s; }
.phone-el-d7 { animation-delay: 1.7s; }

/* ========== POPUP SPRING ENTRANCE ========== */
.popup-spring {
  transition: opacity .6s cubic-bezier(0.34, 1.56, 0.64, 1), translate .6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.popup-spring.show {
  opacity: 1;
  translate: 0 0;
  pointer-events: auto;
}
.popup-spring.hide {
  opacity: 0;
  translate: 0 12px;
  pointer-events: none;
}

/* Limited-slots popup close button */
.limited-slots-close {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.limited-slots-close:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.limited-slots-close:active {
  transform: translateY(-50%) scale(0.92);
}
.limited-slots-close:focus-visible {
  outline: 2px solid rgba(212, 175, 55, 0.9);
  outline-offset: 2px;
}
.limited-slots-close-icon {
  width: 14px;
  height: 14px;
}

/* ========== ENHANCED SECTION REVEAL ========== */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children of a revealed parent */
[data-reveal-stagger].revealed > * {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-stagger] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1);
}
[data-reveal-stagger].revealed > *:nth-child(1) { transition-delay: 0.05s; }
[data-reveal-stagger].revealed > *:nth-child(2) { transition-delay: 0.1s; }
[data-reveal-stagger].revealed > *:nth-child(3) { transition-delay: 0.15s; }
[data-reveal-stagger].revealed > *:nth-child(4) { transition-delay: 0.2s; }
[data-reveal-stagger].revealed > *:nth-child(5) { transition-delay: 0.25s; }
[data-reveal-stagger].revealed > *:nth-child(6) { transition-delay: 0.3s; }
[data-reveal-stagger].revealed > *:nth-child(7) { transition-delay: 0.35s; }
[data-reveal-stagger].revealed > *:nth-child(8) { transition-delay: 0.4s; }

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.ping-dot::after {
  content:""; position:absolute; inset:0; border-radius:9999px;
  background: currentColor; opacity: .7;
  animation: ping 1.8s cubic-bezier(0,0,0.2,1) infinite;
}

/* Accordion (details tag) — hide default marker */
details > summary { list-style: none; cursor: pointer; }
details > summary::-webkit-details-marker { display: none; }
details[open] > summary .faq-chev { transform: rotate(180deg); }
.faq-chev { transition: transform .3s ease, background-color .3s ease, border-color .3s ease, color .3s ease; }
@media (prefers-reduced-motion: reduce) {
  .faq-chev { transition: none; }
}

/* FAQ item answer panel — smooth fade/slide on open */
.faq-item[open] .faq-panel { animation: faq-panel-in .35s cubic-bezier(.16,1,.3,1); }
@keyframes faq-panel-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .faq-item[open] .faq-panel { animation: none; }
}

/* Anchor targets land below the fixed nav */
section[id] { scroll-margin-top: 88px; }

/* Range sliders */
input[type=range].roi-slider,
input[type=range].brand-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 6px;
  background: linear-gradient(90deg, #059669 0%, #059669 var(--roi-fill, 0%), #e2e8f0 var(--roi-fill, 0%), #e2e8f0 100%);
  border-radius: 999px;
  outline: none;
  cursor: pointer;
  transition: background .15s ease;
}
input[type=range].roi-slider::-webkit-slider-runnable-track,
input[type=range].brand-slider::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: transparent;
}
input[type=range].roi-slider::-moz-range-track,
input[type=range].brand-slider::-moz-range-track {
  height: 6px;
  background: transparent;
  border-radius: 999px;
  border: none;
}
input[type=range].roi-slider::-webkit-slider-thumb,
input[type=range].brand-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; margin-top: -7px;
  background: #059669; border: 3px solid #fff; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(5,150,105,.35); cursor: pointer;
  transition: box-shadow .15s, transform .15s;
}
input[type=range].roi-slider::-moz-range-thumb,
input[type=range].brand-slider::-moz-range-thumb {
  width: 20px; height: 20px;
  background: #059669; border: 3px solid #fff; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(5,150,105,.35); cursor: pointer;
  transition: box-shadow .15s, transform .15s;
}
input[type=range].roi-slider::-webkit-slider-thumb:hover,
input[type=range].brand-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(5,150,105,.45);
}
input[type=range].roi-slider:focus-visible,
input[type=range].brand-slider:focus-visible {
  outline: 2px solid #059669;
  outline-offset: 4px;
  border-radius: 999px;
}
/* Fourth slider (uplift) gets gold thumb to match its label */
input[type=range].roi-slider#roi-improvement::-webkit-slider-thumb {
  background: #d4af37;
  box-shadow: 0 4px 12px rgba(212,175,55,.35);
}
input[type=range].roi-slider#roi-improvement::-moz-range-thumb {
  background: #d4af37;
  box-shadow: 0 4px 12px rgba(212,175,55,.35);
}
input[type=range].roi-slider#roi-improvement::-webkit-slider-thumb:hover {
  box-shadow: 0 6px 20px rgba(212,175,55,.45);
}

/* Modal */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,0.65);
  backdrop-filter: blur(6px); z-index: 60;
  opacity: 0; pointer-events: none; transition: opacity .3s ease;
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal-panel {
  position: fixed; inset: 50% auto auto 50%; transform: translate(-50%, -46%) scale(.98);
  width: min(680px, calc(100vw - 24px)); max-height: 92vh; overflow: hidden; z-index: 70;
  background: #fff; border-radius: 20px; padding: 0;
  box-shadow: 0 32px 80px -20px rgba(15,23,42,.45);
  opacity: 0; pointer-events: none; transition: opacity .3s ease, transform .3s ease;
  display: flex; flex-direction: column;
}
.modal-panel.open { opacity: 1; pointer-events: auto; transform: translate(-50%,-50%) scale(1); }

/* Form inputs */
.form-input {
  width: 100%; border: 1px solid #e2e8f0; background: #fff; border-radius: 10px;
  padding: 10px 12px; font-size: 14px; color: #0f172a; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus { border-color: #059669; box-shadow: 0 0 0 3px rgba(5,150,105,.15); }
.form-label { display:block; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color:#64748b; margin-bottom: 6px; }

/* Demo — dark form input */
.demo-input {
  width: 100%; border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.03); border-radius: 12px;
  padding: 12px 14px; font-size: 14px; color: #fff; outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.demo-input::placeholder { color: rgba(255,255,255,0.35); }
.demo-input:focus { border-color: #059669; box-shadow: 0 0 0 3px rgba(5,150,105,.16); }
textarea.demo-input { resize: none; }

/* Toast */
.toast {
  position: fixed; top: 20px; right: 20px; z-index: 100;
  padding: 12px 16px; border-radius: 10px; font-size: 13.5px;
  color: #fff; background: #0f172a; box-shadow: 0 20px 40px -12px rgba(0,0,0,.35);
  opacity: 0; transform: translateY(-8px); transition: opacity .25s, transform .25s;
  pointer-events: none;
  max-width: 340px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #059669; }
.toast.error { background: #ef4444; }

/* Utility: hide scrollbar */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Testimonial scroll area */
.testimonial-scroll {
  max-height: 560px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.25) transparent;
}
.testimonial-scroll::-webkit-scrollbar { width: 5px; }
.testimonial-scroll::-webkit-scrollbar-track { background: transparent; }
.testimonial-scroll::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.22);
  border-radius: 999px;
}
.testimonial-scroll::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.35); }

/* Reading progress bar */
#reading-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, #059669, #10b981); z-index: 50; transition: width .1s linear;
}

/* Sticky mobile bottom bar */
.mobile-sticky-bar {
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 40;
  border-radius: 16px; padding: 10px; background: rgba(15,23,42,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4);
}
@media (min-width: 768px) { .mobile-sticky-bar { display: none; } }

/* Simple range utilities */

/* Hide desktop nav links + CTA on mobile (< 1024px) */
@media (max-width: 1023px) {
  header#nav nav {
    display: none !important;
  }
  [data-testid="nav-cta-book"] {
    display: none !important;
  }
}

/* Nav slide down when scrolled */
#nav.nav-scrolled { background: rgba(255,255,255,0.86); backdrop-filter: blur(18px); border-bottom: 1px solid #e2e8f0; }

/* Scrolled nav — nav link text turns dark */
#nav.nav-scrolled [data-testid^="nav-link-"] {
  color: #0f172a !important;
}
#nav.nav-scrolled [data-testid^="nav-link-"]:hover {
  color: #059669 !important;
}

/* Scrolled nav — logo filter removed */
#nav.nav-scrolled [data-testid="bhash-logo"] {
  filter: none !important;
}

/* Scrolled nav — Book Strategy Session button turns dark */
#nav.nav-scrolled [data-testid="nav-cta-book"] {
  background: #0f172a !important;
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(15,23,42,0.35) !important;
}
#nav.nav-scrolled [data-testid="nav-cta-book"]:hover {
  background: #1e293b !important;
}

/* Scrolled nav — hamburger turns dark */
#nav.nav-scrolled #hamburger-btn {
  color: #0f172a;
}
#nav.nav-scrolled #hamburger-btn:hover {
  background: rgba(15,23,42,0.06);
}

/* Mobile menu */
.mobile-menu-open #mobile-menu {
  transform: translateX(0);
}
.mobile-menu-open #mobile-menu-backdrop {
  opacity: 1;
  pointer-events: auto;
}
body.mobile-menu-open {
  overflow: hidden;
}
/* Transition hamburger to X */
#hamburger-icon.menu-open {
  transform: rotate(90deg);
}
#hamburger-icon {
  transition: transform .25s ease;
}

/* Desktop phone overlay on dashboard */
#phone-preview-desktop {
  position: absolute;
  bottom: -20px;
  right: -6px;
  z-index: 30;
  transform: scale(0.9);
  transform-origin: bottom right;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.35));
}

/* Focus ring for accessibility */
:focus-visible { outline: 2px solid #059669; outline-offset: 2px; border-radius: 6px; }

/* Text balance */
.text-balance { text-wrap: balance; }

.phone-desktop{
  position: absolute;
  top: 0;
  right: 0;
}

.mac-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
}


button, input, optgroup, select, textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.input {
    width: 100%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    color: #0f172a;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    font-family: inherit;
}

.input:focus {
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* Lead form validation error state */
.input.input-error {
    border-color: #ef4444;
}
.input.input-error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

/* Submit-button spinner while the lead request is in flight */
.btn-spinner {
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    animation: btn-spin 0.7s linear infinite;
}
@keyframes btn-spin {
    to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
    .btn-spinner { animation: none; }
}

.font-display {
    font-family: 'Manrope', ui-sans-serif, system-ui, sans-serif;
    font-weight: 600;
    font-style: italic;
    letter-spacing: -0.025em;
}

/* ===========================================================
   GUARANTEED ROI BADGE — prominent gold award treatment
   =========================================================== */
#gauranteed-badge .roi-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 20px 7px 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7dd7d 0%, #d4af37 48%, #b8860b 100%);
  color: #3a2a05;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 8px 26px -6px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  animation: roi-badge-glow 3.4s ease-in-out infinite;
}
#gauranteed-badge .roi-badge-icon {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #a16207;
  box-shadow: 0 2px 8px rgba(28, 20, 5, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
#gauranteed-badge .roi-badge svg {
  width: 15px;
  height: 15px;
}
#gauranteed-badge .roi-badge > span:last-child {
  position: relative;
  z-index: 2;
}
/* Shine sweep across the badge (transform-based for smooth compositing) */
#gauranteed-badge .roi-badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 45%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.85), transparent);
  transform: translateX(-250%) skewX(-20deg);
  z-index: 1;
  animation: roi-badge-shine 3.4s ease-in-out infinite;
}
@keyframes roi-badge-shine {
  0%, 45% { transform: translateX(-250%) skewX(-20deg); }
  75%, 100% { transform: translateX(400%) skewX(-20deg); }
}
@keyframes roi-badge-glow {
  0%, 100% {
    box-shadow: 0 8px 26px -6px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
  50% {
    box-shadow: 0 14px 44px -6px rgba(212, 175, 55, 0.78), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  }
}
/* Slightly tighter on very small screens so the pill never overflows */
@media (max-width: 420px) {
  #gauranteed-badge .roi-badge {
    font-size: 11px;
    letter-spacing: 0.1em;
    padding-right: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #gauranteed-badge .roi-badge,
  #gauranteed-badge .roi-badge::before {
    animation: none;
  }
}

/* ===========================================================
   WHO-NOT SECTION — buy-if (prominent) / book-if (CTA) treatments
   =========================================================== */
#buy-if {
  animation: buyif-glow 4.2s ease-in-out infinite;
}
/* Featured top accent bar */
#buy-if::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #059669, transparent);
  opacity: 0.9;
}
@keyframes buyif-glow {
  0%, 100% { box-shadow: 0 30px 80px -30px rgba(5, 150, 105, 0.45); }
  50% { box-shadow: 0 40px 110px -28px rgba(5, 150, 105, 0.65); }
}
/* Book-if: clickable CTA affordance */
#book-if {
  outline: none;
}
#book-if:focus-visible {
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.65);
}
@media (prefers-reduced-motion: reduce) {
  #buy-if {
    animation: none;
  }
}

@media (max-width) {
  
}