/* =============================================
   CALIBER — Bold & Aggressive Landing
   Dark + Cyan (#22D3EE) + Glassmorphic
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #09090B;
  color: #F4F4F5;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =============================================
   VIDEO BACKGROUND
   ============================================= */
.video-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: hue-rotate(-40deg) saturate(0.6) brightness(0.8);
}

.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(9,9,11,0.6) 0%, transparent 35%),
    linear-gradient(to top, rgba(9,9,11,0.7) 0%, transparent 30%),
    radial-gradient(ellipse at center, transparent 40%, rgba(9,9,11,0.4) 100%),
    rgba(8, 47, 56, 0.35);
  pointer-events: none;
}

/* Film grain */
.video-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  animation: grain 0.5s steps(4) infinite;
  mix-blend-mode: overlay;
}

@keyframes grain {
  0%   { transform: translate(0, 0); }
  25%  { transform: translate(-2px, 3px); }
  50%  { transform: translate(3px, -1px); }
  75%  { transform: translate(-3px, -2px); }
  100% { transform: translate(1px, 2px); }
}

.content-layer {
  position: relative;
  z-index: 1;
}

/* Scanlines */
.content-layer::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.015) 2px,
    rgba(0, 0, 0, 0.015) 4px
  );
  opacity: 0.6;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  background: rgba(9, 9, 11, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 4px;
  color: #fff;
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.25s ease;
}

.nav-links a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-nav-cta {
  font-size: 14px;
  font-weight: 600;
  color: #09090B;
  background: #22D3EE;
  padding: 10px 24px;
  border-radius: 8px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-nav-cta:hover {
  background: #06B6D4;
  transform: translateY(-1px);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 48px 60px;
  overflow: visible;
}

.hero-blur {
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 500px;
  background: rgba(9, 9, 11, 0.55);
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1280px;
  width: 100%;
}

.hero-left { flex: 1; min-width: 0; }
.hero-right { flex: 0 0 420px; max-width: 420px; }

.hero-headings { margin-bottom: 24px; }

.hero-line1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.08;
  color: #fff;
  letter-spacing: -2px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-line2 {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 3.5vw, 48px);
  line-height: 1.15;
  color: #22D3EE;
  letter-spacing: -0.5px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(20px);
}

.hero-sub {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  max-width: 500px;
  margin: 0 0 36px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-cyan {
  background: #22D3EE;
  color: #09090B;
}

.btn-cyan:hover {
  background: #06B6D4;
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(34, 211, 238, 0.2);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-full { width: 100%; }
.btn-lg { padding: 18px 48px; font-size: 16px; border-radius: 12px; }

/* =============================================
   HERO STATS BAR
   ============================================= */
.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 100px;
  opacity: 0;
  transform: translateY(16px);
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22D3EE;
  animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 4px #22D3EE; }
  50% { opacity: 0.4; box-shadow: none; }
}

.stat-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
}

