:root {
    --vtt-red: #d71920;
    --vtt-red-700: #a70f15;
    --vtt-red-900: #5e080c;
    --vtt-gold: #d7a91e;
    --vtt-gold-soft: #fff3bd;
    --vtt-navy: #101d3d;
    --vtt-ink: #111827;
    --vtt-muted: #5f6b7c;
    --vtt-line: #e5eaf0;
    --vtt-surface: #ffffff;
    --vtt-surface-alt: #f7f9fb;
    --vtt-soft-red: #fff3f3;
    --vtt-soft-gold: #fff9e7;
    --vtt-success: #0f9d68;
    --vtt-radius-sm: 12px;
    --vtt-radius: 20px;
    --vtt-radius-lg: 32px;
    --vtt-shell: 1320px;
    --vtt-shadow-sm: 0 8px 24px rgba(16, 29, 61, .08);
    --vtt-shadow: 0 24px 70px rgba(16, 29, 61, .14);
    --vtt-shadow-strong: 0 34px 90px rgba(16, 29, 61, .2);
    --vtt-transition: 220ms ease;
}

html[data-vtt-theme="dark"] {
    --vtt-ink: #f8fafc;
    --vtt-muted: #b6c0ce;
    --vtt-line: #2c3443;
    --vtt-surface: #111722;
    --vtt-surface-alt: #0b1019;
    --vtt-soft-red: #261013;
    --vtt-soft-gold: #29220f;
    color-scheme: dark;
}

html {
    scroll-behavior: smooth;
}

body.virttunity-site {
    margin: 0;
    overflow-x: hidden;
    background: var(--vtt-surface-alt);
    color: var(--vtt-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.virttunity-site.admin-bar .vtt-header-wrap {
    top: 32px;
}

body.virttunity-site .entry-header,
body.virttunity-site > .site-header,
body.virttunity-site > .site-footer,
body.virttunity-site #masthead,
body.virttunity-site #colophon {
    display: none !important;
}

body.virttunity-site .site-main,
body.virttunity-site .entry-content,
body.virttunity-site .wp-site-blocks,
body.virttunity-site main.wp-block-group {
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.virttunity-site *,
body.virttunity-site *::before,
body.virttunity-site *::after {
    box-sizing: border-box;
}

body.virttunity-site img {
    max-width: 100%;
    height: auto;
}

body.virttunity-site button,
body.virttunity-site input,
body.virttunity-site textarea,
body.virttunity-site select {
    font: inherit;
}

body.virttunity-site a,
body.virttunity-site button {
    -webkit-tap-highlight-color: transparent;
}

body.vtt-menu-open {
    overflow: hidden;
}

.vtt-shell {
    width: min(var(--vtt-shell), calc(100% - 48px));
    margin-inline: auto;
}

.vtt-icon {
    display: inline-flex;
    width: 1.15em;
    height: 1.15em;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    vertical-align: -.15em;
}

.vtt-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vtt-skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 100000;
    transform: translateY(-180%);
    border-radius: 10px;
    background: #fff;
    color: #111 !important;
    padding: 12px 16px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: var(--vtt-shadow-sm);
}

.vtt-skip-link:focus {
    transform: translateY(0);
}

.screen-reader-text {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* Announcement */
.vtt-announcement {
    position: relative;
    z-index: 1002;
    background: linear-gradient(90deg, var(--vtt-red-900), var(--vtt-red), var(--vtt-red-700));
    color: #fff;
}

.vtt-announcement[hidden] {
    display: none;
}

.vtt-announcement__inner {
    width: min(var(--vtt-shell), calc(100% - 32px));
    min-height: 38px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 7px 42px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .03em;
    text-align: center;
}

.vtt-announcement__inner > a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #fff !important;
    font-weight: 900;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.vtt-announcement__pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--vtt-gold-soft);
    box-shadow: 0 0 0 0 rgba(255, 243, 189, .7);
    animation: vtt-pulse 2s infinite;
}

.vtt-announcement__close {
    position: absolute;
    right: 10px;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    cursor: pointer;
}

/* Header */
.vtt-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 14px 0;
    pointer-events: none;
    transition: padding var(--vtt-transition), background var(--vtt-transition);
}

.vtt-header-wrap.is-compact {
    padding: 8px 0;
    background: rgba(247, 249, 251, .82);
    backdrop-filter: blur(18px);
}

html[data-vtt-theme="dark"] .vtt-header-wrap.is-compact {
    background: rgba(8, 12, 18, .82);
}

.vtt-header {
    width: min(1410px, calc(100% - 34px));
    margin: auto;
    border: 1px solid rgba(16, 29, 61, .11);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 10px 35px rgba(16, 29, 61, .08);
    backdrop-filter: blur(20px);
    pointer-events: auto;
    transition: box-shadow var(--vtt-transition), transform var(--vtt-transition), background var(--vtt-transition);
}

html[data-vtt-theme="dark"] .vtt-header {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(17, 23, 34, .94);
}

.vtt-header-wrap.is-compact .vtt-header {
    box-shadow: 0 14px 44px rgba(16, 29, 61, .16);
}

.vtt-header__inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 8px 18px 8px 20px;
}

.vtt-brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 11px;
    min-width: max-content;
    color: var(--vtt-navy) !important;
    text-decoration: none !important;
}

html[data-vtt-theme="dark"] .vtt-brand {
    color: #fff !important;
}

.vtt-brand__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.vtt-brand__mark {
    position: relative;
    display: grid;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    border: 2px solid var(--vtt-gold);
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .55), transparent 20%),
        linear-gradient(145deg, var(--vtt-red), var(--vtt-red-900));
    color: #fff;
    box-shadow: 0 8px 18px rgba(215, 25, 32, .26);
}

.vtt-brand__mark::after {
    position: absolute;
    width: 65%;
    height: 65%;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 50%;
    content: "";
}

.vtt-brand__mark span {
    position: relative;
    z-index: 1;
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 900;
}

.vtt-brand__wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 4px;
    white-space: nowrap;
}

.vtt-brand__wordmark strong {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -.035em;
}

.vtt-brand__wordmark em {
    color: var(--vtt-gold);
    font-size: 17px;
    font-style: normal;
    font-weight: 900;
    letter-spacing: -.03em;
}

