/* ===========================
   LINKER.TS — PINK & BLACK
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg:        #060608;
  --bg2:       #0c0c10;
  --bg3:       #111118;
  --border:    rgba(255,255,255,0.06);
  --border-h:  rgba(240,62,132,0.4);
  --pink:      #f03e84;
  --pink2:     #f472b6;
  --pink-dim:  rgba(240,62,132,0.18);
  --pink-glow: rgba(240,62,132,0.28);
  --text:      #f1f0f5;
  --muted:     #7a6d82;
  --font:      'Inter', sans-serif;
  --mono:      'JetBrains Mono', monospace;
  --radius:    12px;
  --ease:      cubic-bezier(0.4,0,0.2,1);
}

*, *::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); overflow-x: hidden; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ---- BG ---- */
.bg-grid {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,62,165,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,62,165,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
}
.bg-glow {
  position: fixed; top: -15%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 700px;
  background: radial-gradient(ellipse, rgba(255,62,165,0.1) 0%, transparent 68%);
  z-index: 0; pointer-events: none;
  animation: glowPulse 7s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

section { position: relative; z-index: 1; }
.accent { color: var(--pink); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 8px;
  font-family: var(--font); font-weight: 700; font-size: 0.92rem;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s var(--ease);
  border: 1.5px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--pink); color: #fff; border-color: var(--pink);
  box-shadow: 0 0 22px rgba(255,62,165,0.35);
}
.btn-primary:hover {
  background: var(--pink2); border-color: var(--pink2);
  box-shadow: 0 0 40px rgba(255,62,165,0.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--muted); border-color: transparent;
}
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 13px 30px; font-size: 1rem; }

/* ---- SECTION LABELS ---- */
.section-label {
  font-family: var(--mono); font-size: 0.78rem;
  color: var(--pink); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 14px;
}
.section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; line-height: 1.7; }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 5%;
  border-bottom: 1px solid transparent;
  transition: background 0.4s, border-color 0.4s;
}
.navbar.scrolled {
  background: rgba(6,6,8,0.93);
  backdrop-filter: blur(18px);
  border-color: var(--border);
}
.nav-inner {
  display: flex; align-items: center; gap: 28px;
  max-width: 1180px; margin: 0 auto; height: 66px;
}
.nav-logo {
  font-family: var(--mono); font-size: 1.1rem; font-weight: 700;
  color: var(--text); text-decoration: none; letter-spacing: 0.04em; flex-shrink: 0;
}
.logo-bracket { color: var(--pink); }
.logo-dot     { color: var(--pink2); }
.nav-links {
  display: flex; gap: 26px; list-style: none; margin-left: 8px;
}
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { margin-left: auto; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: all 0.3s var(--ease);
}
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 14px 0 20px;
  border-top: 1px solid var(--border);
  background: rgba(6,6,8,0.97);
}
.mobile-menu a {
  padding: 10px 4px; color: var(--muted); text-decoration: none;
  font-weight: 600; font-size: 0.95rem; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--text); }
