/* KontoImDispo – redesigned landing */
:root {
  --bg: #07070a;
  --bg-elevated: #0e0e14;
  --card: #12121a;
  --card-hover: #16161f;
  --text: #f4f4f7;
  --muted: #8b8b9a;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #ffb000;
  --gold-2: #ff7a00;
  --green: #22c55e;
  --ig: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
  --radius: 1.25rem;
  --shadow-gold: 0 12px 40px -10px rgba(255, 176, 0, 0.35);
  --font: Inter, system-ui, sans-serif;
  --display: "Space Grotesk", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; color: inherit; cursor: pointer; }
ul, ol { list-style: none; }

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.page { position: relative; min-height: 100vh; }

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  z-index: 100;
  background: linear-gradient(90deg, var(--gold), var(--gold-2), #dd2a7b);
  box-shadow: 0 0 12px rgba(255, 176, 0, 0.6);
  transition: width 0.05s linear;
}

/* Particles + ambient */
.particles {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orb-drift 18s ease-in-out infinite alternate;
}
.orb-1 {
  width: 420px; height: 420px;
  top: -10%; left: -8%;
  background: rgba(255, 176, 0, 0.12);
}
.orb-2 {
  width: 380px; height: 380px;
  top: 40%; right: -12%;
  background: rgba(221, 42, 123, 0.1);
  animation-delay: -6s;
}
.orb-3 {
  width: 300px; height: 300px;
  bottom: 5%; left: 30%;
  background: rgba(255, 122, 0, 0.08);
  animation-delay: -12s;
}