.vtt-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.vtt-nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.vtt-nav__link,
.vtt-nav__dropdown-trigger > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    color: var(--vtt-navy) !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
    transition: color var(--vtt-transition), background var(--vtt-transition);
}

html[data-vtt-theme="dark"] .vtt-nav__link,
html[data-vtt-theme="dark"] .vtt-nav__dropdown-trigger > a {
    color: #f5f7fb !important;
}

.vtt-nav__link::after,
.vtt-nav__item::after {
    position: absolute;
    right: 12px;
    bottom: 1px;
    left: 12px;
    height: 2px;
    border-radius: 99px;
    background: var(--vtt-red);
    content: "";
    opacity: 0;
    transform: scaleX(.45);
    transition: opacity var(--vtt-transition), transform var(--vtt-transition);
}

.vtt-nav__link:hover,
.vtt-nav__link:focus-visible,
.vtt-nav__dropdown-trigger > a:hover,
.vtt-nav__dropdown-trigger > a:focus-visible {
    color: var(--vtt-red) !important;
}

.vtt-nav__link:hover::after,
.vtt-nav__link.is-active::after,
.vtt-nav__item:hover::after,
.vtt-nav__item.is-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.vtt-nav__item {
    position: relative;
}

.vtt-nav__dropdown-trigger {
    display: flex;
    align-items: center;
}

.vtt-nav__dropdown-trigger > a {
    padding-right: 3px;
}

.vtt-nav__dropdown-trigger button {
    display: grid;
    width: 31px;
    height: 36px;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vtt-navy);
    cursor: pointer;
}

html[data-vtt-theme="dark"] .vtt-nav__dropdown-trigger button {
    color: #fff;
}

.vtt-nav__dropdown-trigger button .vtt-icon {
    width: 14px;
    height: 14px;
    transition: transform var(--vtt-transition);
}

.vtt-nav__item.is-open .vtt-nav__dropdown-trigger button .vtt-icon {
    transform: rotate(180deg);
}

.vtt-nav__dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 30;
    width: 330px;
    padding: 10px;
    border: 1px solid var(--vtt-line);
    border-radius: 18px;
    background: var(--vtt-surface);
    box-shadow: var(--vtt-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity var(--vtt-transition), transform var(--vtt-transition);
}

.vtt-nav__dropdown::before {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 14px;
    height: 14px;
    border-top: 1px solid var(--vtt-line);
    border-left: 1px solid var(--vtt-line);
    background: var(--vtt-surface);
    content: "";
    transform: translateX(-50%) rotate(45deg);
}

.vtt-nav__item:hover .vtt-nav__dropdown,
.vtt-nav__item:focus-within .vtt-nav__dropdown,
.vtt-nav__item.is-open .vtt-nav__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.vtt-nav__dropdown > a {
    position: relative;
    z-index: 1;
    display: block;
    padding: 12px 14px;
    border-radius: 12px;
    color: var(--vtt-ink) !important;
    text-decoration: none !important;
    transition: background var(--vtt-transition), transform var(--vtt-transition);
}

.vtt-nav__dropdown > a:hover,
.vtt-nav__dropdown > a:focus-visible {
    background: var(--vtt-soft-red);
    transform: translateX(3px);
}

.vtt-nav__dropdown > a span,
.vtt-nav__dropdown > a small {
    display: block;
}

.vtt-nav__dropdown > a span {
    font-size: 13px;
    font-weight: 900;
}

.vtt-nav__dropdown > a small {
    margin-top: 3px;
    color: var(--vtt-muted);
    font-size: 11px;
    line-height: 1.45;
}

.vtt-header__actions {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.vtt-icon-button {
    position: relative;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    padding: 0;
    border: 1px solid transparent;
    border-radius: 50%;
    background: transparent;
    color: var(--vtt-navy) !important;
    text-decoration: none !important;
    cursor: pointer;
    transition: background var(--vtt-transition), border-color var(--vtt-transition), transform var(--vtt-transition);
}

html[data-vtt-theme="dark"] .vtt-icon-button {
    color: #fff !important;
}

.vtt-icon-button:hover,
.vtt-icon-button:focus-visible {
    border-color: var(--vtt-line);
    background: var(--vtt-surface-alt);
    transform: translateY(-1px);
}

.vtt-theme-toggle__moon {
    display: none;
}

html[data-vtt-theme="dark"] .vtt-theme-toggle__sun {
    display: none;
}

html[data-vtt-theme="dark"] .vtt-theme-toggle__moon {
    display: inline-flex;
}

.vtt-cart-count {
    position: absolute;
    top: 1px;
    right: 0;
    display: grid;
    min-width: 18px;
    height: 18px;
    place-items: center;
    padding: 0 4px;
    border: 2px solid var(--vtt-surface);
    border-radius: 999px;
    background: var(--vtt-red);
    color: #fff;
    font-size: 9px;
    font-weight: 900;
}

.vtt-account-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 17px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--vtt-red), var(--vtt-red-700));
    color: #fff !important;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 10px 24px rgba(215, 25, 32, .23);
    transition: transform var(--vtt-transition), box-shadow var(--vtt-transition);
}

.vtt-account-button:hover,
.vtt-account-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(215, 25, 32, .3);
}

.vtt-menu-toggle,
.vtt-nav__mobile-head,
.vtt-nav__mobile-actions,
.vtt-nav-backdrop {
    display: none;
}

/* Hero */
.vtt-home {
    overflow: clip;
    background: var(--vtt-surface);
}

.vtt-hero {
    position: relative;
    min-height: 790px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 110px 0 115px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .96)),
        var(--vtt-surface);
}

html[data-vtt-theme="dark"] .vtt-hero {
    background: linear-gradient(180deg, rgba(11, 16, 25, .72), rgba(11, 16, 25, .96)), var(--vtt-surface-alt);
}

.vtt-hero__aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(15px);
    pointer-events: none;
}

.vtt-hero__aurora--red {
    top: -200px;
    left: -160px;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(215, 25, 32, .22), rgba(215, 25, 32, 0) 67%);
}

.vtt-hero__aurora--gold {
    right: -140px;
    bottom: -250px;
    width: 820px;
    height: 820px;
    background: radial-gradient(circle, rgba(215, 169, 30, .24), rgba(215, 169, 30, 0) 67%);
}

.vtt-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: .35;
    background-image:
        linear-gradient(rgba(16, 29, 61, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 29, 61, .035) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 75%, transparent);
}

