/* ============================================================
   INSTAGRAM BIO GENERATOR — PREMIUM DARK UI 2026
   All JS hooks (IDs, classes, event handlers) preserved.
   Only visual/layout changes applied.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ig: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  --ig-s: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  --primary: linear-gradient(135deg, #FF006E, #8338EC, #3A86FF);
  --primary-h: linear-gradient(135deg, #ff1a7e, #9348fc, #4a96ff);
  --bg: #0F172A;
  --bg2: #111827;
  --card: #1E293B;
  --card2: rgba(30, 41, 59, 0.8);
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.12);
  --text: #FFFFFF;
  --muted: #CBD5E1;
  --muted2: #94A3B8;
  --blue: #3A86FF;
  --pink: #FF006E;
  --purple: #8338EC;
  --glass: rgba(30, 41, 59, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 8px 24px rgba(0, 0, 0, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── ANIMATED BACKGROUND BLOBS ── */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
  animation: blobFloat 20s ease-in-out infinite;
}
body::before {
  width: 600px; height: 600px;
  background: var(--pink);
  top: -200px; left: -200px;
}
body::after {
  width: 500px; height: 500px;
  background: var(--purple);
  bottom: -150px; right: -150px;
  animation-delay: -10s;
}
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 40px) scale(0.95); }
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.25); }

/* ══════════════════════════════════════════════════════════
   HEADER — glassmorphism sticky navbar
   ══════════════════════════════════════════════════════════ */
.hdr {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.hdr-in {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  height: 64px;
}

/* Logo */
.logo {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 800;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  letter-spacing: -0.5px;
}
.logo img{
    max-width: 220px;
    height: auto;
    display: block;
    filter: none !important;
}
/* Search in header */
.srch {
  flex: 1;
  max-width: 360px;
  position: relative;
}
.srch svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px; height: 15px;
  stroke: var(--muted2);
  fill: none;
  stroke-width: 2;
}
.srch input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  padding: 9px 14px 9px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: all 0.25s ease;
}
.srch input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(131, 56, 236, 0.5);
  box-shadow: 0 0 0 3px rgba(131, 56, 236, 0.12);
}
.srch input::placeholder { color: var(--muted2); }

/* Hamburger button */
.menu-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border2);
  border-radius: 10px;
  color: var(--text);
  font-size: 18px;
  cursor: pointer;
  padding: 6px 12px;
  transition: all 0.2s;
  display: none;
}
.menu-btn:hover { background: rgba(255,255,255,0.12); }
@media (max-width: 768px) { .menu-btn { display: flex; align-items: center; } }

/* ── TOP MENU (mobile dropdown) ── */
#topMenu {
  display: none;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
  z-index: 999;
  position: relative;
}
#topMenu.active { display: block; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.category-grid a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.category-grid a:hover {
  background: rgba(131, 56, 236, 0.15);
  border-color: rgba(131, 56, 236, 0.4);
  color: var(--text);
  transform: translateY(-1px);
}
.category-grid a span { font-size: 16px; }

/* ══════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════ */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Floating accent blobs around hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(131,56,236,0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.6s ease both;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px rgba(255, 0, 110, 0.6);
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeInUp 0.7s ease both 0.1s;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero subtitle */
.hero > p:last-of-type, .hero p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease both 0.2s;
}

/* Hero CTA buttons container */
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease both 0.3s;
}

/* Override .button for hero */
.button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(131, 56, 236, 0.35);
  position: relative;
  overflow: hidden;
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
}
.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(131,56,236,0.5); }
.button:hover::before { opacity: 1; }
.button:active { transform: translateY(0); }

.scroll-link { text-decoration: none; }

/* Trust badges */
.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease both 0.4s;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}
.trust-badge::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(131,56,236,0.2);
  color: #a855f7;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

/* ══════════════════════════════════════════════════════════
   CATEGORY PILLS BAR
   ══════════════════════════════════════════════════════════ */
.cats-wrap {
  position: sticky;
  top: 64px;
  z-index: 100;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 20px;
  overflow-x: auto;
  scrollbar-width: none;
  width: 100%;
}
.cats-wrap::-webkit-scrollbar { display: none; }

.cats {
  display: flex;
  gap: 8px;
  width: max-content;
  max-width: 100%;
}

