/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #05050a;
  --bg-elevated: #0c0c14;
  --surface: #12121c;
  --text: #f0f0f5;
  --text-muted: #8a8a9a;
  --accent: #7c5cff;
  --accent-2: #00e5c0;
  --accent-3: #ff5c8a;
  --google-blue: #4285f4;
  --google-red: #ea4335;
  --google-yellow: #fbbc05;
  --google-green: #34a853;
  --glow: rgba(124, 92, 255, 0.4);
  --radius: 20px;
  --font: 'Outfit', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

img { max-width: 100%; display: block; }

/* ===== CUSTOM CURSOR ===== */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent-2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(124, 92, 255, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
}

body:hover .cursor,
body:hover .cursor-follower {
  opacity: 1;
}

.cursor.hover {
  width: 20px;
  height: 20px;
  background: var(--accent);
}

.cursor-follower.hover {
  width: 60px;
  height: 60px;
  border-color: var(--accent-2);
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  width: 0%;
  z-index: 10000;
  box-shadow: 0 0 12px var(--glow);
}

/* ===== PARTICLES ===== */
#particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: rgba(5, 5, 10, 0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.3s;
}

.nav.scrolled {
  background: rgba(5, 5, 10, 0.92);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.logo-icon {
  color: var(--accent-2);
  font-size: 1.4rem;
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-2);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #5a3fff);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-weight: 600 !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  gap: 2rem;
  overflow: hidden;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
}

.glow-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -10%;
  left: -5%;
  animation: float 18s ease-in-out infinite;
}

.glow-2 {
  width: 400px;
  height: 400px;
  background: var(--accent-2);
  bottom: 10%;
  right: 5%;
  animation: float 22s ease-in-out infinite reverse;
}

.glow-3 {
  width: 300px;
  height: 300px;
  background: var(--accent-3);
  top: 40%;
  left: 40%;
  opacity: 0.25;
  animation: float 15s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -40px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(124, 92, 255, 0.12);
  border: 1px solid rgba(124, 92, 255, 0.3);
  padding: 0.45rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--accent-2);
  margin-bottom: 1.75rem;
  font-weight: 500;
}

