/* ===================================================
   GRABBIT MARKETING SITE — style.css
   =================================================== */

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

:root {
  --bg:           #09090f;
  --bg-2:         #0f0f1a;
  --bg-3:         #13131f;
  --surface:      #1a1a2e;
  --surface-2:    #1f1f35;
  --border:       rgba(255,255,255,0.07);
  --border-hi:    rgba(255,255,255,0.13);
  --text:         #e8e8f0;
  --text-muted:   rgba(232,232,240,0.55);
  --accent-1:     #7c3aed;
  --accent-2:     #4f46e5;
  --accent-3:     #06b6d4;
  --accent-grad:  linear-gradient(135deg, #7c3aed 0%, #4f46e5 50%, #06b6d4 100%);
  --accent-grad-h: linear-gradient(135deg, #9f5aff 0%, #6c63ff 50%, #22d3ee 100%);
  --glow-purple:  rgba(124,58,237,0.35);
  --glow-blue:    rgba(79,70,229,0.3);
  --glow-cyan:    rgba(6,182,212,0.25);
  --radius:       12px;
  --radius-lg:    20px;
  --font:         'Space Grotesk', system-ui, sans-serif;
  --font-mono:    'Space Mono', 'Fira Code', monospace;
  --nav-h:        68px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

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

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

kbd {
  font-family: var(--font);
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--surface-2);
  border: 1px solid var(--border-hi);
  border-radius: 5px;
  padding: 2px 7px;
  white-space: nowrap;
  color: var(--accent-3);
}

code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 2px 6px;
  color: var(--accent-3);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- Utility ---------- */
.gradient-text {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 1rem;
}

.section-headline {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font);
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--transition);
  border-radius: inherit;
}

.btn:hover::after { background: rgba(255,255,255,0.08); }

.btn-sm { font-size: 0.875rem; padding: 0.45rem 1.1rem; }
.btn-lg { font-size: 1rem; padding: 0.9rem 2rem; }

.btn-primary {
  background: var(--accent-grad);
  color: #fff;
  box-shadow: 0 4px 24px var(--glow-purple);
}
.btn-primary:hover { box-shadow: 0 6px 32px rgba(124,58,237,0.55); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border-hi);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.25); }

.btn-coffee {
  background: linear-gradient(135deg, #fd7c38 0%, #ff9c1a 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(253,124,56,0.4);
}
.btn-coffee:hover { box-shadow: 0 6px 32px rgba(253,124,56,0.6); transform: translateY(-1px); }


/* ===================================================
   NAV
   =================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(9,9,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo img { border-radius: 7px; }

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--text); }

.nav-link-gh {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}


/* ===================================================
   HERO
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 2rem 6rem;
  overflow: hidden;
  text-align: center;
}

.hero-parallax-bg {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(124,58,237,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6,182,212,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(79,70,229,0.1) 0%, transparent 60%);
  will-change: transform;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' 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: 200px 200px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}
.hero-glow-1 { width: 500px; height: 500px; background: var(--glow-purple); top: -100px; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.hero-glow-2 { width: 300px; height: 300px; background: var(--glow-cyan); bottom: 20%; right: 5%; animation-delay: -3s; }
.hero-glow-3 { width: 250px; height: 250px; background: var(--glow-blue); top: 40%; left: 5%; animation-delay: -6s; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(-50%); }
  50% { transform: translateY(-30px) translateX(-50%); }
}
.hero-glow-2, .hero-glow-3 {
  animation: float2 8s ease-in-out infinite;
}
@keyframes float2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124,58,237,0.15);
  border: 1px solid rgba(124,58,237,0.35);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(167,139,250,1);
  margin-bottom: 1.8rem;
}

.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-3);
  box-shadow: 0 0 8px var(--accent-3);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.meta-pill {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.25rem 0.8rem;
  color: var(--text-muted);
}

/* Hero screenshot */
.hero-screenshot-wrap {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
  width: 100%;
  max-width: 900px;
}

.hero-screenshot-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.3), transparent 70%);
  filter: blur(30px);
  pointer-events: none;
}

.hero-screenshot-frame {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 120px rgba(124,58,237,0.15);
}

.frame-chrome {
  height: 32px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
}

.frame-chrome span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.frame-chrome span:nth-child(1) { background: #ff5f57; }
.frame-chrome span:nth-child(2) { background: #febc2e; }
.frame-chrome span:nth-child(3) { background: #28c840; }

.hero-screenshot-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
  animation: fadeInUp 1s 1.5s both;
  z-index: 2;
}

.scroll-arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1) translateY(0); opacity: 1; }
  50% { transform: scaleY(0.7) translateY(6px); opacity: 0.5; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}