.vtt-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr);
    align-items: center;
    gap: clamp(45px, 7vw, 105px);
}

.vtt-hero__copy {
    max-width: 760px;
}

.vtt-hero__eyebrow {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    gap: 9px;
    padding: 0 14px;
    border: 1px solid rgba(16, 29, 61, .18);
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
    color: var(--vtt-navy);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .015em;
    backdrop-filter: blur(10px);
}

html[data-vtt-theme="dark"] .vtt-hero__eyebrow {
    border-color: rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .06);
    color: #fff;
}

.vtt-hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--vtt-red);
    box-shadow: 0 0 0 5px rgba(215, 25, 32, .1);
}

.vtt-hero h1 {
    margin: 24px 0 22px;
    color: var(--vtt-navy);
    font-size: clamp(50px, 5.3vw, 84px);
    font-weight: 950;
    letter-spacing: -.068em;
    line-height: .98;
}

html[data-vtt-theme="dark"] .vtt-hero h1 {
    color: #fff;
}

.vtt-hero h1 > span,
.vtt-hero h1 > strong {
    display: block;
}

.vtt-hero h1 > strong {
    background: linear-gradient(90deg, var(--vtt-red), var(--vtt-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.vtt-hero__copy > p {
    max-width: 650px;
    margin: 0;
    color: var(--vtt-muted);
    font-size: clamp(17px, 1.45vw, 21px);
    line-height: 1.55;
}

.vtt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.vtt-actions--center {
    justify-content: center;
}

.vtt-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none !important;
    cursor: pointer;
    transition: transform var(--vtt-transition), box-shadow var(--vtt-transition), background var(--vtt-transition), color var(--vtt-transition);
}

.vtt-button:hover,
.vtt-button:focus-visible {
    transform: translateY(-2px);
}

.vtt-button--primary {
    background: linear-gradient(135deg, var(--vtt-red), var(--vtt-red-700));
    color: #fff !important;
    box-shadow: 0 14px 34px rgba(215, 25, 32, .25);
}

.vtt-button--primary:hover,
.vtt-button--primary:focus-visible {
    box-shadow: 0 19px 40px rgba(215, 25, 32, .33);
}

.vtt-button--secondary {
    border-color: var(--vtt-navy);
    background: var(--vtt-navy);
    color: #fff !important;
    box-shadow: 0 14px 30px rgba(16, 29, 61, .16);
}

html[data-vtt-theme="dark"] .vtt-button--secondary {
    border-color: #fff;
    background: #fff;
    color: #111827 !important;
}

.vtt-button--ghost {
    border-color: var(--vtt-line);
    background: transparent;
    color: var(--vtt-ink) !important;
}

.vtt-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 34px;
    color: var(--vtt-navy);
    font-size: 12px;
    font-weight: 800;
}

html[data-vtt-theme="dark"] .vtt-hero__trust {
    color: #dce3ec;
}

.vtt-hero__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.vtt-hero__trust span:nth-child(1) .vtt-icon {
    color: var(--vtt-success);
}

.vtt-hero__trust span:nth-child(2) .vtt-icon {
    color: var(--vtt-red);
}

.vtt-hero__trust span:nth-child(3) .vtt-icon {
    color: var(--vtt-gold);
}

.vtt-hero__visual {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
    perspective: 1100px;
}

.vtt-hero-card {
    position: relative;
    width: min(510px, 92%);
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 54px;
    background:
        radial-gradient(circle at 50% 48%, rgba(215, 169, 30, .2), transparent 27%),
        linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(245, 248, 251, .5));
    box-shadow: var(--vtt-shadow-strong);
    backdrop-filter: blur(24px);
    transform-style: preserve-3d;
    transition: transform 120ms linear;
}

html[data-vtt-theme="dark"] .vtt-hero-card {
    border-color: rgba(255, 255, 255, .1);
    background: radial-gradient(circle at 50% 48%, rgba(215, 169, 30, .18), transparent 27%), linear-gradient(145deg, rgba(28, 36, 49, .88), rgba(11, 16, 25, .68));
}

.vtt-hero-card::before,
.vtt-hero-card::after {
    position: absolute;
    border-radius: 30px;
    content: "";
}

.vtt-hero-card::before {
    top: 70px;
    right: 55px;
    width: 120px;
    height: 120px;
    background: linear-gradient(145deg, rgba(215, 25, 32, .06), rgba(16, 29, 61, .08));
}

.vtt-hero-card::after {
    bottom: 74px;
    left: 55px;
    width: 130px;
    height: 130px;
    background: linear-gradient(145deg, rgba(215, 169, 30, .13), rgba(215, 25, 32, .05));
}

.vtt-hero-card__shine {
    position: absolute;
    inset: -40%;
    background: linear-gradient(110deg, transparent 35%, rgba(255, 255, 255, .48) 48%, transparent 61%);
    transform: translateX(-45%) rotate(8deg);
    animation: vtt-shine 8s infinite;
}

.vtt-hero-card__image {
    position: relative;
    z-index: 3;
    width: 62%;
    height: 62%;
    display: grid;
    place-items: center;
}

.vtt-hero-card__uploaded-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 26px 28px rgba(16, 29, 61, .2));
}

.vtt-hero-emblem {
    position: relative;
    width: 260px;
    height: 260px;
    display: grid;
    place-items: center;
    border: 13px solid var(--vtt-navy);
    border-radius: 50%;
    background:
        radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .7), transparent 20%),
        linear-gradient(145deg, #f0ce62, var(--vtt-gold) 50%, #8c6910);
    color: var(--vtt-navy);
    box-shadow: 0 0 0 7px rgba(215, 25, 32, .92), 0 0 0 11px var(--vtt-gold), 0 32px 60px rgba(16, 29, 61, .27);
    transform: rotate(-3deg);
}

.vtt-hero-emblem__ring {
    position: absolute;
    inset: 20px;
    border: 2px dashed rgba(16, 29, 61, .5);
    border-radius: 50%;
}

.vtt-hero-emblem__letter {
    font-family: Georgia, serif;
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
}

