/* ============================================================
   growme.in — Full Creative Freedom CSS
   Dark Cinematic + Bento Grid + Glow + Grain
   ============================================================ */

:root {
  --bg:          #080a10;
  --bg-card:     #0d1117;
  --bg-card-2:   #10141e;
  --border:      rgba(255,255,255,0.06);
  --border-glow: rgba(139,92,246,0.4);

  --purple:  #8b5cf6;
  --violet:  #7c3aed;
  --cyan:    #06b6d4;
  --green:   #10b981;
  --rose:    #f43f5e;
  --amber:   #f59e0b;
  --white:   #f1f5f9;
  --muted:   #64748b;

  --grad-main:   linear-gradient(135deg, #8b5cf6, #06b6d4);
  --grad-purple: linear-gradient(135deg, #7c3aed, #a855f7);
  --grad-glow:   radial-gradient(ellipse at center, rgba(139,92,246,0.25) 0%, transparent 70%);

  --font-h: 'Space Grotesk', sans-serif;
  --font-b: 'Inter', sans-serif;

  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 28px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
strong { font-weight: 600; }
em { font-style: italic; }

/* ─── Custom Cursor ──────────────────────────────────────── */
.cursor {
  width: 10px; height: 10px;
  background: var(--purple);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: normal;
  will-change: transform;
}

.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(139, 92, 246, 0.5);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  will-change: transform;
}

/* ─── Particle Canvas ────────────────────────────────────── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
}

/* ─── Noise grain overlay ────────────────────────────────── */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

/* ─── Mesh gradient background ───────────────────────────── */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.mesh-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
  animation: blobFloat 20s ease-in-out infinite;
}

.blob-1 {
  width: 700px; height: 700px;
  background: #7c3aed;
  top: -200px; left: -200px;
  animation-delay: 0s;
}
.blob-2 {
  width: 500px; height: 500px;
  background: #06b6d4;
  top: 20%; right: -150px;
  animation-delay: -5s;
}
.blob-3 {
  width: 600px; height: 600px;
  background: #a855f7;
  bottom: -100px; left: 20%;
  animation-delay: -10s;
}
.blob-4 {
  width: 400px; height: 400px;
  background: #10b981;
  top: 60%; left: -100px;
  animation-delay: -15s;
  opacity: 0.06;
}

@keyframes blobFloat {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(40px,-60px) scale(1.05); }
  66%      { transform: translate(-30px,40px) scale(0.95); }
}

/* ─── Header ────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  background: rgba(8, 10, 16, 0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-dot {
  width: 10px; height: 10px;
  background: var(--grad-main);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(139,92,246,0.7); }
  50%      { box-shadow: 0 0 0 8px rgba(139,92,246,0); }
}

.logo-text {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--white);
}

.logo-text em {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

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

.live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.live-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(16,185,129,0); }
}

.header-mail {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 30px;
}

.header-mail:hover {
  color: var(--white);
  border-color: var(--border-glow);
}

/* ─── Section label ────────────────────────────────────── */
.section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--purple);
  margin-bottom: 24px;
}

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding: 120px 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  color: #a78bfa;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  align-self: flex-start;
}

.hero-title {
  font-family: var(--font-h);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  display: flex;
  flex-direction: column;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: lineReveal 0.7s var(--ease) forwards;
}

.title-line:nth-child(1) { animation-delay: 0.2s; }
.title-line:nth-child(2) { animation-delay: 0.35s; }
.title-line:nth-child(3) { animation-delay: 0.5s; }

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
  opacity: 0;
  animation: fadeUp 0.7s 0.65s var(--ease) forwards;
}

.hero-desc strong {
  color: var(--white);
}

.hero-desc em {
  color: var(--purple);
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s var(--ease) forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--grad-main);
  color: #fff;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(139,92,246,0.35); }

.btn-primary svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: all 0.3s var(--ease);
}

.btn-ghost svg { width: 16px; height: 16px; }
.btn-ghost:hover {
  border-color: var(--border-glow);
  color: var(--white);
  background: rgba(139,92,246,0.06);
}

