/* Theme Accent: #03fc77  FOLKKKKK */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --accent:        #03fc77;
  --accent-dim:    rgba(3, 252, 119, 0.10);
  --accent-glow:   rgba(3, 252, 119, 0.22);
  --bg:            #000000;
  --bg-2:          #1a1a1a;
  --bg-3:          #141414;
  --card:          #121212;
  --card-border:   rgba(255, 255, 255, 0.09);
  --text:          #f0f0f0;
  --muted:         #888888;
  --radius:        12px;
  --radius-lg:     18px;
  --radius-xl:     24px;
  --nav-h:         64px;
  --font:          'Inter', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; }

/* ============================================================
   PARTICLES
   ============================================================ */
#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--bg);
}

#particles-js canvas {
  display: block;
  background: transparent !important;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(3, 252, 119, 0.08);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background 0.3s;
}

.navbar.scrolled {
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}

.nav-inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.35rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.logo span { color: var(--accent); text-shadow: 0 0 18px rgba(3, 252, 119, 0.5); }

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.btn-nav {
  background: linear-gradient(180deg, #0dff88 0%, #01c055 100%) !important;
  color: #111 !important;
  padding: 0.42rem 1.1rem;
  border-radius: 8px;
  font-weight: 800 !important;
  font-size: 0.83rem !important;
  transition: opacity 0.2s, transform 0.2s !important;
}
.btn-nav:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  color: #111 !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  cursor: pointer;
  padding: 8px 10px;
  transition: background 0.2s, border-color 0.2s;
}
.hamburger:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(3,252,119,0.25);
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open {
  background: rgba(3,252,119,0.08);
  border-color: rgba(3,252,119,0.3);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: var(--accent); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: var(--accent); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  z-index: 199;
  background: rgba(26, 26, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(3, 252, 119, 0.1);
  padding: 1rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-nav-link {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-nav-link:last-of-type { border-bottom: none; }
.mobile-nav-link:hover { color: var(--accent); padding-left: 6px; }
.mobile-cta { margin-top: 1.1rem; text-align: center; width: 100%; justify-content: center; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #0dff88 0%, #01c055 100%);
  color: #111;
  padding: 0.72rem 1.6rem;
  border: none;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
  box-shadow: 0 4px 22px rgba(3, 252, 119, 0.22);
}
.btn-primary:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  color: #111;
  box-shadow: 0 8px 32px rgba(3, 252, 119, 0.38);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.72rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
  color: var(--text);
}

.btn-icon {
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 2rem 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 65%;
  background: radial-gradient(ellipse at 50% 0%, rgba(3, 252, 119, 0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}

/* LEFT — text */
.hero-text {
  flex: 1;
  min-width: 0;
  max-width: 540px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  color: var(--accent);
  padding: 0.32rem 0.85rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.6s ease both;
  box-shadow: 0 0 20px rgba(3, 252, 119, 0.1);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1);   box-shadow: 0 0 0 0 rgba(3, 252, 119, 0.55); }
  50%       { opacity: 0.6; transform: scale(0.8); box-shadow: 0 0 8px 3px rgba(3, 252, 119, 0.2); }
}

.hero-text h1 {
  font-size: clamp(1.9rem, 7.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 1.25rem;
  animation: fadeInUp 0.65s ease 0.1s both;
}

.accent {
  color: var(--accent);
  text-shadow: 0 0 30px rgba(3, 252, 119, 0.28);
}

.hero-text p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 2rem;
  line-height: 1.7;
  animation: fadeInUp 0.65s ease 0.2s both;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.65s ease 0.3s both;
}

/* Stats row */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  animation: fadeInUp 0.65s ease 0.4s both;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.stat-num {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 32px;
  background: var(--card-border);
}

/* RIGHT — 3D image */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  animation: fadeInRight 0.8s ease 0.3s both;
}

/* ============================================================
   3D IMAGE
   ============================================================ */
.img-3d-wrapper {
  perspective: 900px;
  cursor: pointer;
  width: 100%;
  max-width: 540px;
  position: relative;
  user-select: none;
}

.img-3d-inner {
  position: relative;
  transform-style: preserve-3d;
  border-radius: var(--radius-xl);
  overflow: hidden;
  will-change: transform;
  border: 1px solid var(--card-border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.img-3d-wrapper:hover .img-3d-inner {
  border-color: rgba(3, 252, 119, 0.25);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.6);
}

/* Top-surface shine */
.img-3d-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.07) 0%,
    transparent 55%
  );
  z-index: 3;
  pointer-events: none;
  border-radius: inherit;
}