.vtt-hero-emblem small {
    position: absolute;
    bottom: 40px;
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.vtt-hero-chip {
    position: absolute;
    z-index: 5;
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 16px;
    background: rgba(255, 255, 255, .84);
    color: var(--vtt-navy);
    box-shadow: var(--vtt-shadow-sm);
    backdrop-filter: blur(15px);
    animation: vtt-float 4.5s ease-in-out infinite;
}

html[data-vtt-theme="dark"] .vtt-hero-chip {
    border-color: rgba(255, 255, 255, .11);
    background: rgba(19, 27, 39, .82);
    color: #fff;
}

.vtt-hero-chip .vtt-icon {
    width: 24px;
    height: 24px;
}

.vtt-hero-chip--globe {
    top: 112px;
    left: 8%;
    color: var(--vtt-red);
}

.vtt-hero-chip--medal {
    top: 68px;
    right: 11%;
    color: var(--vtt-gold);
    animation-delay: -1s;
}

.vtt-hero-chip--bolt {
    right: 5%;
    bottom: 105px;
    color: var(--vtt-success);
    animation-delay: -2s;
}

.vtt-hero-chip--trophy {
    bottom: 70px;
    left: 12%;
    color: var(--vtt-red);
    animation-delay: -.5s;
}

.vtt-hero-status {
    position: absolute;
    z-index: 8;
    min-width: 240px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 17px;
    background: rgba(255, 255, 255, .88);
    color: var(--vtt-ink);
    box-shadow: var(--vtt-shadow-sm);
    backdrop-filter: blur(18px);
}

html[data-vtt-theme="dark"] .vtt-hero-status {
    border-color: rgba(255, 255, 255, .1);
    background: rgba(17, 23, 34, .9);
}

.vtt-hero-status > span {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 12px;
    background: var(--vtt-soft-red);
    color: var(--vtt-red);
}

.vtt-hero-status strong,
.vtt-hero-status small {
    display: block;
}

.vtt-hero-status strong {
    font-size: 12px;
    font-weight: 900;
}

.vtt-hero-status small {
    margin-top: 2px;
    color: var(--vtt-muted);
    font-size: 10px;
}

.vtt-hero-status--registration {
    left: -10px;
    bottom: 26px;
}

.vtt-hero-status--private {
    top: 18px;
    right: -18px;
}

.vtt-hero-status--private > span {
    background: var(--vtt-soft-gold);
    color: #9b7300;
}

.vtt-hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--vtt-muted);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.vtt-hero__scroll span {
    width: 23px;
    height: 36px;
    border: 1px solid rgba(16, 29, 61, .25);
    border-radius: 999px;
}

.vtt-hero__scroll span::after {
    display: block;
    width: 3px;
    height: 7px;
    margin: 6px auto 0;
    border-radius: 99px;
    background: var(--vtt-red);
    content: "";
    animation: vtt-scroll 1.8s infinite;
}

/* Shared sections */
.vtt-section {
    position: relative;
    padding: 105px 0;
    background: var(--vtt-surface);
}

.vtt-section--events,
.vtt-section--gallery {
    background: var(--vtt-surface-alt);
}

.vtt-section--merch,
.vtt-section--how {
    border-top: 1px solid var(--vtt-line);
}

.vtt-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 42px;
    margin-bottom: 42px;
}

.vtt-section-heading--center {
    justify-content: center;
    text-align: center;
}

.vtt-section-heading > div {
    max-width: 780px;
}

.vtt-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    border-radius: 999px;
    background: var(--vtt-soft-red);
    color: var(--vtt-red);
    font-size: 10px;
    font-weight: 1000;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.vtt-kicker i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
}

.vtt-section-heading h2,
.vtt-journey-layout h2,
.vtt-connect-card h2,
.vtt-final-cta h2,
.vtt-page-hero h1 {
    margin: 13px 0 0;
    color: var(--vtt-ink);
    font-size: clamp(38px, 4.4vw, 68px);
    font-weight: 950;
    letter-spacing: -.06em;
    line-height: 1.02;
}

.vtt-section-heading h2 span,
.vtt-journey-layout h2 span,
.vtt-connect-card h2 span,
.vtt-page-hero h1 span {
    color: var(--vtt-gold);
}

.vtt-section-heading p,
.vtt-journey-layout > div:first-child > p,
.vtt-connect-card > div:first-child > p {
    max-width: 680px;
    margin: 13px 0 0;
    color: var(--vtt-muted);
    font-size: 16px;
    line-height: 1.65;
}

.vtt-outline-link {
    display: inline-flex;
    min-height: 43px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 16px;
    border: 1px solid rgba(215, 25, 32, .25);
    border-radius: 10px;
    background: var(--vtt-surface);
    color: var(--vtt-red) !important;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: 0 7px 18px rgba(16, 29, 61, .05);
    transition: transform var(--vtt-transition), border-color var(--vtt-transition), box-shadow var(--vtt-transition);
}

.vtt-outline-link:hover,
.vtt-outline-link:focus-visible {
    border-color: var(--vtt-red);
    box-shadow: var(--vtt-shadow-sm);
    transform: translateY(-2px);
}

/* Event cards supplied by Events plugin */
.vtt-event-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.vtt-event-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--vtt-line);
    border-radius: 20px;
    background: var(--vtt-surface);
    box-shadow: 0 10px 28px rgba(16, 29, 61, .08);
    transition: transform var(--vtt-transition), box-shadow var(--vtt-transition), border-color var(--vtt-transition);
}

.vtt-event-card:hover {
    border-color: rgba(215, 25, 32, .28);
    box-shadow: 0 20px 45px rgba(16, 29, 61, .14);
    transform: translateY(-6px);
}

.vtt-event-card__media {
    position: relative;
    aspect-ratio: 1.35 / 1;
    overflow: hidden;
    background: linear-gradient(145deg, #eef2f6, #dfe5eb);
    background-position: center;
    background-size: cover;
}

.vtt-event-card__media::after {
    position: absolute;
    inset: auto 0 0;
    height: 34%;
    background: linear-gradient(transparent, rgba(16, 29, 61, .22));
    content: "";
}

.vtt-event-card__status,
.vtt-event-card__type {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 1000;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.vtt-event-card__status {
    top: 13px;
    left: 13px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, .92);
    color: var(--vtt-success);
    box-shadow: var(--vtt-shadow-sm);
}

.vtt-event-card__type {
    right: 12px;
    bottom: 12px;
    padding: 6px 9px;
    background: rgba(16, 29, 61, .88);
    color: #fff;
}

.vtt-event-card__body {
    padding: 20px;
}

.vtt-event-card h3 {
    margin: 0;
    color: var(--vtt-ink);
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -.025em;
    line-height: 1.2;
}

.vtt-event-card p {
    margin: 9px 0 0;
    color: var(--vtt-muted);
    font-size: 12px;
    line-height: 1.55;
}

.vtt-event-card__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid var(--vtt-line);
    color: var(--vtt-ink);
    font-size: 11px;
    font-weight: 850;
}

