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

:root {
    --w3qn-bg: #0b0710;
    --w3qn-panel: #150d1d;
    --w3qn-cell: #1b1226;
    --w3qn-line: #2c1e3d;
    --w3qn-text: #f6f1f8;
    --w3qn-dim: #ab9db8;
    --w3qn-pink: #f0529c;
    --w3qn-mage: #cf4de6;
    --w3qn-viol: #8b5cf6;
    --w3qn-aqua: #57b6e5;
    --w3qn-cta: linear-gradient(120deg, #f0529c 0%, #c44def 100%);
    --w3qn-word: linear-gradient(90deg, #57b6e5 0%, #a06be0 45%, #ef5fa2 100%);
    --w3qn-rad: 18px;
    --w3qn-rad-lg: 28px;
    --w3qn-glow: 0 8px 30px rgba(240, 82, 156, .35);
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--w3qn-bg);
    color: var(--w3qn-text);
    font-family: 'Poppins', system-ui, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.w3qn-shell { display: flex; flex-direction: column; min-height: 100vh; }
.w3qn-note { order: 98; }
.w3qn-foot { order: 99; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============ NAV ============ */
.w3qn-top {
    position: sticky;
    top: 0;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 22px;
    background: rgba(11, 7, 16, .82);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, background .3s;
}
.w3qn-top.w3qn-solid { border-bottom-color: var(--w3qn-line); background: rgba(11, 7, 16, .96); }

.w3qn-brand {
    font-weight: 700;
    font-size: 1.35rem;
    letter-spacing: .3px;
    background: var(--w3qn-word);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.w3qn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--w3qn-cta);
    color: #fff;
    font-weight: 600;
    font-size: .92rem;
    padding: 11px 22px;
    border-radius: 999px;
    box-shadow: var(--w3qn-glow);
    transition: transform .25s, box-shadow .25s;
    white-space: nowrap;
}
.w3qn-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 38px rgba(240, 82, 156, .5); }

/* ============ HERO ============ */
.w3qn-stage {
    position: relative;
    text-align: center;
    padding: 46px 20px 40px;
    margin: 18px 14px 0;
    border: 1px solid rgba(240, 82, 156, .35);
    border-radius: var(--w3qn-rad-lg);
    background:
        radial-gradient(600px 260px at 50% -60px, rgba(196, 77, 239, .22), transparent 70%),
        var(--w3qn-panel);
    overflow: hidden;
}
.w3qn-stage::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(420px 200px at 85% 110%, rgba(87, 182, 229, .12), transparent 70%);
    pointer-events: none;
}

.w3qn-dots { display: flex; justify-content: center; gap: 14px; margin-bottom: 18px; position: relative; }
.w3qn-dots span {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    border: 3px solid var(--w3qn-mage);
    background-size: cover;
    background-position: center top;
    box-shadow: 0 0 0 3px rgba(196, 77, 239, .18);
}

.w3qn-title {
    font-size: clamp(1.7rem, 5.4vw, 3.1rem);
    font-weight: 800;
    line-height: 1.15;
    position: relative;
}
.w3qn-title em {
    font-style: normal;
    background: var(--w3qn-word);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.w3qn-sub {
    color: var(--w3qn-dim);
    max-width: 560px;
    margin: 12px auto 22px;
    font-size: .98rem;
    position: relative;
}

.w3qn-stars {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--w3qn-dim);
    font-size: .85rem;
    margin-bottom: 20px;
    position: relative;
}
.w3qn-stars b { color: var(--w3qn-text); }
.w3qn-stars svg { width: 15px; height: 15px; fill: var(--w3qn-pink); }

.w3qn-go {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--w3qn-cta);
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    padding: 15px 34px;
    border-radius: 999px;
    box-shadow: var(--w3qn-glow);
    transition: transform .25s, box-shadow .25s;
    position: relative;
}
.w3qn-go:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 14px 44px rgba(240, 82, 156, .55); }

/* ============ SECTIONS ============ */
.w3qn-block { padding: 52px 20px 10px; max-width: 1200px; margin: 0 auto; width: 100%; }

