/* =========================================================
   Червяк VPN — жирный, скользкий, невероятно гладкий
   ========================================================= */

:root {
    /* Core worm palette */
    --pink-1: #ff9ec2;
    --pink-2: #ff3377;
    --pink-3: #b30047;
    --pink-4: #660029;

    /* Accents */
    --slime: #00e5ff;
    --slime-soft: #6ff2ff;
    --gold: #ffd36a;

    /* Soil / background */
    --soil-0: #14060b;
    --soil-1: #1b0812;
    --soil-2: #26101c;
    --soil-3: #3a1a2a;

    /* Text */
    --text: #fff4f8;
    --text-dim: #e0b8c6;
    --text-mute: #9a7684;

    /* Shadows & glows */
    --glow-pink: 0 0 40px rgba(255, 51, 119, .45);
    --glow-pink-lg: 0 20px 80px rgba(255, 51, 119, .45);
    --glow-slime: 0 0 24px rgba(0, 229, 255, .55);

    --radius: 28px;
    --radius-lg: 44px;

    --t-fast: 200ms cubic-bezier(.2, .9, .3, 1.4);
    --t-med: 420ms cubic-bezier(.2, .9, .3, 1.2);
    --t-slow: 900ms cubic-bezier(.25, 1, .3, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--pink-2); color: #fff; }

html {
    scroll-behavior: smooth;
    background: var(--soil-0);
}

body {
    margin: 0;
    font-family: 'Rubik', system-ui, sans-serif;
    color: var(--text);
    line-height: 1.55;
    background:
        radial-gradient(1200px 800px at 10% -10%, #41162a 0%, transparent 55%),
        radial-gradient(1000px 700px at 110% 20%, #2d0b1c 0%, transparent 60%),
        radial-gradient(900px 700px at 50% 120%, #3b0c22 0%, transparent 55%),
        linear-gradient(180deg, var(--soil-0) 0%, var(--soil-1) 60%, var(--soil-0) 100%);
    min-height: 100vh;
    overflow-x: hidden;
    cursor: none;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }

.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
}

/* hidden defs SVG */
.svg-defs {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ============== CUSTOM SLIME CURSOR ============== */
.slime-cursor,
.slime-cursor-dot {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}
.slime-cursor {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,51,119,.35), rgba(0,229,255,.15), transparent 70%);
    filter: blur(2px);
    transition: width .3s, height .3s, background .3s;
}
.slime-cursor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--slime);
    box-shadow: var(--glow-slime);
}
body.cursor-hot .slime-cursor {
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255,51,119,.7), rgba(255,51,119,.15) 60%, transparent 75%);
}

/* ============== BACKGROUND BLOBS ============== */
.blob-bg {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    filter: blur(90px) saturate(1.2);
    opacity: .65;
}
.blob {
    position: absolute;
    border-radius: 50%;
    animation: blobFloat 22s infinite ease-in-out;
    will-change: transform;
}
.blob-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, var(--pink-2), transparent 70%);
    top: -120px; left: -80px;
    animation-duration: 26s;
}
.blob-2 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, #ff5599, transparent 70%);
    top: 35%; right: -100px;
    animation-delay: -8s;
}
.blob-3 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, var(--slime), transparent 70%);
    bottom: 5%; left: 10%;
    animation-delay: -14s;
    opacity: .35;
}
.blob-4 {
    width: 600px; height: 600px;
    background: radial-gradient(circle, #7a1b3a, transparent 70%);
    bottom: -240px; right: 20%;
    animation-delay: -4s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, -40px) scale(1.1); }
    66%      { transform: translate(-60px, 30px) scale(.95); }
}