.vtt-event-card__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 16px;
}

.vtt-event-card__actions .vtt-button {
    min-height: 42px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 11px;
}

.vtt-event-card__actions .vtt-button--secondary {
    background: var(--vtt-navy);
}

/* Merch */
.vtt-merch-showcase {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.vtt-merch-showcase article {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    padding: 14px;
    border: 1px solid var(--vtt-line);
    border-radius: 20px;
    background: var(--vtt-surface);
    box-shadow: 0 10px 28px rgba(16, 29, 61, .07);
    transition: transform var(--vtt-transition), box-shadow var(--vtt-transition);
}

.vtt-merch-showcase article:hover {
    box-shadow: var(--vtt-shadow);
    transform: translateY(-5px);
}

.vtt-merch-showcase__art {
    min-height: 250px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .8), transparent 25%),
        linear-gradient(145deg, var(--vtt-soft-gold), var(--vtt-soft-red));
    color: var(--vtt-red);
    font-family: Georgia, serif;
    font-size: 110px;
    font-weight: 900;
}

.vtt-merch-showcase__art .vtt-icon {
    width: 92px;
    height: 92px;
}

.vtt-merch-showcase article > span {
    margin-top: 16px;
    color: var(--vtt-red);
    font-size: 9px;
    font-weight: 1000;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.vtt-merch-showcase article > strong {
    margin-top: 6px;
    color: var(--vtt-ink);
    font-size: 17px;
    line-height: 1.25;
}

/* Steps */
.vtt-section--how {
    background:
        radial-gradient(circle at 50% 45%, rgba(215, 25, 32, .055), transparent 36%),
        var(--vtt-surface);
}

.vtt-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.vtt-steps article {
    position: relative;
    min-height: 230px;
    padding: 24px;
    border: 1px solid var(--vtt-line);
    border-radius: 18px;
    background: var(--vtt-surface);
    box-shadow: 0 12px 34px rgba(16, 29, 61, .08);
}

.vtt-step-icon {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 13px;
    background: var(--vtt-soft-red);
    color: var(--vtt-red);
}

.vtt-step-icon .vtt-icon {
    width: 22px;
    height: 22px;
}

.vtt-steps article > i {
    position: absolute;
    top: 28px;
    right: 25px;
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border-radius: 50%;
    background: var(--vtt-surface-alt);
    color: var(--vtt-muted);
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.vtt-steps h3 {
    margin: 28px 0 8px;
    color: var(--vtt-ink);
    font-size: 18px;
    font-weight: 950;
}

.vtt-steps p {
    margin: 0;
    color: var(--vtt-muted);
    font-size: 13px;
    line-height: 1.6;
}

/* Journey */
.vtt-section--journey {
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 25%, rgba(215, 25, 32, .08), transparent 30%),
        radial-gradient(circle at 88% 70%, rgba(215, 169, 30, .12), transparent 28%),
        var(--vtt-surface-alt);
}

.vtt-journey-layout {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
    align-items: center;
    gap: 85px;
}

.vtt-journey-layout .vtt-button {
    margin-top: 26px;
}

.vtt-journey-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .65);
    border-radius: 28px;
    background: rgba(255, 255, 255, .68);
    box-shadow: var(--vtt-shadow);
    backdrop-filter: blur(18px);
}

html[data-vtt-theme="dark"] .vtt-journey-panel {
    border-color: rgba(255, 255, 255, .09);
    background: rgba(17, 23, 34, .72);
}

.vtt-journey-panel article {
    min-height: 150px;
    padding: 20px;
    border: 1px solid var(--vtt-line);
    border-radius: 18px;
    background: var(--vtt-surface);
}

.vtt-journey-panel article > span {
    display: grid;
    width: 43px;
    height: 43px;
    place-items: center;
    border-radius: 13px;
    background: var(--vtt-soft-red);
    color: var(--vtt-red);
}

.vtt-journey-panel article:nth-child(2) > span,
.vtt-journey-panel article:nth-child(3) > span {
    background: var(--vtt-soft-gold);
    color: #9b7300;
}

.vtt-journey-panel strong,
.vtt-journey-panel small {
    display: block;
}

.vtt-journey-panel strong {
    margin-top: 18px;
    color: var(--vtt-ink);
    font-size: 15px;
}

.vtt-journey-panel small {
    margin-top: 4px;
    color: var(--vtt-muted);
    font-size: 11px;
    line-height: 1.45;
}

/* Connect */
.vtt-section--connect {
    background: var(--vtt-surface);
}