.pill {
  border: 1.5px solid var(--border2);
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.2px;
}
.pill:hover {
  border-color: rgba(131,56,236,0.5);
  background: rgba(131,56,236,0.12);
  color: var(--text);
  transform: translateY(-1px);
}
.pill.on {
  background: var(--primary);
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(131,56,236,0.4);
  padding: 8.5px 16px;
}
.pill.ig { background: var(--primary); border: none; color: #fff; font-weight: 700; }

/* ══════════════════════════════════════════════════════════
   MAIN LAYOUT
   ══════════════════════════════════════════════════════════ */
.wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.left { flex: 1; min-width: 0; }
.left{
    flex: 1;
    min-width: 0;
    padding-left: 50px;
}
.right { flex-shrink: 0; position: sticky; top: 120px; }

/* ── SECTION LABEL ── */
.sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
#secLabel {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
#cntLabel {
  font-size: 12px;
  color: var(--muted2);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 10px;
}

/* ── VIEW MORE ── */
.view-more-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 24px auto 0;
  padding: 14px 28px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
}
.view-more-btn:hover {
  background: rgba(131,56,236,0.12);
  border-color: rgba(131,56,236,0.4);
  color: var(--text);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════════════════
   PROFILE CUSTOMIZER BAR
   ══════════════════════════════════════════════════════════ */
.profile-bar {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.profile-bar-title {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  white-space: nowrap;
}
.profile-bar-title span { font-size: 16px; }

.av-upload-zone {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px dashed var(--border2);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.25s;
}
.av-upload-zone:hover { border-color: rgba(131,56,236,0.6); background: rgba(131,56,236,0.08); }
.av-upload-zone .av-icon-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2px;
  color: var(--muted2);
  font-size: 9px; font-weight: 600;
  pointer-events: none;
  text-align: center;
  line-height: 1.3;
}
.av-upload-zone .av-icon-label svg { width: 18px; height: 18px; stroke: var(--muted2); fill: none; stroke-width: 2; }
.av-upload-zone img.av-uploaded { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: none; }
.av-upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }

.bar-inputs { display: flex; gap: 8px; flex: 1; min-width: 200px; flex-wrap: wrap; }
.bar-inputs input {
  flex: 1; min-width: 120px;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
}
.bar-inputs input:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(131,56,236,0.5);
  box-shadow: 0 0 0 3px rgba(131,56,236,0.12);
}
.bar-inputs input::placeholder { color: var(--muted2); }

.bar-hint { font-size: 11px; color: var(--muted2); display: flex; align-items: center; gap: 5px; }
.bar-hint svg { width: 13px; height: 13px; stroke: var(--muted2); fill: none; stroke-width: 2; flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════
   AI GENERATOR CARD
   ══════════════════════════════════════════════════════════ */
.gcrd {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.gcrd::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
}
.gcrd-title {
  font-size: 15px; font-weight: 700;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
  color: var(--text);
}

.grow { display: flex; gap: 8px; flex-wrap: wrap; }
.gf { flex: 1; min-width: 130px; }
.gf label { display: block; font-size: 10px; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 5px; }
.gf input, .gf select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border2);
  border-radius: 10px;
  padding: 9px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
}
.gf input:focus, .gf select:focus {
  background: rgba(255,255,255,0.1);
  border-color: rgba(131,56,236,0.5);
  box-shadow: 0 0 0 3px rgba(131,56,236,0.12);
}
.gf select option { background: #1E293B; color: var(--text); }

.gbtn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  white-space: nowrap;
  align-self: flex-end;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(131,56,236,0.4);
}
.gbtn:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(131,56,236,0.5); }
.gbtn:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }

.ai-out { margin-top: 16px; border-top: 1px solid var(--border); padding-top: 16px; display: none; }
.ai-out.show { display: block; }
.ai-lbl { font-size: 10px; font-weight: 700; color: var(--muted2); text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 12px; }
.ai-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