@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(40px, 30px) scale(1.12); }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(7, 7, 10, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 0.5rem 0;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}
.nav-logo {
  height: 2.5rem;
  width: 2.5rem;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 160, 0, 0.35));
}
.nav-wordmark {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.nav-wordmark span { color: var(--gold); }

/* Desktop links – hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(255, 176, 0, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.nav-ig-desktop,
.nav-cta-desktop { display: none; }

/* Hamburger */
.nav-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.6rem;
  height: 2.6rem;
  padding: 0.55rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.nav-burger:hover {
  border-color: rgba(255, 176, 0, 0.35);
  background: rgba(255, 176, 0, 0.08);
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.2s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile drawer (premium) ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0.75rem;
  padding-top: max(0.75rem, env(safe-area-inset-top));
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}
.mobile-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu.open[hidden] { display: flex !important; }

.mobile-menu-panel {
  width: min(100%, 26rem);
  margin-top: 3.5rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 176, 0, 0.22);
  background:
    radial-gradient(600px 200px at 20% 0%, rgba(255, 176, 0, 0.12), transparent 55%),
    radial-gradient(400px 180px at 100% 100%, rgba(221, 42, 123, 0.1), transparent 50%),
    linear-gradient(165deg, #14141c 0%, #0c0c12 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  padding: 1rem 1rem 1.15rem;
  transform: translateY(-16px) scale(0.97);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}
.mobile-menu.open .mobile-menu-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-menu-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.mobile-menu-logo {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(255, 160, 0, 0.35));
}
.mobile-menu-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  background: linear-gradient(135deg, #ffe08a, #ffb000, #ff7a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}
.mobile-menu-brand span {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}
.mobile-menu-close {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 0.7rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 176, 0, 0.3);
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.mobile-menu-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  border-radius: 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active {
  background: rgba(255, 176, 0, 0.1);
  border-color: rgba(255, 176, 0, 0.28);
  transform: translateX(2px);
}
.mm-ico {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.55rem;
  background: rgba(255, 176, 0, 0.1);
  font-size: 1rem;
  flex-shrink: 0;
}
.mm-arrow {
  margin-left: auto;
  color: var(--gold);
  opacity: 0.7;
  font-size: 1rem;
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.mobile-menu-btn {
  width: 100%;
  border-radius: 0.9rem !important;
  min-height: 3rem;
  font-size: 0.95rem !important;
}
.mobile-menu-note {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 900px) {
  .nav-inner { min-height: 4.25rem; }
  .nav-logo { height: 2.75rem; width: 2.75rem; }
  .nav-wordmark { font-size: 1.05rem; }
  .nav-links { display: flex; flex: 1; justify-content: center; }
  .nav-ig-desktop,
  .nav-cta-desktop { display: inline-flex; }
  .nav-burger { display: none; }
  .mobile-menu { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.6rem 1.1rem;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-sm { padding: 0.45rem 0.9rem; font-size: 0.8rem; }
.btn-xl { padding: 0.9rem 1.6rem; font-size: 0.95rem; }

.btn-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0a0a0c;
  box-shadow: var(--shadow-gold);
}
.btn-cta:hover {
  filter: brightness(1.08);
  box-shadow: 0 16px 48px -8px rgba(255, 176, 0, 0.5);
  transform: translateY(-1px);
}

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

.btn-ig {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0;
}
.btn-ig:hover {
  background: rgba(221, 42, 123, 0.15);
  border-color: rgba(221, 42, 123, 0.4);
  color: #ff8ec8;
}

.btn-ig-gradient {
  background: var(--ig);
  color: #fff;
  box-shadow: 0 12px 32px -8px rgba(221, 42, 123, 0.45);
}
.btn-ig-gradient:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.pulse-glow {
  animation: pulse-glow 2.4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 12px 40px -10px rgba(255, 176, 0, 0.35); }
  50% { box-shadow: 0 16px 50px -6px rgba(255, 176, 0, 0.65); }
}

.btn-icon {
  display: inline-flex;
  width: 1.4rem; height: 1.4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.65rem;
}

/* Typography helpers */
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-2) 50%, #ff5e9a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hero */
.hero {
  position: relative;
  z-index: 2;
  padding: 2rem 0 4rem;
}

.hero-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

/* Animated KiD brand logo */
.brand-logo-wrap {
  position: relative;
  width: 9.5rem;
  height: 9.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  overflow: visible;
}
.brand-logo {
  position: relative;
  z-index: 3;
  width: 78%;
  height: 78%;
  object-fit: contain;
  animation: logo-rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both,
             logo-float 4.8s ease-in-out 0.9s infinite,
             logo-shimmer 3.2s ease-in-out 0.9s infinite;
  filter: drop-shadow(0 14px 32px rgba(255, 140, 0, 0.45));
  will-change: transform, filter;
}
.brand-logo-glow {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 176, 0, 0.42), transparent 68%);
  animation: glow-breathe 3s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.brand-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0%,
    rgba(255, 200, 80, 0.7) 10%,
    transparent 22%,
    transparent 48%,
    rgba(255, 120, 0, 0.55) 58%,
    transparent 72%
  );
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: ring-spin 9s linear infinite;
  z-index: 2;
  pointer-events: none;
  opacity: 0.9;
}
.brand-logo-orbit {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 176, 0, 0.28);
  animation: ring-spin 16s linear infinite reverse;
  z-index: 0;
  pointer-events: none;
}
.brand-logo-orbit::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  margin-left: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe08a, #ff8a00);
  box-shadow: 0 0 12px rgba(255, 160, 0, 0.85);
}
.brand-logo-shine {
  position: absolute;
  inset: 12%;
  z-index: 4;
  pointer-events: none;
  overflow: hidden;
  border-radius: 50%;
}
.brand-logo-shine::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -50%;
  width: 45%;
  height: 160%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  animation: logo-sweep 4s ease-in-out infinite;
}
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
  color: var(--muted);
  animation: name-in 0.85s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}
.brand-name span { color: var(--gold); }
.brand-kid {
  color: var(--text) !important;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, #ffe08a, #ffb000, #ff7a00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
}