/* ============== NAV ============== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 36px;
    padding: 18px clamp(20px, 4vw, 56px);
    backdrop-filter: blur(14px) saturate(1.4);
    -webkit-backdrop-filter: blur(14px) saturate(1.4);
    background: rgba(20, 6, 11, .55);
    border-bottom: 1px solid rgba(255, 158, 194, .12);
}
.nav-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 22px;
    letter-spacing: -0.02em;
}
.logo-worm {
    font-size: 28px;
    filter: drop-shadow(0 0 12px rgba(255, 51, 119, .8));
    animation: wiggle 3s infinite ease-in-out;
    display: inline-block;
}
@keyframes wiggle {
    0%, 100% { transform: rotate(-8deg); }
    50%      { transform: rotate(12deg); }
}
.logo-accent {
    color: var(--slime);
    margin-left: 4px;
    text-shadow: 0 0 14px rgba(0, 229, 255, .7);
}
.nav-links {
    display: flex;
    gap: 28px;
    margin-left: auto;
    font-weight: 500;
    font-size: 15px;
}
.nav-links a {
    position: relative;
    color: var(--text-dim);
    transition: color var(--t-fast);
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: -6px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--pink-2), var(--slime));
    transition: right var(--t-med);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { right: 0; }
.nav-cta {
    padding: 10px 18px;
    border-radius: 100px;
    background: linear-gradient(135deg, var(--pink-2), var(--pink-3));
    box-shadow: var(--glow-pink);
    font-weight: 700;
    font-size: 14px;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.nav-cta:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 0 50px rgba(255, 51, 119, .75);
}
.nav-cta b { font-weight: 900; }
.nav-burger {
    display: none;
    background: none;
    border: 0;
    width: 34px;
    height: 28px;
    position: relative;
    cursor: pointer;
}
.nav-burger span {
    display: block;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    margin: 5px 0;
}

/* ============== HERO ============== */
.hero {
    position: relative;
    padding: clamp(40px, 8vw, 100px) 0 clamp(120px, 14vw, 180px);
    z-index: 1;
}
.hero-inner {
    width: min(1280px, 92vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 51, 119, .14);
    border: 1px solid rgba(255, 158, 194, .35);
    font-size: 13px;
    letter-spacing: .01em;
    color: #ffd6e4;
    backdrop-filter: blur(6px);
}
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--slime);
    box-shadow: 0 0 12px var(--slime);
    animation: pulse 1.6s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.6); opacity: .6; }
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: clamp(54px, 9vw, 128px);
    line-height: .88;
    letter-spacing: -0.04em;
    margin: 22px 0 24px;
    color: var(--text);
}
.title-line { display: block; }

.title-fat {
    background: linear-gradient(180deg, #fff0f5 0%, var(--pink-1) 40%, var(--pink-2) 75%, var(--pink-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 6px 0 rgba(179, 0, 71, .4)) drop-shadow(0 30px 50px rgba(255, 51, 119, .35));
    animation: fatPulse 4s infinite ease-in-out;
}
@keyframes fatPulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.02) skewX(-.4deg); }
}
.title-thin {
    font-weight: 400;
    font-size: .45em;
    padding-left: .3em;
    color: var(--text-mute);
    letter-spacing: 0;
    font-family: 'Rubik', sans-serif;
    font-style: italic;
}
.title-goo {
    color: var(--slime);
    position: relative;
    text-shadow:
        0 0 24px rgba(0, 229, 255, .45),
        0 0 60px rgba(0, 229, 255, .3);
}
.title-goo::after {
    /* drooling slime from the last letter */
    content: '';
    position: absolute;
    right: .15em;
    bottom: -.08em;
    width: 14px;
    height: 14px;
    background: var(--slime);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--slime);
    animation: gooDrip 2.4s infinite ease-in;
}
@keyframes gooDrip {
    0%   { transform: translateY(0) scaleY(1); opacity: 0; }
    20%  { transform: translateY(6px) scaleY(1.4); opacity: 1; }
    70%  { transform: translateY(42px) scaleY(1); opacity: .8; }
    100% { transform: translateY(90px) scaleY(.2); opacity: 0; }
}