.img-glow-overlay { display: none; }

.preview-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
}

/* Corner accent brackets */
.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.img-3d-wrapper:hover .corner { opacity: 1; }
.corner.tl { top: 10px; left: 10px;  border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.corner.tr { top: 10px; right: 10px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.corner.bl { bottom: 10px; left: 10px;  border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.corner.br { bottom: 10px; right: 10px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }

/* Bottom hover overlay */
.img-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1.1rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--bg) 82%, transparent) 0%, transparent 50%);
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
}
.img-3d-wrapper:hover .img-overlay { opacity: 1; }

.expand-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(3, 252, 119, 0.12);
  border: 1px solid rgba(3, 252, 119, 0.38);
  color: var(--accent);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

/* ============================================================
   SCROLL INDICATOR
   ============================================================ */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 1s ease 1s both;
}

.scroll-arrow {
  color: var(--accent);
  font-size: 1.35rem;
  animation: bounceArrow 1.8s ease-in-out infinite;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateY(0);   opacity: 0.4; }
  50%       { transform: translateY(8px); opacity: 0.9; }
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  position: relative;
  z-index: 1;
  padding: 120px 2rem;
}

.section-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 12px rgba(3, 252, 119, 0.35);
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 0.8rem;
  line-height: 1.15;
}

.section-header p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .features-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.6rem;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}

.feature-card:hover {
  border-color: rgba(3, 252, 119, 0.22);
  background: rgba(3, 252, 119, 0.03);
  box-shadow: 0 0 30px rgba(3, 252, 119, 0.07), 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(-5px);
}
.feature-card.visible:hover { transform: translateY(-5px); }
.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 0 14px rgba(3, 252, 119, 0.1);
  transition: box-shadow 0.3s;
}
.feature-card:hover .feature-icon-wrap {
  box-shadow: 0 0 22px rgba(3, 252, 119, 0.28);
}

.f-icon {
  font-size: 1.1rem;
  color: var(--accent);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: var(--text);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  position: relative;
  z-index: 1;
  padding: 80px 2rem 120px;
}

.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(3, 252, 119, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 28px;
  padding: 4.5rem 3rem;
  overflow: visible;
  box-shadow: 0 0 80px rgba(3, 252, 119, 0.05), 0 40px 120px rgba(0, 0, 0, 0.6);
}

.cta-glow { display: none; }

.cta-inner .section-tag { margin-bottom: 0.6rem; }

.cta-inner h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}

.cta-inner > p {
  color: var(--muted);
  margin-bottom: 2.2rem;
}

.cta-sub {
  margin-top: 1.1rem !important;
  margin-bottom: 0 !important;
  font-size: 0.78rem;
  color: var(--muted) !important;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--card-border);
  padding: 4rem 2rem 2.5rem;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  gap: 4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.footer-brand { flex: 2; min-width: 200px; }

.footer-logo {
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.5rem;
}
.footer-logo span { color: var(--accent); }

.footer-desc {
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-width: 120px;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

.footer-col a {
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid var(--card-border);
  padding-top: 1.75rem;
}

.footer-copy {
  color: rgba(125, 138, 153, 0.55);
  font-size: 0.78rem;
}

.footer-badges {
  display: flex;
  gap: 0.6rem;
}

.footer-badge {
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.22rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.02em;
}

/* ============================================================
   MODALS — SHARED
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ============================================================
   IMAGE MODAL
   ============================================================ */
#imgModal { cursor: zoom-out; }

.modal-close-btn {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 901;
  transition: background 0.2s, transform 0.25s;
}
.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(90deg);
}

.modal-img-wrapper {
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.82) translateY(20px);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.8);
  border: 1px solid var(--card-border);
  cursor: default;
}

.modal-overlay.active .modal-img-wrapper {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.modal-img-wrapper img {
  display: block;
  max-width: 90vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: var(--radius-xl);
}

/* ============================================================
   LEGAL MODAL
   ============================================================ */
.legal-modal-box {
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  width: min(820px, 94vw);
  max-height: 86vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(32px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.35s ease;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
}

.modal-overlay.active .legal-modal-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.legal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--card-border);
  flex-shrink: 0;
}