/* ===================================================
   RIBBON
   =================================================== */
.ribbon {
  background: var(--accent-grad);
  padding: 0.8rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.ribbon-track {
  display: inline-flex;
  animation: ribbonScroll 28s linear infinite;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  gap: 1.5rem;
}

.ribbon-sep {
  opacity: 0.6;
}

@keyframes ribbonScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}


/* ===================================================
   ORIGIN STORY
   =================================================== */
.origin {
  padding: 8rem 0;
  position: relative;
}

.origin::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-hi), transparent);
}

.origin-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.origin-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-3);
  margin-bottom: 1.5rem;
}

.origin-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 2.5rem;
}

.origin-headline em {
  font-style: italic;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.origin-body p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.origin-body p strong { color: var(--text); }

.origin-sig {
  margin-top: 2rem;
  font-size: 1rem;
  color: var(--text-muted);
  font-style: italic;
}

.origin-sig a {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ===================================================
   COMPARISON
   =================================================== */
.compare {
  padding: 4rem 0 8rem;
  position: relative;
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.compare-them {
  opacity: 0.7;
}

.compare-us {
  border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.07);
  box-shadow: 0 0 40px rgba(124,58,237,0.1);
}

.compare-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.compare-label {
  font-weight: 700;
  font-size: 1.1rem;
}

.compare-free-badge {
  margin-left: auto;
  background: var(--accent-grad);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
}

.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  line-height: 1.4;
}

.compare-list li::before {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.compare-good::before { content: '✓'; color: #22c55e; }
.compare-bad::before { content: '✗'; color: #ef4444; }

.compare-vs {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
}


/* ===================================================
   FEATURES
   =================================================== */
.features {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.features-parallax-bg {
  position: absolute;
  inset: -60px;
  background:
    radial-gradient(ellipse 70% 50% at 80% 30%, rgba(79,70,229,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 70%, rgba(6,182,212,0.08) 0%, transparent 60%);
  will-change: transform;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  animation: cardIn 0.6s cubic-bezier(0.2,0,0.1,1) forwards;
}

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

.feature-card:hover {
  border-color: var(--border-hi);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

.feature-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 2rem;
  align-items: center;
}

.feature-card-wide .feature-text { max-width: 480px; }
.feature-card-wide h3 { font-size: 1.3rem; margin-bottom: 0.5rem; font-weight: 700; }
.feature-card-wide p { color: var(--text-muted); line-height: 1.7; font-size: 0.97rem; }

.feature-img-menu {
  width: 180px;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-hi);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  background: rgba(124,58,237,0.12);
  color: rgba(167,139,250,1);
  border: 1px solid rgba(124,58,237,0.25);
  flex-shrink: 0;
}

.feature-icon-arrow { background: rgba(239,68,68,0.12); color: #f87171; border-color: rgba(239,68,68,0.25); }
.feature-icon-text  { background: rgba(34,197,94,0.12);  color: #4ade80; border-color: rgba(34,197,94,0.25); }
.feature-icon-shape { background: rgba(234,179,8,0.12);  color: #facc15; border-color: rgba(234,179,8,0.25); }
.feature-icon-blur  { background: rgba(6,182,212,0.12);  color: #22d3ee; border-color: rgba(6,182,212,0.25); }
.feature-icon-highlight { background: rgba(253,224,71,0.12); color: #fde047; border-color: rgba(253,224,71,0.25); }
.feature-icon-effects   { background: rgba(249,115,22,0.12); color: #fb923c; border-color: rgba(249,115,22,0.25); }
.feature-icon-crop      { background: rgba(168,85,247,0.12); color: #c084fc; border-color: rgba(168,85,247,0.25); }
.feature-icon-layers    { background: rgba(20,184,166,0.12); color: #2dd4bf; border-color: rgba(20,184,166,0.25); }
.feature-icon-zoom      { background: rgba(99,102,241,0.12); color: #818cf8; border-color: rgba(99,102,241,0.25); }

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ===================================================
   SCREENSHOTS
   =================================================== */
.screenshots {
  padding: 8rem 0;
  overflow: hidden;
}

.screenshots .section-label,
.screenshots .section-headline {
  text-align: center;
}

.screenshots-scroller {
  display: flex;
  align-items: stretch;
  gap: 2rem;
  padding: 3rem 2rem 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
}

.screenshots-scroller::-webkit-scrollbar { height: 4px; }
.screenshots-scroller::-webkit-scrollbar-track { background: transparent; }
.screenshots-scroller::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 4px; }

.screenshot-item {
  flex-shrink: 0;
  scroll-snap-align: center;
  width: min(800px, 85vw);
  display: flex;
  flex-direction: column;
}

.screenshot-frame {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(124,58,237,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.screenshot-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 80px rgba(124,58,237,0.15);
}

.screenshot-frame .frame-chrome {
  flex-shrink: 0;
}

.screenshot-frame .screenshot-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-3);
}

.screenshot-frame img {
  width: 100%; height: auto; display: block;
}

.screenshot-caption {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-style: italic;
}


/* ===================================================
   HOW IT WORKS
   =================================================== */
.how {
  position: relative;
  padding: 8rem 0;
  text-align: center;
  overflow: hidden;
}

.how-glow {
  position: absolute;
  width: 600px; height: 300px;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(124,58,237,0.15), transparent 70%);
  pointer-events: none;
}

.how-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto 3rem;
  position: relative;
  z-index: 1;
}

.how-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.how-step.visible { animation: cardIn 0.6s cubic-bezier(0.2,0,0.1,1) forwards; }
.how-step:nth-child(3) { animation-delay: 0.1s; }
.how-step:nth-child(5) { animation-delay: 0.2s; }

.step-number {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 700;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 220px;
  margin: 0 auto;
}

.how-connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  margin-top: 1.7rem;
  background: linear-gradient(90deg, rgba(124,58,237,0.5), rgba(6,182,212,0.5));
  position: relative;
}

.how-connector::after {
  content: '';
  position: absolute;
  right: -4px; top: -4px;
  width: 10px; height: 10px;
  border-top: 2px solid rgba(6,182,212,0.7);
  border-right: 2px solid rgba(6,182,212,0.7);
  transform: rotate(45deg);
}

.how-bonus {
  max-width: 600px;
  margin: 0 auto;
}

.bonus-card {
  background: rgba(6,182,212,0.07);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
}

.bonus-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.bonus-card strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--accent-3);
}

.bonus-card span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ===================================================
   SOURCE CODE SECTION
   =================================================== */
.source-section {
  position: relative;
  overflow: hidden;
}

.source-parallax-wrap {
  position: relative;
  height: 70vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.source-parallax-img {
  position: absolute;
  inset: -80px;
  will-change: transform;
}

.source-parallax-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.4) brightness(0.35);
}

.source-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg) 100%),
    radial-gradient(ellipse at 50% 50%, rgba(124,58,237,0.3), transparent 70%);
}

.source-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}


/* ===================================================
   FAQ
   =================================================== */
.faq {
  padding: 8rem 0;
}

.faq .section-label,
.faq .section-headline {
  text-align: center;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(10px);
}

.faq-item.visible {
  animation: cardIn 0.5s cubic-bezier(0.2,0,0.1,1) forwards;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
}

.faq-q:hover { color: rgba(167,139,250,1); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--accent-3);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow: hidden;
}

.faq-a.open { grid-template-rows: 1fr; }

.faq-a > * {
  overflow: hidden;
  padding-bottom: 1.4rem;
}

.faq-a p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-a a {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 3px;
}


/* ===================================================
   SUPPORT / CTA
   =================================================== */
.support {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
  text-align: center;
}

.support-glow-1 {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2), transparent 70%);
  left: 50%; top: 50%;
  transform: translate(-60%, -50%);
  filter: blur(60px);
  pointer-events: none;
}

.support-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(253,124,56,0.15), transparent 70%);
  right: 10%; top: 20%;
  filter: blur(60px);
  pointer-events: none;
}

.support-inner {
  position: relative;
  z-index: 1;
}

.support-icon {
  width: 80px; height: 80px;
  border-radius: 22px;
  margin: 0 auto 2rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.support h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.support p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.support-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ===================================================
   FOOTER
   =================================================== */
.footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.footer-brand img { border-radius: 6px; }

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--text); }

.footer-copy {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--accent-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: 1 / -1; grid-template-columns: auto 1fr; }
  .feature-card-wide .feature-visual { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .compare-vs { display: none; }
  .how-steps { flex-direction: column; align-items: center; }
  .how-connector { width: 2px; height: 40px; transform: none; }
  .how-connector::after { right: -4px; top: auto; bottom: -4px; transform: rotate(135deg); }
}

@media (max-width: 640px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-template-columns: 1fr; }
  .feature-card-wide .feature-icon { margin-bottom: 0; }
  .nav-links { gap: 1rem; }
  .nav-links a:not(.btn):not(.nav-link-gh) { display: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
}
