:root {
    --bg: #0a0b10;
    --bg-2: #0f1118;
    --panel: #14161f;
    --panel-2: #181b26;
    --line: rgba(255, 255, 255, 0.07);
    --line-strong: rgba(255, 255, 255, 0.13);
    --ink: #eef1f6;
    --muted: #8b93a4;
    --faint: rgba(255, 255, 255, 0.32);
    --cyan: #22d3ee;
    --cyan-2: #0ea5d6;
    --glow: rgba(34, 211, 238, 0.22);
    --warn: #fb7185;
    --display: "Bricolage Grotesque", sans-serif;
    --body: "DM Sans", sans-serif;
    --mono: "JetBrains Mono", monospace;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--body);
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background: radial-gradient(820px 520px at 78% -8%, rgba(34, 211, 238, 0.1), transparent 60%),
        radial-gradient(680px 480px at 10% 12%, rgba(124, 92, 255, 0.08), transparent 62%),
        linear-gradient(180deg, #0b0c12 0%, #090a0f 100%);
}
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: radial-gradient(circle at 50% 16%, #000 0%, transparent 72%);
    mask-image: radial-gradient(circle at 50% 16%, #000 0%, transparent 72%);
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(10, 11, 16, 0.72);
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border-bottom: 1px solid var(--line);
}
.header-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 24px;
}
.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    text-decoration: none;
    letter-spacing: -0.3px;
}
.header-logo .mark {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: grid;
    place-items: center;
    background: linear-gradient(150deg, var(--cyan), var(--cyan-2));
    box-shadow: 0 6px 18px var(--glow);
}
.header-logo .mark svg {
    width: 17px;
    height: 17px;
}
.header-logo b {
    color: var(--cyan);
    font-weight: 800;
}
.nav {
    display: flex;
    align-items: center;
    gap: 26px;
}
.nav a {
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav a:hover {
    color: var(--ink);
}
.nav-cta {
    background: linear-gradient(150deg, var(--cyan), var(--cyan-2));
    color: #04141a !important;
    padding: 9px 20px;
    border-radius: 9px;
    font-weight: 600;
    box-shadow: 0 6px 18px var(--glow);
}
.nav-cta:hover {
    filter: brightness(1.06);
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 6px;
}
.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--muted);
    border-radius: 2px;
    transition: 0.2s;
}
@media (max-width: 680px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #11131b;
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 24px;
        gap: 16px;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
    }
    .nav.open {
        display: flex;
    }
    .mobile-toggle {
        display: flex;
    }
}
.hero {
    padding: 128px 24px 48px;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.22);
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 11.5px;
    font-weight: 500;
    padding: 7px 14px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    margin-bottom: 24px;
    text-transform: uppercase;
}
.hero-tag .pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 0 var(--glow);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(34, 211, 238, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
    }
}
.hero h1 {
    font-family: var(--display);
    font-size: clamp(38px, 6.2vw, 68px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -1.8px;
}
.hero h1 em {
    font-style: normal;
    background: linear-gradient(120deg, var(--cyan), #7dd3fc 60%, #a78bfa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.62;
    max-width: 520px;
    margin: 18px auto 0;
}
.scraper-section {
    padding: 0 24px 72px;
}
.scraper-card {
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(180deg, var(--panel), var(--bg-2));
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 30px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.scraper-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(160deg, rgba(34, 211, 238, 0.35), transparent 40%);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}
.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}
.card-top .dots {
    display: flex;
    gap: 6px;
}
.card-top .dots i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
}
.card-top .dots i:first-child {
    background: rgba(251, 113, 133, 0.5);
}
.card-top .dots i:nth-child(2) {
    background: rgba(250, 204, 21, 0.5);
}
.card-top .dots i:nth-child(3) {
    background: rgba(34, 211, 238, 0.6);
}
.card-top .label {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--faint);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}
.input-row {
    display: flex;
    gap: 10px;
}
.input-group {
    position: relative;
    flex: 1;
}
.input-group input {
    width: 100%;
    padding: 15px 16px 15px 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line-strong);
    border-radius: 12px;
    color: var(--ink);
    font-size: 15px;
    font-family: var(--mono);
    outline: none;
    transition: 0.2s;
}
.input-group input::placeholder {
    color: var(--faint);
}
.input-group input:focus {
    border-color: var(--cyan);
    background: rgba(34, 211, 238, 0.06);
    box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
}
.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--cyan);
    font-size: 16px;
    font-weight: 700;
    font-family: var(--mono);
}
.btn-search {
    padding: 0 24px;
    background: linear-gradient(150deg, var(--cyan), var(--cyan-2));
    color: #04141a;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--body);
    cursor: pointer;
    transition: 0.18s;
    white-space: nowrap;
    box-shadow: 0 8px 22px var(--glow);
}
.btn-search:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
}
.btn-search:active {
    transform: translateY(0);
}
.hint {
    text-align: center;
    color: var(--faint);
    font-size: 12.5px;
    margin-top: 14px;
    font-family: var(--mono);
}
.hint kbd {
    background: rgba(255, 255, 255, 0.07);
    padding: 2px 7px;
    border-radius: 5px;
    font-size: 11px;
    color: var(--muted);
    border: 1px solid var(--line-strong);
}
.progress-section {
    display: none;
    margin-top: 24px;
}
.progress-section.active {
    display: block;
    animation: fadeUp 0.35s ease;
}
.scanline {
    position: relative;
    height: 62px;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid var(--line);
    margin-bottom: 16px;
    display: grid;
    place-items: center;
}
.scanline .grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(34, 211, 238, 0.07) 1px, transparent 1px);
    background-size: 12px 100%;
}
.scanline .beam {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.55), transparent);
    filter: blur(2px);
    animation: sweep 1.3s linear infinite;
}
@keyframes sweep {
    0% {
        left: -80px;
    }
    100% {
        left: 100%;
    }
}
.scanline .bars {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 30px;
    z-index: 1;
}
.scanline .bars i {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--glow);
    animation: bar 1.05s ease-in-out infinite;
}
.scanline .bars i:nth-child(2) {
    animation-delay: 0.1s;
}
.scanline .bars i:nth-child(3) {
    animation-delay: 0.2s;
}
.scanline .bars i:nth-child(4) {
    animation-delay: 0.3s;
}
.scanline .bars i:nth-child(5) {
    animation-delay: 0.18s;
}
.scanline .bars i:nth-child(6) {
    animation-delay: 0.08s;
}
.scanline .bars i:nth-child(7) {
    animation-delay: 0.24s;
}
@keyframes bar {
    0%,
    100% {
        height: 7px;
        opacity: 0.45;
    }
    50% {
        height: 26px;
        opacity: 1;
    }
}
.progress-section.active .scanline {
    animation: scanGlow 1.7s ease-in-out infinite;
}
@keyframes scanGlow {
    0%,
    100% {
        box-shadow: inset 0 0 0 1px var(--line);
    }
    50% {
        box-shadow:
            inset 0 0 0 1px rgba(34, 211, 238, 0.32),
            0 0 22px rgba(34, 211, 238, 0.1);
    }
}
.progress-label {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 12.5px;
    font-family: var(--mono);
    margin-bottom: 8px;
}
.progress-bar-track {
    width: 100%;
    height: 7px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 7px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    width: 0%;
    border-radius: 7px;
    background: linear-gradient(90deg, var(--cyan-2), var(--cyan));
    box-shadow: 0 0 12px var(--glow);
    transition: width 0.3s ease;
    position: relative;
    overflow: hidden;
}
.progress-bar-fill::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
    transform: translateX(-100%);
    animation: barShine 1.1s linear infinite;
}
@keyframes barShine {
    100% {
        transform: translateX(100%);
    }
}
.progress-text {
    text-align: center;
    margin-top: 14px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 0.2px;
    font-family: var(--mono);
}
.progress-text::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 13px;
    margin-left: 5px;
    background: var(--cyan);
    vertical-align: -2px;
    animation: caret 1s steps(2, end) infinite;
}
@keyframes caret {
    0%,
    49% {
        opacity: 1;
    }
    50%,
    100% {
        opacity: 0;
    }
}
.result-section {
    display: none;
    margin-top: 26px;
}
.result-section.active {
    display: block;
    animation: fadeUp 0.45s ease;
}
.profile-cover {
    width: 100%;
    height: 150px;
    background-size: cover;
    background-position: center 20%;
    background-color: #0a0c15;
    position: relative;
    margin-bottom: 4px;
}
.profile-cover.placeholder {
    background: linear-gradient(125deg, #1a1d2a, #0f1118);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.25);
    font-size: 13px;
    font-family: var(--mono);
}
.profile-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
    margin: -16px 12px 0 12px;
    background: rgba(10, 11, 16, 0.65);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--cyan);
    background: rgba(255, 255, 255, 0.04);
    display: grid;
    place-items: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--faint);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}