@keyframes logo-rise {
  from { opacity: 0; transform: translateY(20px) scale(0.85) rotate(-6deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(0deg); }
}
@keyframes logo-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-9px) rotate(1.5deg); }
}
@keyframes logo-shimmer {
  0%, 100% { filter: drop-shadow(0 12px 28px rgba(255, 140, 0, 0.35)) brightness(1); }
  50% { filter: drop-shadow(0 18px 44px rgba(255, 160, 0, 0.65)) brightness(1.12); }
}
@keyframes glow-breathe {
  0%, 100% { transform: scale(0.9); opacity: 0.4; }
  50% { transform: scale(1.18); opacity: 0.95; }
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}
@keyframes logo-sweep {
  0%, 50% { left: -55%; opacity: 0; }
  58% { opacity: 1; }
  88% { left: 115%; opacity: 0.6; }
  100% { left: 115%; opacity: 0; }
}
@keyframes name-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
}
.pill.live { color: var(--green); border-color: rgba(34, 197, 94, 0.3); background: rgba(34, 197, 94, 0.08); }
.pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
  animation: ping 1.6s ease infinite;
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 34rem;
  margin-bottom: 1.75rem;
  text-align: center;
}

/* Community → Play → Trust — identical width, centered */
.hero-stack {
  --stack-w: min(100%, 22.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  margin-inline: auto;
  margin-top: 0.5rem;
}
.hero-stack > .ig-panel-hero,
.hero-stack > .hero-play,
.hero-stack > .trust-bar {
  width: var(--stack-w);
  max-width: var(--stack-w);
  box-sizing: border-box;
  flex-shrink: 0;
}
.hero-play {
  width: var(--stack-w) !important;
  max-width: var(--stack-w);
  border-radius: 1rem !important;
  min-height: 3.4rem;
  font-size: 1rem !important;
  padding: 0.95rem 1.25rem !important;
  margin: 0;
}

.trust-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  gap: 0.35rem 0.5rem;
  padding: 1rem 0.85rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  text-align: center;
}
.trust-item {
  min-width: 0;
  width: 100%;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
}
.trust-item strong {
  font-family: var(--display);
  font-size: 1.15rem;
  color: var(--gold);
}
.trust-item span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.trust-divider {
  width: 1px;
  height: 2rem;
  background: var(--line);
  flex-shrink: 0;
}

/* Community panel above play button — same width as CTA */
.ig-panel-hero {
  order: 0;
  margin-inline: auto;
  border-radius: 1rem;
}
.ig-panel-hero .ig-panel-content {
  flex-direction: column;
  text-align: center;
  padding: 1.25rem 1rem;
  gap: 0.85rem;
}
.ig-panel-hero .ig-copy p {
  margin-left: auto;
  margin-right: auto;
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}
.ig-panel-hero .ig-stats {
  justify-content: center;
  margin-bottom: 1rem;
}
.ig-panel-hero .ig-avatar-wrap {
  width: 4.25rem;
  height: 4.25rem;
}
.ig-panel-hero h2 {
  font-size: 1.2rem;
}
.ig-panel-hero .btn-ig-gradient {
  width: 100%;
}
.ig-panel-hero .section-tag {
  margin-bottom: 0.35rem;
}

@media (min-width: 900px) {
  .hero { padding: 3rem 0 5rem; }
  .hero-main { max-width: 560px; }
  .brand-logo-wrap {
    width: 11rem;
    height: 11rem;
  }
  .hero-stack {
    --stack-w: 24rem;
  }
  .trust-bar {
    gap: 0.5rem 1rem;
    padding: 1rem 1.15rem;
  }
}

/* Sections */
.section {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
}
.section-alt {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.02), transparent);
}

.section-header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.section-header p {
  color: var(--muted);
  font-size: 1rem;
}

/* Deals */
.deals-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .deals-grid { grid-template-columns: 1fr 1fr; }
}

.deal-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.4rem;
  border-radius: calc(var(--radius) + 0.15rem);
  background: var(--card);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s, box-shadow 0.35s;
}
.deal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 200px at 0% 0%, rgba(255, 176, 0, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.deal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 176, 0, 0.35);
  box-shadow: 0 24px 50px -20px rgba(255, 176, 0, 0.25);
}
.deal-card:hover::before { opacity: 1; }