/* ── AI RESULT CARDS ── */
.ai-bc {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  padding: 14px;
  cursor: pointer;
  transition: all 0.2s;
}
.ai-bc:hover {
  border-color: rgba(131,56,236,0.5);
  background: rgba(131,56,236,0.08);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.ai-bc-text { font-size: 12px; line-height: 1.65; margin-bottom: 10px; white-space: pre-line; color: var(--muted); }
.ai-foot { display: flex; justify-content: space-between; align-items: center; }

/* ── SKELETON ── */
.sh {
  background: linear-gradient(90deg, rgba(255,255,255,0.04) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.04) 75%);
  background-size: 200% 100%;
  animation: sh 1.4s infinite;
  border-radius: 8px;
}
@keyframes sh { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ══════════════════════════════════════════════════════════
   BIO CARDS — premium glass cards
   ══════════════════════════════════════════════════════════ */
.bc {
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 14px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  max-width: 420px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.bc::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: var(--primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.bc:hover { transform: translateY(-3px) translateX(2px); box-shadow: 0 12px 36px rgba(0,0,0,0.4); border-color: rgba(255,255,255,0.15); }
.bc:hover::before { opacity: 0.6; }
.bc.sel { border-color: rgba(58, 134, 255, 0.5); background: rgba(58, 134, 255, 0.06); }
.bc.sel::before { opacity: 1; }

.bc-topbar { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px 8px; border-bottom: 1px solid var(--border); }
.bc-uname { font-size: 12px; font-weight: 700; color: var(--text); display: flex; align-items: center; gap: 4px; }
.bc-uname svg { width: 10px; height: 10px; stroke: var(--muted2); fill: none; stroke-width: 2.5; }
.bc-more { display: flex; align-items: center; gap: 5px; color: var(--muted2); }
.bc-more svg { width: 16px; height: 16px; stroke: var(--muted2); fill: none; stroke-width: 2; }

.bc-profile { padding: 12px 14px 10px; }
.bc-profile-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.bc-av-wrap { position: relative; width: 64px; height: 64px; flex-shrink: 0; }
.bc-av-ring { position: absolute; inset: 0; border-radius: 50%; padding: 2.5px; background: var(--ig-s); }
.bc-av-ring-inner { background: var(--bg2); border-radius: 50%; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.bc-av { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 24px; border: 2px solid var(--bg2); background: linear-gradient(135deg, #667eea, #764ba2); overflow: hidden; background-size: cover; background-position: center; }
.bc-stats { display: flex; flex: 1; justify-content: space-around; }
.bc-stat { text-align: center; }
.bc-stat-n { font-size: 14px; font-weight: 700; color: var(--text); display: block; line-height: 1.2; }
.bc-stat-l { font-size: 10px; color: var(--muted2); margin-top: 1px; }

.bc-display-name { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.bc-cat-label { font-size: 11px; color: var(--muted2); margin-bottom: 6px; }
.bc-text { font-size: 14px; line-height: 1.7; color: var(--muted); white-space: pre-line; margin-bottom: 8px; }
.bc-link { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--blue); font-weight: 500; margin-bottom: 10px; }
.bc-link svg { width: 12px; height: 12px; stroke: var(--blue); fill: none; stroke-width: 2; flex-shrink: 0; }
.bc-action-row { display: flex; gap: 6px; margin-bottom: 4px; }
.bc-abtn { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid var(--border); border-radius: 8px; padding: 6px; font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; color: var(--muted); cursor: pointer; text-align: center; transition: all 0.2s; }
.bc-abtn:hover { background: rgba(255,255,255,0.1); color: var(--text); }
.bc-abtn.sm { flex: 0; padding: 6px 10px; }

.bc-foot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; padding: 10px 14px; border-top: 1px solid var(--border); }
.bc-tag {
  font-size: 10px; font-weight: 600;
  background: rgba(131,56,236,0.15);
  color: #a855f7;
  border: 1px solid rgba(131,56,236,0.3);
  border-radius: 100px;
  padding: 3px 10px;
}
.bc-acts { display: flex; gap: 6px; flex-wrap: wrap; }

/* Action buttons */
.cbtn {
  background: rgba(58,134,255,0.1);
  border: 1.5px solid rgba(58,134,255,0.3);
  border-radius: 8px;
  padding: 5px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  color: var(--blue);
  cursor: pointer;
  transition: all 0.2s;
}
.cbtn:hover { background: rgba(58,134,255,0.2); border-color: var(--blue); }
.cbtn.ok { color: #34d399; border-color: rgba(52,211,153,0.4); background: rgba(52,211,153,0.1); }

.editbtn {
  background: rgba(240,148,51,0.1);
  border: 1.5px solid rgba(240,148,51,0.35);
  border-radius: 8px;
  padding: 5px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 600;
  color: #f09433;
  cursor: pointer;
  transition: all 0.2s;
}
.editbtn:hover { background: rgba(240,148,51,0.2); }

.pbtn {
  background: none;
  border: 1.5px solid var(--border2);
  border-radius: 8px;
  padding: 5px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  color: var(--muted2);
  cursor: pointer;
  transition: all 0.2s;
}
.pbtn:hover { background: rgba(255,255,255,0.06); color: var(--text); }

/* ── LIKE / DISLIKE COUNT BADGES ── */
.like-count, .dislike-count {
  font-size: 11px;
  color: var(--muted2);
  background: rgba(255,255,255,0.05);
  border-radius: 100px;
  padding: 2px 7px;
  border: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════════════
   iPHONE PREVIEW (right sidebar)
   ══════════════════════════════════════════════════════════ */
.phone-stage { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.phone-hint { font-size: 11px; color: var(--muted2); text-align: center; font-weight: 500; }
.phone-hint strong { color: var(--text); }

.iphone {
  min-width: 268px;
  background: #1c1c1e;
  border-radius: 50px;
  padding: 14px;
  position: relative;
  box-shadow: 0 0 0 1px #3a3a3c, 0 0 0 2.5px #1c1c1e, 0 0 0 4px #48484a, inset 0 0 0 1px #2c2c2e, 0 30px 80px rgba(0,0,0,0.7);
}
.iphone-side-btn { position: absolute; left: -3px; top: 100px; width: 3px; height: 34px; background: #3a3a3c; border-radius: 2px 0 0 2px; }
.iphone-side-btn2 { position: absolute; left: -3px; top: 146px; width: 3px; height: 60px; background: #3a3a3c; border-radius: 2px 0 0 2px; }
.iphone-side-btn3 { position: absolute; left: -3px; top: 218px; width: 3px; height: 60px; background: #3a3a3c; border-radius: 2px 0 0 2px; }
.iphone-pwr { position: absolute; right: -3px; top: 140px; width: 3px; height: 80px; background: #3a3a3c; border-radius: 0 2px 2px 0; }
.iphone-screen { background: #fff; border-radius: 38px; overflow: hidden; position: relative; min-height: 530px; }
.dynamic-island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 110px; height: 32px; background: #1c1c1e; border-radius: 20px; z-index: 10; display: flex; align-items: center; justify-content: center; gap: 10px; }
.di-camera { width: 9px; height: 9px; border-radius: 50%; background: #0a0a0a; border: 1.5px solid #2a2a2a; position: relative; }
.di-camera::after { content: ''; position: absolute; inset: 2px; border-radius: 50%; background: #1a3a5c; opacity: 0.6; }
.status-bar { display: flex; align-items: center; justify-content: space-between; padding: 52px 18px 0; font-size: 11px; font-weight: 600; color: #262626; }
.status-time { font-size: 14px; font-weight: 700; }
.status-icons { display: flex; align-items: center; gap: 4px; }
.status-icons svg { width: 14px; height: 14px; fill: #262626; }
.ig-app { padding-top: 6px; }
.ig-topbar { display: flex; align-items: center; justify-content: space-between; padding: 6px 14px 8px; border-bottom: 0.5px solid #dbdbdb; }
.ig-uname { font-size: 13px; font-weight: 700; display: flex; align-items: center; gap: 3px; color: #262626; }
.ig-uname svg { width: 11px; height: 11px; fill: none; stroke: #8e8e8e; stroke-width: 2.5; }
.ig-tb-icons { display: flex; align-items: center; gap: 12px; }
.ig-tb-icons svg { width: 22px; height: 22px; fill: none; stroke: #262626; stroke-width: 1.8; }
.ig-profile { padding: 10px 14px 6px; }
.ig-profile-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.av-wrap { position: relative; width: 72px; height: 72px; flex-shrink: 0; }
.av-ring { position: absolute; inset: 0; border-radius: 50%; padding: 2.5px; background: var(--ig-s); }
.av-ring-inner { background: #fff; border-radius: 50%; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.av { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, #667eea, #764ba2); display: flex; align-items: center; justify-content: center; font-size: 26px; border: 2px solid #fff; overflow: hidden; background-size: cover; background-position: center; }
.av-plus { position: absolute; bottom: 0; right: 0; width: 20px; height: 20px; border-radius: 50%; background: #0095f6; border: 2px solid #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; color: #fff; font-weight: 700; line-height: 1; }
.ig-stats { display: flex; gap: 0; flex: 1; justify-content: space-around; }
.ig-stat { text-align: center; }
.ig-stat-n { font-size: 15px; font-weight: 700; color: #262626; display: block; line-height: 1.2; }
.ig-stat-l { font-size: 10px; color: #8e8e8e; margin-top: 1px; }
.ig-dname { font-size: 13px; font-weight: 700; color: #262626; margin-bottom: 2px; }
.ig-bio-text { font-size: 11.5px; line-height: 1.65; color: #262626; white-space: pre-line; min-height: 50px; transition: opacity 0.25s; }
.ig-bio-text.ph { color: #8e8e8e; font-style: italic; font-size: 11px; }
.ig-action-btns { display: flex; gap: 5px; margin-top: 10px; }
.ig-abtn { flex: 1; background: #efefef; border: none; border-radius: 9px; padding: 6px 8px; font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600; color: #262626; cursor: pointer; text-align: center; }
.ig-abtn.sm { flex: 0; padding: 6px 10px; }
.ig-hl-row { display: flex; gap: 0; padding: 10px 14px 8px; overflow-x: auto; border-bottom: 0.5px solid #dbdbdb; scrollbar-width: none; }
.ig-hl-row::-webkit-scrollbar { display: none; }
.ig-hl { display: flex; flex-direction: column; align-items: center; gap: 4px; margin-right: 14px; flex-shrink: 0; }
.ig-hl-ring { width: 54px; height: 54px; border-radius: 50%; background: #efefef; display: flex; align-items: center; justify-content: center; font-size: 22px; border: 1px solid #dbdbdb; }
.ig-hl-ring.new { background: #fff; border: 1.5px dashed #dbdbdb; }
.ig-hl-lbl { font-size: 10px; color: #262626; font-weight: 400; }
.ig-tabs { display: flex; border-bottom: 0.5px solid #dbdbdb; }
.ig-tab { flex: 1; padding: 10px; display: flex; align-items: center; justify-content: center; border-bottom: 2px solid transparent; cursor: pointer; }
.ig-tab.on { border-color: #262626; }
.ig-tab svg { width: 19px; height: 19px; fill: none; stroke-width: 1.8; stroke: #8e8e8e; }
.ig-tab.on svg { stroke: #262626; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: #dbdbdb; }
.ig-cell { aspect-ratio: 1; background: #f0f0f0; display: flex; align-items: center; justify-content: center; font-size: 22px; overflow: hidden; position: relative; }
.ig-cell:nth-child(even) { background: #e8e8e8; }
.ig-cell-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(131,58,180,.15), rgba(253,29,29,.1)); }
.home-ind { display: flex; justify-content: center; padding: 6px 0 8px; background: #fff; }
.home-bar { width: 110px; height: 4px; background: #262626; border-radius: 3px; opacity: 0.3; }

/* ══════════════════════════════════════════════════════════
   COMMUNITY SUBMIT CARD
   ══════════════════════════════════════════════════════════ */
.submit-card {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px auto;
  max-width: 860px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  z-index: 1;
}
.submit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
}
.submit-card::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(131,56,236,0.1), transparent);
  border-radius: 50%;
  pointer-events: none;
}
.submit-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.submit-card > p {
  font-size: 14px;
  color: var(--muted2);
  margin-bottom: 24px;
}

.submit-form { display: flex; flex-direction: column; gap: 14px; }
.submit-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.submit-photo-upload {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(131,56,236,0.4);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  transition: all 0.25s;
}
.submit-photo-upload:hover { border-color: rgba(131,56,236,0.7); }
.photo-icon-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: var(--muted2); font-weight: 600; pointer-events: none;
}
.submit-photo-preview { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: none; }
#submitPhotoInput { position: absolute; inset: 0; opacity: 0; cursor: pointer; }

.submit-input, .submit-select, .submit-textarea {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border2);
  border-radius: 12px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
  width: 100%;
}
.submit-input { flex: 1; min-width: 150px; }
.submit-select { flex-shrink: 0; min-width: 160px; -webkit-appearance: none; }
.submit-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.submit-input:focus, .submit-select:focus, .submit-textarea:focus {
  background: rgba(255,255,255,0.08);
  border-color: rgba(131,56,236,0.5);
  box-shadow: 0 0 0 3px rgba(131,56,236,0.12);
}
.submit-input::placeholder, .submit-textarea::placeholder { color: var(--muted2); }
.submit-select option { background: #1E293B; }

/* Instagram link inside submit — override inline styles */
#subInstaLink {
  width: 100%;
  padding: 11px 14px;
  background: rgba(255,255,255,0.06) !important;
  border: 1.5px solid var(--border2) !important;
  border-radius: 12px !important;
  color: var(--text) !important;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  transition: all 0.2s;
}
#subInstaLink:focus { background: rgba(255,255,255,0.08) !important; border-color: rgba(131,56,236,0.5) !important; box-shadow: 0 0 0 3px rgba(131,56,236,0.12) !important; }
#subInstaLink::placeholder { color: var(--muted2); }

.submit-footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.submit-char-count { font-size: 12px; color: var(--muted2); }
#subCharCount { color: var(--text); font-weight: 700; }

.submit-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 700;
  cursor: pointer;
  transition: all 0.25s;
  box-shadow: 0 4px 18px rgba(131,56,236,0.4);
  position: relative;
  overflow: hidden;
}
.submit-btn::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.15); opacity: 0; transition: opacity 0.2s; }
.submit-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(131,56,236,0.55); }
.submit-btn:hover::before { opacity: 1; }

/* ══════════════════════════════════════════════════════════
   HOW TO USE SECTION
   ══════════════════════════════════════════════════════════ */
.how-to-use {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.section-header {
  text-align: center;
  margin-bottom: 48px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 15px;
  color: var(--muted2);
  margin-top: 10px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.step-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); border-color: rgba(255,255,255,0.15); }
.step-card:hover::before { transform: scaleX(1); }

.step-number {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
  display: block;
}
.step-icon {
  font-size: 32px;
  margin-bottom: 12px;
  display: block;
}
.step-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.step-card p {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.65;
}

/* ══════════════════════════════════════════════════════════
   FAQ SECTION
   ══════════════════════════════════════════════════════════ */
.faq-section {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: rgba(255,255,255,0.15); }
.faq-q {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
}
.faq-q:hover { color: #fff; }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--muted2);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); color: var(--purple); }
.faq-item.open { border-color: rgba(131,56,236,0.3); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--muted2);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ══════════════════════════════════════════════════════════
   CROP MODAL
   ══════════════════════════════════════════════════════════ */
.crop-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 500;
  justify-content: center;
  align-items: center;
  padding: 20px;
  backdrop-filter: blur(8px);
}
.crop-modal-overlay.show { display: flex; }
.crop-modal {
  background: var(--card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--shadow);
}
.crop-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.crop-area { background: #000; border-radius: 10px; overflow: hidden; height: 280px; margin-bottom: 16px; }
.crop-actions { display: flex; gap: 10px; }
.crop-btn {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}
.crop-btn.cancel { background: rgba(255,255,255,0.08); color: var(--muted); }
.crop-btn.cancel:hover { background: rgba(255,255,255,0.14); }
.crop-btn.confirm { background: var(--primary); color: #fff; box-shadow: 0 4px 14px rgba(131,56,236,0.4); }
.crop-btn.confirm:hover { opacity: 0.9; }

/* ══════════════════════════════════════════════════════════
   MOBILE PREVIEW MODAL
   ══════════════════════════════════════════════════════════ */
.mobile-preview-btn {
  display: none;
  position: fixed;
  bottom: 60px; right: 16px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 13px 22px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
  z-index: 150;
  box-shadow: 0 6px 24px rgba(131,56,236,0.5);
  animation: pulse 2s infinite;
}
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 300; justify-content: center; align-items: center; padding: 20px; backdrop-filter: blur(8px); }
.modal-overlay.show { display: flex; }
.modal-content { background: var(--card); border: 1px solid var(--glass-border); border-radius: 20px; padding: 20px; max-width: 320px; width: 100%; position: relative; box-shadow: var(--shadow); }
.modal-close { position: absolute; top: -16px; right: -16px; width: 36px; height: 36px; background: var(--card); border: 1px solid var(--glass-border); border-radius: 50%; font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10; color: var(--text); }

/* ══════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--card);
  border: 1px solid rgba(131,56,236,0.4);
  color: var(--text);
  font-size: 13px; font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════════════════════════════════════════════════
   CONTENT BLOCK (SEO text)
   ══════════════════════════════════════════════════════════ */
.content {
  max-width: 900px;
  margin: 40px auto;
  padding: 36px 40px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  position: relative;
  z-index: 1;
}
.content h1, .content h2 { font-size: 1.7rem; font-weight: 800; color: var(--text); margin: 28px 0 14px; letter-spacing: -0.3px; }
.content h3 { font-size: 1.3rem; color: var(--text); margin: 22px 0 10px; font-weight: 700; }
.content p { margin-bottom: 18px; }
.content a { color: var(--blue); text-decoration: none; font-weight: 600; }
.content a:hover { text-decoration: underline; }
.content ul, .content ol { margin: 14px 0 18px 24px; }
.content li { margin-bottom: 8px; color: var(--muted); }
.content table { width: 100%; border-collapse: collapse; margin: 22px 0; border-radius: 10px; overflow: hidden; }
.content th { background: rgba(131,56,236,0.2); color: var(--text); padding: 12px; text-align: left; }
.content td { padding: 12px; border: 1px solid var(--border); color: var(--muted); }
.content blockquote { border-left: 3px solid var(--purple); background: rgba(131,56,236,0.08); padding: 14px 20px; margin: 18px 0; border-radius: 0 10px 10px 0; font-style: italic; }
.content code { background: rgba(255,255,255,0.08); padding: 3px 7px; border-radius: 5px; font-size: 13px; }
.content pre { background: rgba(0,0,0,0.4); padding: 20px; border-radius: 10px; overflow: auto; border: 1px solid var(--border); }
.content img { max-width: 100%; height: auto; border-radius: 12px; margin: 16px 0; }

/* gradient-text helper */
.gradient-text {
  background: var(--primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.site-footer {
  background: rgba(10, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  margin-top: 60px;
  position: relative;
  z-index: 1;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}
.footer-brand img{
    max-width:220px;
    height:auto;
    filter:none !important;
}
.footer-brand p { color: var(--muted2); line-height: 1.7; font-size: 14px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted2);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social a:hover { background: rgba(131,56,236,0.2); border-color: rgba(131,56,236,0.5); color: var(--text); transform: translateY(-2px); }

.footer-links h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text); margin-bottom: 18px; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--muted2); text-decoration: none; font-size: 14px; transition: all 0.2s; display: inline-block; }
.footer-links a:hover { color: var(--text); transform: translateX(4px); }

.footer-bottom {
  text-align: center;
  border-top: 1px solid var(--border);
  padding: 20px;
  color: var(--muted2);
  font-size: 13px;
}
.footer-bottom span { background: var(--primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   HEADER buttons
   ══════════════════════════════════════════════════════════ */
.hdr-btn {
  background: rgba(131,56,236,0.18);
  border: 1.5px solid rgba(131,56,236,0.35);
  color: var(--text);
  border-radius: 10px;
  padding: 8px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s;
}
.hdr-btn:hover { background: rgba(131,56,236,0.3); border-color: rgba(131,56,236,0.6); }

/* ══════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION UTILITY
   ══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .right { display: none; }
  .mobile-preview-btn { display: flex; align-items: center; gap: 6px; }
}
@media (max-width: 768px) {
  .wrap { padding: 16px; }
  .hero { padding: 52px 16px 40px; }
  .hero h1 { font-size: 30px; }
  .submit-card { padding: 24px 18px; }
  .submit-row { flex-direction: column; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .content { padding: 24px 18px; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .ai-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 26px; }
  .button { width: 100%; max-width: 280px; display: block; margin: 0 auto 10px; }
}

/* Sticky scroll offset */
#add-bio { scroll-margin-top: 80px; }

/* ══════════════════════════════════════════════════════════
   GRADIENT TEXT LOGO (inline .logo text fallback)
   ══════════════════════════════════════════════════════════ */
.logo a { display: flex; align-items: center; }