.mobile-menu.open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 140px 5% 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,62,165,0.08);
  border: 1px solid rgba(255,62,165,0.22);
  border-radius: 50px; padding: 6px 16px;
  font-family: var(--mono); font-size: 0.75rem; color: var(--pink);
  margin-bottom: 28px;
  animation: fadeDown 0.7s ease both;
}
.badge-dot {
  width: 8px; height: 8px; background: #3ddc84;
  border-radius: 50%; box-shadow: 0 0 8px #3ddc84;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem); font-weight: 800;
  line-height: 1.06; letter-spacing: -0.02em;
  margin-bottom: 22px;
  animation: fadeUp 0.85s 0.1s ease both;
}
.hero-accent {
  background: linear-gradient(130deg, var(--pink), var(--pink2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  max-width: 540px; font-size: 1.05rem; color: var(--muted);
  line-height: 1.72; margin-bottom: 36px;
  animation: fadeUp 0.85s 0.2s ease both;
}
.hero-btns {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 60px;
  animation: fadeUp 0.85s 0.3s ease both;
}
.hero-stats-row {
  display: flex; align-items: center;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
  animation: fadeUp 0.85s 0.42s ease both;
}
.hs {
  padding: 18px 32px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.hs-num {
  font-family: var(--mono); font-size: 1.45rem; font-weight: 700; color: var(--pink);
}
.hs span:last-child { font-size: 0.74rem; color: var(--muted); letter-spacing: 0.04em; }
.hs-divider { width: 1px; height: 44px; background: var(--border); }

/* ===========================
   HOW IT WORKS
   =========================== */
.how {
  padding: 100px 5%;
  max-width: 1100px; margin: 0 auto;
}
.steps-row {
  display: flex; align-items: center; gap: 12px;
  margin-top: 52px; flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 220px; max-width: 300px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 30px 24px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(28px);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.step-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease,
              border-color 0.3s, box-shadow 0.3s;
}
.step-card:hover {
  border-color: var(--border-h);
  box-shadow: 0 10px 36px rgba(255,62,165,0.1);
}
.step-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover::before { opacity: 1; }
.step-num {
  font-family: var(--mono); font-size: 2.4rem; font-weight: 700;
  color: rgba(255,62,165,0.15); line-height: 1; margin-bottom: 14px;
}
.step-icon {
  color: var(--pink); margin-bottom: 14px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }
.step-card code {
  background: rgba(255,62,165,0.12); color: var(--pink2);
  padding: 2px 6px; border-radius: 4px;
  font-family: var(--mono); font-size: 0.82em;
}
.step-arrow {
  font-size: 1.6rem; color: rgba(255,62,165,0.35); flex-shrink: 0;
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 100px 5%;
  max-width: 1180px; margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
  gap: 18px; margin-top: 50px;
}
.feature-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 26px 22px;
  position: relative; overflow: hidden;
  opacity: 0; transform: translateY(28px);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.feature-card.visible {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s, box-shadow 0.3s;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-card:hover { border-color: var(--border-h); box-shadow: 0 10px 36px rgba(255,62,165,0.1); }
.feature-card:hover::before { opacity: 1; }
.fc-icon {
  width: 48px; height: 48px;
  background: rgba(255,62,165,0.08); border: 1px solid rgba(255,62,165,0.15);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--pink); margin-bottom: 16px; transition: background 0.3s;
}
.feature-card:hover .fc-icon { background: rgba(255,62,165,0.15); }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
.feature-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.feature-card code {
  background: rgba(255,62,165,0.1); color: var(--pink2);
  padding: 2px 6px; border-radius: 4px;
  font-family: var(--mono); font-size: 0.82em;
}
.fc-tag {
  font-family: var(--mono); font-size: 0.65rem;
  color: var(--pink); background: rgba(255,62,165,0.08);
  border: 1px solid rgba(255,62,165,0.15);
  border-radius: 4px; padding: 3px 8px;
  display: inline-block; letter-spacing: 0.09em;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 100px 5%;
  max-width: 780px; margin: 0 auto;
}
.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item:hover { border-color: var(--border-h); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none;
  padding: 19px 22px; cursor: pointer;
  font-family: var(--font); font-size: 0.96rem; font-weight: 700; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 10px;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--pink); }
.faq-arrow {
  font-size: 1.4rem; color: var(--pink); flex-shrink: 0;
  font-weight: 400; line-height: 1; transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-arrow { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.open .faq-a { max-height: 180px; }
.faq-a p { padding: 0 22px 18px; font-size: 0.9rem; color: var(--muted); line-height: 1.72; }
.faq-a code {
  background: rgba(255,62,165,0.1); color: var(--pink2);
  padding: 2px 6px; border-radius: 4px;
  font-family: var(--mono); font-size: 0.82em;
}

/* ===========================
   CTA
   =========================== */
.cta-section {
  padding: 120px 5%; text-align: center;
  position: relative; z-index: 1; overflow: hidden;
}
.cta-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,62,165,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-inner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800;
  line-height: 1.1; margin-bottom: 16px;
}
.cta-inner p { color: var(--muted); font-size: 1.03rem; margin-bottom: 34px; }

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 60px 5% 30px; position: relative; z-index: 1;
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; gap: 56px; flex-wrap: wrap;
  padding-bottom: 44px; border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .nav-logo {
  font-family: var(--mono); font-size: 1.05rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.04em;
  display: inline-block; margin-bottom: 12px;
}
.footer-brand p { font-size: 0.86rem; color: var(--muted); line-height: 1.65; max-width: 250px; }
.footer-links { display: flex; gap: 44px; flex-wrap: wrap; }
.fl-col { display: flex; flex-direction: column; gap: 9px; }
.fl-col h4 {
  font-size: 0.75rem; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.1em;
  font-weight: 700; margin-bottom: 3px;
}
.fl-col a { font-size: 0.86rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.fl-col a:hover { color: var(--pink); }
.footer-bottom {
  max-width: 1180px; margin: 26px auto 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px;
  font-size: 0.78rem; color: var(--muted); font-family: var(--mono);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeUp   { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeDown { from{opacity:0;transform:translateY(-14px)} to{opacity:1;transform:translateY(0)} }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .hero-stats-row { flex-direction: column; }
  .hs-divider { width: 70px; height: 1px; }
  .steps-row { flex-direction: column; align-items: stretch; }
  .step-arrow { transform: rotate(90deg); text-align: center; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 28px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-title { font-size: 2.6rem; }
}

/* ---- NAV PFP ---- */
.nav-pfp {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(240,62,132,0.4);
  flex-shrink: 0;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ---- HERO PFP ---- */
.hero-pfp-wrap {
  position: relative;
  width: 96px; height: 96px;
  margin: 0 auto 28px;
  animation: fadeDown 0.7s ease both;
}
.hero-pfp {
  width: 96px; height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240,62,132,0.35);
  box-shadow: 0 0 32px rgba(240,62,132,0.25);
  position: relative; z-index: 1;
}
.hero-pfp-ring {
  position: absolute; inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(240,62,132,0.2);
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,100% { transform: scale(1);   opacity: 0.5; }
  50%      { transform: scale(1.06); opacity: 1; }
}

/* ---- FOOTER PFP ---- */
.footer-logo-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.footer-pfp {
  width: 32px; height: 32px;
  border-radius: 50%; object-fit: cover;
  border: 1.5px solid rgba(240,62,132,0.3);
}
.footer-brand .nav-logo { margin-bottom: 0; }

/* ---- HERO VIDEO BACKGROUND ---- */
.hero-video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-video-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,6,8,0.5) 0%,
    rgba(6,6,8,0.2) 40%,
    rgba(6,6,8,0.7) 100%
  );
}

/* Make sure bg-grid and bg-glow sit above video */
.bg-grid  { z-index: 1; }
.bg-glow  { z-index: 1; }
.navbar   { z-index: 1000; }
section   { z-index: 2; }
.footer   { z-index: 2; }

/* ---- HERO BRAND LINE ---- */
.hero-brand {
  display: block;
  font-size: 0.38em;
  font-family: var(--mono);
  font-weight: 500;
  color: var(--pink);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.9;
}

/* ---- SERVERS NAV BUTTON ---- */
.nav-servers-btn {
  display: inline-flex !important;
  align-items: center; gap: 5px;
  background: rgba(240,62,132,0.08);
  border: 1px solid rgba(240,62,132,0.2) !important;
  border-radius: 7px; padding: 4px 10px;
  color: var(--pink) !important;
  font-size: 0.82rem; font-weight: 600;
  transition: background 0.2s, border-color 0.2s !important;
}
.nav-servers-btn:hover {
  background: rgba(240,62,132,0.15) !important;
  border-color: rgba(240,62,132,0.4) !important;
  color: var(--pink) !important;
}

/* ---- NAV PILLS (all links same style) ---- */
.nav-links a, .nav-pill {
  display: inline-flex !important;
  align-items: center; gap: 5px;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.07) !important;
  border-radius: 7px; padding: 5px 12px !important;
  color: var(--muted) !important;
  font-size: 0.82rem !important; font-weight: 500 !important;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s !important;
}
.nav-links a:hover, .nav-pill:hover {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.14) !important;
  color: var(--text) !important;
}
.nav-pill-active {
  background: rgba(240,62,132,0.08) !important;
  border-color: rgba(240,62,132,0.22) !important;
  color: var(--pink) !important;
}
.nav-pill-active:hover {
  background: rgba(240,62,132,0.14) !important;
  border-color: rgba(240,62,132,0.4) !important;
  color: var(--pink) !important;
}

/* ===========================
   VISUAL OVERHAUL
   =========================== */

/* Richer background */
.bg-grid {
  background-image:
    linear-gradient(rgba(240,62,132,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,62,132,0.04) 1px, transparent 1px);
  background-size: 44px 44px;
}

/* Better hero layout */
.hero {
  padding: 150px 5% 100px;
}
.hero-title {
  font-size: clamp(3.2rem, 9vw, 7rem);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-brand {
  font-size: 0.3em;
  letter-spacing: 0.25em;
  margin-bottom: 10px;
  opacity: 1;
}
.hero-sub {
  font-size: 1rem;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 400;
}
.hero-btns {
  gap: 12px;
  margin-bottom: 56px;
}

/* Bigger cleaner buttons */
.btn {
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.btn-primary {
  box-shadow: 0 2px 20px rgba(240,62,132,0.4), 0 0 0 1px rgba(240,62,132,0.2);
}
.btn-primary:hover {
  box-shadow: 0 4px 32px rgba(240,62,132,0.6), 0 0 0 1px rgba(240,62,132,0.4);
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.1);
  color: var(--text);
  border-radius: 10px;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--text);
}
.btn-lg { padding: 14px 32px; font-size: 0.95rem; }

/* Hero pfp */
.hero-pfp-wrap { margin-bottom: 32px; }
.hero-pfp {
  width: 88px; height: 88px;
  box-shadow: 0 0 0 3px rgba(240,62,132,0.15), 0 0 40px rgba(240,62,132,0.2);
}

/* Section titles */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.03em;
  font-weight: 800;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.section-sub {
  font-size: 0.92rem;
  line-height: 1.7;
  font-weight: 400;
}

/* How It Works */
.how {
  padding: 90px 5%;
}
.steps-row { gap: 8px; margin-top: 44px; }
.step-card {
  border-radius: 16px;
  padding: 28px 24px;
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(240,62,132,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.06);
}
.step-card:hover {
  border-color: rgba(240,62,132,0.25);
  box-shadow: 0 8px 32px rgba(240,62,132,0.08);
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(240,62,132,0.06) 100%);
}
.step-num {
  font-size: 3.5rem;
  color: rgba(240,62,132,0.08);
  margin-bottom: 12px;
}
.step-icon { color: var(--pink); margin-bottom: 12px; }
.step-card h3 { font-size: 0.95rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 8px; }
.step-card p { font-size: 0.84rem; color: var(--muted); line-height: 1.65; }
.step-card code {
  background: rgba(240,62,132,0.1);
  color: var(--pink2);
  padding: 1px 5px; border-radius: 4px;
  font-family: var(--mono); font-size: 0.82em;
}
.step-arrow { color: rgba(240,62,132,0.25); font-size: 1.4rem; }