.deal-card.featured {
  border-color: rgba(255, 176, 0, 0.4);
  background: linear-gradient(145deg, rgba(255, 176, 0, 0.08), var(--card) 45%);
}
.deal-card.featured::after {
  content: "TOP PICK";
  position: absolute;
  top: 1rem; right: 1rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #0a0a0c;
  animation: badge-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes badge-pop {
  from { opacity: 0; transform: scale(0.6); }
  to { opacity: 1; transform: scale(1); }
}

.deal-top {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.deal-logo {
  width: 4rem; height: 4rem;
  border-radius: 1rem;
  background: #0a0a10;
  border: 1px solid var(--line);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.deal-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #0a0a10;
  padding: 0.15rem;
}
.deal-name {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
}
.deal-rank {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.deal-bonus {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-wrap: wrap;
}
.deal-bonus-text {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}
.deal-bonus .bonus-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.deal-bonus .pct {
  font-family: var(--display);
  font-size: clamp(1.45rem, 4vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.deal-bonus .max {
  font-size: 0.9rem;
  color: var(--muted);
}

.deal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  border-radius: 0.4rem;
  border: 1px solid transparent;
}
.tag-ex { background: rgba(255, 176, 0, 0.12); color: var(--gold); border-color: rgba(255, 176, 0, 0.25); }
.tag-ns { background: rgba(34, 197, 94, 0.12); color: var(--green); border-color: rgba(34, 197, 94, 0.25); }
.tag-w { background: rgba(255, 255, 255, 0.04); color: var(--muted); border-color: var(--line); }

.deal-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: auto;
}
.deal-actions .btn { width: 100%; border-radius: 0.85rem; }
.no-code {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.55rem;
  border-radius: 0.75rem;
  border: 1px dashed var(--line);
  background: rgba(255, 255, 255, 0.02);
}

/* Why cards */
.why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

.why-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 176, 0, 0.3);
  box-shadow: 0 16px 40px -20px rgba(255, 176, 0, 0.2);
}
.why-icon {
  font-size: 1.6rem;
  margin-bottom: 0.85rem;
  display: inline-block;
  animation: wiggle 6s ease-in-out infinite;
}
.why-card:nth-child(2) .why-icon { animation-delay: -1.5s; }
.why-card:nth-child(3) .why-icon { animation-delay: -3s; }
.why-card:nth-child(4) .why-icon { animation-delay: -4.5s; }
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-6deg); }
  75% { transform: rotate(6deg); }
}
.why-card h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
}

/* Steps */
.steps {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
  counter-reset: none;
}
.step {
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  transition: border-color 0.3s, transform 0.3s;
}
.step:hover {
  border-color: rgba(255, 176, 0, 0.3);
  transform: translateX(4px);
}
.step-num {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  min-width: 2.5rem;
}
.step-body h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.step-body p {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Instagram panel */
.section-ig { padding-top: 2rem; }

.ig-panel {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(221, 42, 123, 0.25);
  background: linear-gradient(135deg, rgba(245, 133, 41, 0.08), rgba(221, 42, 123, 0.1), rgba(129, 52, 175, 0.1));
}

.ig-panel-glow {
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 0deg, #f58529, #dd2a7b, #8134af, #515bd4, #f58529);
  opacity: 0.12;
  animation: spin-slow 20s linear infinite;
}

.ig-panel-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.75rem;
  padding: 2.5rem 1.5rem;
}

