:root {
    --bg: #080808;
    --bg2: #0e0e0e;
    --bg3: #111111;
    --accent: #C8FF00;
    --accent-dim: rgba(200,255,0,0.12);
    --accent-glow: rgba(200,255,0,0.06);
    --text: #F0F0F0;
    --muted: #555;
    --muted2: #888;
    --border: rgba(255,255,255,0.07);
    --card: #111;
  }

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

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: auto;
  }

  /* ── CURSOR GLOW (no custom cursor — using default browser cursor) ── */
  #cursor-glow {
    position: fixed;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(210,255,0,0.11) 0%, transparent 68%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.22s ease;
  }

  /* ── ANIMATED BG ── */
  #bg-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }
  .bg-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(200,255,0,0.05) 0%, transparent 70%);
    animation: orb-pulse 8s ease-in-out infinite;
  }
  .bg-orb:nth-child(1) { width: 600px; height: 600px; top: -100px; right: -100px; animation-delay: 0s; }
  .bg-orb:nth-child(2) { width: 400px; height: 400px; bottom: 20%; left: -100px; animation-delay: 3s; }
  .bg-orb:nth-child(3) { width: 500px; height: 500px; top: 50%; left: 40%; animation-delay: 5s; }

  @keyframes orb-pulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
  }

  /* ── LAYOUT ── */
  .wrap { position: relative; z-index: 1; }
  .container { max-width: 960px; margin: 0 auto; padding: 0 32px; }
  .container-wide { max-width: 1160px; margin: 0 auto; padding: 0 32px; }

  /* ── TIMER BAR ── */
  .timer-bar {
    background: var(--accent);
    color: #080808;
    text-align: center;
    padding: 16px 24px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.04em;
    position: sticky;
    top: 0;
    z-index: 100;
  }
  #countdown {
    font-size: 20px;
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 80px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 32px 80px;
    position: relative;
    overflow: hidden;
  }
  .hero .container { max-width: 70%; padding-left: 0; margin-left: 0; }
  .hero-anime {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45%;
    object-fit: cover;
    object-position: left top;
    opacity: 0.85;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.9) 40%, transparent 100%);
    pointer-events: none;
    user-select: none;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-dim);
    border: 1px solid rgba(200,255,0,0.25);
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 12px;
    width: fit-content;
  }
  .hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
  }
  @keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
  }

  .hero h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    font-weight: 800;
    line-height: 1.08;
    max-width: 860px;
    margin-bottom: 36px;
    letter-spacing: -0.03em;
  }
  .hero h1 em {
    font-style: normal;
    color: var(--accent);
  }

  .hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(240,240,240,0.55);
    max-width: 600px;
    margin-bottom: 56px;
    font-weight: 400;
    line-height: 1.65;
  }

  .hero-stats {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 28px;
    margin-top: 8px;
    width: fit-content;
    align-items: center;
  }
  .hero-stat {}
  .hero-stat-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-stat-label {
    font-size: 0.85rem;
    color: var(--muted2);
    font-weight: 400;
    letter-spacing: 0.04em;
  }
  .hero-stat-sep {
    width: 1px;
    background: var(--border);
    height: 32px;
    align-self: center;
    flex-shrink: 0;
  }

  /* ── DIVIDER ── */
  .divider { height: 1px; background: var(--border); }

  /* ── SECTIONS ── */
  section { padding: 100px 0; position: relative; z-index: 1; }
  section.alt { background: var(--bg2); }

  .label {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rajdhani', sans-serif;
  }
  .label::after {
    content: '';
    width: 40px; height: 1px;
    background: rgba(200,255,0,0.2);
  }

  .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 24px;
  }
  .section-body {
    font-size: 1.05rem;
    color: rgba(240,240,240,0.5);
    max-width: 560px;
    font-weight: 400;
    line-height: 1.75;
  }

  /* ── PAIN GRID ── */
  .pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 64px;
  }
  .pain-item {
    background: var(--card);
    padding: 40px 36px;
  }
  .pain-x {
    font-size: 22px;
    color: #FF4444;
    margin-bottom: 14px;
    line-height: 1;
  }
  .pain-item h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .pain-item p {
    font-size: 0.88rem;
    color: var(--muted2);
    font-weight: 400;
    line-height: 1.65;
  }

  /* ── STEPS ── */
  .steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-top: 64px;
  }
  .step { background: var(--card); padding: 36px 28px; }
  .step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(200,255,0,0.1);
    line-height: 1;
    margin-bottom: 20px;
  }
  .step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
  }
  .step p {
    font-size: 0.875rem;
    color: var(--muted2);
    font-weight: 400;
    line-height: 1.65;
  }

  /* ── BENEFITS ── */
  .benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 64px;
  }
  .benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 36px;
    transition: border-color 0.2s;
  }
  .benefit-card:hover { border-color: rgba(200,255,0,0.2); }
  .benefit-icon {
    font-size: 22px;
    margin-bottom: 20px;
    display: block;
  }
  .benefit-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .benefit-card p {
    font-size: 0.9rem;
    color: var(--muted2);
    font-weight: 400;
    line-height: 1.65;
  }

  /* ── COMMUNITY ── */
  .community-box {
    margin-top: 24px;
    background: var(--card);
    border: 1px solid rgba(200,255,0,0.15);
    border-radius: 20px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .community-box h3 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  .community-box h3 em {
    font-style: normal;
    color: var(--accent);
  }
  .community-box p {
    font-size: 0.95rem;
    color: var(--muted2);
    font-weight: 400;
    line-height: 1.7;
  }
  .community-members {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .member-row {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 18px;
  }
  .member-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--accent-dim);
    border: 1px solid rgba(200,255,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
  }
  .member-info { flex: 1; }
  .member-name {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .member-sub {
    font-size: 0.75rem;
    color: var(--muted2);
    font-weight: 400;
  }
  .member-result {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent);
  }

  /* ── ABOUT ── */
  .about-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 72px;
    align-items: start;
    margin-top: 64px;
  }
  .about-photo {
    aspect-ratio: 2/3;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
  }
  .about-photo-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(8,8,8,0.95));
  }
  .about-photo-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 2px;
  }
  .about-photo-handle {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 400;
  }
  .about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 36px;
  }
  .stat { background: var(--card); padding: 24px; }
  .stat-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
  }
  .stat-label {
    font-size: 0.78rem;
    color: var(--muted2);
    font-weight: 400;
  }
  .about-text {
    font-size: 0.95rem;
    color: rgba(240,240,240,0.6);
    font-weight: 400;
    line-height: 1.8;
  }
  .about-text strong { color: var(--text); font-weight: 600; }

  /* ── ANTI PAIN ── */
  .anti-box {
    border: 1px solid rgba(200,255,0,0.12);
    border-radius: 20px;
    padding: 52px;
    background: rgba(200,255,0,0.02);
    margin-top: 64px;
  }
  .anti-box blockquote {
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 36px;
    letter-spacing: -0.01em;
  }
  .anti-box blockquote em {
    font-style: normal;
    color: var(--accent);
  }
  .anti-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .anti-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(240,240,240,0.65);
    font-weight: 400;
  }
  .anti-bullets li::before {
    content: '→';
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
    font-weight: 700;
  }

  /* ── PROOF CAROUSEL ── */
  .carousel {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    padding: 0 32px 16px;
    margin-top: 24px;
    scrollbar-width: thin;
    scrollbar-color: rgba(200,255,0,0.3) transparent;
    scroll-snap-type: x mandatory;
  }
  .carousel::-webkit-scrollbar { height: 4px; }
  .carousel::-webkit-scrollbar-track { background: transparent; }
  .carousel::-webkit-scrollbar-thumb { background: rgba(200,255,0,0.3); border-radius: 2px; }
  .proof-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: border-color 0.2s;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: start;
  }
  .proof-card:hover { border-color: rgba(200,255,0,0.2); }
  .proof-card img {
    width: 100%;
    border-radius: 8px;
    object-fit: contain;
    height: auto;
  }
  .proof-result {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
  }
  .proof-meta {
    font-size: 0.78rem;
    color: var(--muted2);
    font-weight: 400;
  }
  .proof-placeholder {
    background: rgba(255,255,255,0.03);
    border-radius: 10px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    color: var(--muted);
    border: 1px dashed rgba(255,255,255,0.08);
    font-weight: 400;
  }

  /* ── OFFER / PRICES ── */
  .prices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 680px;
    margin: 64px auto 0;
  }
  .price-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: border-color 0.2s;
  }
  .price-card:hover { border-color: rgba(200,255,0,0.2); }
  .price-card.featured {
    border-color: rgba(200,255,0,0.3);
    background: rgba(200,255,0,0.03);
    position: relative;
  }
  .price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #080808;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
  }
  .price-type {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 20px;
  }
  .price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
  }
  .price-period {
    font-size: 0.82rem;
    color: var(--muted2);
    font-weight: 400;
    margin-bottom: 28px;
  }
  .price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    width: 100%;
    margin-bottom: 32px;
    font-size: 0.88rem;
    color: rgba(240,240,240,0.65);
    font-weight: 400;
  }
  .price-features li::before {
    content: '✓ ';
    color: var(--accent);
    font-weight: 700;
  }
  .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--accent);
    color: #080808;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 15px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.15s, background 0.15s;
    cursor: pointer;
    border: none;
    width: 100%;
    letter-spacing: 0.02em;
  }
  .cta-btn:hover {
    background: #b8ee00;
    transform: translateY(-2px);
  }
  .offer-fine {
    text-align: center;
    max-width: 480px;
    margin: 28px auto 0;
    font-size: 0.8rem;
    color: var(--muted2);
    font-weight: 400;
    line-height: 1.7;
  }

  /* ── FOOTER ── */
  footer {
    border-top: 1px solid var(--border);
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .footer-free {
    font-size: 0.85rem;
    color: var(--muted2);
    font-weight: 400;
  }
  .footer-free a {
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
  }
  .footer-free a:hover {
    color: var(--accent);
    border-color: var(--accent);
  }
  .footer-copy {
    font-size: 0.75rem;
    color: var(--muted);
    font-weight: 400;
  }

  /* ── FADE IN ── */
  .fade {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
  }
  .fade.in { opacity: 1; transform: none; }

  .hero-socials {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 36px;
  }
  .hero-social-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.85rem;
    color: var(--muted2);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s;
  }
  .hero-social-link:hover { color: var(--text); }
  .hero-social-sep {
    width: 1px;
    height: 14px;
    background: var(--border);
  }

  .join-wrap {
    position: relative;
  }
  .join-anime-left,
  .join-anime-right {
    position: absolute;
    bottom: 0;
    height: 520px;
    width: 220px;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
  }
  .join-anime-left {
    left: -20px;
    object-position: right top;
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.7) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.7) 70%, transparent 100%);
    opacity: 0.65;
  }
  .join-anime-right {
    right: -20px;
    object-position: left top;
    mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.7) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.7) 40%, rgba(0,0,0,0.7) 70%, transparent 100%);
    opacity: 0.65;
  }