.hero-sub {
    font-size: clamp(16px, 1.2vw, 19px);
    color: var(--text-dim);
    max-width: 52ch;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

/* ============== BUTTONS ============== */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 32px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .01em;
    border: 0;
    border-radius: 100px;
    cursor: pointer;
    transition: transform var(--t-fast), box-shadow var(--t-fast);
    overflow: hidden;
    isolation: isolate;
}
.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--pink-1) 0%, var(--pink-2) 45%, var(--pink-3) 100%);
    box-shadow:
        var(--glow-pink-lg),
        inset 0 -4px 0 rgba(102, 0, 41, .5),
        inset 0 2px 0 rgba(255, 255, 255, .35);
}
.btn-primary::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--slime), var(--pink-2));
    filter: blur(14px);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--t-med);
}
.btn-primary:hover::before { opacity: .9; }
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
}
.btn-primary:active {
    transform: translateY(1px) scale(.99);
}
.btn-slime {
    position: absolute;
    top: 100%;
    left: 50%;
    width: 60%;
    height: 16px;
    transform: translateX(-50%);
    background: radial-gradient(50% 100% at 50% 0%, var(--slime), transparent 70%);
    filter: blur(4px);
    opacity: 0;
    transition: opacity var(--t-fast), transform var(--t-med);
    pointer-events: none;
}
.btn-primary:hover .btn-slime {
    opacity: 1;
    transform: translate(-50%, 6px) scaleY(1.6);
}

.btn-ghost {
    color: var(--text);
    background: rgba(255, 158, 194, .08);
    border: 1px solid rgba(255, 158, 194, .35);
    backdrop-filter: blur(8px);
}
.btn-ghost:hover {
    background: rgba(255, 158, 194, .18);
    transform: translateY(-2px);
    border-color: var(--pink-1);
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: clamp(16px, 3vw, 40px);
    align-items: end;
    padding-top: 28px;
    border-top: 1px dashed rgba(255, 158, 194, .25);
}
.hero-meta li { display: flex; flex-direction: column; gap: 2px; }
.hero-meta b {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}
.hero-meta span {
    font-size: 12px;
    color: var(--text-mute);
    text-transform: uppercase;
    letter-spacing: .14em;
}

/* ============== HERO VISUAL / WORM ============== */
.hero-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    max-width: 560px;
    justify-self: center;
    width: 100%;
}
.worm-glow {
    position: absolute;
    inset: 4%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 51, 119, .65) 0%, rgba(255, 51, 119, 0) 70%);
    filter: blur(40px);
    animation: glowPulse 5s infinite ease-in-out;
}
.worm-shadow {
    position: absolute;
    bottom: 6%;
    left: 12%;
    right: 12%;
    height: 28px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0,0,0,.65), transparent 70%);
    filter: blur(8px);
    animation: shadowBreath 5s infinite ease-in-out;
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: .9; }
    50%      { transform: scale(1.12); opacity: 1; }
}
@keyframes shadowBreath {
    0%, 100% { transform: scale(1, 1); opacity: .8; }
    50%      { transform: scale(.85, 1); opacity: .55; }
}
.hero-worm {
    position: relative;
    width: 88%;
    margin: 0 auto;
    display: block;
    animation: wormFloat 6s infinite ease-in-out;
    transform-origin: 50% 90%;
    filter: drop-shadow(0 40px 50px rgba(255, 51, 119, .45));
    will-change: transform;
}
@keyframes wormFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    25%      { transform: translateY(-18px) rotate(2deg); }
    50%      { transform: translateY(-8px) rotate(-2deg); }
    75%      { transform: translateY(-22px) rotate(1deg); }
}

