﻿*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #0A0814;
    color: #F4F1FF;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
ol,
ul {
    margin: 0;
    padding: 0;
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    outline: none;
}

button {
    cursor: pointer;
}

:root {
    --mn-core-bg: #0A0814;
    --mn-surface-soft: #17152A;
    --mn-surface-soft-alt: #1F1C35;

    --mn-accent-main: #9F6BFF;
    --mn-accent-soft: #C8A6FF;
    --mn-accent-deep: #7C4DFF;
    --mn-accent-secondary: #46E0B8;

    --mn-text-main: #F4F1FF;
    --mn-text-muted: #A59BC2;

    --mn-border-soft: rgba(255, 255, 255, 0.1);

    --mn-neon-coral: rgba(159, 107, 255, 0.55);
    --mn-neon-teal: rgba(70, 224, 184, 0.5);

    --mn-radius-main: 18px;
    --mn-radius-pill: 999px;

    --mn-shadow-soft: 0 22px 60px rgba(0, 0, 0, 0.65);

    --mn-max-width: 1200px;
    --mn-header-height: 76px;
}


.vvdq-page-frame {
    min-height: 100vh;
    background:
        radial-gradient(circle at 0% 0%, rgba(46, 134, 212, 0.06) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(255, 135, 95, 0.08) 0, transparent 60%),
        linear-gradient(135deg, #0A0814 0%, #0A0814 40%, #0A1724 100%);
    color: var(--mn-text-main);
}

@keyframes vvdqNeonSweep {
    0% {
        transform: translateX(-30%);
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: translateX(130%);
        opacity: 0.4;
    }
}

/* Header */

.vvdq-header-shell {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: radial-gradient(circle at 0 0, rgba(46, 146, 212, 0.08) 0, transparent 55%) rgba(4, 16, 25, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.vvdq-header-inner {
    max-width: var(--mn-max-width);
    margin: 0 auto;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.vvdq-logo-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.04em;
}

.vvdq-logo-symbol {
    width: 38px;
    height: 38px;
    border-radius: 18px;
    background: conic-gradient(from 160deg, #9F6BFF, #C8A6FF, #46E0B8, #9F6BFF);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Sora", system-ui, sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #0A0814;
    box-shadow: 0 10px 26px rgba(159, 107, 255, 0.45);
}


.vvdq-logo-textwrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vvdq-logo-main {
    font-family: "Sora", system-ui, sans-serif;
    font-weight: 600;
    font-size: 17px;
}

.vvdq-logo-sub {
    font-size: 11px;
    color: var(--mn-text-muted);
    text-transform: uppercase;
}

/* Desktop nav */

.vvdq-nav-cluster {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vvdq-nav-listline {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
}

.vvdq-nav-linkline {
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--mn-text-muted);
    transition: color 0.2s ease, background-color 0.2s ease;
}

.vvdq-nav-linkline--active {
    color: var(--mn-text-main);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 10px var(--mn-neon-teal);
}

.vvdq-nav-linkline:hover {
    color: #FFFFFF;
    background-color: rgba(255, 255, 255, 0.05);
}

.vvdq-nav-cta-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vvdq-nav-cta {
    font-size: 13px;
    padding: 8px 18px;
    border-radius: var(--mn-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.vvdq-nav-cta--outline {
    border-color: rgba(178, 95, 255, 0.5);
    color: var(--mn-accent-main);
    background: rgba(255, 135, 95, 0.04);
    box-shadow: 0 0 12px var(--mn-neon-coral);
}

.vvdq-nav-cta--outline:hover {
    background: rgba(255, 135, 95, 0.1);
    transform: translateY(-1px);
}

.vvdq-nav-cta--solid {
    background: radial-gradient(circle at 0 0, #5fafff, #d07aff);
    color: #0A0814;
    font-weight: 600;
    box-shadow:
        0 0 18px var(--mn-neon-coral),
        0 12px 26px rgba(0, 0, 0, 0.6);
}

.vvdq-nav-cta--solid:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 20px var(--mn-neon-coral),
        0 16px 32px rgba(0, 0, 0, 0.7);
}

/* Burger + mobile nav */

.vvdq-nav-toggle {
    display: none;
    position: relative;
    width: 40px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    gap: 5px;
}

.vvdq-nav-toggle-line {
    width: 100%;
    height: 2px;
    background: #F4F1FF;
    border-radius: 999px;
    transition: transform 0.2s ease, opacity 0.2s ease, width 0.2s ease;
}

.vvdq-nav-toggle.vvdq-nav-toggle--active .vvdq-nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(40deg);
    width: 100%;
}

.vvdq-nav-toggle.vvdq-nav-toggle--active .vvdq-nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.vvdq-nav-toggle.vvdq-nav-toggle--active .vvdq-nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-40deg);
    width: 100%;
}

.vvdq-nav-mobile-panel {
    position: fixed;
    inset: var(--mn-header-height) 0 0 0;
    background: radial-gradient(circle at 0 0, rgba(46, 101, 212, 0.12) 0, transparent 55%) rgba(4, 16, 25, 0.96);
    backdrop-filter: blur(18px);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 30;
}

.vvdq-nav-mobile-panel.vvdq-nav-mobile-panel--open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.vvdq-nav-mobile-shell {
    max-width: var(--mn-max-width);
    margin: 0 auto;
    padding: 18px 20px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #0F2433;
}

.vvdq-nav-mobile-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 15px;
}

.vvdq-nav-mobile-link {
    padding: 9px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--mn-text-main);
}

.vvdq-nav-mobile-link--active {
    border-color: rgba(178, 95, 255, 0.5);
    background: radial-gradient(circle at 0 0, rgba(255, 135, 95, 0.12), rgba(4, 16, 25, 0.96));
    box-shadow: 0 0 12px var(--mn-neon-coral);
}

.vvdq-nav-mobile-cta-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vvdq-nav-mobile-cta {
    font-size: 14px;
    padding: 11px 18px;
    border-radius: var(--mn-radius-pill);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
}

.vvdq-nav-mobile-cta--outline {
    border-color: rgba(178, 95, 255, 0.5);
    color: var(--mn-accent-main);
    background: rgba(255, 135, 95, 0.04);
}

.vvdq-nav-mobile-cta--solid {
    background: radial-gradient(circle at 0 0, #5fafff, #d07aff);
    color: #0A0814;
    font-weight: 600;
}

/* Hero */

.vvdq-main-core {
    max-width: var(--mn-max-width);
    margin: 0 auto;
    padding: 32px 20px 60px;
}

.vvdq-hero-section {
    position: relative;
    border-radius: 30px;
    padding: 32px 28px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 68, 212, 0.15) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(154, 95, 255, 0.22) 0, transparent 60%),
        linear-gradient(135deg, #0A1724 0%, #0A0814 45%, #0F2A3A 100%);
    box-shadow: var(--mn-shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.vvdq-hero-section::before,
.vvdq-hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.vvdq-hero-section::before {
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.05), transparent 38%, rgba(46, 68, 212, 0.14) 52%, transparent 70%);
    mix-blend-mode: screen;
    opacity: 0.6;
}

.vvdq-hero-section::after {
    top: 20%;
    height: 60%;
    background: linear-gradient(90deg, transparent, rgba(46, 68, 212, 0.28), rgba(202, 95, 255, 0.3), transparent);
    filter: blur(12px);
    transform: translateX(-30%);
    animation: vvdqNeonSweep 6s linear infinite;
}

.vvdq-hero-deco-orbit,
.vvdq-hero-deco-pulse {
    position: absolute;
    border-radius: 999px;
    filter: blur(20px);
    opacity: 0.6;
    pointer-events: none;
}

.vvdq-hero-deco-orbit {
    width: 420px;
    height: 420px;
    right: -140px;
    top: -120px;
    background: radial-gradient(circle, rgba(202, 95, 255, 0.3), transparent 62%);
}

.vvdq-hero-deco-pulse {
    width: 360px;
    height: 360px;
    left: -140px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(46, 68, 212, 0.28), transparent 60%);
}