/* Bootstrap overrides */
.container {
  max-width: 960px;
  padding-left: 1rem;
  padding-right: 1rem;
}
.container-wide {
  max-width: 1160px;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 575.98px) {
  body { cursor: auto; }
  #cursor-glow { display: none; }
  .timer-bar { font-size: 12px; padding: 10px 12px; }
  #countdown { font-size: 15px; min-width: 60px; }
  .hero { padding: 40px 16px 60px; min-height: auto; }
  .hero .container { max-width: 100%; padding-left: 0; margin-left: 0; }
  .hero-anime { display: none !important; }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .hero-sub { margin-bottom: 28px; }
  .hero-stats { width: 100%; flex-wrap: wrap; gap: 12px 20px; padding: 14px 16px; }
  .hero-stat-sep { display: none; }
  section { padding: 56px 0; }
  .pain-grid { grid-template-columns: 1fr; margin-top: 32px; border-radius: 12px; }
  .pain-item { padding: 24px 20px; }
  .steps { grid-template-columns: 1fr; margin-top: 32px; border-radius: 12px; }
  .step { padding: 24px 20px; }
  .benefits-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .benefit-card { padding: 24px; }
  .community-box { grid-template-columns: 1fr; gap: 24px; padding: 28px 20px; margin-top: 16px; }
  .about-layout { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; }
  .about-photo { aspect-ratio: 3/4; max-height: 320px; }
  .anti-box { padding: 28px 20px; margin-top: 32px; }
  .carousel { padding: 0 16px 16px; }
  .proof-card { width: 240px; }
  .prices-grid { grid-template-columns: 1fr; margin-top: 40px; max-width: 100%; }
  .price-card { padding: 28px 20px; }
  .join-anime-left, .join-anime-right { display: none; }
  footer { padding: 32px 16px; }
  .hero-socials { flex-wrap: wrap; gap: 12px; }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  body { cursor: auto; }
  #cursor-glow { display: none; }
  .hero { padding: 48px 24px 64px; min-height: auto; }
  .hero .container { max-width: 100%; padding-left: 0; margin-left: 0; }
  .hero-anime { display: none !important; }
  .pain-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .steps { grid-template-columns: 1fr 1fr; margin-top: 36px; }
  .benefits-grid { grid-template-columns: 1fr; margin-top: 36px; }
  .community-box { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; }
  .about-layout { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }
  .prices-grid { grid-template-columns: 1fr; max-width: 400px; }
  .join-anime-left, .join-anime-right { display: none; }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  body { cursor: auto; }
  #cursor-glow { display: none; }
  .hero .container { max-width: 65%; }
  .hero-anime { width: 50%; }
  .steps { grid-template-columns: 1fr 1fr; }
  .prices-grid { max-width: 100%; }
  .community-box { gap: 28px; padding: 32px; }
  .about-layout { grid-template-columns: 260px 1fr; gap: 40px; }
}