/* slime drip drops from worm */
.slime-drip {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #aaf6ff, var(--slime) 60%, #008aa8 100%);
    box-shadow: 0 0 18px var(--slime);
    opacity: 0;
    filter: drop-shadow(0 4px 10px rgba(0, 229, 255, .7));
}
.slime-drip::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -36px;
    transform: translateX(-50%);
    width: 6px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--slime));
    border-radius: 6px;
    filter: blur(.5px);
}
.slime-drip-1 { top: 62%; left: 28%; animation: drip 3s infinite ease-in .2s; }
.slime-drip-2 { top: 58%; left: 55%; animation: drip 3.4s infinite ease-in 1.1s; }
.slime-drip-3 { top: 68%; left: 72%; animation: drip 2.6s infinite ease-in 1.9s; }
@keyframes drip {
    0%   { transform: translateY(-10px) scale(.6); opacity: 0; }
    30%  { opacity: 1; }
    70%  { transform: translateY(48px) scale(1); opacity: 1; }
    100% { transform: translateY(90px) scale(.2); opacity: 0; }
}

/* Orbiting info chips */
.orbit-chip {
    position: absolute;
    padding: 10px 16px;
    border-radius: 100px;
    background: rgba(38, 16, 28, .85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 158, 194, .3);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
    white-space: nowrap;
    animation: chipFloat 6s infinite ease-in-out;
}
.chip-speed { top: 8%;   left: -6%;  animation-delay: 0s; }
.chip-lock  { top: 48%;  right: -8%; animation-delay: -2s; }
.chip-globe { bottom: 6%; left: 8%;  animation-delay: -4s; }
@keyframes chipFloat {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-14px); }
}

/* ========= Tunnel wavy divider ========= */
.tunnel-divider {
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    line-height: 0;
}
.tunnel-divider svg {
    width: 100%;
    height: clamp(90px, 14vw, 180px);
    display: block;
}

/* Hero dirt overlay */
.hero-dirt {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(400px 200px at 10% 100%, rgba(0,0,0,.5), transparent 70%),
        radial-gradient(400px 200px at 90% 100%, rgba(0,0,0,.5), transparent 70%);
    z-index: 0;
}

/* ============== SECTIONS BASE ============== */
section {
    position: relative;
    padding: clamp(80px, 10vw, 140px) 0;
    z-index: 1;
}

.section-head {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}
.kicker {
    display: inline-block;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    color: var(--slime);
    letter-spacing: .2em;
    text-transform: uppercase;
    font-size: 13px;
    margin-bottom: 16px;
}
.section-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 5vw, 64px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--text);
}
.section-title em {
    font-style: normal;
    background: linear-gradient(90deg, var(--pink-1), var(--pink-2), var(--slime));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-lead {
    color: var(--text-dim);
    font-size: 17px;
    margin-top: 18px;
}

/* ============== FEATURES ============== */
.features { background: linear-gradient(180deg, var(--soil-2), var(--soil-1)); }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.feature-card {
    position: relative;
    padding: 36px 32px 32px;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 158, 194, .06), rgba(255, 158, 194, .02));
    border: 1px solid rgba(255, 158, 194, .18);
    backdrop-filter: blur(6px);
    overflow: hidden;
    transition: transform var(--t-med), border-color var(--t-med), box-shadow var(--t-med);
    min-height: 340px;
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: radial-gradient(500px 200px at var(--mx, 50%) var(--my, 50%),
        rgba(255, 51, 119, .35), transparent 60%);
    opacity: 0;
    transition: opacity var(--t-med);
    z-index: 0;
    pointer-events: none;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 51, 119, .5);
    box-shadow: 0 30px 60px rgba(255, 51, 119, .15);
}
.feature-card > * { position: relative; z-index: 1; }
.feature-emoji {
    font-size: 48px;
    filter: drop-shadow(0 4px 20px rgba(255, 51, 119, .6));
    margin-bottom: 18px;
    animation: floatEmoji 5s infinite ease-in-out;
}
.feature-card:nth-child(2) .feature-emoji { animation-delay: -1.5s; }
.feature-card:nth-child(3) .feature-emoji { animation-delay: -3s; }
@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-6px) rotate(6deg); }
}
.feature-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0 0 10px;
}
.feature-card p {
    color: var(--text-dim);
    font-size: 15px;
    margin: 0;
}
.feature-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--slime);
    background: rgba(0, 229, 255, .08);
    border: 1px solid rgba(0, 229, 255, .3);
    padding: 5px 10px;
    border-radius: 100px;
}