.vvdq-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    z-index: 1;
}

.vvdq-hero-copy {
    position: relative;
    z-index: 2;
}

.vvdq-hero-tagline-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
}

.vvdq-hero-tagline-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: var(--mn-radius-pill);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--mn-text-muted);
    box-shadow: 0 0 14px var(--mn-neon-teal);
}

.vvdq-hero-tagline-chip i {
    font-size: 13px;
    color: var(--mn-accent-secondary);
}

.vvdq-hero-cap-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--mn-radius-pill);
    background: radial-gradient(circle at 0 0, #5fafff, #d07aff);
    color: #0A0814;
    font-size: 12px;
    box-shadow:
        0 0 22px var(--mn-neon-coral),
        0 12px 30px rgba(0, 0, 0, 0.55);
}

.vvdq-hero-cap-label {
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 500;
    font-family: "Sora", system-ui, sans-serif;
}

.vvdq-hero-cap-amount {
    font-weight: 700;
    font-family: "Sora", system-ui, sans-serif;
}

.vvdq-hero-title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 32px;
    line-height: 1.22;
    margin-bottom: 16px;
    text-shadow:
        0 0 22px rgba(46, 129, 212, 0.3),
        0 0 44px rgba(202, 95, 255, 0.28);
}

.vvdq-hero-subtitle {
    font-size: 15px;
    color: var(--mn-text-muted);
    max-width: 560px;
    margin-bottom: 10px;
}

