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

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

:root {
    --primary: #E1306C;
    --secondary: #405DE6;
    --accent: #F77737;
    --grad-ig: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D, #F56040, #F77737, #FCAF45);
    --grad-main: linear-gradient(135deg, #E1306C, #C13584, #833AB4);
    --dark: #080818;
    --dark-2: #0f0f28;
    --dark-3: #16163a;
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(255,255,255,0.08);
    --text: #f0f0ff;
    --muted: #7a85a8;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Background orbs ── */
.bg-orbs {
    position: fixed; inset: 0; z-index: 0;
    pointer-events: none; overflow: hidden;
}
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(100px); opacity: 0.18;
    animation: orbFloat 22s infinite ease-in-out;
}
.orb-1 { width: 650px; height: 650px; background: #833AB4; top: -220px; left: -220px; animation-delay: 0s; }
.orb-2 { width: 550px; height: 550px; background: #E1306C; bottom: -200px; right: -200px; animation-delay: -7s; }
.orb-3 { width: 420px; height: 420px; background: #405DE6; top: 45%; left: 48%; animation-delay: -14s; }

@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(80px,-80px) scale(1.08); }
    66%      { transform: translate(-60px,60px) scale(0.94); }
}

/* ── Navbar ── */
.navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; padding: 18px 0;
    transition: all .3s ease;
}
.navbar.scrolled {
    background: rgba(8,8,24,0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}
.nav-inner {
    max-width: 1200px; margin: 0 auto;
    padding: 0 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none; color: var(--text);
}
.logo-mark {
    width: 42px; height: 42px;
    background: var(--grad-main);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; font-weight: 800; color: #fff;
    position: relative; overflow: hidden;
}
.logo-mark::after {
    content: '';
    position: absolute; top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shine 3s infinite;
}
@keyframes shine {
    0%   { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}
.logo-text { font-size: 20px; font-weight: 700; }
.logo-text span { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.nav-links { display: flex; list-style: none; gap: 28px; align-items: center; }
.nav-links a {
    color: var(--muted); text-decoration: none;
    font-size: 14px; font-weight: 500;
    transition: color .25s;
    position: relative;
}
.nav-links a:hover { color: var(--text); }
.nav-links a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--grad-main);
    transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.nav-links .nav-cta {
    padding: 9px 22px !important;
    background: var(--grad-main) !important;
    border-radius: 50px !important;
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    font-weight: 600 !important;
}
.nav-links .nav-cta::after { display: none !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 24px; height: 2px; background: var(--text); transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 130px 24px 90px;
    position: relative; z-index: 1;
}
.hero-wrap { max-width: 820px; }

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50px;
    font-size: 12px; color: var(--muted);
    margin-bottom: 28px;
    animation: fadeUp .8s ease both;
}
.hero-badge i { color: #FCAF45; }

.hero h1 {
    font-size: 68px; font-weight: 900;
    line-height: 1.08; letter-spacing: -1px;
    margin-bottom: 22px;
    animation: fadeUp .8s .15s ease both;
}
.grad-text {
    background: var(--grad-ig);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradShift 6s ease infinite;
}
@keyframes gradShift {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

.hero p {
    font-size: 17px; color: var(--muted);
    line-height: 1.75; margin-bottom: 38px;
    animation: fadeUp .8s .3s ease both;
}

.hero-btns {
    display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    animation: fadeUp .8s .45s ease both;
}

/* Generic buttons */
.btn {
    padding: 14px 32px; border-radius: 50px;
    font-size: 14px; font-weight: 700;
    text-decoration: none; border: none; cursor: pointer;
    font-family: 'Poppins', sans-serif;
    display: inline-flex; align-items: center; gap: 8px;
    transition: transform .25s, box-shadow .25s;
}
.btn-primary {
    background: var(--grad-main); color: #fff;
    box-shadow: 0 8px 32px rgba(225,48,108,.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(225,48,108,.5); }
.btn-ghost {
    background: var(--glass); color: var(--text);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }

.hero-stats {
    display: flex; justify-content: center; gap: 56px;
    margin-top: 64px;
    animation: fadeUp .8s .6s ease both;
}
.stat-num {
    font-size: 30px; font-weight: 800;
    background: var(--grad-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 4px; }

@keyframes fadeUp {
    from { opacity:0; transform: translateY(28px); }
    to   { opacity:1; transform: translateY(0); }
}

/* ── Sections ── */
.section { padding: 90px 24px; position: relative; z-index: 1; }
.container { max-width: 1200px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 64px; }
.section-tag {
    display: inline-block; padding: 5px 16px;
    background: rgba(225,48,108,.08);
    border: 1px solid rgba(225,48,108,.18);
    border-radius: 50px;
    font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
    color: var(--primary); text-transform: uppercase;
    margin-bottom: 18px;
}
.section-head h2 { font-size: 44px; font-weight: 800; margin-bottom: 14px; letter-spacing: -.5px; }
.section-head p { color: var(--muted); font-size: 15px; max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── Tool Cards ── */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.tool-card {
    display: block;
    text-decoration: none;
    color: var(--text);
    background: var(--dark-2);
    border: 1px solid var(--glass-border);
    border-radius: 22px; padding: 36px;
    cursor: pointer; position: relative; overflow: hidden;
    transition: transform .35s, border-color .35s, box-shadow .35s;
}
.tool-card::before {
    content: ''; position: absolute; inset: 0;
    background: var(--grad-main);
    opacity: 0; transition: opacity .35s;
    border-radius: 22px;
}
.tool-card::after {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: var(--grad-main);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s ease;
}
.tool-card:hover::after { transform: scaleX(1); }
.tool-card:hover {
    transform: translateY(-7px);
    border-color: rgba(225,48,108,.25);
    box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.tool-card > * { position: relative; z-index: 1; }

.tool-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; margin-bottom: 20px;
}
.ti-pink   { background: rgba(225,48,108,.1);   color: #E1306C; }
.ti-purple { background: rgba(131,58,180,.1);   color: #833AB4; }
.ti-blue   { background: rgba(64,93,230,.1);    color: #405DE6; }
.ti-orange { background: rgba(247,119,55,.1);   color: #F77737; }
.ti-yellow { background: rgba(252,175,69,.1);   color: #FCAF45; }
.ti-red    { background: rgba(253,29,29,.1);    color: #FD1D1D; }

.tool-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 9px; }
.tool-card p  { color: var(--muted); font-size: 13px; line-height: 1.65; margin-bottom: 22px; }
.tool-arrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 13px; font-weight: 700; color: var(--primary);
    transition: gap .25s;
}
.tool-card:hover .tool-arrow { gap: 11px; }

/* ── Features ── */
.features-grid {
    display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.feat-item {
    text-align: center; padding: 32px 20px;
    background: var(--dark-2);
    border: 1px solid var(--glass-border);
    border-radius: 18px;
    transition: transform .3s, border-color .3s;
}
.feat-item:hover { transform: translateY(-5px); border-color: rgba(225,48,108,.25); }
.feat-item i {
    font-size: 28px;
    background: var(--grad-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 14px;
}
.feat-item h4 { font-size: 14px; font-weight: 700; margin-bottom: 7px; }
.feat-item p  { font-size: 12px; color: var(--muted); line-height: 1.6; }

/* ── Contact ── */
.contact-wrap { max-width: 620px; margin: 0 auto; }

/* ── Form Elements ── */
.f-group { margin-bottom: 22px; }
.f-group label {
    display: block; font-size: 13px; font-weight: 600;
    margin-bottom: 9px;
}
.f-group label i { margin-right: 7px; color: var(--primary); }
.f-group input,
.f-group textarea,
.f-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--dark-2);
    border: 1.5px solid var(--glass-border);
    border-radius: 12px;
    color: var(--text); font-size: 14px;
    font-family: 'Poppins', sans-serif;
    outline: none; transition: border-color .25s, box-shadow .25s;
}
.f-group input:focus,
.f-group textarea:focus,
.f-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(225,48,108,.1);
}
.f-group textarea { min-height: 118px; resize: vertical; }
.f-group select option { background: var(--dark-2); }

/* ── Primary Action Button ── */
.btn-action {
    width: 100%; padding: 15px;
    border-radius: 12px; border: none;
    font-size: 15px; font-weight: 700;
    font-family: 'Poppins', sans-serif;
    background: var(--grad-main); color: #fff;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 9px;
    transition: transform .25s, box-shadow .25s;
}
.btn-action:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(225,48,108,.4); }
.btn-action.loading { opacity: .7; pointer-events: none; }
.btn-action.loading .btn-text { display: none; }
.btn-action.loading .spinner { display: block; }
.spinner {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin .7s linear infinite;
    display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Result Box ── */
.result-box {
    margin-top: 26px;
    background: var(--dark-2);
    border: 1px solid var(--glass-border);
    border-radius: 18px; padding: 24px;
    display: none;
    animation: fadeUp .4s ease;
}
.result-box.show { display: block; }
.result-box h3 {
    font-size: 14px; font-weight: 700;
    margin-bottom: 14px;
    display: flex; align-items: center; gap: 8px;
}
.result-box h3 i { color: #00ff88; }
.result-content {
    background: var(--dark-3); border-radius: 10px;
    padding: 18px; font-size: 13px; line-height: 1.8;
    white-space: pre-wrap; word-wrap: break-word;
    color: #c0c8e0; max-height: 380px; overflow-y: auto;
}
.result-content::-webkit-scrollbar { width: 5px; }
.result-content::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
.copy-btn {
    margin-top: 14px;
    padding: 10px 22px;
    background: rgba(0,255,136,.08);
    border: 1px solid rgba(0,255,136,.2);
    color: #00ff88; border-radius: 9px;
    cursor: pointer; font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 600;
    display: inline-flex; align-items: center; gap: 7px;
    transition: background .25s;
}
.copy-btn:hover { background: rgba(0,255,136,.15); }

/* ── Checkbox / Radio pills ── */
.pill-group { display: flex; flex-wrap: wrap; gap: 9px; }
.pill-opt input { display: none; }
.pill-opt label {
    padding: 9px 18px;
    background: var(--dark-3);
    border: 1px solid var(--glass-border);
    border-radius: 9px; cursor: pointer;
    font-size: 13px; display: block;
    transition: all .25s;
}
.pill-opt input:checked + label,
.pill-opt label:hover {
    background: rgba(225,48,108,.15);
    border-color: var(--primary);
    color: var(--primary);
}

/* ── Category pills ── */
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.cat-pill {
    padding: 8px 16px; border-radius: 50px;
    background: var(--dark-3);
    border: 1px solid var(--glass-border);
    color: var(--muted); font-size: 12px;
    cursor: pointer; transition: all .25s;
}
.cat-pill.active, .cat-pill:hover {
    background: rgba(225,48,108,.15);
    border-color: var(--primary);
    color: var(--primary);
}

/* ── Char counter ── */
.char-count { text-align: right; font-size: 11px; color: var(--muted); margin-top: 5px; }
.char-count.warn { color: #FCAF45; }
.char-count.danger { color: #FD1D1D; }

/* ── Tool Page Header (standalone pages) ── */
.tp-header {
    padding: 16px 24px;
    background: rgba(8,8,24,.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    position: sticky; top: 0; z-index: 1000;
}
.tp-header-inner {
    max-width: 780px; margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
}
.back-btn {
    display: flex; align-items: center; gap: 9px;
    color: var(--text); background: none; border: none;
    font-family: 'Poppins', sans-serif; font-size: 14px;
    font-weight: 600; cursor: pointer;
    text-decoration: none;
    transition: color .25s;
}
.back-btn:hover { color: var(--primary); }
.tp-content {
    max-width: 780px; margin: 0 auto;
    padding: 48px 24px 80px;
    position: relative; z-index: 1;
    min-height: calc(100vh - 200px);
}
.tp-content h1 {
    font-size: 34px; font-weight: 800;
    margin-bottom: 8px; letter-spacing: -.5px;
    display: flex; align-items: center; gap: 14px;
}
.tp-content .tp-desc { color: var(--muted); font-size: 15px; margin-bottom: 38px; }

/* ── Breadcrumb ── */
.tp-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    font-size: 12px; color: var(--muted);
    margin-bottom: 24px;
}
.tp-breadcrumb a {
    color: var(--muted); text-decoration: none;
    transition: color .25s;
}
.tp-breadcrumb a:hover { color: var(--primary); }
.tp-breadcrumb i { font-size: 8px; }
.tp-breadcrumb .current { color: var(--primary); font-weight: 600; }

/* ── Follower Checker Result UI ── */
.fc-profile { text-align: center; padding: 36px 16px; }
.fc-pic-ring {
    position: relative; display: inline-block; margin-bottom: 18px;
}
.fc-pic-ring img {
    width: 96px; height: 96px; border-radius: 50%;
    object-fit: cover;
    border: 3px solid transparent;
    background-image: linear-gradient(var(--dark-2), var(--dark-2)), var(--grad-main);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}
.fc-verified-dot {
    position: absolute; bottom: 4px; right: 2px;
    width: 22px; height: 22px; background: #3897f0;
    border-radius: 50%; border: 3px solid var(--dark-2);
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; color: #fff;
}
.fc-fullname { font-size: 22px; font-weight: 800; margin-bottom: 3px; }
.fc-username { font-size: 14px; color: var(--muted); margin-bottom: 9px; }
.fc-badge {
    display: inline-block; padding: 4px 14px;
    border-radius: 50px; font-size: 11px; font-weight: 700; letter-spacing: .4px;
}
.fc-badge.pub {
    background: rgba(0,255,136,.07);
    border: 1px solid rgba(0,255,136,.22); color: #00ff88;
}
.fc-badge.prv {
    background: rgba(253,29,29,.07);
    border: 1px solid rgba(253,29,29,.22); color: #FD1D1D;
}
.fc-bio { font-size: 12px; color: var(--muted); margin-top: 10px; font-style: italic; line-height: 1.6; max-width: 400px; margin-inline: auto; }

.fc-hero-count {
    text-align: center; padding: 44px 20px;
    margin: 22px 0;
    background: linear-gradient(135deg, rgba(225,48,108,.06), rgba(131,58,180,.06), rgba(64,93,230,.05));
    border: 1px solid rgba(225,48,108,.1);
    border-radius: 20px; position: relative; overflow: hidden;
}
.fc-hero-count::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 2px;
    background: var(--grad-main);
}
.fc-count-label {
    font-size: 11px; letter-spacing: 3px;
    text-transform: uppercase; color: var(--muted);
    font-weight: 600; margin-bottom: 14px;
}
.fc-number {
    display: flex; justify-content: center;
    align-items: center; gap: 1px; flex-wrap: wrap;
}
.odo-d {
    display: inline-block;
    font-size: 70px; font-weight: 900; line-height: 1;
    background: var(--grad-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: odoRoll .5s cubic-bezier(.16,1,.3,1) forwards;
    opacity: 0; transform: translateY(55px) scale(.82);
}
.odo-c {
    font-size: 54px; font-weight: 900; line-height: 1;
    color: rgba(255,255,255,.18);
    animation: odoRoll .4s ease forwards;
    opacity: 0;
}
@keyframes odoRoll {
    0%  { opacity:0; transform: translateY(55px) scale(.82); }
    60% { opacity:1; transform: translateY(-4px) scale(1.02); }
    100%{ opacity:1; transform: translateY(0) scale(1); }
}
.fc-count-sub { font-size: 13px; color: var(--muted); margin-top: 8px; font-weight: 500; }

.fc-secondary { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fc-sec-card {
    background: var(--dark-3);
    border: 1px solid var(--glass-border);
    border-radius: 14px; padding: 24px 14px; text-align: center;
    transition: border-color .3s, transform .3s;
}
.fc-sec-card:hover { border-color: rgba(225,48,108,.3); transform: translateY(-3px); }
.fc-sec-icon {
    font-size: 18px; margin-bottom: 10px;
    background: var(--grad-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.fc-sec-num { display: flex; justify-content: center; gap: 1px; }
.sec-odo-d {
    font-size: 26px; font-weight: 800; color: var(--text);
    animation: odoRoll .5s cubic-bezier(.16,1,.3,1) forwards;
    opacity: 0;
}
.sec-odo-c {
    font-size: 22px; font-weight: 800; color: rgba(255,255,255,.18);
    animation: odoRoll .4s ease forwards;
    opacity: 0;
}
.fc-sec-lbl {
    font-size: 10px; color: var(--muted);
    text-transform: uppercase; letter-spacing: 2px;
    margin-top: 7px; font-weight: 600;
}

/* ── Animation delay helpers ── */
.fc-number .odo-d:nth-child(1),.fc-number .odo-c:nth-child(1){ animation-delay:.08s }
.fc-number .odo-d:nth-child(2),.fc-number .odo-c:nth-child(2){ animation-delay:.13s }
.fc-number .odo-d:nth-child(3),.fc-number .odo-c:nth-child(3){ animation-delay:.18s }
.fc-number .odo-d:nth-child(4),.fc-number .odo-c:nth-child(4){ animation-delay:.23s }
.fc-number .odo-d:nth-child(5),.fc-number .odo-c:nth-child(5){ animation-delay:.28s }
.fc-number .odo-d:nth-child(6),.fc-number .odo-c:nth-child(6){ animation-delay:.33s }
.fc-number .odo-d:nth-child(7),.fc-number .odo-c:nth-child(7){ animation-delay:.38s }
.fc-number .odo-d:nth-child(8),.fc-number .odo-c:nth-child(8){ animation-delay:.43s }
.fc-number .odo-d:nth-child(9),.fc-number .odo-c:nth-child(9){ animation-delay:.48s }
.fc-number .odo-d:nth-child(10),.fc-number .odo-c:nth-child(10){ animation-delay:.53s }
.fc-number .odo-d:nth-child(11),.fc-number .odo-c:nth-child(11){ animation-delay:.58s }
.fc-number .odo-d:nth-child(12),.fc-number .odo-c:nth-child(12){ animation-delay:.63s }
.fc-number .odo-d:nth-child(13),.fc-number .odo-c:nth-child(13){ animation-delay:.68s }

.fc-sec-card .sec-odo-d:nth-child(1),.fc-sec-card .sec-odo-c:nth-child(1){ animation-delay:.65s }
.fc-sec-card .sec-odo-d:nth-child(2),.fc-sec-card .sec-odo-c:nth-child(2){ animation-delay:.70s }
.fc-sec-card .sec-odo-d:nth-child(3),.fc-sec-card .sec-odo-c:nth-child(3){ animation-delay:.75s }
.fc-sec-card .sec-odo-d:nth-child(4),.fc-sec-card .sec-odo-c:nth-child(4){ animation-delay:.80s }
.fc-sec-card .sec-odo-d:nth-child(5),.fc-sec-card .sec-odo-c:nth-child(5){ animation-delay:.85s }
.fc-sec-card .sec-odo-d:nth-child(6),.fc-sec-card .sec-odo-c:nth-child(6){ animation-delay:.90s }
.fc-sec-card .sec-odo-d:nth-child(7),.fc-sec-card .sec-odo-c:nth-child(7){ animation-delay:.95s }
.fc-sec-card .sec-odo-d:nth-child(8),.fc-sec-card .sec-odo-c:nth-child(8){ animation-delay:1.0s }

.fc-error { padding: 28px; text-align: center; color: #FD1D1D; }
.fc-error i { font-size: 42px; display: block; margin-bottom: 12px; }

/* ── Download Page ── */
.dl-preview {
    background: var(--dark-3); border-radius: 14px;
    padding: 28px; text-align: center;
}
.dl-preview i {
    font-size: 56px;
    background: var(--grad-main);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}
.dl-preview p { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* ── Tags result ── */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-chip {
    padding: 7px 15px;
    background: rgba(225,48,108,.08);
    border: 1px solid rgba(225,48,108,.18);
    border-radius: 50px; font-size: 12px; color: var(--primary);
    cursor: pointer; transition: background .2s;
}
.tag-chip:hover { background: rgba(225,48,108,.18); }

/* ── Footer ── */
.footer { padding: 60px 24px 28px; border-top: 1px solid var(--glass-border); position: relative; z-index: 1; }
.footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px; margin-bottom: 40px;
}
.footer-brand h3 { font-size: 22px; margin-bottom: 12px; }
.footer-brand h3 span { background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
    width: 38px; height: 38px; border-radius: 9px;
    background: var(--glass); border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); text-decoration: none;
    transition: all .25s;
}
.social-row a:hover {
    background: var(--grad-main);
    border-color: transparent; color: #fff;
    transform: translateY(-2px);
}
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .25s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
    max-width: 1200px; margin: 0 auto;
    padding-top: 26px; border-top: 1px solid var(--glass-border);
    text-align: center; color: var(--muted); font-size: 12px;
}

/* ── Scroll reveal ── */
.reveal { opacity:0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform: translateY(0); }

/* ── Responsive ── */
@media (max-width: 992px) {
    .tools-grid { grid-template-columns: repeat(2,1fr); }
    .features-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
    .hero h1 { font-size: 50px; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: 275px; height: 100vh;
        background: var(--dark-2);
        flex-direction: column; justify-content: center;
        padding: 40px; gap: 20px;
        transition: right .35s ease;
        border-left: 1px solid var(--glass-border);
    }
    .nav-links.open { right: 0; }
    .hero h1 { font-size: 36px; }
    .hero p { font-size: 14px; }
    .hero-stats { gap: 28px; }
    .stat-num { font-size: 26px; }
    .tools-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .section-head h2 { font-size: 30px; }
    .footer-grid { grid-template-columns: 1fr; }
    .fc-hero-count .odo-d { font-size: 44px; }
    .fc-hero-count .odo-c { font-size: 36px; }
    .tp-content h1 { font-size: 26px; }
}
@media (max-width: 400px) {
    .fc-hero-count .odo-d { font-size: 32px; }
    .fc-hero-count .odo-c { font-size: 26px; }
}