.ig-avatar-wrap {
  position: relative;
  width: 6.5rem;
  height: 6.5rem;
}
.ig-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  border: 3px solid #12121a;
  background: #0a0a10;
  padding: 0.45rem;
  position: relative;
  z-index: 1;
}
.ig-ring {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: var(--ig);
  animation: ring-spin 4s linear infinite;
  z-index: 0;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

.ig-copy h2 {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0.4rem 0 0.65rem;
}
.ig-copy p {
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 1.25rem;
  font-size: 0.95rem;
}
.ig-copy p strong { color: var(--text); }

.ig-stats {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.ig-stats div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.ig-stats strong {
  font-family: var(--display);
  font-size: 1rem;
}
.ig-stats span {
  font-size: 0.72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .ig-panel-content {
    flex-direction: row;
    text-align: left;
    padding: 2.75rem 3rem;
    gap: 2.5rem;
  }
  .ig-copy p { margin-left: 0; }
  .ig-stats { justify-content: flex-start; }
}

/* Final CTA */
.section-final { padding-bottom: 5rem; }
.final-cta {
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: 1.75rem;
  border: 1px solid rgba(255, 176, 0, 0.25);
  background: linear-gradient(160deg, rgba(255, 176, 0, 0.1), rgba(18, 18, 26, 0.9));
}
.final-cta h2 {
  font-family: var(--display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
}
.final-cta p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

/* Longform SEO */
.seo-wrap { max-width: 48rem; }
.seo-content {
  text-align: left;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}
.seo-content h3 {
  font-family: var(--display);
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.75rem 0 0.65rem;
}
.seo-content h3:first-child { margin-top: 0.5rem; }
.seo-content p { margin-bottom: 0.9rem; }
.seo-content strong { color: var(--text); }
.seo-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.seo-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
.seo-content li { margin-bottom: 0.55rem; }
.seo-faq {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 0.75rem;
}
.seo-faq details {
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: var(--card);
  padding: 0.85rem 1rem;
}
.seo-faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  font-family: var(--display);
  list-style: none;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq details[open] summary { color: var(--gold); margin-bottom: 0.45rem; }
.seo-faq p { margin: 0; font-size: 0.92rem; }

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding: 2.5rem 0 2rem;
}
.footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer-brand img {
  height: 3.25rem;
  width: 3.25rem;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  margin: 0 auto 0.5rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-nav a:hover { color: var(--gold); }
.footer-legal {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.85;
  max-width: 40rem;
}
.footer-legal a { color: #ff8ec8; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Deal card stagger when injected */
.deal-card {
  animation: deal-in 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.deal-card:nth-child(2) { animation-delay: 0.12s; }

@keyframes deal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== 18+ Age Gate ===== */
body.age-locked {
  overflow: hidden;
}
body.age-locked .page {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  padding-top: max(1.25rem, env(safe-area-inset-top));
}
.age-gate[hidden] {
  display: none !important;
}
.age-gate-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255, 176, 0, 0.12), transparent 55%),
    rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(10px);
}
.age-gate-card {
  position: relative;
  z-index: 1;
  width: min(100%, 26rem);
  border-radius: 1.4rem;
  border: 1px solid rgba(255, 176, 0, 0.3);
  background:
    radial-gradient(500px 180px at 50% 0%, rgba(255, 176, 0, 0.14), transparent 55%),
    linear-gradient(165deg, #16161f 0%, #0c0c12 100%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  padding: 1.75rem 1.35rem 1.4rem;
  text-align: center;
  animation: age-pop 0.45s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.age-gate-glow {
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 176, 0, 0.08), transparent 40%);
  animation: ring-spin 14s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}
.age-gate-logo {
  position: relative;
  width: 4.25rem;
  height: 4.25rem;
  object-fit: contain;
  margin: 0 auto 0.85rem;
  filter: drop-shadow(0 8px 20px rgba(255, 160, 0, 0.4));
}
.age-gate-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #0a0a0c;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 24px rgba(255, 140, 0, 0.35);
}
.age-gate-card h1 {
  position: relative;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.age-gate-text {
  position: relative;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.35rem;
}
.age-gate-text strong { color: var(--gold); }
.age-gate-actions {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.age-gate-yes,
.age-gate-no {
  width: 100%;
  border-radius: 0.9rem !important;
  min-height: 3.05rem;
  font-size: 0.95rem !important;
}
.age-gate-no {
  border: 1px solid var(--line) !important;
}
.age-gate-note {
  position: relative;
  margin-top: 1rem;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes age-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 480px) {
  .age-gate-card { padding: 2rem 1.75rem 1.5rem; }
  .age-gate-card h1 { font-size: 1.75rem; }
}