.w3qn-head { text-align: center; margin-bottom: 30px; }
.w3qn-head h2 {
    font-size: clamp(1.45rem, 4vw, 2.2rem);
    font-weight: 800;
}
.w3qn-head h2 em {
    font-style: normal;
    background: var(--w3qn-word);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.w3qn-head p { color: var(--w3qn-dim); margin-top: 8px; font-size: .95rem; }

/* ============ CHARACTER GRID ============ */
.w3qn-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.w3qn-unit {
    position: relative;
    display: block;
    background: var(--w3qn-cell);
    border: 1px solid var(--w3qn-line);
    border-radius: var(--w3qn-rad);
    overflow: hidden;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.w3qn-unit:hover {
    transform: translateY(-6px);
    border-color: rgba(240, 82, 156, .55);
    box-shadow: 0 16px 40px rgba(240, 82, 156, .22);
}

.w3qn-view { aspect-ratio: 3 / 4; overflow: hidden; }
.w3qn-view img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform .5s;
}
.w3qn-unit:hover .w3qn-view img { transform: scale(1.06); }

.w3qn-meta {
    padding: 12px 14px 14px;
    background: linear-gradient(180deg, rgba(21, 13, 29, 0), var(--w3qn-cell) 30%);
}
.w3qn-id {
    display: flex;
    align-items: center;
    gap: 7px;
    font-weight: 700;
    font-size: 1.02rem;
}
.w3qn-id small { color: var(--w3qn-dim); font-weight: 500; font-size: .82rem; }
.w3qn-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #38e07b;
    box-shadow: 0 0 8px #38e07b;
    flex: none;
}
.w3qn-line {
    color: var(--w3qn-dim);
    font-size: .8rem;
    margin-top: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============ FEATURES ============ */
.w3qn-perks {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.w3qn-perk {
    background: var(--w3qn-cell);
    border: 1px solid var(--w3qn-line);
    border-radius: var(--w3qn-rad);
    padding: 24px 20px;
    transition: transform .3s, border-color .3s;
}
.w3qn-perk:hover { transform: translateY(-4px); border-color: rgba(139, 92, 246, .55); }
.w3qn-ico {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(240, 82, 156, .18), rgba(139, 92, 246, .18));
    border: 1px solid rgba(240, 82, 156, .3);
    margin-bottom: 14px;
}
.w3qn-ico svg { width: 22px; height: 22px; fill: var(--w3qn-pink); }
.w3qn-perk h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 6px; }
.w3qn-perk p { color: var(--w3qn-dim); font-size: .85rem; }

/* ============ GALLERY ============ */
.w3qn-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(78%, 560px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 14px;
    scrollbar-width: thin;
    scrollbar-color: var(--w3qn-mage) var(--w3qn-cell);
}
.w3qn-shot {
    scroll-snap-align: start;
    display: block;
    background: var(--w3qn-cell);
    border: 1px solid var(--w3qn-line);
    border-radius: var(--w3qn-rad);
    overflow: hidden;
    transition: border-color .3s, transform .3s;
}
.w3qn-shot:hover { border-color: rgba(240, 82, 156, .55); transform: translateY(-4px); }
.w3qn-shot img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; object-position: center top; }
.w3qn-cap { padding: 11px 14px; font-size: .84rem; color: var(--w3qn-dim); }

/* ============ PRICING ============ */
.w3qn-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-items: stretch;
}
.w3qn-tier {
    position: relative;
    background: var(--w3qn-cell);
    border: 1px solid var(--w3qn-line);
    border-radius: var(--w3qn-rad-lg);
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}
.w3qn-tier:hover { transform: translateY(-5px); }
.w3qn-tier.w3qn-best {
    border-color: rgba(240, 82, 156, .6);
    box-shadow: 0 18px 48px rgba(240, 82, 156, .22);
    background: linear-gradient(180deg, rgba(240, 82, 156, .1), var(--w3qn-cell) 45%);
}
.w3qn-flag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--w3qn-cta);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 999px;
    box-shadow: var(--w3qn-glow);
    white-space: nowrap;
}
.w3qn-tier h3 { font-size: 1.15rem; font-weight: 700; text-align: center; }
.w3qn-price { text-align: center; margin: 12px 0 18px; }
.w3qn-price b { font-size: 2rem; font-weight: 800; }
.w3qn-price span { color: var(--w3qn-dim); font-size: .85rem; }
.w3qn-price s { color: var(--w3qn-dim); font-size: .95rem; margin-right: 6px; }
.w3qn-feat { list-style: none; margin-bottom: 22px; flex: 1; }
.w3qn-feat li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--w3qn-dim);
    font-size: .85rem;
    padding: 5px 0;
}
.w3qn-feat li svg { width: 15px; height: 15px; fill: var(--w3qn-pink); flex: none; margin-top: 4px; }
.w3qn-feat li.w3qn-off { opacity: .42; }
.w3qn-feat li.w3qn-off svg { fill: var(--w3qn-dim); }
.w3qn-tier .w3qn-cta { justify-content: center; text-align: center; }