.vvdq-hero-subtitle-secondary {
    font-size: 14px;
    color: var(--mn-text-muted);
    max-width: 520px;
    margin-bottom: 22px;
}

/* Timer block */

.vvdq-hero-timer-wrap {
    margin-bottom: 22px;
}

.vvdq-timer-panel {
    border-radius: 20px;
    padding: 16px 18px 14px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 212, 159, 0.18) 0, transparent 55%),
        linear-gradient(135deg, rgba(11, 37, 46, 0.98), rgba(4, 16, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.65);
}

.vvdq-timer-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
}

.vvdq-timer-title {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--mn-text-muted);
}

.vvdq-timer-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle, #2e9fd4, #5d1fae);
    box-shadow: 0 0 0 0 rgba(71, 46, 212, 0.8);
    animation: vvdqTimerPulse 1.8s infinite;
}

@keyframes vvdqTimerPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(49, 207, 243, 0.8);
    }
    70% {
        transform: scale(1.16);
        box-shadow: 0 0 0 14px rgba(46, 212, 196, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 212, 196, 0);
    }
}

.vvdq-timer-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 8px;
}

.vvdq-timer-cell {
    border-radius: 14px;
    padding: 10px 8px;
    background: rgba(4, 16, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.vvdq-timer-value {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.vvdq-timer-unit {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mn-text-muted);
    margin-top: 2px;
}

.vvdq-timer-caption {
    font-size: 11px;
    color: var(--mn-text-muted);
}

/* Hero CTA */

.vvdq-hero-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vvdq-hero-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    font-family: "Sora", system-ui, sans-serif;
    background: linear-gradient(135deg, #5fafff, #d07aff, #fff27a);
    color: #0A0814;
    box-shadow:
        0 0 20px var(--mn-neon-coral),
        0 0 24px var(--mn-neon-teal),
        0 18px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.vvdq-hero-cta-main i {
    font-size: 14px;
}

.vvdq-hero-cta-main:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 22px var(--mn-neon-coral),
        0 0 26px var(--mn-neon-teal),
        0 22px 48px rgba(0, 0, 0, 0.75);
}

/* Hero visual */

.vvdq-hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.vvdq-hero-orb-main {
    position: relative;
    width: 230px;
    height: 230px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 20%, #5fafff, #d07aff, #d4be2e);
    box-shadow:
        0 0 32px var(--mn-neon-coral),
        0 0 38px var(--mn-neon-teal),
        0 26px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.vvdq-hero-orb-layer {
    position: absolute;
    inset: 18px;
    border-radius: 999px;
    border: 1px solid rgba(4, 16, 25, 0.42);
}

.vvdq-hero-orb-layer--outer {
    border-style: dashed;
    opacity: 0.9;
}

.vvdq-hero-orb-layer--inner {
    inset: 36px;
    border: 1px solid rgba(4, 16, 25, 0.7);
}

.vvdq-hero-orb-main::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        0 0 28px var(--mn-neon-teal),
        0 0 42px var(--mn-neon-coral);
    opacity: 0.7;
    filter: blur(1px);
}

.vvdq-hero-orb-label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Sora", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 11px;
    color: #0A0814;
}

.vvdq-hero-orb-text-top {
    margin-bottom: 4px;
    opacity: 0.82;
}

.vvdq-hero-orb-text-bottom {
    font-weight: 700;
    font-size: 12px;
}

.vvdq-hero-chip-stack {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-self: stretch;
}

.vvdq-hero-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.vvdq-hero-chip-pill {
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(4, 16, 25, 0.76);
    color: var(--mn-text-muted);
    box-shadow: 0 0 12px var(--mn-neon-teal);
}

/* Responsive */

@media (max-width: 960px) {
    .vvdq-hero-inner {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
        gap: 24px;
    }

    .vvdq-hero-title {
        font-size: 28px;
    }

    .vvdq-hero-orb-main {
        width: 210px;
        height: 210px;
    }
}

@media (max-width: 768px) {
    .vvdq-header-inner {
        padding-inline: 16px;
    }

    .vvdq-nav-cluster {
        display: none;
    }

    .vvdq-nav-toggle {
        display: inline-flex;
    }

    .vvdq-hero-section {
        padding: 24px 20px 26px;
        border-radius: 22px;
    }

    .vvdq-hero-inner {
        grid-template-columns: minmax(0, 1fr);
    }

    .vvdq-hero-visual {
        order: -1;
    }

    .vvdq-hero-title {
        font-size: 24px;
    }

    .vvdq-timer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vvdq-hero-cta-row {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .vvdq-main-core {
        padding-inline: 14px;
    }

    .vvdq-header-inner {
        padding-inline: 14px;
    }

    .vvdq-hero-tagline-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .vvdq-hero-orb-main {
        width: 190px;
        height: 190px;
    }
}

.vvdq-plan-stack-zone {
    margin-top: 40px;
    padding: 28px 24px 30px;
    border-radius: 26px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 68, 212, 0.14) 0, transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(159, 107, 255, 0.20) 0, transparent 60%),
        linear-gradient(145deg, rgba(20, 16, 38, 0.96), rgba(4, 16, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.7);
}

.vvdq-plan-headwrap {
    max-width: 640px;
    margin: 0 auto 22px;
    text-align: center;
}

.vvdq-plan-title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
}