.stat-num { font-weight: 700; color: rgba(255, 255, 255, 0.85); }
.stat-live { color: #22D3EE; font-weight: 700; }
.stat-divider { width: 1px; height: 14px; background: rgba(255, 255, 255, 0.1); }

/* =============================================
   PRODUCT PANEL
   ============================================= */
.product-panel {
  width: 100%;
  opacity: 0;
  transform: translateY(30px);
}

.product-panel-inner {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
}

.panel-header {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-tab {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.3);
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.panel-tab-active {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.panel-dots {
  margin-left: auto;
  display: flex;
  gap: 5px;
}

.panel-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.panel-body { padding: 20px; }

/* Mock tweets */
.mock-tweet {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.mock-tweet-faded { opacity: 0.5; }

.mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

.mock-avatar-green { background: rgba(34, 197, 94, 0.15); border: 1px solid rgba(34, 197, 94, 0.3); }
.mock-avatar-red { background: rgba(248, 113, 113, 0.15); border: 1px solid rgba(248, 113, 113, 0.3); }

/* Blurred real PFP */
.mock-avatar { position: relative; overflow: hidden; }

.avatar-blur {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  filter: blur(3px) brightness(0.8);
}

.mock-tweet-content { flex: 1; min-width: 0; }

.mock-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 4px;
}

.mock-handle { font-weight: 400; color: rgba(255, 255, 255, 0.45); }

.mock-text {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

/* CALIBER badges */
.mock-badge {
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.mock-badge-green {
  background: rgba(34, 197, 94, 0.04);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.mock-badge-red {
  background: rgba(248, 113, 113, 0.04);
  border: 1px solid rgba(248, 113, 113, 0.15);
}

.mock-badge-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.mock-badge-brand {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 2px;
  color: rgba(34, 211, 238, 0.7);
}

.mock-badge-trust {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
}

.mock-badge-avoid {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #F87171;
  background: rgba(248, 113, 113, 0.1);
  padding: 3px 10px;
  border-radius: 4px;
}

.mock-badge-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
}

.mock-stat { display: flex; flex-direction: column; gap: 2px; }

.mock-stat-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mock-stat-value {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.mock-stat-green { color: #22c55e; }
.mock-stat-red { color: #F87171; }

.mock-badge-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  overflow: hidden;
}

.mock-badge-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mock-fill-green {
  width: 57%;
  background: linear-gradient(90deg, #22D3EE, #22c55e);
}

.mock-fill-red {
  width: 32%;
  background: linear-gradient(90deg, #F87171, #ef4444);
}

/* =============================================
   SCROLLING STATS BANNER
   ============================================= */
.stats-banner {
  padding: 48px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(9, 9, 11, 0.5);
  backdrop-filter: blur(8px);
}

.stats-track {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.stats-scroll {
  display: flex;
  align-items: center;
  gap: 48px;
  animation: scrollStats 30s linear infinite;
  width: max-content;
}

@keyframes scrollStats {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.stat-big {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #fff;
  letter-spacing: -1px;
}

.stat-big.stat-red { color: #F87171; }
.stat-big.stat-orange { color: #F97316; }

.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.06);
  flex-shrink: 0;
}

/* =============================================
   SECTIONS — Shared
   ============================================= */
.section { padding: 100px 32px; }

.glass-panel {
  max-width: 1080px;
  margin: 0 auto;
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 0;
}

.section-inner { max-width: 920px; margin: 0 auto; }

.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #22D3EE;
  margin-bottom: 16px;
  display: block;
}

.section-heading {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(26px, 3.2vw, 40px);
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.section-sub {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 48px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.5);
  max-width: 600px;
}

/* =============================================
   WALL OF SHAME
   ============================================= */
.shame-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.shame-card {
  background: rgba(248, 113, 113, 0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(248, 113, 113, 0.15);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.shame-card:hover {
  border-color: rgba(248, 113, 113, 0.2);
  transform: translateY(-2px);
}

.shame-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.shame-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.shame-avatar-red {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

/* Shame card avatar with real blurred PFP */
.shame-avatar { position: relative; overflow: hidden; }

.shame-info { flex: 1; }

.shame-name {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.shame-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 4px;
}

.shame-tag-red {
  color: #F87171;
  background: rgba(248, 113, 113, 0.1);
}

.shame-stats {
  display: flex;
  justify-content: space-between;
}

.shame-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.shame-stat-val {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
}

.shame-red { color: #F87171; }
.shame-orange { color: #F97316; }

.shame-stat-key {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.shame-footnote {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  text-align: center;
}

.btn-shame-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.steps { display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
}

.step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #22D3EE;
  flex-shrink: 0;
  width: 48px;
  padding-top: 0;
  line-height: 1;
  text-shadow: 0 0 20px rgba(34, 211, 238, 0.3);
}

.step-body { flex: 1; }

.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.step-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.5);
}

.step-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
}

/* =============================================
   BENTO GRID — Features
   ============================================= */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.bento-wide { grid-column: span 2; }

.bento-highlight {
  border-color: rgba(34, 211, 238, 0.15);
  background: rgba(34, 211, 238, 0.03);
}

.bento-highlight:hover {
  border-color: rgba(34, 211, 238, 0.25);
  background: rgba(34, 211, 238, 0.05);
}

.bento-icon {
  font-size: 36px;
  margin-bottom: 16px;
  color: #F59E0B;
  filter: none;
  text-shadow: 0 0 16px rgba(245, 158, 11, 0.4);
}

.bento-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #22D3EE;
  margin-bottom: 10px;
}

.bento-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7), 0 0 2px rgba(0, 0, 0, 0.5);
}

/* =============================================
   PRICING
   ============================================= */
#pricing {
  position: relative;
}

#pricing::before {
  content: '';
  position: absolute;
  inset: -60px -200px;
  background: radial-gradient(ellipse at center, rgba(9, 9, 11, 0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 680px;
  margin: 48px auto 0;
}

.price-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
}

.price-card-pro {
  border-color: rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.03);
}

.price-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #09090B;
  background: #22D3EE;
  padding: 4px 16px;
  border-radius: 6px;
  white-space: nowrap;
}

.price-tier {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.price-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.price-period {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 32px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.price-list {
  text-align: left;
  margin-bottom: 32px;
}

.price-list li {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8), 0 0 3px rgba(0, 0, 0, 0.6);
}

.price-list li::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}

.price-card-pro .price-list li::before {
  background: #22D3EE;
}

.price-disabled {
  color: rgba(255, 255, 255, 0.35) !important;
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

.price-disabled::before {
  content: '' !important;
  background: rgba(248, 113, 113, 0.5) !important;
}

.price-alt {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

.price-crypto {
  text-align: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 24px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

/* =============================================
   FINAL CTA
   ============================================= */
.section-final { padding-bottom: 80px; }

.glass-panel-cta {
  text-align: center;
  padding: 0;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-line1 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 44px);
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 4px;
}

.cta-line2 {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(20px, 2.5vw, 30px);
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: -0.3px;
  line-height: 1.2;
  margin-bottom: 40px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 32px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.2);
}

.footer-links { display: flex; gap: 28px; }

.footer-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  transition: color 0.2s ease;
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.6); }

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.15);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-inner { height: 60px; }
  .nav-links { display: none; }
  .nav-left { gap: 0; }

  .hero { padding: 100px 20px 60px; }
  .hero-blur { height: 280px; left: 50%; }

  .hero-split {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-right { flex: none; max-width: 100%; width: 100%; }
  .hero-sub { margin: 0 auto 36px; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-ctas .btn { width: 100%; max-width: 300px; }

  .hero-stats {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }

  .section { padding: 60px 16px; }

  .glass-panel {
    padding: 40px 24px;
    border-radius: 16px;
  }

  .section-heading { margin-bottom: 20px; }
  .section-sub { margin-bottom: 32px; }

  .shame-grid { grid-template-columns: 1fr; }

  .step { flex-direction: column; gap: 8px; }

  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { grid-column: span 1; }

  .pricing-row {
    grid-template-columns: 1fr;
    max-width: 380px;
  }

  .glass-panel-cta { padding: 48px 24px; }

  .footer { padding: 24px 20px; }
  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-line1,
  .hero-line2 { font-size: 32px; }

  .btn-nav-cta { font-size: 13px; padding: 8px 16px; }

  .stat-big { font-size: 28px; }
}