/* ─── Hero Right — Orbit ─────────────────────────────────── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s 0.4s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.lottie-orbit-wrap {
  position: relative;
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbit Rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(139,92,246,0.15);
  animation: spin-ring 20s linear infinite;
}

.ring-1 { width: 320px; height: 320px; border-color: rgba(139,92,246,0.12); animation-duration: 25s; }
.ring-2 { width: 380px; height: 380px; border-color: rgba(6,182,212,0.08); animation-duration: 35s; animation-direction: reverse; }
.ring-3 { width: 440px; height: 440px; border-color: rgba(139,92,246,0.05); animation-duration: 50s; }

@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.lottie-center {
  position: relative;
  z-index: 2;
  background: rgba(13,17,23,0.4);
  border-radius: 50%;
  padding: 10px;
  border: 1px solid var(--border);
  box-shadow: 0 0 80px rgba(139,92,246,0.18), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-logo-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #ffffff;
  box-shadow: 0 0 40px rgba(139,92,246,0.25);
  user-select: none;
  -webkit-user-drag: none;
}

/* Inline text link styling */
.inline-link {
  color: var(--purple);
  text-decoration: none;
  transition: var(--transition-smooth);
}

.inline-link:hover {
  color: var(--cyan);
}

/* Floating Asset Pills */
.asset-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(13,17,23,0.85);
  border: 1px solid var(--border);
  border-radius: 50px;
  backdrop-filter: blur(20px);
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  animation: floatPill 4s ease-in-out infinite;
  color: var(--white);
}

a.asset-pill {
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

a.asset-pill:hover {
  background: rgba(25, 30, 42, 0.95);
}

.asset-pill strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}

.asset-pill small {
  display: block;
  font-size: 10.5px;
  color: var(--muted);
}

.pill-icon { font-size: 20px; }

.pill-svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  flex-shrink: 0;
  display: block;
}

.pill-ig .pill-svg {
  color: var(--rose);
}

.pill-fb .pill-svg {
  color: var(--accent-blue);
}

.pill-domain {
  top: 5%;
  left: -10%;
  animation-delay: 0s;
  border-color: rgba(139,92,246,0.3);
}
.pill-ig {
  right: -12%;
  top: 38%;
  animation-delay: -1.5s;
  border-color: rgba(244,63,94,0.2);
}
.pill-ig:hover {
  border-color: rgba(244,63,94,0.6) !important;
  box-shadow: 0 8px 32px rgba(244,63,94,0.25);
}
.pill-fb {
  bottom: 5%;
  left: 5%;
  animation-delay: -3s;
  border-color: rgba(59,130,246,0.2);
}
.pill-fb:hover {
  border-color: rgba(59,130,246,0.6) !important;
  box-shadow: 0 8px 32px rgba(59,130,246,0.25);
}

@keyframes floatPill {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-10px); }
}

/* ─── Scroll Cue ─────────────────────────────────────────── */
.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.scroll-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--purple), transparent);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scanLine 2s ease-in-out infinite;
}

@keyframes scanLine {
  to { left: 100%; }
}

/* ─── BENTO SECTION ──────────────────────────────────────── */
.bento-section {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 16px;
}

/* ─── Bento Card Base ─────────────────────────────────────── */
.bcard {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}

.bcard::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.bcard:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(139,92,246,0.1);
}

/* Glow effect inside each card */
.bcard-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  opacity: 0;
  transition: opacity 0.4s;
}

.bcard:hover .bcard-glow { opacity: 1; }

.bcard-glow { top: -50px; left: -50px; background: radial-gradient(circle, rgba(139,92,246,0.3), transparent 70%); }
.ig-glow    { background: radial-gradient(circle, rgba(244,63,94,0.25), transparent 70%); }
.fb-glow    { background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 70%); }
.cta-glow   { background: radial-gradient(circle, rgba(6,182,212,0.25), transparent 70%); }
.vibe-glow  { background: radial-gradient(circle, rgba(16,185,129,0.2), transparent 70%); }

/* ─── Specific Bento Cards ─────────────────────────────────── */
.bcard-hero {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(139,92,246,0.05) 0%, rgba(6,182,212,0.03) 100%);
  padding: 48px;
}

.bcard-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.bcard-hero h2 {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.bcard-hero p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
}

.bcard-domain {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
}

.bcard-icon-big { font-size: 36px; }