.vvdq-plan-subtitle {
    font-size: 14px;
    color: var(--mn-text-muted);
}

.vvdq-plan-listcolumn {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 640px;
    margin: 0 auto;
}

.vvdq-plan-card {
    border-radius: 18px;
    padding: 16px 18px 16px;
    background: rgba(4, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.65);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vvdq-plan-card--accent {
    background:
        radial-gradient(circle at 0 0, rgba(159, 107, 255, 0.20) 0, transparent 55%),
        rgba(4, 16, 25, 0.96);
    border-color: rgba(167, 95, 255, 0.6);
}

.vvdq-plan-card-toprow {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    align-items: center;
}

.vvdq-plan-namecluster {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vvdq-plan-name {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 17px;
}

.vvdq-plan-tag {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--mn-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
}

.vvdq-plan-tag--highlight {
    background: rgba(95, 220, 255, 0.12);
    color: var(--mn-accent-main);
}

.vvdq-plan-freewrap {
    text-align: right;
    min-width: 130px;
}

.vvdq-plan-free-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mn-text-muted);
}

.vvdq-plan-free-count {
    display: block;
    margin-top: 3px;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--mn-accent-secondary);
}

.vvdq-plan-midgrid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.12);
}

.vvdq-plan-pricebox {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vvdq-plan-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mn-text-muted);
}

.vvdq-plan-price-amount {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.vvdq-plan-note {
    font-size: 11px;
    color: var(--mn-text-muted);
}

.vvdq-plan-footrow {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.vvdq-plan-footcopy {
    font-size: 13px;
    color: var(--mn-text-muted);
}

.vvdq-plan-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: "Sora", system-ui, sans-serif;
    border: 1px solid rgba(255, 135, 95, 0.65);
    color: var(--mn-accent-main);
    background: rgba(255, 135, 95, 0.05);
    transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.vvdq-plan-cta--accent {
    background: linear-gradient(135deg, #5fafff, #d07aff);
    color: #0A0814;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.7);
}

.vvdq-plan-cta i {
    font-size: 13px;
}

.vvdq-plan-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75);
    background: rgba(255, 135, 95, 0.12);
}

.vvdq-plan-cta--accent:hover {
    background: linear-gradient(135deg, #fff0a3, #ffeb85);
}

@media (max-width: 720px) {
    .vvdq-plan-stack-zone {
        padding: 22px 18px 24px;
        border-radius: 20px;
    }

    .vvdq-plan-card {
        padding: 14px 14px 14px;
    }

    .vvdq-plan-card-toprow {
        flex-direction: column;
        align-items: flex-start;
    }

    .vvdq-plan-freewrap {
        text-align: left;
        min-width: 0;
    }

    .vvdq-plan-midgrid {
        flex-direction: column;
        align-items: flex-start;
    }

    .vvdq-plan-footrow {
        flex-direction: column;
        align-items: flex-start;
    }

    .vvdq-plan-headwrap {
        margin-bottom: 18px;
    }
}

.vvdq-support-ribbon {
    margin-top: 38px;
    padding: 24px 20px 26px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 101, 212, 0.12) 0, transparent 52%),
        radial-gradient(circle at 100% 100%, rgba(151, 95, 255, 0.14) 0, transparent 60%),
        linear-gradient(135deg, rgba(10, 23, 36, 0.98), rgba(4, 16, 25, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.72);
}

.vvdq-support-head {
    max-width: 640px;
    margin: 0 auto 20px;
    text-align: center;
}

.vvdq-support-title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 22px;
    margin-bottom: 6px;
}

.vvdq-support-subtitle {
    font-size: 14px;
    color: var(--mn-text-muted);
}

