/* LinkSlinger landing — glassmorphism + bento (dontpoke.me brand: cyan/blue) */
body.linkslinger-landing {
  --glass-bg-subtle: rgba(30, 30, 35, 0.4);
  background: var(--bg-app, #0a0a0a);
  position: relative;
  min-height: 100vh;
}
body.linkslinger-landing::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 10%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(34, 211, 238, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 90%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
}
body.linkslinger-landing main { position: relative; z-index: 1; }

/* ── Glass tokens (local overrides for this page) ── */
.linkslinger-landing .glass {
  background: var(--glass-bg-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.linkslinger-landing .glass-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.08);
}

/* ── Nav: pill links ── */
.linkslinger-landing .nav {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.linkslinger-landing .nav-links a {
  padding: 0.35rem 0.85rem;
  border-radius: 9999px;
  color: var(--text-secondary, #a3a3a3);
}
.linkslinger-landing .nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary, #f5f5f5);
}
.linkslinger-landing .nav-btn {
  border-radius: 9999px;
  padding: 0.5rem 1.1rem;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.25);
}

/* ── Hero: centered, gradient headline, pill CTA ── */
.linkslinger-landing .hero-new {
  padding: 20rem 1.5rem;
  text-align: center;
  max-width: 900px;
  margin: 10rem auto;
}
.linkslinger-landing .hero-new .hero-headline {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--text-primary, #f5f5f5);
}
.linkslinger-landing .hero-new .hero-headline .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 50%, #2563eb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Text selection highlight animation (sweep) on hero headline */
.linkslinger-landing .hero-new .hero-headline .text-highlight-anim {
  background: linear-gradient(120deg, var(--accent-primary, #3b82f6) 0%, var(--accent-primary, #3b82f6) 100%);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: 0% 50%;
  color: var(--accent-primary, #3b82f6);
  animation: sweepHighlight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.6s;
  padding: 0 0.1em;
  border-radius: 4px;
}
@keyframes sweepHighlight {
  0% {
    background-size: 0% 100%;
    color: var(--accent-primary, #3b82f6);
  }
  100% {
    background-size: 100% 100%;
    color: #ffffff;
  }
}

.linkslinger-landing .hero-new .hero-sub {
  font-size: 1.125rem;
  color: var(--text-secondary, #a3a3a3);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.linkslinger-landing .hero-new .hero-cta {
  margin-bottom: 1.5rem;
}
.linkslinger-landing .hero-new .btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  background: var(--accent-primary, #3b82f6);
  color: var(--text-on-accent, #fff);
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.4);
}
.linkslinger-landing .hero-new .btn-hero:hover {
  background: var(--accent-hover, #2563eb);
  box-shadow: 0 0 36px rgba(59, 130, 246, 0.5);
}
.linkslinger-landing .hero-new .hero-tertiary-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.linkslinger-landing .hero-new .hero-tertiary-wrap a {
  font-size: 0.9375rem;
  color: var(--accent-primary, #3b82f6);
  text-decoration: none;
  font-weight: 500;
}
.linkslinger-landing .hero-new .hero-tertiary-wrap a:hover { text-decoration: underline; }
.linkslinger-landing .hero-new .hero-trust {
  font-size: 0.8125rem;
  color: var(--text-muted, #737373);
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  justify-content: center;
}
.linkslinger-landing .hero-new .hero-trust span::after { content: ' • '; color: var(--text-muted); }
.linkslinger-landing .hero-new .hero-trust span:last-child::after { content: ''; }

/* ── Bento grid ── */
.linkslinger-landing .bento-section {
  padding: 3rem 1.5rem 4rem;
}
.linkslinger-landing .bento-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 0.5rem;
}
.linkslinger-landing .bento-section .bento-sub {
  text-align: center;
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.linkslinger-landing .bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .linkslinger-landing .bento-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }
  .linkslinger-landing .bento-grid .bento-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .linkslinger-landing .bento-grid .bento-card:nth-child(2) { grid-row: span 2; }
  .linkslinger-landing .bento-grid .bento-card:nth-child(4) { grid-column: span 2; }
}
.linkslinger-landing .bento-card {
  background: var(--glass-bg-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.linkslinger-landing .bento-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.08);
}
.linkslinger-landing .bento-card .bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.25);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.15);
  color: var(--accent-primary);
  flex-shrink: 0;
}
.linkslinger-landing .bento-card .bento-icon svg { width: 22px; height: 22px; }
.linkslinger-landing .bento-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.3;
}
.linkslinger-landing .bento-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.linkslinger-landing .bento-card-flow p { margin-top: 0.35rem; }
.linkslinger-landing .bento-card-flow p:first-of-type { margin-top: 0; }

/* ── Section blocks (toolkit, integration, privacy) ── */
.linkslinger-landing .section-glass {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 2rem 1.5rem;
  background: var(--glass-bg-subtle);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  text-align: center;
}
.linkslinger-landing .section-glass h2,
.linkslinger-landing .section-glass h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.linkslinger-landing .section-glass h3 { font-size: 1.125rem; }
.linkslinger-landing .section-glass p,
.linkslinger-landing .section-glass .body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.linkslinger-landing .section-glass .toolkit-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-primary);
}
.linkslinger-landing .section-glass .toolkit-features span { display: flex; align-items: center; gap: 0.4rem; }

.linkslinger-landing .privacy-section .box {
  background: rgba(30, 30, 35, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
}
.linkslinger-landing .related-section .related-links a {
  background: var(--glass-bg-subtle);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 9999px;
  padding: 0.5rem 1rem;
}
.linkslinger-landing .related-section .related-links a:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 0 16px rgba(59, 130, 246, 0.1);
}
.linkslinger-landing .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(10, 10, 10, 0.5);
}