.bcard-domain-name {
  font-family: var(--font-h);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -1px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.verified-chip {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,0.1);
  border: 1px solid rgba(16,185,129,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

/* Social cards */
.bcard-ig, .bcard-fb {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 180px;
  color: var(--white);
}

.ig-top, .fb-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.ig-top svg, .fb-top svg { width: 16px; height: 16px; }

.bcard-ig:hover .ig-top { color: var(--rose); }
.bcard-fb:hover .fb-top { color: #60a5fa; }

.social-handle {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: auto;
  padding-top: 24px;
}

.social-sub {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* CTA + Vibe cards */
.bcard-cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 160px;
  background: var(--bg-card-2);
}

.bcard-cta p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

.cta-email-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  transition: gap 0.3s var(--ease);
}

.cta-email-btn svg { width: 18px; height: 18px; color: var(--cyan); transition: transform 0.3s; }
.cta-email-btn:hover { gap: 16px; }
.cta-email-btn:hover svg { transform: translateX(4px); }

.bcard-vibe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  background: var(--bg-card-2);
  min-height: 160px;
}

.vibe-text {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
}

.vibe-divider {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  font-style: italic;
}

.bcard-vibe small {
  font-size: 12px;
  color: var(--muted);
}

/* ─── Bundle Section ────────────────────────────────────── */
.bundle-section {
  position: relative;
  z-index: 2;
  padding: 85px 0 100px;
  border-top: 1px solid var(--border);
}

.bundle-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.bundle-heading {
  font-family: var(--font-h);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}

.bundle-sub {
  font-size: 15px;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bundle-card {
  position: relative;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 36px 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  /* Default active hover states */
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bundle-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, transparent 60%);
  pointer-events: none;
}

.bundle-card:hover {
  /* Dim state on hover */
  transform: translateY(0);
  box-shadow: none;
  border-color: var(--border);
}

.bundle-card h3 {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-top: 8px;
  transition: all 0.3s;
}

.card-header-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.3s;
}

.bundle-icon {
  width: 22px;
  height: 22px;
}

/* --- Default Active Glow Configurations --- */
.domain-card {
  border-color: rgba(139,92,246,0.3);
}
.domain-card .card-header-icon {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.2);
  color: var(--purple);
}
.domain-card h3 {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.instagram-card {
  border-color: rgba(244,63,94,0.3);
}
.instagram-card .card-header-icon {
  background: rgba(244,63,94,0.1);
  border-color: rgba(244,63,94,0.2);
  color: var(--rose);
}
.instagram-card h3 {
  color: var(--rose);
}

.facebook-card {
  border-color: rgba(59,130,246,0.3);
}
.facebook-card .card-header-icon {
  background: rgba(59,130,246,0.1);
  border-color: rgba(59,130,246,0.2);
  color: var(--accent-blue);
}
.facebook-card h3 {
  color: var(--accent-blue);
}

/* --- Dimmed States on Hover --- */
.bundle-card:hover .card-header-icon {
  background: rgba(255,255,255,0.03);
  border-color: var(--border);
  color: var(--muted);
}
.domain-card:hover h3 {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: var(--white);
  color: var(--white);
}
.instagram-card:hover h3 {
  color: var(--white);
}
.facebook-card:hover h3 {
  color: var(--white);
}

.card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  flex-grow: 1;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.card-meta span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 20px;
}

/* Tablet & Mobile responsive bundle adjustments */
@media (max-width: 1024px) {
  .bundle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ─── FORM SECTION ─────────────────────────────────────────── */
.form-section {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
  border-top: 1px solid var(--border);
}

.form-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

/* Form Left */
.form-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 100px;
}

.form-heading {
  font-family: var(--font-h);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
}

.form-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.form-desc strong { color: var(--white); }

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 8px;
}

.trust-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.trust-icon { font-size: 22px; flex-shrink: 0; }

.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 13px;
  color: var(--muted);
}

/* Form Right — Card */
.form-right { position: relative; }

.pitch-card {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.pitch-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139,92,246,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.pitch-card-glow {
  position: absolute;
  width: 300px; height: 300px;
  top: -100px; right: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.pitch-card-inner {
  position: relative;
  z-index: 1;
  padding: 40px;
}

.form-top-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--purple);
  margin-bottom: 28px;
}

/* ─── Inputs ─────────────────────────────────────────────── */
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.input-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(241,245,249,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
}

.label-note {
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  font-style: italic;
}

.input-group input,
.input-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  outline: none;
  transition: all 0.3s var(--ease);
  width: 100%;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(100,116,139,0.7);
}

.input-group input:hover,
.input-group textarea:hover {
  border-color: rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: var(--purple);
  background: rgba(139,92,246,0.04);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.12);
}

.input-group textarea { resize: vertical; min-height: 90px; }

.input-group.full { grid-column: 1 / -1; }

