/* ===== Bee Cleaner — design tokens ===== */
:root {
  /* Surfaces */
  --bg-0: #07090f;
  --bg-1: #0b0e18;
  --bg-2: #11151f;
  --surface: #161a26;
  --surface-2: #1d2230;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.04);

  /* Brand */
  --honey: #ffd60a;
  --honey-2: #ffb800;
  --honey-glow: rgba(255, 214, 10, 0.35);
  --violet: #8b5cf6;
  --violet-2: #6d3df0;
  --violet-glow: rgba(139, 92, 246, 0.35);

  /* Text */
  --fg: #ffffff;
  --fg-2: #c8cdda;
  --fg-3: #8a91a3;
  --fg-4: #5b6172;

  /* Geometry */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  /* Type */
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Section paddings */
  --section-y: 140px;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--fg);
  font-family: var(--font-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  background:
    radial-gradient(1200px 800px at 80% -10%, rgba(139, 92, 246, 0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 30%, rgba(255, 214, 10, 0.10), transparent 60%),
    var(--bg-0);
  min-height: 100vh;
}

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

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 12px var(--honey-glow);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
  text-wrap: balance;
}
.h-display.size-hero {
  font-size: clamp(48px, 7vw, 96px);
}
.h-display.size-section {
  font-size: clamp(36px, 4.6vw, 64px);
}
.h-display.size-sub {
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.02em;
}

.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 60ch;
  text-wrap: pretty;
}

.muted { color: var(--fg-3); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 24px;
  border-radius: 999px;
  transition: transform .15s ease, box-shadow .25s ease, background .2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--honey);
  color: #0c0a02;
  box-shadow: 0 10px 40px -10px var(--honey-glow), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 60px -10px var(--honey-glow), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--fg);
  border: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.09);
}
.btn-lg { padding: 20px 30px; font-size: 17px; }

/* Apple-style "Download on the App Store" */
.appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px 12px 18px;
  border-radius: 14px;
  background: #000;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  transition: transform .15s ease;
}
.appstore:hover { transform: translateY(-1px); }
.appstore .as-icon {
  width: 28px; height: 28px;
  display: grid; place-items: center;
}
.appstore .as-text { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.appstore .as-text small { font-size: 11px; opacity: 0.8; }
.appstore .as-text strong { font-size: 18px; font-weight: 600; letter-spacing: 0.01em; }

.appstore.honey {
  background: var(--honey);
  color: #0c0a02;
  border-color: rgba(0,0,0,0.1);
}
.hero-cta .appstore,
.final-cta .appstore.honey {
  border-radius: 999px;
  padding: 16px 30px;
  justify-content: center;
  width: min(440px, 100%);
}

/* ===== Card ===== */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.card-glow::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(400px 200px at var(--mx, 50%) var(--my, 0%), rgba(255,214,10,0.18), transparent 60%);
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
  z-index: 0;
}
.card-glow:hover::before { opacity: 1; }
.card > * { position: relative; z-index: 1; }

/* ===== Nav ===== */
.nav {
  position: sticky;
  top: 16px;
  z-index: 100;
  padding: 0 16px;
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 18px;
  border-radius: 999px;
  background: rgba(11, 14, 24, 0.6);
  border: 1px solid var(--line);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
}
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
}
.nav-brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  font-size: 14px; color: var(--fg-2);
}
.nav-links a:hover { color: var(--fg); }
.nav-cta {
  font-size: 14px;
  padding: 10px 18px;
}

@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-glow::before, .hero-glow::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-glow::before {
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,214,10,0.35), transparent 60%);
}
.hero-glow::after {
  bottom: -200px; left: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.30), transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
}

.hero-tag {
  display: inline-flex;
  align-items: center; gap: 10px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  font-size: 13px;
  color: var(--fg-2);
}
.hero-tag-chip {
  background: var(--honey);
  color: #0c0a02;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.hero h1 .gradient {
  background: linear-gradient(180deg, #fff 30%, #8a91a3 130%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .honey-text {
  background: linear-gradient(180deg, #fff2a8, var(--honey));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin-top: 24px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
  font-size: 13px;
  color: var(--fg-3);
  flex-wrap: wrap;
}
.hero-trust .stars { color: var(--honey); letter-spacing: 2px; }

/* Hero visual */
.hero-visual {
  position: relative;
  height: 640px;
}
@media (max-width: 980px) {
  .hero-visual { height: 560px; }
}

/* iPhone frame */
.phone {
  position: relative;
  width: 320px;
  aspect-ratio: 9 / 19.5;
  border-radius: 48px;
  background: #0a0d17;
  padding: 8px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.06),
    0 30px 80px -20px rgba(0,0,0,0.7),
    0 60px 120px -40px rgba(139,92,246,0.35);
}
.phone-inner {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  background: #000;
  position: relative;
}
.phone-inner img {
  width: 100%; height: 100%; object-fit: cover;
}
.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #000;
  border-radius: 999px;
  z-index: 2;
}
.phone.lg { width: 360px; }
.phone.xl { width: 380px; }
.phone.sm { width: 260px; }