.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.profile-info {
    flex: 1;
    min-width: 0;
}
.name-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.profile-name {
    font-family: var(--display);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.4px;
}
.verified {
    width: 20px;
    height: 20px;
    fill: var(--cyan);
    margin-top: 2px;
}
.profile-username {
    color: var(--muted);
    font-size: 13.5px;
    margin-top: 4px;
    font-family: var(--mono);
}
.last-seen {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-family: var(--mono);
    background: rgba(0, 0, 0, 0.55);
    padding: 3px 0;
    border-radius: 40px;
    margin-top: 8px;
    color: #bbd4f0;
    backdrop-filter: blur(4px);
}
.last-seen svg {
    width: 12px;
    height: 12px;
    stroke: var(--cyan);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}
.stat-card {
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid var(--line);
    border-radius: 13px;
    padding: 16px 10px;
    text-align: center;
    transition: 0.18s;
}
.stat-card:hover {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.05);
    transform: translateY(-2px);
}
.stat-icon {
    color: var(--cyan);
    margin-bottom: 6px;
    display: grid;
    place-items: center;
}
.stat-value {
    font-family: var(--display);
    font-size: 23px;
    font-weight: 800;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.stat-label {
    color: var(--faint);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-top: 5px;
    font-family: var(--mono);
}
.about-section {
    margin-top: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px 20px;
    transition: 0.2s;
}
.about-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
}
.more-info-btn {
    color: var(--cyan);
    cursor: pointer;
    font-weight: 500;
    display: inline-block;
    margin-left: 5px;
    transition: opacity 0.2s;
}
.more-info-btn:hover {
    text-decoration: underline;
    opacity: 0.85;
}
.error-section {
    display: none;
    margin-top: 20px;
    text-align: center;
    padding: 18px;
    background: rgba(251, 113, 133, 0.07);
    border: 1px solid rgba(251, 113, 133, 0.2);
    border-radius: 13px;
}
.error-section.active {
    display: block;
    animation: fadeUp 0.35s ease;
}
.error-text {
    color: var(--warn);
    font-size: 14px;
    font-weight: 500;
}
.btn-unlock {
    display: block;
    width: 100%;
    margin-top: 22px;
    padding: 16px;
    background: linear-gradient(150deg, var(--cyan), var(--cyan-2));
    color: #04141a;
    border: none;
    border-radius: 13px;
    font-family: var(--display);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    transition: 0.2s;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 10px 26px var(--glow);
    position: relative;
    overflow: hidden;
}
.btn-unlock::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: skewX(-20deg);
    animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
    0%,
    60% {
        left: -120%;
    }
    100% {
        left: 140%;
    }
}
.btn-unlock:hover {
    filter: brightness(1.06);
    transform: translateY(-1px);
}
.btn-reset {
    display: inline-block;
    margin-top: 14px;
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    color: var(--faint);
    font-family: var(--mono);
    font-size: 12.5px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}