/* Email warning */
.email-alert {
  display: none;
  font-size: 12px;
  color: #fbbf24;
  background: rgba(251,191,36,0.07);
  border: 1px dashed rgba(251,191,36,0.3);
  padding: 9px 13px;
  border-radius: 8px;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.input-hint {
  font-size: 11px;
  color: var(--muted);
  font-style: italic;
}

/* Price input */
.price-input-wrap {
  position: relative;
}

.price-prefix {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  pointer-events: none;
}

.price-input-wrap input { padding-left: 38px; }

/* Equity options */
.equity-options {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 10px;
}

.equity-opt { display: block; cursor: pointer; }

.equity-opt input { display: none; }

.equity-opt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.25s var(--ease);
  text-align: center;
}

.eq-icon { font-size: 22px; }
.eq-label { font-size: 12px; font-weight: 600; color: var(--muted); }

.equity-opt:hover .equity-opt-inner {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
}

.equity-opt input:checked + .equity-opt-inner {
  background: rgba(139,92,246,0.08);
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.1);
}

.equity-opt input:checked + .equity-opt-inner .eq-label {
  color: var(--white);
}

/* Submit button */
.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--grad-main);
  color: #fff;
  font-family: var(--font-h);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
  margin-top: 6px;
}

.submit-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.3s;
}

.submit-btn:hover::before { opacity: 1; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(139,92,246,0.35); }

.submit-btn svg { width: 18px; height: 18px; transition: transform 0.3s; }
.submit-btn:hover svg { transform: translateX(4px); }

.btn-loader {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

.submit-btn.loading .btn-loader { display: block; }
.submit-btn.loading .btn-text  { opacity: 0.7; }
.submit-btn.loading svg        { display: none; }
.submit-btn.loading            { pointer-events: none; opacity: 0.8; }

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

/* Success + Fallback states */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  animation: popIn 0.4s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

.success-emoji { font-size: 60px; margin-bottom: 20px; }

.form-success h3 {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-success p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 30px;
  max-width: 320px;
}

.reset-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 13.5px;
  cursor: pointer;
  transition: all 0.3s;
}

.reset-btn:hover { border-color: var(--border-glow); background: rgba(139,92,246,0.06); }

.form-fallback {
  display: none;
  margin-top: 20px;
  padding: 16px;
  background: rgba(251,191,36,0.05);
  border: 1px dashed rgba(251,191,36,0.3);
  border-radius: 12px;
  font-size: 13px;
  text-align: center;
  animation: slideDown 0.4s ease;
}

.form-fallback p { color: rgba(241,245,249,0.7); margin-bottom: 12px; }

.fallback-mail-btn {
  display: inline-block;
  background: var(--white);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  border-radius: 30px;
  transition: all 0.3s;
}

.fallback-mail-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }

/* Mobile asset strip — hidden on desktop, shown via mobile media query */
.mobile-asset-strip { display: none; }

/* ─── Footer ────────────────────────────────────────────── */
.site-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  padding: 48px 32px;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.footer-logo em {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}

.footer-note { font-size: 13.5px; color: var(--muted); }
.footer-note a { color: var(--purple); }
.footer-note a:hover { text-decoration: underline; }
.footer-copy { font-size: 12px; color: rgba(100,116,139,0.5); }