.vtt-connect-card {
    min-height: 480px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    align-items: center;
    gap: 70px;
    overflow: hidden;
    padding: clamp(40px, 6vw, 80px);
    border-radius: 34px;
    background:
        radial-gradient(circle at 85% 50%, rgba(215, 169, 30, .28), transparent 26%),
        linear-gradient(135deg, #fff7f7, #fffdf5);
    box-shadow: inset 0 0 0 1px rgba(215, 25, 32, .08);
}

html[data-vtt-theme="dark"] .vtt-connect-card {
    background: radial-gradient(circle at 85% 50%, rgba(215, 169, 30, .18), transparent 26%), linear-gradient(135deg, #1d1114, #1d1a10);
}

.vtt-connect-orbit {
    position: relative;
    width: min(360px, 100%);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    margin: auto;
    border: 1px solid rgba(215, 25, 32, .2);
    border-radius: 50%;
}

.vtt-connect-orbit::before,
.vtt-connect-orbit::after {
    position: absolute;
    border: 1px dashed rgba(215, 169, 30, .35);
    border-radius: 50%;
    content: "";
}

.vtt-connect-orbit::before {
    inset: 17%;
}

.vtt-connect-orbit::after {
    inset: 34%;
}

.vtt-connect-orbit > span {
    position: relative;
    z-index: 2;
    display: grid;
    width: 105px;
    height: 105px;
    place-items: center;
    border: 7px solid var(--vtt-gold);
    border-radius: 50%;
    background: var(--vtt-red);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 52px;
    font-weight: 900;
    box-shadow: var(--vtt-shadow);
}

.vtt-connect-orbit i {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 5px solid var(--vtt-surface);
    border-radius: 50%;
    background: var(--vtt-red);
    box-shadow: var(--vtt-shadow-sm);
}

.vtt-connect-orbit i:nth-of-type(1) { top: 8%; left: 48%; }
.vtt-connect-orbit i:nth-of-type(2) { top: 46%; right: 5%; background: var(--vtt-gold); }
.vtt-connect-orbit i:nth-of-type(3) { bottom: 9%; left: 48%; }
.vtt-connect-orbit i:nth-of-type(4) { top: 46%; left: 5%; background: var(--vtt-gold); }

/* Gallery */
.vtt-gallery-preview {
    display: grid;
    grid-template-columns: 1.25fr .8fr 1fr;
    gap: 18px;
}

.vtt-gallery-preview article {
    min-height: 300px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(16, 29, 61, .78), rgba(215, 25, 32, .76)),
        var(--vtt-navy);
    box-shadow: var(--vtt-shadow-sm);
}

.vtt-gallery-preview article:nth-child(2) {
    background: linear-gradient(145deg, #f0c84e, #9d7100);
}

.vtt-gallery-preview article:nth-child(3) {
    background: linear-gradient(145deg, #2c3340, #0b0e14);
}

.vtt-gallery-preview span {
    color: #fff;
    font-size: clamp(30px, 4vw, 60px);
    font-weight: 1000;
    letter-spacing: -.06em;
    text-transform: uppercase;
    transform: rotate(-5deg);
}

/* CTA */
.vtt-final-cta {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background: linear-gradient(135deg, #f7fafd, #ffffff);
    text-align: center;
}

html[data-vtt-theme="dark"] .vtt-final-cta {
    background: linear-gradient(135deg, #0c111a, #111722);
}

.vtt-final-cta__glow {
    position: absolute;
    inset: auto 50% -320px;
    width: 900px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(215, 25, 32, .18), transparent 67%);
    transform: translateX(-50%);
}

.vtt-final-cta .vtt-shell {
    position: relative;
    z-index: 1;
}

.vtt-final-cta h2 {
    max-width: 900px;
    margin-inline: auto;
}

.vtt-final-cta p {
    max-width: 700px;
    margin: 18px auto 0;
    color: var(--vtt-muted);
    font-size: 17px;
    line-height: 1.6;
}

/* Inner pages */
.vtt-page {
    background: var(--vtt-surface);
}

.vtt-page-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 0 100px;
    background: radial-gradient(circle at 80% 20%, rgba(215, 169, 30, .2), transparent 30%), linear-gradient(145deg, var(--vtt-soft-red), var(--vtt-surface));
}

.vtt-page-hero p {
    max-width: 760px;
    color: var(--vtt-muted);
    font-size: 18px;
    line-height: 1.7;
}

.vtt-prose {
    max-width: 850px;
}

.vtt-prose h2 {
    margin: 45px 0 12px;
    color: var(--vtt-ink);
    font-size: clamp(30px, 4vw, 46px);
    letter-spacing: -.045em;
}

.vtt-prose p {
    color: var(--vtt-muted);
    font-size: 17px;
    line-height: 1.8;
}

/* Footer */
.vtt-footer {
    border-top: 1px solid var(--vtt-line);
    background: var(--vtt-surface);
    color: var(--vtt-muted);
    padding: 72px 0 26px;
}

.vtt-footer__main {
    display: grid;
    grid-template-columns: 1.55fr repeat(3, 1fr);
    gap: clamp(30px, 5vw, 75px);
}

.vtt-footer .vtt-brand {
    margin-bottom: 17px;
}

.vtt-footer__brand-column > p {
    max-width: 360px;
    margin: 0;
    color: var(--vtt-muted);
    font-size: 13px;
    line-height: 1.7;
}

.vtt-footer__column h2 {
    margin: 6px 0 18px;
    color: var(--vtt-ink);
    font-size: 12px;
    font-weight: 1000;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.vtt-footer__column > a,
.vtt-footer__column > span {
    display: flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    margin: 10px 0;
    color: var(--vtt-muted) !important;
    font-size: 12px;
    font-weight: 650;
    line-height: 1.45;
    text-decoration: none !important;
}

.vtt-footer__column > a:hover,
.vtt-footer__column > a:focus-visible {
    color: var(--vtt-red) !important;
}

.vtt-socials {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}

.vtt-socials a {
    display: grid;
    width: 37px;
    height: 37px;
    place-items: center;
    border: 1px solid var(--vtt-line);
    border-radius: 10px;
    background: var(--vtt-surface-alt);
    color: var(--vtt-navy) !important;
    transition: color var(--vtt-transition), border-color var(--vtt-transition), transform var(--vtt-transition);
}

html[data-vtt-theme="dark"] .vtt-socials a {
    color: #fff !important;
}

.vtt-socials a:hover,
.vtt-socials a:focus-visible {
    border-color: var(--vtt-red);
    color: var(--vtt-red) !important;
    transform: translateY(-2px);
}

.vtt-footer__commerce {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 55px;
    padding: 20px 0;
    border-top: 1px solid var(--vtt-line);
    border-bottom: 1px solid var(--vtt-line);
}

.vtt-payment-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.vtt-payment-badges > span:not(.vtt-payment-badges__label) {
    display: inline-flex;
    min-height: 26px;
    align-items: center;
    padding: 0 8px;
    border: 1px solid var(--vtt-line);
    border-radius: 6px;
    background: var(--vtt-surface-alt);
    color: var(--vtt-navy);
    font-size: 9px;
    font-weight: 1000;
    text-transform: uppercase;
}

html[data-vtt-theme="dark"] .vtt-payment-badges > span:not(.vtt-payment-badges__label) {
    color: #fff;
}

.vtt-payment-badges__label {
    margin-right: 5px;
    color: var(--vtt-muted);
    font-size: 10px;
    font-weight: 800;
}

.vtt-security-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--vtt-muted);
    font-size: 10px;
    font-weight: 800;
}

.vtt-security-badge .vtt-icon {
    color: var(--vtt-success);
}

.vtt-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 22px;
    color: var(--vtt-muted);
    font-size: 10px;
}

.vtt-footer__bottom nav {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.vtt-footer__bottom a {
    color: var(--vtt-muted) !important;
    text-decoration: none !important;
}

.vtt-footer__bottom a:hover {
    color: var(--vtt-red) !important;
}

/* Floating tools */
.vtt-floating-tools {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 990;
    display: flex;
    align-items: center;
    gap: 9px;
}

.vtt-chat {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    gap: 8px;
    padding: 0 15px 0 7px;
    border: 2px solid var(--vtt-navy);
    border-radius: 999px;
    background: var(--vtt-surface);
    color: var(--vtt-navy) !important;
    font-size: 12px;
    font-weight: 900;
    text-decoration: none !important;
    box-shadow: var(--vtt-shadow-sm);
}

html[data-vtt-theme="dark"] .vtt-chat {
    border-color: #fff;
    color: #fff !important;
}

.vtt-chat__mark {
    display: grid;
    width: 31px;
    height: 31px;
    place-items: center;
    border: 2px solid var(--vtt-gold);
    border-radius: 50%;
    background: var(--vtt-red);
    color: #fff;
    font-family: Georgia, serif;
    font-weight: 900;
}

.vtt-back-top {
    display: grid;
    width: 45px;
    height: 45px;
    place-items: center;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--vtt-red);
    color: #fff;
    box-shadow: 0 12px 30px rgba(215, 25, 32, .27);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity var(--vtt-transition), transform var(--vtt-transition);
}

.vtt-back-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Shared feedback/components from other VirTTunity plugins */
.vtt-panel {
    padding: 28px;
    border: 1px solid var(--vtt-line);
    border-radius: 20px;
    background: var(--vtt-surface);
    box-shadow: var(--vtt-shadow-sm);
}

.vtt-panel--center {
    max-width: 680px;
    margin: 60px auto;
    text-align: center;
}

.vtt-notice {
    margin: 16px 0;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 750;
}

.vtt-notice--success { background: #e8f8ef; color: #0b673e; }
.vtt-notice--error { background: #ffe9ea; color: #9a1118; }
.vtt-notice--warning { background: #fff6d8; color: #705600; }

.vtt-empty {
    padding: 52px 28px;
    border: 1px dashed var(--vtt-line);
    border-radius: 20px;
    background: var(--vtt-surface);
    text-align: center;
}

.vtt-empty h3 {
    margin-top: 0;
    color: var(--vtt-ink);
}

.vtt-empty p {
    margin-bottom: 0;
    color: var(--vtt-muted);
}

/* Reveal effects */
.vtt-js [data-vtt-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 650ms ease, transform 650ms ease;
}

[data-vtt-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Focus */
.vtt-ui-v3 :focus-visible {
    outline: 3px solid rgba(215, 25, 32, .33);
    outline-offset: 3px;
}

/* Animations */
@keyframes vtt-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 243, 189, .65); }
    70% { box-shadow: 0 0 0 8px rgba(255, 243, 189, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 243, 189, 0); }
}

@keyframes vtt-shine {
    0%, 68% { transform: translateX(-60%) rotate(8deg); }
    85%, 100% { transform: translateX(65%) rotate(8deg); }
}

@keyframes vtt-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes vtt-scroll {
    0% { opacity: 0; transform: translateY(0); }
    40% { opacity: 1; }
    100% { opacity: 0; transform: translateY(14px); }
}

/* Tablet */
@media (max-width: 1180px) {
    .vtt-brand__wordmark em {
        display: none;
    }

    .vtt-nav__link,
    .vtt-nav__dropdown-trigger > a {
        padding-inline: 8px;
        font-size: 12px;
    }

    .vtt-event-grid,
    .vtt-merch-showcase {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vtt-hero__grid {
        grid-template-columns: 1fr 460px;
        gap: 45px;
    }

    .vtt-hero-status--private {
        right: 0;
    }
}

@media (max-width: 980px) {
    body.virttunity-site.admin-bar .vtt-header-wrap {
        top: 46px;
    }

    .vtt-header {
        border-radius: 24px;
    }

    .vtt-header__inner {
        min-height: 62px;
        padding: 7px 12px 7px 15px;
    }

    .vtt-header__account {
        display: none;
    }

    .vtt-menu-toggle {
        display: block;
        width: 42px;
        height: 42px;
        padding: 10px;
        border: 0;
        border-radius: 12px;
        background: var(--vtt-navy);
        cursor: pointer;
    }

    .vtt-menu-toggle > span:not(.screen-reader-text) {
        display: block;
        width: 22px;
        height: 2px;
        margin: 4px auto;
        border-radius: 99px;
        background: #fff;
        transition: transform var(--vtt-transition), opacity var(--vtt-transition);
    }

    .vtt-menu-toggle[aria-expanded="true"] > span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .vtt-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
        opacity: 0;
    }

    .vtt-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    /*
     * The mobile drawer lives inside .vtt-header-wrap, which creates a stacking
     * context.  Elevate the whole header while the drawer is open so the
     * backdrop cannot blur/dim the drawer itself.  The values also sit above
     * WordPress' frontend admin toolbar (z-index: 99999).
     */
    body.vtt-menu-open .vtt-header-wrap {
        z-index: 100002;
    }

    body.virttunity-site.admin-bar.vtt-menu-open .vtt-header-wrap {
        top: 0;
    }

    .vtt-nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 100003;
        width: min(410px, calc(100vw - 35px));
        height: 100dvh;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        overflow-y: auto;
        padding: 18px;
        background: var(--vtt-surface);
        box-shadow: -25px 0 70px rgba(16, 29, 61, .25);
        transform: translateX(110%);
        transition: transform 300ms ease;
    }

    .vtt-nav.is-open {
        transform: translateX(0);
    }

    .vtt-nav__mobile-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--vtt-line);
    }

    .vtt-nav__mobile-close {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        padding: 0;
        border: 1px solid var(--vtt-line);
        border-radius: 12px;
        background: var(--vtt-surface-alt);
        color: var(--vtt-ink);
    }

    .vtt-nav__links {
        display: block;
        padding: 16px 0;
    }

    .vtt-nav__link,
    .vtt-nav__dropdown-trigger > a {
        min-height: 48px;
        padding: 0 8px;
        font-size: 15px;
    }

    .vtt-nav__link::after,
    .vtt-nav__item::after {
        display: none;
    }

    .vtt-nav__dropdown-trigger {
        justify-content: space-between;
    }

    .vtt-nav__dropdown-trigger > a {
        flex: 1;
    }

    .vtt-nav__dropdown-trigger button {
        width: 44px;
        height: 44px;
        border: 1px solid var(--vtt-line);
        border-radius: 11px;
        background: var(--vtt-surface-alt);
    }

    .vtt-nav__dropdown {
        position: static;
        width: auto;
        display: none;
        padding: 6px;
        border: 0;
        border-radius: 12px;
        background: var(--vtt-surface-alt);
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .vtt-nav__dropdown::before {
        display: none;
    }

    .vtt-nav__item.is-open .vtt-nav__dropdown {
        display: block;
        transform: none;
    }

    .vtt-nav__mobile-actions {
        display: block;
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid var(--vtt-line);
    }

    .vtt-nav__mobile-actions .vtt-account-button {
        width: 100%;
    }

    .vtt-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 100001;
        display: block;
        background: rgba(8, 13, 23, .55);
        opacity: 0;
        pointer-events: none;
        transition: opacity 300ms ease;
        backdrop-filter: blur(3px);
    }

    .vtt-nav-backdrop.is-visible {
        opacity: 1;
        pointer-events: auto;
    }

    /*
     * Logged-in administrators see WordPress' black frontend toolbar. Hide it
     * only while the VirTTunity drawer is open, then restore it immediately
     * when the drawer closes. Public visitors are unaffected.
     */
    html.vtt-menu-open {
        margin-top: 0 !important;
    }

    body.vtt-menu-open #wpadminbar {
        display: none !important;
    }

    .vtt-hero {
        padding-top: 85px;
    }

    .vtt-hero__grid,
    .vtt-journey-layout,
    .vtt-connect-card {
        grid-template-columns: 1fr;
    }

    .vtt-hero__grid {
        gap: 40px;
    }

    .vtt-hero__copy {
        max-width: 800px;
    }

    .vtt-hero__visual {
        min-height: 520px;
    }

    .vtt-section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .vtt-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vtt-journey-layout {
        gap: 45px;
    }

    .vtt-connect-card {
        gap: 45px;
    }

    .vtt-footer__main {
        grid-template-columns: 1.4fr 1fr 1fr;
    }

    .vtt-footer__contact {
        grid-column: 2 / 4;
    }
}