.vvdq-support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vvdq-support-card {
    display: block;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.vvdq-support-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.78);
    border-color: rgba(220, 95, 255, 0.6);
}

.vvdq-support-figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 16 / 9;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.05), transparent 60%);
}

.vvdq-support-figure img {
    width: 100%;
}

@media (max-width: 960px) {
    .vvdq-support-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .vvdq-support-ribbon {
        padding: 20px 16px 22px;
        border-radius: 20px;
    }

    .vvdq-support-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.vvdq-foot-shell {
    margin-top: 40px;
    padding-bottom: 26px;
}

.vvdq-foot-inner {
    max-width: var(--mn-max-width);
    margin: 0 auto;
    padding: 22px 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.vvdq-foot-ageblock {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.vvdq-foot-ageicon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: radial-gradient(circle at 30% 20%, #5fafff, #d07aff);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.vvdq-foot-age-number,
.vvdq-foot-age-plus {
    font-family: "Sora", system-ui, sans-serif;
    font-weight: 700;
    color: #0A0814;
    line-height: 1;
}

.vvdq-foot-age-number {
    font-size: 22px;
}

.vvdq-foot-age-plus {
    font-size: 18px;
    margin-left: 2px;
}

.vvdq-foot-agecopy {
    font-size: 13px;
    color: var(--mn-text-muted);
}

.vvdq-foot-regblock {
    padding: 12px 0 4px;
}

.vvdq-foot-regtitle {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mn-text-muted);
    margin-bottom: 6px;
}

.vvdq-foot-regtext {
    font-size: 13px;
    color: var(--mn-text-main);
}

.vvdq-foot-respblock {
    border-radius: 18px;
    padding: 12px 14px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 68, 212, 0.14) 0, transparent 55%),
        rgba(4, 16, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vvdq-foot-resptext {
    font-size: 13px;
    color: var(--mn-text-muted);
}

.vvdq-foot-linkstrip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    font-size: 13px;
}

.vvdq-foot-link {
    position: relative;
    color: var(--mn-text-muted);
    padding-bottom: 2px;
}

.vvdq-foot-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #5fafff, #d07aff);
    transition: width 0.18s ease;
}

.vvdq-foot-link:hover {
    color: #FFFFFF;
}

.vvdq-foot-link:hover::after {
    width: 100%;
}

.vvdq-foot-bottomrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 12px;
    color: var(--mn-text-muted);
}

.vvdq-foot-license-note {
    font-family: "Sora", system-ui, sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
}

@media (max-width: 720px) {
    .vvdq-foot-inner {
        padding-inline: 16px;
    }

    .vvdq-foot-ageblock {
        align-items: flex-start;
    }

    .vvdq-foot-bottomrow {
        flex-direction: column;
        align-items: flex-start;
    }
}

.vvdq-cookie-dock {
    position: fixed;
    inset-inline: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding: 12px 12px 16px;
    pointer-events: none;
    z-index: 60;
}

.vvdq-cookie-shell {
    pointer-events: auto;
    max-width: 640px;
    width: 100%;
    border-radius: 18px;
    padding: 14px 16px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 212, 196, 0.18) 0, transparent 55%),
        rgba(4, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.vvdq-cookie-textwrap {
    flex: 1 1 auto;
}

.vvdq-cookie-labelrow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.vvdq-cookie-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: radial-gradient(circle, #5fafff, #d07aff);
    box-shadow: 0 0 0 0 rgba(175, 95, 255, 0.85);
    animation: vvdqCookiePulse 2s infinite;
}

@keyframes vvdqCookiePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(162, 95, 255, 0.8);
    }
    70% {
        transform: scale(1.2);
        box-shadow: 0 0 0 14px rgba(255, 135, 95, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 135, 95, 0);
    }
}

.vvdq-cookie-label {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--mn-text-muted);
}

.vvdq-cookie-copy {
    font-size: 13px;
    color: var(--mn-text-main);
    margin-bottom: 6px;
}

.vvdq-cookie-links {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 10px;
    font-size: 12px;
    color: var(--mn-text-muted);
}

.vvdq-cookie-link {
    position: relative;
    color: var(--mn-text-muted);
    padding-bottom: 1px;
}

.vvdq-cookie-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #5fafff, #d07aff);
    transition: width 0.16s ease;
}

.vvdq-cookie-link:hover {
    color: #FFFFFF;
}

.vvdq-cookie-link:hover::after {
    width: 100%;
}

.vvdq-cookie-sep {
    opacity: 0.6;
}