/* Floating cards in hero */
.hero-phone-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.hero-bee {
  position: absolute;
  width: 250px;
  right: -40px;
  top: -30px;
  z-index: 3;
  filter: drop-shadow(0 24px 44px rgba(0,0,0,0.45));
  animation: float 6s ease-in-out infinite;
}
.hero-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(22, 26, 38, 0.85);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  font-size: 13px;
  color: var(--fg);
  z-index: 4;
}
.hero-chip .badge {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
}
.hero-chip-1 {
  left: -30px; top: 80px;
  animation: floatY 5s ease-in-out infinite;
}
.hero-chip-2 {
  right: -20px; bottom: 100px;
  animation: floatY 6.5s ease-in-out infinite -2s;
}
.hero-chip strong { color: var(--honey); font-weight: 700; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(2deg); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== Logos / trust bar ===== */
.trust-bar {
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}
.trust-stat {
  display: flex; flex-direction: column;
}
.trust-stat strong {
  font-size: clamp(48px, 6.5vw, 84px);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.trust-stat span {
  font-size: 15px; color: var(--fg-3);
  margin-top: 6px;
}
.trust-stat strong .honey-text {
  color: var(--honey);
}

/* ===== Section header ===== */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 60px;
  max-width: 760px;
}
.section-head.center { margin-inline: auto; align-items: center; text-align: center; }
.section-head.row {
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 40px;
}

/* ===== Showcase ===== */
.showcase {
  position: relative;
}
.showcase-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  width: fit-content;
}
.showcase-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
  cursor: pointer;
  transition: background .2s, color .2s;
  background: transparent;
  border: 0;
  font-family: inherit;
}
.showcase-tab.active {
  background: var(--honey);
  color: #0c0a02;
  font-weight: 600;
}
.showcase-tab:not(.active):hover { color: var(--fg); background: rgba(255,255,255,0.05); }

.showcase-stage {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) {
  .showcase-stage { grid-template-columns: 1fr; gap: 40px; }
}
.showcase-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  line-height: 1.05;
}
.showcase-copy p {
  color: var(--fg-2);
  line-height: 1.55;
  font-size: 17px;
  max-width: 50ch;
  margin: 0 0 24px;
}
.showcase-bullets {
  display: flex; flex-direction: column; gap: 14px;
  list-style: none; padding: 0; margin: 0;
}
.showcase-bullets li {
  display: flex; align-items: flex-start; gap: 12px;
  color: var(--fg-2); font-size: 15px;
}
.showcase-bullets svg { flex: 0 0 auto; color: var(--honey); margin-top: 2px; }

.showcase-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 640px;
}

/* Stack layout */
.phones-stack {
  position: relative;
  width: 100%; height: 100%;
}
.phones-stack .phone {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}
.phones-stack .phone.p1 {
  transform: translate(-90%, -50%) rotate(-8deg);
  z-index: 1;
  opacity: 0.5;
}
.phones-stack .phone.p2 {
  transform: translate(-50%, -50%);
  z-index: 3;
}
.phones-stack .phone.p3 {
  transform: translate(-10%, -50%) rotate(8deg);
  z-index: 1;
  opacity: 0.5;
}

/* Carousel layout */
.phones-carousel {
  position: relative;
  width: 100%; height: 100%;
  display: flex;
  align-items: center; justify-content: center;
  perspective: 1400px;
}
.phones-carousel .phone {
  transition: transform .8s cubic-bezier(0.2,0.8,0.2,1), opacity .6s;
  position: absolute;
}

/* Grid layout */
.phones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  width: 100%;
}
.phones-grid .phone { width: 100%; aspect-ratio: 9/19.5; }
.phones-grid .phone:nth-child(2) { transform: translateY(40px); }

/* ===== Features grid ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features-grid { grid-template-columns: 1fr; } }

.feat-card {
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  overflow: hidden;
  min-height: 240px;
  transition: transform .25s ease, border-color .25s;
}
.feat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.16);
}
.feat-card.tall { grid-row: span 2; }
.feat-card.wide { grid-column: span 2; }
.feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(255, 214, 10, 0.12);
  border: 1px solid rgba(255, 214, 10, 0.25);
  color: var(--honey);
}
.feat-icon.violet {
  background: rgba(139, 92, 246, 0.14);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--violet);
}
.feat-card h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 0;
}
.feat-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--fg-3);
  margin: 0;
}
.feat-card .feat-art {
  margin-top: auto;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* ===== How it works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

.step {
  padding: 32px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, var(--honey), transparent 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 0.8;
  margin-bottom: 8px;
}
.step h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}
.step p {
  color: var(--fg-3);
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 24px;
}
.step-art {
  margin-top: 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 11;
  background: var(--bg-2);
  position: relative;
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  padding: 28px;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.testimonial-stars {
  color: var(--honey);
  font-size: 15px;
  letter-spacing: 3px;
}
.testimonial-quote {
  font-size: 17px;
  line-height: 1.5;
  color: var(--fg);
  margin: 0;
}
.testimonial-meta {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--honey), var(--violet));
  display: grid; place-items: center;
  font-weight: 700;
  color: #0c0a02;
}
.testimonial-meta strong {
  display: block;
  font-size: 14px;
}
.testimonial-meta span {
  display: block;
  font-size: 12px;
  color: var(--fg-3);
}

/* ===== Pricing ===== */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
@media (max-width: 920px) { .pricing { grid-template-columns: 1fr; max-width: 520px; } }

