/* Start custom CSS */@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Instrument+Serif:ital@1&family=Caveat:wght@700&display=swap');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: #090909;
  color: #C7C7C7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.font-instrument {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #090909; }
::-webkit-scrollbar-thumb { background: rgba(238,255,0,0.2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(238,255,0,0.4); }

.font-display { font-family: 'Inter', system-ui, sans-serif; }

.cta-btn {
  background: #EEFF00;
  color: #090909;
  font-weight: 800;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 9999px;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.cta-btn:hover {
  background: #F5FF55;
  transform: scale(1.02);
  box-shadow: 0 6px 32px rgba(238,255,0,0.25);
}

.cta-btn-outline {
  background: transparent;
  border: 1.5px solid #383838;
  color: #FFFFFF;
  font-weight: 700;
  font-family: 'Inter', system-ui, sans-serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 9999px;
  transition: all 0.18s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.cta-btn-outline:hover {
  background: #181818;
  border-color: #EEFF00;
}

.text-lime { color: #EEFF00; }
.text-green { color: #B7FF3C; }

.label {
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #EEFF00;
  font-family: 'Inter', system-ui, sans-serif;
}

.card {
  background: #181818;
  border: 1px solid #2A2A2A;
  border-radius: 18px;
}
.card-warm {
  background: #202020;
  border: 1px solid #2A2A2A;
  border-radius: 18px;
}
.card-featured {
  background: #1A1A1A;
  border: 1px solid #383838;
  border-radius: 18px;
}
.card-blush {
  background: #141414;
  border: 1px solid #2A2A2A;
  border-radius: 18px;
}
.card-dark-tint {
  background: #090909;
  border: 1px solid #2A2A2A;
  border-radius: 18px;
}

.pill-row {
  background: linear-gradient(135deg, #002E16, #001A0C);
  border: 1px solid rgba(0,200,100,0.22);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
}
.pill-row-bad {
  background: linear-gradient(135deg, #2E0C0C, #1A0505);
  border: 1px solid rgba(255,69,69,0.22);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
}

.icon-circle {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(238,255,0,0.08);
  border: 1px solid rgba(238,255,0,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-circle-sm {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,200,100,0.14);
  border: 1px solid rgba(0,200,100,0.28);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.icon-circle-bad {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,69,69,0.14);
  border: 1px solid rgba(255,69,69,0.28);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.divider { border: none; border-top: 1px solid #222222; }

.badge-gold {
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #090909; background: #EEFF00;
  padding: 4px 12px; border-radius: 9999px;
}
.badge-outline {
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C7C7C7;
  background: #181818;
  border: 1px solid #383838;
  padding: 3px 11px; border-radius: 9999px;
}
.badge-bad {
  font-size: 0.67rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FF6060;
  border: 1.5px solid rgba(255,80,80,0.35);
  padding: 3px 11px; border-radius: 9999px;
}

.big-stat {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 900;
  line-height: 0.92;
  color: #EEFF00;
}

.trust-pill {
  font-size: 0.72rem; font-weight: 700;
  color: #C7C7C7;
  background: rgba(255,255,255,0.05);
  border: 1px solid #383838;
  padding: 5px 14px;
  border-radius: 9999px;
}

.vert-line {
  width: 2px;
  background: linear-gradient(to bottom, #EEFF00, rgba(238,255,0,0.05));
  border-radius: 2px;
  flex-shrink: 0;
}

.accordion-content { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.accordion-content.open { max-height: 500px; }

.section-container {
  background: #090909;
  border: 1px solid #2A2A2A;
  border-radius: 48px;
  padding: 64px;
}
@media (max-width: 768px) {
  .section-container { border-radius: 24px; padding: 32px 20px; }
}

.section-gold {
  background: #090909;
  position: relative;
  overflow: hidden;
}
.section-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(238,255,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.glowline { height: 1px; background: linear-gradient(90deg, transparent, rgba(238,255,0,0.3), transparent); }

.dot-grid {
  background-image: radial-gradient(rgba(238,255,0,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.footer-dark { background: #060606; }

@media (max-width: 768px) {
  .sticky-cta {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
    padding: 10px 14px;
    background: rgba(9,9,9,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid #222222;
  }
}/* End custom CSS */