.vvdq-cookie-actions {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.vvdq-cookie-btn {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: none;
    color: inherit;
}

.vvdq-cookie-btn--primary {
    background: linear-gradient(135deg, #5fafff, #d07aff);
    color: #0A0814;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.vvdq-cookie-btn--primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    background: linear-gradient(135deg, #fffca3, #858fff);
}

.vvdq-cookie-dock.vvdq-cookie-dock--hidden {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: none;
}

.vvdq-cookie-dock:not(.vvdq-cookie-dock--hidden) {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

@media (max-width: 640px) {
    .vvdq-cookie-shell {
        border-radius: 16px;
        padding: 12px 12px;
        flex-direction: column;
        gap: 10px;
    }

    .vvdq-cookie-actions {
        justify-content: flex-end;
    }

    .vvdq-cookie-btn--primary {
        width: 100%;
        justify-content: center;
        display: inline-flex;
    }
}

.vvdlg-main-access {
    padding-top: 40px;
    padding-bottom: 60px;
}

.vvdlg-access-shell {
    max-width: 480px;
    margin: 0 auto;
}

.vvdlg-access-head {
    text-align: center;
    margin-bottom: 22px;
}

.vvdlg-access-title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.vvdlg-access-subtitle {
    font-size: 14px;
    color: var(--mn-text-muted);
}

.vvdlg-access-card {
    border-radius: 22px;
    padding: 22px 20px 20px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 68, 212, 0.14) 0, transparent 55%),
        rgba(4, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8);
}

.vvdlg-access-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vvdlg-field-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vvdlg-field-label {
    font-size: 13px;
    color: var(--mn-text-muted);
}

.vvdlg-field-shell {
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 8px 12px;
    background: rgba(4, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 8px;
}

.vvdlg-field-icon {
    flex: 0 0 auto;
    color: var(--mn-text-muted);
    font-size: 14px;
}

.vvdlg-field-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    color: var(--mn-text-main);
    font-size: 14px;
}

.vvdlg-field-input::placeholder {
    color: rgba(152, 155, 166, 0.7);
}

.vvdlg-field-input:focus-visible {
    outline: none;
}

.vvdlg-access-meta {
    margin-top: 4px;
}

.vvdlg-access-hint {
    font-size: 12px;
    color: var(--mn-text-muted);
}

.vvdlg-access-feedback {
    min-height: 20px;
    font-size: 13px;
    margin-top: 4px;
}

.vvdlg-access-feedback.vvdlg-access-feedback--error {
    color: #ff9bcf;
}

.vvdlg-access-feedback.vvdlg-access-feedback--info {
    color: #5fafff;
}

.vvdlg-access-submit {
    margin-top: 6px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(114, 95, 255, 0.7);
    background: linear-gradient(135deg, #5fafff, #d07aff);
    color: #0A0814;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85);
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.vvdlg-access-submit-spinner {
    display: none;
    font-size: 14px;
}

.vvdlg-access-submit-spinner i {
    animation: vvdlgSpin 0.8s linear infinite;
}

@keyframes vvdlgSpin {
    to {
        transform: rotate(360deg);
    }
}

.vvdlg-access-submit.vvdlg-access-submit--loading {
    opacity: 0.85;
    cursor: wait;
}

.vvdlg-access-submit.vvdlg-access-submit--loading .vvdlg-access-submit-spinner {
    display: inline-flex;
}

.vvdlg-access-submit.vvdlg-access-submit--loading .vvdlg-access-submit-label {
    opacity: 0.8;
}

.vvdlg-access-submit:hover:not(.vvdlg-access-submit--loading) {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.9);
}

.vvdlg-access-alt {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.vvdlg-access-alt-text {
    color: var(--mn-text-muted);
}

.vvdlg-access-alt-link {
    color: var(--mn-accent-main);
}

@media (max-width: 640px) {
    .vvdlg-main-access {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .vvdlg-access-card {
        padding-inline: 16px;
        border-radius: 20px;
    }
}

.vvdrg-main-register {
    padding-top: 40px;
    padding-bottom: 60px;
}

.vvdrg-register-shell {
    max-width: 520px;
    margin: 0 auto;
}

.vvdrg-register-head {
    text-align: center;
    margin-bottom: 22px;
}

.vvdrg-register-title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.vvdrg-register-subtitle {
    font-size: 14px;
    color: var(--mn-text-muted);
}

.vvdrg-register-card {
    border-radius: 24px;
    padding: 22px 22px 20px;
    background:
        radial-gradient(circle at 0 0, rgba(151, 95, 255, 0.14) 0, transparent 55%),
        rgba(4, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.85);
}

.vvdrg-register-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vvdrg-field-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vvdrg-field-label {
    font-size: 13px;
    color: var(--mn-text-muted);
}

.vvdrg-field-shell {
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 8px 12px;
    background: rgba(4, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 8px;
}

.vvdrg-field-icon {
    flex: 0 0 auto;
    color: var(--mn-text-muted);
    font-size: 14px;
}

.vvdrg-field-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    color: var(--mn-text-main);
    font-size: 14px;
}

.vvdrg-field-input::placeholder {
    color: rgba(152, 155, 166, 0.7);
}

.vvdrg-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
}

.vvdrg-consent-block {
    margin-top: 4px;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(4, 16, 25, 0.96);
    border: 1px dashed rgba(255, 255, 255, 0.14);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.vvdrg-consent-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--mn-text-muted);
    cursor: pointer;
}

.vvdrg-consent-item input {
    display: none;
}

.vvdrg-consent-fauxbox {
    margin-top: 2px;
    width: 16px;
    height: 16px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(4, 16, 25, 0.9);
    position: relative;
    flex-shrink: 0;
}

.vvdrg-consent-checkbox:checked + .vvdrg-consent-fauxbox::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 4px;
    background: linear-gradient(135deg, #5fafff, #d07aff);
}

.vvdrg-consent-text {
    line-height: 1.5;
}

.vvdrg-consent-link {
    color: var(--mn-accent-main);
}

.vvdrg-register-feedback {
    min-height: 22px;
    font-size: 13px;
    margin-top: 4px;
}

.vvdrg-register-feedback.vvdrg-register-feedback--error {
    color: #ff9bcf;
}

.vvdrg-register-feedback.vvdrg-register-feedback--success {
    color: #9CF2DC;
}

.vvdrg-register-submit {
    margin-top: 4px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(95, 100, 255, 0.7);
    background: linear-gradient(135deg, #5fafff, #d07aff);
    color: #0A0814;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.9);
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.vvdrg-register-submit-spinner {
    display: none;
    font-size: 14px;
}

.vvdrg-register-submit-spinner i {
    animation: vvdrgSpin 0.8s linear infinite;
}

@keyframes vvdrgSpin {
    to {
        transform: rotate(360deg);
    }
}

.vvdrg-register-submit.vvdrg-register-submit--loading {
    opacity: 0.85;
    cursor: wait;
}

.vvdrg-register-submit.vvdrg-register-submit--loading .vvdrg-register-submit-spinner {
    display: inline-flex;
}

.vvdrg-register-submit.vvdrg-register-submit--loading .vvdrg-register-submit-label {
    opacity: 0.8;
}

.vvdrg-register-submit:hover:not(.vvdrg-register-submit--loading) {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.95);
}

.vvdrg-register-alt {
    margin-top: 10px;
    font-size: 13px;
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.vvdrg-register-alt-text {
    color: var(--mn-text-muted);
}

.vvdrg-register-alt-link {
    color: var(--mn-accent-main);
}

@media (max-width: 640px) {
    .vvdrg-main-register {
        padding-top: 32px;
        padding-bottom: 48px;
    }

    .vvdrg-register-card {
        padding-inline: 16px;
        border-radius: 20px;
    }

    .vvdrg-field-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.vvdct-main-contact {
    padding-top: 40px;
    padding-bottom: 70px;
}

.vvdct-contact-shell {
    max-width: var(--mn-max-width);
    margin: 0 auto;
}

.vvdct-contact-head {
    max-width: 640px;
    margin: 0 auto 24px;
    text-align: center;
}

.vvdct-contact-title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 26px;
    margin-bottom: 8px;
}

.vvdct-contact-subtitle {
    font-size: 14px;
    color: var(--mn-text-muted);
}

.vvdct-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
    gap: 22px;
}

.vvdct-contact-card {
    border-radius: 24px;
    padding: 22px 20px 20px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 68, 212, 0.14) 0, transparent 55%),
        rgba(4, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.85);
}

.vvdct-contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vvdct-field-block {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vvdct-field-label {
    font-size: 13px;
    color: var(--mn-text-muted);
}

.vvdct-field-shell {
    display: flex;
    align-items: center;
    border-radius: 16px;
    padding: 8px 12px;
    background: rgba(4, 16, 25, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    gap: 8px;
}

.vvdct-field-shell--textarea {
    align-items: flex-start;
}

.vvdct-field-icon {
    flex: 0 0 auto;
    color: var(--mn-text-muted);
    font-size: 14px;
    padding-top: 2px;
}

.vvdct-field-input {
    flex: 1 1 auto;
    border: none;
    background: transparent;
    color: var(--mn-text-main);
    font-size: 14px;
    resize: none;
}

.vvdct-field-input::placeholder {
    color: rgba(152, 155, 166, 0.7);
}

.vvdct-field-textarea {
    min-height: 120px;
}

.vvdct-contact-hint {
    font-size: 12px;
    color: var(--mn-text-muted);
    margin-top: 2px;
}

.vvdct-contact-feedback {
    min-height: 22px;
    font-size: 13px;
    margin-top: 4px;
}

.vvdct-contact-feedback.vvdct-contact-feedback--error {
    color: #ff9bcf;
}

.vvdct-contact-feedback.vvdct-contact-feedback--success {
    color: #9CF2DC;
}

.vvdct-contact-submit {
    margin-top: 4px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 20px;
    border-radius: 999px;
    border: 1px solid rgba(95, 100, 255, 0.7);
    background: linear-gradient(135deg, #5fafff, #d07aff);
    color: #0A0814;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.9);
    transition: background 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease, opacity 0.16s ease;
}

.vvdct-contact-submit-spinner {
    display: none;
    font-size: 14px;
}

.vvdct-contact-submit-spinner i {
    animation: vvdctSpin 0.8s linear infinite;
}

@keyframes vvdctSpin {
    to {
        transform: rotate(360deg);
    }
}

.vvdct-contact-submit.vvdct-contact-submit--loading {
    opacity: 0.85;
    cursor: wait;
}

.vvdct-contact-submit.vvdct-contact-submit--loading .vvdct-contact-submit-spinner {
    display: inline-flex;
}

.vvdct-contact-submit.vvdct-contact-submit--loading .vvdct-contact-submit-label {
    opacity: 0.8;
}

.vvdct-contact-submit:hover:not(.vvdct-contact-submit--loading) {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.95);
}

/* Aside */

.vvdct-contact-aside {
    display: flex;
    align-items: stretch;
}

.vvdct-contact-aside-card {
    border-radius: 22px;
    padding: 18px 18px 16px;
    background:
        radial-gradient(circle at 100% 0, rgba(95, 167, 255, 0.12) 0, transparent 60%),
        rgba(20, 16, 38, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.85);
}

.vvdct-contact-aside-title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 16px;
    margin-bottom: 8px;
}

.vvdct-contact-aside-text {
    font-size: 13px;
    color: var(--mn-text-muted);
    margin-bottom: 6px;
}

.vvdct-contact-aside-meta {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vvdct-contact-meta-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 12px;
}

.vvdct-contact-meta-label {
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--mn-text-muted);
}

.vvdct-contact-meta-value {
    color: var(--mn-text-main);
}

/* Thank you overlay */

.vvdct-thanks-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.vvdct-thanks-overlay.vvdct-thanks-overlay--visible {
    opacity: 1;
    pointer-events: auto;
}

.vvdct-thanks-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 4, 8, 0.82);
    backdrop-filter: blur(12px);
}