.pulse {
  width: 8px;
  height: 8px;
  background: var(--accent-2);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 192, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(0, 229, 192, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-title .line {
  display: block;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--accent-2), var(--accent), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #5a3fff);
  color: white;
  box-shadow: 0 4px 24px rgba(124, 92, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(124, 92, 255, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.2);
  width: 100%;
  justify-content: center;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: var(--accent);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
}

.stat span:not(.stat-num):not(.stat-label) {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-2);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}

/* Hero 3D container */
.hero-3d {
  position: relative;
  height: 520px;
  z-index: 2;
}

.hero-3d canvas {
  width: 100% !important;
  height: 100% !important;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  position: relative;
  padding: 8rem 3rem;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.product-stage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.product-viewer {
  perspective: 1400px;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-viewer::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(124,92,255,0.25), transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 1; }
}

.card-3d {
  width: 280px;
  height: 176px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
  will-change: transform;
}

.card-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 25px 50px -12px rgba(0,0,0,0.6),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.card-front {
  background: linear-gradient(145deg, #1a1a28 0%, #0e0e18 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-content {
  width: 100%;
  height: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.card-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.g-logo {
  width: 22px;
  height: 22px;
  background: conic-gradient(from 0deg, var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green), var(--google-blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.7rem;
  color: white;
  -webkit-text-fill-color: white;
}

.stars {
  color: var(--google-yellow);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin: 0.6rem 0 0.4rem;
}

.card-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
}

.nfc-icon {
  position: absolute;
  bottom: 1.1rem;
  left: 1.5rem;
  color: var(--accent-2);
  opacity: 0.9;
}

.qr-placeholder {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 6px;
  padding: 4px;
}

.qr-grid {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(#111 25%, transparent 25%) 0 0 / 8px 8px,
    linear-gradient(90deg, #111 25%, transparent 25%) 0 0 / 8px 8px,
    linear-gradient(#111 50%, transparent 50%) 4px 4px / 8px 8px,
    linear-gradient(90deg, #111 50%, transparent 50%) 4px 4px / 8px 8px;
  background-color: white;
}

.card-back {
  background: linear-gradient(145deg, #16162a, #0a0a14);
  transform: rotateY(180deg);
}

.card-content.back {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.back-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}

.card-content.back p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.back-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(124,92,255,0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0,229,192,0.1), transparent 40%);
  pointer-events: none;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-item {
  padding: 1.25rem 1.5rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s;
  opacity: 0.45;
}

.info-item.active {
  opacity: 1;
  background: rgba(124, 92, 255, 0.08);
  border-color: rgba(124, 92, 255, 0.25);
  transform: translateX(8px);
}

.info-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.info-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ===== HOW ===== */
.how {
  padding: 7rem 3rem;
  position: relative;
  z-index: 1;
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
}

.how-card {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.how-card::before {
  content: attr(data-step);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.how-card:hover {
  transform: translateY(-8px);
  border-color: rgba(124, 92, 255, 0.3);
  box-shadow: 0 20px 40px -15px rgba(124, 92, 255, 0.2);
}

.how-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 92, 255, 0.12);
  border-radius: 14px;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.how-icon svg {
  width: 28px;
  height: 28px;
}

.how-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.how-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== FEATURES ===== */
.features {
  padding: 7rem 3rem;
  position: relative;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 192, 0.25);
  box-shadow: 0 20px 40px -15px rgba(0, 229, 192, 0.15);
}

.feature-card.large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
}

.feature-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}

.orbit {
  position: relative;
  width: 120px;
  height: 120px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(124, 92, 255, 0.4);
  border-radius: 50%;
  animation: spin-slow 10s linear infinite;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--accent-2);
  border-radius: 50%;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 12px var(--accent-2);
  animation: orbit 10s linear infinite;
}

@keyframes orbit {
  to { transform: translate(-50%, -50%) rotate(360deg) translateX(60px) rotate(-360deg); }
}

.orbit-core {
  position: absolute;
  inset: 30%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 0 30px rgba(124, 92, 255, 0.5);
}

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== PROOF MARQUEE ===== */
.proof {
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  z-index: 1;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-track span:nth-child(odd) {
  color: rgba(255,255,255,0.35);
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== PRICING ===== */
.pricing {
  padding: 7rem 3rem;
  position: relative;
  z-index: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

.price-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s;
  position: relative;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card.featured {
  background: linear-gradient(160deg, rgba(124,92,255,0.15), rgba(12,12,20,1));
  border-color: rgba(124, 92, 255, 0.4);
  box-shadow: 0 0 60px -20px rgba(124, 92, 255, 0.4);
  transform: scale(1.04);
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
}

.price-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-badge.hot {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  width: fit-content;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.price-per {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0.4rem 0 1.75rem;
}

.price-features {
  flex: 1;
  margin-bottom: 2rem;
}

.price-features li {
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  position: relative;
  padding-left: 1.4rem;
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-2);
  font-weight: 700;
}

/* ===== CTA ===== */
.cta {
  padding: 7rem 3rem;
  position: relative;
  z-index: 1;
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(160deg, rgba(124,92,255,0.12), rgba(0,229,192,0.06));
  border: 1px solid rgba(124, 92, 255, 0.2);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(124,92,255,0.15), transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  position: relative;
}

.cta-inner > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  position: relative;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.cta-form input,
.cta-form select {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 0.95rem 1.1rem;
  color: var(--text);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.25s;
  cursor: none;
}

.cta-form input:focus,
.cta-form select:focus {
  border-color: var(--accent);
}

.cta-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a8a9a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.cta-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  padding: 3rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  z-index: 1;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.15rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 2rem 3rem;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-3d {
    height: 380px;
    order: -1;
  }

  .product-stage {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .product-viewer {
    height: 380px;
  }

  .how-grid,
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .feature-card.large {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 6rem 1.5rem 2rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-stats {
    gap: 1.5rem;
  }

  .product-section,
  .how,
  .features,
  .pricing,
  .cta {
    padding: 5rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  /* Hide custom cursor on touch devices */
  .cursor, .cursor-follower {
    display: none;
  }

  body {
    cursor: auto;
  }

  .btn, .cta-form input, .cta-form select {
    cursor: pointer;
  }
}

/* ===== GSAP REVEAL HELPERS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}