.plan {
  padding: 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--bg-2);
  display: flex; flex-direction: column;
  position: relative;
}
.plan.featured {
  background: linear-gradient(180deg, rgba(255, 214, 10, 0.08), rgba(255, 214, 10, 0.02));
  border-color: rgba(255, 214, 10, 0.3);
  box-shadow: 0 30px 80px -20px rgba(255, 214, 10, 0.15);
}
.plan-tag {
  position: absolute;
  top: 24px; right: 24px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--honey);
  color: #0c0a02;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.plan-tag.plan-tag-muted {
  background: transparent;
  color: var(--honey);
  border: 1px solid rgba(255, 214, 10, 0.4);
}
.plan-name {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
}
.plan-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 12px 0 4px;
  line-height: 1;
}
.plan-price small {
  font-size: 16px; font-weight: 500;
  color: var(--fg-3);
}
.plan-desc {
  font-size: 14px;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.plan ul {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
}
.plan li {
  display: flex; align-items: start; gap: 10px;
  font-size: 15px;
  color: var(--fg-2);
}
.plan li svg { flex: 0 0 auto; color: var(--honey); margin-top: 2px; }
.plan li.dim { color: var(--fg-4); }
.plan li.dim svg { color: var(--fg-4); }
.plan .btn { width: 100%; }

/* ===== Privacy ===== */
.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .privacy-grid { grid-template-columns: 1fr; } }

.privacy-points { display: flex; flex-direction: column; gap: 24px; }
.privacy-point {
  display: flex; gap: 18px;
}
.privacy-point .pp-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,214,10,0.1);
  border: 1px solid rgba(255,214,10,0.2);
  color: var(--honey);
  display: grid; place-items: center;
  flex: 0 0 auto;
}
.privacy-point h5 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
}
.privacy-point p {
  font-size: 14.5px;
  color: var(--fg-3);
  margin: 0;
  line-height: 1.5;
}

.privacy-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-lg);
  background:
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.3), transparent 60%),
    linear-gradient(180deg, #16111f, #0b0e18);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
}
.privacy-visual::before {
  content: "";
  position: absolute;
  inset: -50%;
  background: repeating-conic-gradient(from 0deg, rgba(255,255,255,0.04) 0deg, transparent 6deg 18deg);
  animation: spin 60s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.privacy-shield {
  position: relative;
  width: 60%;
}

/* ===== FAQ ===== */
.faq {
  max-width: 820px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--fg);
  text-align: left;
  cursor: pointer;
}
.faq-q .faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  display: grid; place-items: center;
  transition: transform .3s, background .2s;
  flex: 0 0 auto;
}
.faq-item.open .faq-q .faq-icon {
  transform: rotate(45deg);
  background: var(--honey);
  color: #0c0a02;
}
.faq-a {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  color: var(--fg-3);
  font-size: 15px;
  line-height: 1.55;
}
.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 26px 22px;
}

/* ===== CTA section ===== */
.final-cta {
  position: relative;
  border-radius: 40px;
  padding: 80px 60px;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(255,214,10,0.20), transparent 60%),
    radial-gradient(700px 400px at 80% 100%, rgba(139,92,246,0.20), transparent 60%),
    linear-gradient(180deg, #14131e, #0a0a14);
  border: 1px solid var(--line);
  overflow: visible;
  text-align: center;
  isolation: isolate;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 18px;
}
.final-cta p {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 50ch;
  margin: 0 auto 36px;
}
.final-cta-buttons {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.final-cta-bee {
  position: absolute;
  width: 210px;
  right: -20px; top: -64px;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 18px 38px rgba(0,0,0,0.45));
  animation: float 8s ease-in-out infinite;
}
@media (max-width: 720px) {
  .final-cta { padding: 60px 28px; }
  .final-cta-bee { width: 130px; right: -10px; top: -40px; opacity: 0.85; }
}

/* ===== Footer ===== */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--line-2);
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand img { width: 40px; height: 40px; border-radius: 10px; margin-bottom: 14px; }
.footer-brand p { color: var(--fg-3); font-size: 14px; line-height: 1.55; margin: 0; max-width: 30ch; }
.footer-col h6 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-3);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a { color: var(--fg-2); font-size: 14px; }
.footer-col a:hover { color: var(--fg); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  font-size: 13px; color: var(--fg-4);
  flex-wrap: wrap;
  gap: 16px;
}

/* ===== Util ===== */
.honey-text {
  background: linear-gradient(180deg, #fff2a8, var(--honey));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.violet-text {
  background: linear-gradient(180deg, #d0bcff, var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* Density */
[data-density="compact"] { --section-y: 100px; }
[data-density="cozy"] { --section-y: 140px; }
[data-density="spacious"] { --section-y: 180px; }