.vvdct-thanks-modal {
    position: relative;
    max-width: 420px;
    width: 100%;
    border-radius: 22px;
    padding: 22px 22px 18px;
    background:
        radial-gradient(circle at 0 0, rgba(46, 212, 112, 0.16) 0, transparent 55%),
        rgba(4, 16, 25, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    z-index: 71;
}

.vvdct-thanks-iconwrap {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.vvdct-thanks-icon {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: linear-gradient(135deg, #9cf2f2, #52d6cf);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #0A2A24;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.85);
    font-size: 20px;
}

.vvdct-thanks-title {
    font-family: "Sora", system-ui, sans-serif;
    font-size: 18px;
    text-align: center;
    margin-bottom: 6px;
}

.vvdct-thanks-text {
    font-size: 13px;
    color: var(--mn-text-muted);
    text-align: center;
    margin-bottom: 12px;
}

.vvdct-thanks-close {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 10px 16px;
    border: 1px solid rgba(95, 100, 255, 0.7);
    background: linear-gradient(135deg, #5fafff, #d07aff);
    color: #0A0814;
    font-family: "Sora", system-ui, sans-serif;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
    transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.vvdct-thanks-close:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.95);
}

@media (max-width: 880px) {
    .vvdct-contact-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .vvdct-contact-aside {
        order: -1;
    }
}

@media (max-width: 640px) {
    .vvdct-main-contact {
        padding-top: 32px;
        padding-bottom: 56px;
    }

    .vvdct-contact-card {
        padding-inline: 16px;
        border-radius: 20px;
    }

    .vvdct-contact-aside-card {
        border-radius: 20px;
    }

    .vvdct-thanks-modal {
        margin-inline: 16px;
        border-radius: 20px;
        padding-inline: 18px;
    }
}