/* speed meter */
.feature-meter {
    margin-top: 24px;
    height: 12px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .06);
    position: relative;
    overflow: hidden;
}
.meter-fill {
    height: 100%;
    width: 0%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--pink-2), var(--slime));
    box-shadow: 0 0 14px rgba(0, 229, 255, .4);
    transition: width 1.8s cubic-bezier(.2, .9, .3, 1);
}
.meter-val {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    mix-blend-mode: difference;
}

/* wall animation */
.wall-animation {
    position: relative;
    margin-top: 24px;
    height: 60px;
    background: repeating-linear-gradient(
        0deg,
        #2a0f1c 0 8px,
        #3a1528 8px 10px
    );
    border-radius: 14px;
    overflow: hidden;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, .5);
}
.tunnel-line {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: calc(100% + 40px);
    height: 18px;
    background:
        radial-gradient(18px 18px at 100% 50%, var(--soil-0), var(--soil-0) 60%, transparent 70%),
        linear-gradient(90deg, transparent, #110408 40%, #110408);
    border-radius: 100px;
    filter: blur(.3px);
}
.mini-worm {
    position: absolute;
    top: 50%;
    left: -30px;
    transform: translateY(-50%);
    font-size: 32px;
    filter: drop-shadow(0 0 10px var(--pink-2));
    animation: crawl 4.5s infinite linear;
}
@keyframes crawl {
    0%   { left: -30px; transform: translateY(-50%) rotate(0); }
    50%  { left: 50%;   transform: translateY(-60%) rotate(3deg); }
    100% { left: calc(100% + 10px); transform: translateY(-50%) rotate(0); }
}

/* depth bars */
.depth-bars {
    display: flex;
    gap: 6px;
    margin-top: 24px;
    height: 60px;
    align-items: end;
}
.depth-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--pink-2), var(--pink-4));
    border-radius: 8px;
    opacity: .8;
    animation: depthPulse 1.8s infinite ease-in-out;
}
.depth-bar:nth-child(1) { animation-delay: 0s;    height: 60%; }
.depth-bar:nth-child(2) { animation-delay: .2s;   height: 80%; }
.depth-bar:nth-child(3) { animation-delay: .4s;   height: 100%; }
.depth-bar:nth-child(4) { animation-delay: .6s;   height: 70%; }
@keyframes depthPulse {
    0%, 100% { transform: scaleY(1); filter: brightness(1); }
    50%      { transform: scaleY(.8); filter: brightness(1.3); }
}