.btn-reset:hover {
    border-color: var(--cyan);
    color: var(--cyan);
}
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(5, 6, 10, 0.92);
    backdrop-filter: blur(12px);
    animation: fadeIn 0.25s ease;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.modal-overlay.active {
    display: flex;
}
.modal-messenger {
    max-width: 480px;
    width: 100%;
    background: #0e1217;
    border-radius: 24px;
    border: 1px solid rgba(34, 211, 238, 0.2);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: popIn 0.4s cubic-bezier(0.2, 1.2, 0.3, 1);
}
.chat-row {
    display: flex;
    gap: 12px;
    padding: 24px 24px 16px 24px;
    align-items: flex-start;
}
.chat-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(145deg, var(--cyan), var(--cyan-2));
    flex-shrink: 0;
    position: relative;
}
.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.chat-avatar span {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    font-size: 22px;
    font-weight: 700;
    color: #04141a;
}
.chat-avatar::after {
    content: "";
    position: absolute;
    bottom: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid #0e1217;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: onlinePulse 1.8s infinite;
}
@keyframes onlinePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5);
        transform: scale(1);
    }
    70% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
        transform: scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
        transform: scale(1);
    }
}
.chat-bubble {
    background: #1e293b;
    padding: 14px 18px;
    border-radius: 20px;
    border-top-left-radius: 6px;
    flex: 1;
}
.chat-bubble p {
    font-size: 14px;
    line-height: 1.55;
    color: #e2e8f0;
}
.offer-section {
    padding: 8px 24px 24px;
}
.offer-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 12px;
}
.offer-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.08), rgba(34, 211, 238, 0.02));
    border: 1px solid rgba(34, 211, 238, 0.2);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 12px;
    text-decoration: none;
    color: var(--ink);
}
.offer-btn:hover {
    border-color: var(--cyan);
    background: rgba(34, 211, 238, 0.12);
    transform: translateX(4px);
}
.offer-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}
.offer-icon {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(34, 211, 238, 0.12);
    display: grid;
    place-items: center;
}
.offer-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--cyan);
    stroke-width: 1.7;
    fill: none;
}
.offer-text {
    font-weight: 600;
    font-size: 15px;
    flex: 1;
    word-break: break-word;
    line-height: 1.4;
}
.loading-offers {
    text-align: center;
    padding: 20px;
    color: var(--cyan);
    font-family: var(--mono);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.spinner {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(34, 211, 238, 0.2);
    border-top-color: var(--cyan);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.modal-close {
    background: transparent;
    border: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px;
    transition: 0.2s;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.modal-close:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.02);
}
@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.video-section {
    padding: 0 24px 72px;
    max-width: 680px;
    margin: 0 auto;
}
.section-label {
    text-align: center;
    color: var(--faint);
    font-family: var(--mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    margin-bottom: 16px;
}
.video-wrapper {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--panel), var(--bg-2));
    border: 1px solid var(--line);
    aspect-ratio: 16/9;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: 0.2s;
}
.video-wrapper:hover {
    border-color: rgba(34, 211, 238, 0.3);
}
.video-placeholder {
    text-align: center;
}
.play-icon {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    background: linear-gradient(150deg, var(--cyan), var(--cyan-2));
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    color: #04141a;
    transition: 0.2s;
    box-shadow: 0 10px 28px var(--glow);
}
.video-wrapper:hover .play-icon {
    transform: scale(1.07);
}
.video-placeholder p {
    font-family: var(--display);
    font-size: 16px;
    font-weight: 700;
}
.video-placeholder small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    color: var(--faint);
    font-family: var(--mono);
}
.section {
    padding: 0 24px 72px;
    max-width: 1120px;
    margin: 0 auto;
}
.section-head {
    text-align: center;
    margin-bottom: 36px;
}
.section-title {
    font-family: var(--display);
    font-size: clamp(26px, 3.6vw, 34px);
    font-weight: 800;
    letter-spacing: -0.8px;
}
.section-sub {
    color: var(--muted);
    font-size: 15px;
    margin-top: 8px;
}
.steps-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    max-width: 880px;
    margin: 0 auto;
}
.how-step {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), transparent);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
}
.how-step .step-num {
    position: absolute;
    top: 14px;
    right: 18px;
    font-family: var(--display);
    font-size: 40px;
    font-weight: 800;
    color: rgba(34, 211, 238, 0.08);
    line-height: 1;
}
.how-step .emoji {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.2);
    color: var(--cyan);
    margin: 0 auto 14px;
}
.how-step h4 {
    font-family: var(--display);
    font-size: 15.5px;
    font-weight: 700;
    margin-bottom: 6px;
}
.how-step p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}
.footer {
    border-top: 1px solid var(--line);
    padding: 40px 24px 30px;
    background: rgba(8, 9, 13, 0.6);
}
.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 18px;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 15px;
}
.footer-logo b {
    color: var(--cyan);
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: var(--faint);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--ink);
}
.footer-copy {
    color: rgba(255, 255, 255, 0.22);
    font-size: 12.5px;
    font-family: var(--mono);
}
.footer-disclaimer {
    max-width: 1120px;
    margin: 20px auto 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    text-align: center;
    color: rgba(255, 255, 255, 0.28);
    font-size: 11.5px;
    line-height: 1.7;
}
.footer-disclaimer b {
    color: var(--faint);
}
@media (max-width: 680px) {
    .hero {
        padding: 104px 18px 40px;
    }
    .hero p {
        font-size: 15.5px;
    }
    .scraper-section {
        padding: 0 16px 56px;
    }
    .scraper-card {
        padding: 22px 16px;
        border-radius: 18px;
    }
    .input-row {
        flex-direction: column;
    }
    .btn-search {
        width: 100%;
        padding: 14px;
    }
    .stats-grid {
        gap: 8px;
    }
    .stat-card {
        padding: 13px 8px;
    }
    .stat-value {
        font-size: 20px;
    }
    .profile-header {
        margin: -16px 8px 0 8px;
        padding: 12px 14px;
    }
    .avatar {
        width: 58px;
        height: 58px;
        border-radius: 22px;
    }
    .profile-name {
        font-size: 18px;
    }
    .about-section {
        padding: 12px 16px;
    }
    .section {
        padding: 0 18px 56px;
    }
    .section-head {
        margin-bottom: 26px;
    }
    .steps-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .how-step {
        padding: 24px 22px;
        text-align: left;
    }
    .how-step .emoji {
        margin: 0 0 12px;
    }
    .how-step .step-num {
        font-size: 34px;
    }
    .video-section {
        padding: 0 16px 56px;
    }
    .footer {
        padding: 32px 18px 26px;
    }
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px 18px;
    }
    .chat-row {
        padding: 16px 16px 12px 16px;
        gap: 10px;
    }
    .chat-avatar {
        width: 40px;
        height: 40px;
    }
    .chat-avatar::after {
        width: 12px;
        height: 12px;
        bottom: 2px;
        right: 2px;
    }
    .chat-bubble {
        padding: 10px 14px;
        font-size: 13px;
    }
    .offer-btn {
        padding: 12px 14px;
    }
    .offer-icon {
        width: 30px;
        height: 30px;
    }
}
@media (max-width: 400px) {
    .hero {
        padding: 98px 16px 36px;
    }
    .hero h1 {
        letter-spacing: -1px;
    }
    .scraper-card {
        padding: 20px 13px;
    }
    .stat-value {
        font-size: 18px;
    }
    .stat-label {
        font-size: 9.5px;
        letter-spacing: 0.4px;
    }
}