.legal-modal-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent);
}

.modal-close-inline {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, transform 0.25s;
}
.modal-close-inline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  transform: rotate(90deg);
}

.legal-content {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.75rem;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.85;
  white-space: pre-wrap;
  word-break: break-word;
}

/* ============================================================
   CUSTOM SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(3, 252, 119, 0.35); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(3, 252, 119, 0.6); }

/* ============================================================
   PRICING
   ============================================================ */
.hero-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.65s ease 0.4s both;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-amount {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.5px;
  line-height: 1;
}

.price-period {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
}

.price-divider {
  width: 1px;
  height: 28px;
  background: var(--card-border);
}

.price-alt {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.price-alt-amount {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.price-alt-note {
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  padding-top: 0.9rem;
}

.cta-price-card {
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.6rem;
  text-align: center;
  min-width: 130px;
  position: relative;
  transition: border-color 0.2s;
}

.cta-price-card.featured {
  border-color: rgba(3, 252, 119, 0.3);
}

.cta-price-card:hover { border-color: rgba(3, 252, 119, 0.3); }

.cta-price-card .price-amount {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.cta-price-card .price-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cta-or {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   TOS GATE MODAL
   ============================================================ */
.tos-gate {
  position: fixed;
  inset: 0;
  z-index: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInUp 0.35s ease both;
}

.tos-gate::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.tos-gate-box {
  position: relative;
  z-index: 1;
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.tos-gate-icon {
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
  text-shadow: 0 0 10px rgba(3, 252, 119, 0.3);
}

.tos-gate-box h2 {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.tos-gate-box p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.tos-gate-box p a {
  color: var(--accent);
  font-weight: 600;
}

.tos-gate.closing {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tos-gate-box .btn-primary {
  box-shadow: 0 2px 10px rgba(3, 252, 119, 0.12);
}
.tos-gate-box .btn-primary:hover {
  box-shadow: 0 4px 16px rgba(3, 252, 119, 0.2);
}

.tos-gate-links {
  display: flex;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.1rem;
}

.tos-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 0.42rem 0.95rem;
  border-radius: var(--radius);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.tos-link-btn:hover {
  color: var(--accent);
  border-color: rgba(3, 252, 119, 0.25);
  background: rgba(3, 252, 119, 0.05);
}

.cta-price-card.best {
  border-color: rgba(3, 252, 119, 0.4);
  box-shadow: 0 0 22px rgba(3, 252, 119, 0.1);
}

.best-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #111;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  white-space: nowrap;
}

.card-sparkle {
  position: absolute;
  color: var(--accent);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  z-index: 10;
  animation: sparkleAnim var(--dur, 1.2s) ease-in-out forwards;
}

@keyframes sparkleAnim {
  0%   { opacity: 0; transform: scale(0.2) rotate(0deg);  }
  35%  { opacity: 1; transform: scale(1.1) rotate(25deg); }
  100% { opacity: 0; transform: scale(0.4) rotate(55deg); }
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-text { max-width: 100%; }
  .hero-text p { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { width: 100%; }
  .img-3d-wrapper { max-width: 460px; margin: 0 auto; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 640px) {
  .hero { padding: 84px 1.25rem 56px; }
  .hero-text h1 { letter-spacing: -0.5px; }
  .hero-price { flex-wrap: wrap; justify-content: center; gap: 0.5rem 1.25rem; }
  .price-divider { display: none; }
  .features { padding: 70px 1.25rem; }
  .cta-section { padding: 60px 1.25rem 80px; }
  .cta-inner { padding: 2.5rem 1.25rem; border-radius: 18px; }
  .cta-pricing { flex-direction: column; align-items: stretch; gap: 0.5rem; }
  .cta-or { text-align: center; }
  .cta-price-card { justify-content: center; }
  .footer { padding: 3rem 1.25rem 2rem; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
  .tos-gate-box { padding: 2.25rem 1.5rem; }
}

@media (max-width: 420px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns a { justify-content: center; }
  .img-3d-wrapper { max-width: 100%; }
  .tos-gate-box { padding: 2rem 1.25rem; }
  .tos-gate-links { flex-direction: column; }
  .cta-price-card { padding: 1rem 1.25rem; }
  .section-header h2 { letter-spacing: -0.5px; }
}