/* ============== TUNNELS (how it works) ============== */
.tunnels {
    background: linear-gradient(180deg, var(--soil-1), var(--soil-0));
    overflow: hidden;
}
.tunnel-map {
    position: relative;
    padding: 40px 0 0;
}
.tunnel-path {
    width: 100%;
    height: clamp(260px, 34vw, 380px);
    filter: drop-shadow(0 20px 30px rgba(255, 51, 119, .3));
}
.crawling-worm {
    position: absolute;
    top: 0; left: 0;
    font-size: 54px;
    transform-origin: center;
    filter: drop-shadow(0 0 20px var(--pink-2));
    pointer-events: none;
    will-change: transform;
    transition: none;
}
.tunnel-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}
.tunnel-steps li {
    padding: 28px;
    border-radius: var(--radius);
    background: rgba(255, 158, 194, .06);
    border: 1px solid rgba(255, 158, 194, .15);
    position: relative;
}
.tunnel-steps li::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(160deg, rgba(255, 51, 119, .2), transparent 50%);
    pointer-events: none;
}
.step-num {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 56px;
    background: linear-gradient(180deg, var(--pink-1), var(--pink-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}
.tunnel-steps h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    margin: 0 0 8px;
}
.tunnel-steps p {
    color: var(--text-dim);
    font-size: 15px;
    margin: 0;
}

/* ============== PRICING ============== */
.pricing {
    background:
        radial-gradient(700px 500px at 80% 0%, rgba(255, 51, 119, .18), transparent 60%),
        radial-gradient(700px 500px at 10% 100%, rgba(0, 229, 255, .12), transparent 60%),
        linear-gradient(180deg, var(--soil-0), var(--soil-1));
}
.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
}
.plan {
    position: relative;
    padding: 36px 32px 36px;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 158, 194, .2);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    transition: transform var(--t-med), box-shadow var(--t-med);
    overflow: visible;
}
.plan::before {
    border-radius: inherit;
    overflow: hidden;
}
.plans {
    padding-top: 18px; /* room for popular badge */
}
.plan::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(400px 200px at 50% -20%, rgba(255, 51, 119, .3), transparent 60%);
    opacity: .5;
    pointer-events: none;
}
.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(255, 51, 119, .2);
}
.plan-mascot {
    width: 150px;
    height: 150px;
    margin: 0 auto 18px;
    filter: drop-shadow(0 10px 30px rgba(255, 51, 119, .45));
    position: relative;
}
.plan-mascot img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    animation: wormFloat 6s infinite ease-in-out;
}
.plan-name {
    font-family: 'Unbounded', sans-serif;
    font-weight: 900;
    font-size: 28px;
    text-align: center;
    margin-bottom: 2px;
}
.plan-tag {
    text-align: center;
    color: var(--text-dim);
    font-size: 14px;
    font-style: italic;
    margin: 0 0 24px;
}
.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 24px;
}
.price-val {
    font-family: 'Unbounded', sans-serif;
    font-size: 68px;
    font-weight: 900;
    background: linear-gradient(180deg, var(--pink-1), var(--pink-2) 70%, var(--pink-3));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}
.price-cur {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--pink-1);
    margin-left: 4px;
}
.price-per {
    font-size: 14px;
    color: var(--text-mute);
    margin-left: 6px;
}
.plan-list {
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.plan-list li {
    position: relative;
    padding-left: 28px;
    font-size: 15px;
    color: var(--text-dim);
}
.plan-list li::before {
    content: '🪱';
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 14px;
    filter: drop-shadow(0 0 6px var(--pink-2));
}
.plan-list li b { color: var(--text); }
.plan-btn {
    width: 100%;
}

.plan.popular {
    border-color: rgba(255, 51, 119, .5);
    background:
        linear-gradient(180deg, rgba(255, 51, 119, .18), rgba(255, 51, 119, .04));
    transform: scale(1.04);
    box-shadow: 0 40px 80px rgba(255, 51, 119, .25);
}
.plan.popular:hover { transform: translateY(-10px) scale(1.05); }
.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--pink-2), var(--pink-3));
    color: #fff;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 18px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(255, 51, 119, .5);
    white-space: nowrap;
}
.plans-foot {
    text-align: center;
    color: var(--text-mute);
    margin-top: 36px;
    font-size: 14px;
}

/* ============== STATS ============== */
.stats {
    padding: 60px 0;
    background: linear-gradient(90deg, var(--pink-3), var(--pink-2), var(--pink-3));
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, rgba(0,0,0,.08) 0 2px, transparent 2px 40px);
    pointer-events: none;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}
.stat {
    text-align: center;
    color: #fff;
}
.stat b {
    display: block;
    font-family: 'Unbounded', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, .3);
}
.stat span {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .85;
}