/* FAQ */
.faq { padding: 90px 5%; }
.faq-list { margin-top: 44px; gap: 8px; }
.faq-item {
  border-radius: 14px;
  background: linear-gradient(135deg, var(--bg2) 0%, rgba(240,62,132,0.02) 100%);
}
.faq-item:hover { border-color: rgba(240,62,132,0.2); }
.faq-q {
  padding: 18px 22px;
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-q:hover { color: var(--pink); }
.faq-a p {
  padding: 0 22px 18px;
  font-size: 0.87rem; line-height: 1.75;
  color: var(--muted);
}
.faq-a code {
  background: rgba(240,62,132,0.1);
  color: var(--pink2);
  padding: 1px 5px; border-radius: 4px;
  font-family: var(--mono); font-size: 0.82em;
}

/* Navbar */
.navbar.scrolled {
  background: rgba(6,6,8,0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}
.nav-inner { height: 62px; }

/* Footer */
.footer { padding: 72px 5% 36px; }
.footer-bottom {
  font-size: 0.76rem;
  opacity: 0.5;
}
.fl-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  opacity: 0.6;
}
.fl-col a { font-size: 0.85rem; }

/* Scrollbar thinner */
::-webkit-scrollbar { width: 3px; }

/* ===========================
   MID-PAGE CTA SECTION
   =========================== */
.mid-cta {
  position: relative; z-index: 1;
  padding: 0 5% 80px;
}
.mid-cta-inner {
  max-width: 720px; margin: 0 auto;
  background: linear-gradient(135deg, rgba(240,62,132,0.06) 0%, rgba(240,62,132,0.02) 100%);
  border: 1px solid rgba(240,62,132,0.18);
  border-radius: 20px;
  padding: 52px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mid-cta-inner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,62,132,0.5), transparent);
}
.mid-cta-label {
  font-family: var(--mono); font-size: 0.72rem;
  color: var(--pink); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 14px;
}
.mid-cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800; letter-spacing: -0.025em;
  line-height: 1.15; margin-bottom: 12px;
}
.mid-cta-sub {
  font-size: 0.9rem; color: var(--muted);
  line-height: 1.6; margin-bottom: 30px;
}
.mid-cta-btns {
  display: flex; gap: 12px;
  justify-content: center; flex-wrap: wrap;
}