@media (min-width: 992px) {
  .hero .container { max-width: 70%; padding-left: 0; margin-left: 0; }
}

/* ── HERO CTA ── */
.hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
}
.hero-cta-main {
  width: auto;
  padding: 16px 40px;
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.hero-ghost-link {
  font-size: 0.875rem;
  color: var(--muted2);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.15s;
  white-space: nowrap;
}
.hero-ghost-link:hover { color: var(--accent); }

/* ── MOBILE STICKY CTA ── */
.mobile-cta {
  display: none;
}
@media (max-width: 767.98px) {
  .mobile-cta {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 20px 18px;
    background: rgba(8,8,8,0.96);
    border-top: 1px solid rgba(200,255,0,0.18);
    z-index: 200;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* hidden by default — slides up when .visible added by JS */
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .mobile-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-cta .cta-btn {
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: 10px;
  }
  /* Push footer content above sticky bar on mobile */
  footer {
    padding-bottom: 80px;
  }
}

/* small phones — tighten hero-cta */
@media (max-width: 575.98px) {
  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }
  .hero-cta-main { width: 100%; text-align: center; }
}

/* ── hero-tag inside socials row — reset standalone styles ── */
.hero-socials .hero-tag {
  margin-bottom: 0;
  flex-shrink: 0;
}