/* ============== CONTACT ============== */
.contact {
    background: linear-gradient(180deg, var(--soil-0), var(--soil-1));
}
.contact-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-copy .section-title { font-size: clamp(34px, 4vw, 52px); text-align: left; }
.contact-copy .kicker { display: block; text-align: left; }
.contact-copy > p {
    color: var(--text-dim);
    max-width: 48ch;
    margin: 14px 0 32px;
}
.contact-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 158, 194, .06);
    border: 1px solid rgba(255, 158, 194, .2);
    transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
    /* normalize <button> defaults so they look like anchor tiles */
    color: inherit;
    font: inherit;
    text-align: left;
    width: 100%;
    cursor: pointer;
    appearance: none;
}
.contact-link.banned {
    cursor: not-allowed;
    opacity: .85;
    border-style: dashed;
    border-color: rgba(255, 60, 80, .4);
    background: rgba(255, 60, 80, .08);
    position: relative;
}
.contact-link.banned::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,60,80,.7), transparent);
    transform: rotate(-6deg);
    pointer-events: none;
}
.contact-link.banned:hover {
    transform: none;
    background: rgba(255, 60, 80, .12);
    border-color: rgba(255, 60, 80, .55);
    box-shadow: none;
}
.contact-link.max svg { fill: #ff3c50; filter: drop-shadow(0 0 8px rgba(255, 60, 80, .5)); }
.contact-link .ban-tag {
    color: #ff9ba6;
    font-weight: 600;
    letter-spacing: .02em;
}
.contact-link:hover {
    transform: translateY(-3px);
    border-color: var(--pink-2);
    background: rgba(255, 51, 119, .12);
    box-shadow: 0 20px 30px rgba(255, 51, 119, .2);
}
.contact-link svg {
    width: 28px; height: 28px; flex: 0 0 28px;
    fill: var(--pink-1);
    filter: drop-shadow(0 0 8px rgba(255, 51, 119, .5));
}
.contact-link.tg svg { fill: #63b7ff; filter: drop-shadow(0 0 8px rgba(99, 183, 255, .5)); }
.contact-link.ig svg { fill: #ff6aa4; }
.contact-link.wa svg { fill: #4ade80; filter: drop-shadow(0 0 8px rgba(74, 222, 128, .5)); }
.contact-link.dc svg { fill: #8b97ff; filter: drop-shadow(0 0 8px rgba(139, 151, 255, .5)); }
.contact-link.mail svg { fill: var(--slime); filter: drop-shadow(0 0 8px rgba(0, 229, 255, .5)); }
.contact-link div { display: flex; flex-direction: column; line-height: 1.2; }
.contact-link b { font-weight: 700; font-size: 15px; }
.contact-link span { font-size: 13px; color: var(--text-mute); }

.contact-form {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .01));
    border: 1px solid rgba(255, 158, 194, .2);
    border-radius: var(--radius);
    padding: 36px 32px;
    backdrop-filter: blur(8px);
    position: relative;
}
.contact-form::before {
    content: '🪱';
    position: absolute;
    top: -24px;
    right: 24px;
    font-size: 44px;
    filter: drop-shadow(0 0 16px var(--pink-2));
    animation: wiggle 3s infinite ease-in-out;
}
.contact-form h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    margin: 0 0 24px;
}
.contact-form label {
    display: block;
    margin-bottom: 18px;
}
.contact-form label span {
    display: block;
    font-size: 13px;
    color: var(--text-mute);
    margin-bottom: 8px;
    letter-spacing: .05em;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, .35);
    border: 1px solid rgba(255, 158, 194, .25);
    border-radius: 16px;
    color: var(--text);
    font-family: 'Rubik', sans-serif;
    font-size: 15px;
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pink-2);
    box-shadow: 0 0 0 4px rgba(255, 51, 119, .18);
}
.contact-form .btn { width: 100%; margin-top: 6px; }
.form-note {
    margin-top: 16px;
    text-align: center;
    font-size: 13px;
    color: var(--text-mute);
}