/* Mobile */
@media (max-width: 680px) {
    .vtt-shell {
        width: min(100% - 30px, var(--vtt-shell));
    }

    .vtt-announcement__inner {
        justify-content: flex-start;
        padding-left: 4px;
        text-align: left;
    }

    .vtt-announcement__inner > a {
        display: none;
    }

    .vtt-header-wrap {
        padding: 9px 0;
    }

    .vtt-header {
        width: calc(100% - 20px);
    }

    .vtt-brand__mark,
    .vtt-brand__logo {
        width: 40px;
        height: 40px;
    }

    .vtt-brand__wordmark strong {
        font-size: 17px;
    }

    .vtt-header__actions {
        gap: 2px;
    }

    .vtt-cart-link {
        display: none;
    }

    .vtt-hero {
        min-height: auto;
        padding: 65px 0 85px;
    }

    .vtt-hero h1 {
        font-size: clamp(44px, 14vw, 65px);
    }

    .vtt-hero__copy > p {
        font-size: 16px;
    }

    .vtt-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vtt-actions .vtt-button {
        width: 100%;
    }

    .vtt-hero__trust {
        display: grid;
        gap: 12px;
    }

    .vtt-hero__visual {
        min-height: 410px;
    }

    .vtt-hero-card {
        width: 94%;
        border-radius: 34px;
    }

    .vtt-hero-emblem {
        width: 185px;
        height: 185px;
        border-width: 9px;
        box-shadow: 0 0 0 5px rgba(215, 25, 32, .92), 0 0 0 8px var(--vtt-gold), 0 25px 50px rgba(16, 29, 61, .24);
    }

    .vtt-hero-emblem__letter {
        font-size: 82px;
    }

    .vtt-hero-emblem small {
        bottom: 27px;
        font-size: 8px;
    }

    .vtt-hero-chip {
        width: 44px;
        height: 44px;
        border-radius: 13px;
    }

    .vtt-hero-status {
        min-width: 205px;
        padding: 10px;
    }

    .vtt-hero-status--registration {
        left: 0;
        bottom: 0;
    }

    .vtt-hero-status--private {
        top: 0;
        right: 0;
    }

    .vtt-hero__scroll {
        display: none;
    }

    .vtt-section {
        padding: 76px 0;
    }

    .vtt-section-heading h2,
    .vtt-journey-layout h2,
    .vtt-connect-card h2,
    .vtt-final-cta h2,
    .vtt-page-hero h1 {
        font-size: clamp(36px, 11vw, 52px);
    }

    .vtt-event-grid,
    .vtt-merch-showcase,
    .vtt-steps,
    .vtt-journey-panel,
    .vtt-gallery-preview {
        grid-template-columns: 1fr;
    }

    .vtt-merch-showcase article {
        min-height: 320px;
    }

    .vtt-merch-showcase__art {
        min-height: 220px;
    }

    .vtt-connect-card {
        padding: 34px 25px;
        border-radius: 25px;
    }

    .vtt-connect-orbit {
        width: 270px;
    }

    .vtt-gallery-preview article {
        min-height: 220px;
    }

    .vtt-final-cta {
        padding: 90px 0;
    }

    .vtt-footer {
        padding-top: 60px;
    }

    .vtt-footer__main {
        grid-template-columns: 1fr;
    }

    .vtt-footer__contact {
        grid-column: auto;
    }

    .vtt-footer__commerce,
    .vtt-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .vtt-floating-tools {
        right: 12px;
        bottom: 12px;
    }

    .vtt-chat > span:last-child {
        display: none;
    }

    .vtt-chat {
        width: 45px;
        padding: 0;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }

    .vtt-js [data-vtt-reveal] {
        opacity: 1;
        transform: none;
    }
}

body.virttunity-site section[id] {
    scroll-margin-top: 112px;
}