/* ─── Responsive ────────────────────────────────────────── */
/* ═══════════════════════════════════════════════════════════
   TABLET (max-width: 1024px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }

  /* Form */
  .form-section-inner { grid-template-columns: 1fr; gap: 48px; }
  .form-left { position: static; }

  /* Bundle */
  .bundle-grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE — complete redesign (max-width: 680px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 680px) {

  /* ── Cursor: kill on touch ──────────────────────────────── */
  .cursor, .cursor-follower { display: none !important; }
  body { cursor: auto; }

  /* ── Particle canvas: subtle on mobile ──────────────────── */
  #particle-canvas { opacity: 0.3; }

  /* ── Header ─────────────────────────────────────────────── */
  .site-header {
    padding: 14px 0;
    backdrop-filter: blur(16px);
  }
  .header-inner { padding: 0 clamp(20px, 6vw, 32px); }
  .header-mail { display: none; }
  .live-badge { font-size: 10px; }

  /* ── Hero ────────────────────────────────────────────────── */
  .hero {
    padding: 108px clamp(20px, 6vw, 32px) 60px;
    min-height: auto;
  }
  .hero-inner { gap: 0; }
  .hero-right { display: none; }
  .scroll-cue { display: none; }

  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .hero-tag {
    display: none;
  }

  .hero-title {
    font-size: clamp(30px, 8.5vw, 42px);
    letter-spacing: -1.8px;
    line-height: 1.12;
    margin-bottom: 18px;
    text-align: center;
  }

  .hero-desc {
    font-size: clamp(13px, 3.8vw, 15px);
    line-height: 1.72;
    color: var(--muted);
    margin-bottom: 28px;
    max-width: 440px;
    width: 100%;
    text-align: center;
  }
  .hero-desc strong { color: var(--white); }

  /* Buttons: stacked, full-width */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }
  .btn-primary {
    justify-content: center;
    padding: 15px 20px;
    font-size: 14.5px;
    border-radius: 14px;
  }
  .btn-ghost {
    justify-content: center;
    padding: 13px 20px;
    font-size: 13px;
    border-radius: 14px;
  }

  /* ── Mobile Asset Strip ─────────────────────────────────── */
  .mobile-asset-strip {
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.015);
    width: 100%;
  }

  .mas-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 22px;
    color: var(--white);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    text-decoration: none;
  }
  .mas-item:last-child { border-bottom: none; }
  a.mas-item:active { background: rgba(255,255,255,0.03); }

  .mas-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .dot-purple { background: var(--purple); box-shadow: 0 0 10px rgba(139,92,246,0.5); }
  .dot-rose   { background: var(--rose);   box-shadow: 0 0 10px rgba(244,63,94,0.5); }
  .dot-blue   { background: #60a5fa;       box-shadow: 0 0 10px rgba(96,165,250,0.5); }

  .mas-name {
    font-family: var(--font-h);
    font-size: 14px;
    font-weight: 600;
    flex: 1;
    text-align: left;
  }

  .mas-tag {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    background: rgba(255,255,255,0.04);
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid var(--border);
  }

  /* ── Bundle Section: completely hidden on mobile ────────── */
  .bundle-section { display: none !important; }

  /* ── Form Section ───────────────────────────────────────── */
  .form-section {
    padding: 56px 0 72px;
    border-top: 1px solid var(--border);
  }

  .form-section-inner {
    padding: 0 clamp(20px, 6vw, 32px);
    gap: 28px;
  }

  /* Hide left panel — just the form on mobile */
  .form-left { display: none; }
  .form-right { width: 100%; }

  /* Form card */
  .pitch-card {
    border-radius: 22px;
    border: 1px solid var(--border);
  }
  .pitch-card-glow { display: none; }
  .pitch-card-inner { padding: 28px 22px 32px; }

  .form-top-label {
    margin-bottom: 24px;
    font-size: 11px;
  }

  /* Fields */
  .field-row { grid-template-columns: 1fr; gap: 0; }

  .input-group { margin-bottom: 20px; }

  .input-group label {
    font-size: 12px;
    margin-bottom: 8px;
    color: rgba(241,245,249,0.65);
  }

  .label-note {
    display: block;
    margin-top: 3px;
    font-size: 10.5px;
  }

  .input-group input,
  .input-group textarea {
    font-size: 16px; /* prevents iOS zoom */
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
  }

  .input-group input:focus,
  .input-group textarea:focus {
    border-color: rgba(139,92,246,0.5);
    background: rgba(255,255,255,0.06);
  }

  .input-group textarea { min-height: 80px; }

  /* Equity options: horizontal scrollable pills */
  .equity-options {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .equity-options::-webkit-scrollbar { display: none; }

  .equity-opt { flex-shrink: 0; }

  .equity-opt-inner {
    flex-direction: row;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    white-space: nowrap;
    border-radius: 50px;
  }

  .eq-icon { font-size: 15px; }
  .eq-label { font-size: 12.5px; }

  /* Price input */
  .price-input-wrap { border-radius: 12px; }
  .price-input-wrap input { padding-left: 38px; }

  /* Submit */
  .submit-btn {
    padding: 16px;
    font-size: 15px;
    border-radius: 14px;
    margin-top: 8px;
  }

  /* ── Footer ─────────────────────────────────────────────── */
  .site-footer { padding: 40px clamp(20px, 6vw, 32px); }
  .footer-logo { font-size: 20px; margin-bottom: 12px; }
  .footer-note { font-size: 12px; line-height: 1.7; margin-bottom: 10px; }
  .footer-copy { font-size: 10.5px; }

  /* ── Section label ──────────────────────────────────────── */
  .section-label { font-size: 10.5px; margin-bottom: 16px; }
}