/* ============== FOOTER ============== */
.footer {
    padding: 80px 0 40px;
    background: var(--soil-0);
    border-top: 1px solid rgba(255, 158, 194, .15);
    position: relative;
}
.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--pink-2), var(--slime), var(--pink-2), transparent);
    opacity: .6;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.footer-brand p {
    color: var(--text-dim);
    margin: 16px 0 0;
    max-width: 36ch;
}
.footer-col h5 {
    font-family: 'Unbounded', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin: 0 0 16px;
    color: var(--pink-1);
}
.footer-col a {
    display: block;
    color: var(--text-dim);
    font-size: 14px;
    padding: 6px 0;
    transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 24px;
    border-top: 1px dashed rgba(255, 158, 194, .15);
    color: var(--text-mute);
    font-size: 13px;
}

/* ============== REVEAL ON SCROLL ============== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .9s ease, transform .9s cubic-bezier(.2, .9, .3, 1);
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1080px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-copy { order: 2; }
    .hero-visual { order: 1; max-width: 420px; }
    .hero-badge, .hero-actions { margin-inline: auto; }
    .hero-actions { justify-content: center; }
    .hero-sub { margin-inline: auto; }
    .hero-meta { justify-content: center; }

    .feature-grid { grid-template-columns: 1fr 1fr; }
    .plans { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .plan.popular { transform: scale(1); }
    .plan.popular:hover { transform: translateY(-10px); }
    .tunnel-steps { grid-template-columns: 1fr; }

    .contact-inner { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    body { cursor: auto; }
    .slime-cursor, .slime-cursor-dot { display: none; }

    .nav { gap: 16px; padding: 14px 18px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-burger { display: block; margin-left: auto; }

    .feature-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .feature-card { min-height: auto; }
    .contact-form { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ============== POPUP (accounts picker) ============== */
.popup-backdrop {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(10, 3, 8, .78);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med);
}
.popup-backdrop[hidden] { display: none; }
.popup-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
}
.popup {
    position: relative;
    width: min(440px, 100%);
    padding: 36px 32px 32px;
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 158, 194, .08), rgba(255, 158, 194, .02)),
        var(--soil-2);
    border: 1px solid rgba(255, 158, 194, .3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5), var(--glow-pink-lg);
    transform: translateY(20px) scale(.96);
    transition: transform var(--t-med);
}
.popup-backdrop.is-open .popup {
    transform: translateY(0) scale(1);
}
.popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 158, 194, .1);
    border: 1px solid rgba(255, 158, 194, .2);
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: transform var(--t-fast), background var(--t-fast);
}
.popup-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 51, 119, .25);
}
.popup-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    box-shadow: 0 10px 30px rgba(255, 51, 119, .35);
}
.popup-icon svg { width: 30px; height: 30px; fill: #fff; }
.popup-icon.tg-icon { background: linear-gradient(135deg, #2aabee, #229ed9); }
.popup-icon.ig-icon { background: linear-gradient(135deg, #f58529, #dd2a7b 50%, #8134af 100%); }
.popup h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    margin: 0 0 8px;
    line-height: 1.15;
}
.popup > p {
    color: var(--text-dim);
    font-size: 14px;
    margin: 0 0 22px;
}
.popup-accounts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.popup-account {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(0, 0, 0, .25);
    border: 1px solid rgba(255, 158, 194, .18);
    transition: transform var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.popup-account:hover {
    transform: translateX(4px);
    border-color: var(--pink-2);
    background: rgba(255, 51, 119, .12);
}
.popup-account .acc-avatar {
    width: 40px; height: 40px;
    flex: 0 0 40px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, var(--pink-1), var(--pink-3));
    display: grid;
    place-items: center;
    font-size: 22px;
    box-shadow: 0 0 14px rgba(255, 51, 119, .5);
}
.popup-account div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    flex: 1;
}
.popup-account b { font-weight: 700; font-size: 15px; }
.popup-account span { font-size: 12px; color: var(--text-mute); }
.popup-account .acc-go {
    font-size: 22px;
    color: var(--pink-1);
    transition: transform var(--t-fast);
}
.popup-account:hover .acc-go { transform: translateX(6px); }