/* ============ SEO BLOCK ============ */
.w3qn-note {
    max-width: 920px;
    margin: 46px auto 0;
    padding: 34px 26px;
    color: var(--w3qn-dim);
    font-size: .88rem;
    background: var(--w3qn-panel);
    border: 1px solid var(--w3qn-line);
    border-radius: var(--w3qn-rad-lg);
    width: calc(100% - 28px);
}
.w3qn-note h2 {
    color: var(--w3qn-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.w3qn-note h3 {
    color: var(--w3qn-text);
    font-size: 1rem;
    font-weight: 600;
    margin: 20px 0 8px;
}
.w3qn-note p { margin-bottom: 12px; }
.w3qn-note b { color: var(--w3qn-text); font-weight: 600; }

/* ============ FOOTER ============ */
.w3qn-foot {
    margin-top: 46px;
    padding: 34px 22px 30px;
    border-top: 1px solid var(--w3qn-line);
    text-align: center;
    color: var(--w3qn-dim);
    font-size: .82rem;
}
.w3qn-foot .w3qn-brand { font-size: 1.15rem; }
.w3qn-foot nav { margin: 14px 0; display: flex; justify-content: center; gap: 22px; flex-wrap: wrap; }
.w3qn-foot nav a { color: var(--w3qn-dim); transition: color .25s; }
.w3qn-foot nav a:hover { color: var(--w3qn-pink); }
.w3qn-locs { margin: 12px 0 16px; display: flex; justify-content: center; gap: 18px; opacity: .75; }
.w3qn-locs a { color: var(--w3qn-dim); font-size: .78rem; }
.w3qn-locs a:hover { color: var(--w3qn-pink); }
.w3qn-legal { max-width: 640px; margin: 0 auto 12px; opacity: .65; font-size: .75rem; }

/* ============ REVEAL ============ */
.w3qn-rise { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.w3qn-rise.w3qn-on { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .w3qn-grid { grid-template-columns: repeat(3, 1fr); }
    .w3qn-perks { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
    .w3qn-top { padding: 11px 14px; }
    .w3qn-brand { font-size: 1.15rem; }
    .w3qn-cta { font-size: .8rem; padding: 9px 15px; }
    .w3qn-stage { padding: 26px 14px 26px; margin: 12px 10px 0; }
    .w3qn-dots span { width: 46px; height: 46px; }
    .w3qn-sub { font-size: .88rem; margin-bottom: 16px; }
    .w3qn-go { font-size: .95rem; padding: 13px 26px; }
    .w3qn-block { padding: 40px 12px 6px; }
    .w3qn-grid { grid-template-columns: repeat(2, 1fr); gap: 11px; }
    .w3qn-perks { grid-template-columns: 1fr; }
    .w3qn-tiers { grid-template-columns: 1fr; }
    .w3qn-tier.w3qn-best { order: -1; }
    .w3qn-strip { grid-auto-columns: 85%; }
    .w3qn-note { padding: 24px 16px; }
    .w3qn-line { -webkit-line-clamp: 2; }
}

@media (max-width: 400px) {
    .w3qn-title { font-size: 1.55rem; }
    .w3qn-dots { gap: 10px; margin-bottom: 14px; }
    .w3qn-dots span { width: 42px; height: 42px; }
}
