/* #region Configuration */

:root {
    /* Fonts */
    --font-sans: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', serif;
    --font-mono: 'Space Grotesk', sans-serif;
    /* Base colors */
    --color-black: #050505;
    --color-white: #f5f5f5;
    /* Theme backgrounds */
    --bg-deep: #030303;
    --bg-panel: #0a0a0a;
    --bg-section-050: #050505;
    --bg-section-040: #040404;
    --bg-surface-111: #111;
    --bg-surface-080: #080808;
    --bg-surface-0c0c0c: #0c0c0c;
    --bg-header: rgba(3, 3, 3, 0.9);
    --bg-header-fallback: rgba(3, 3, 3, 0.98);
    --bg-nav-sticky: rgba(3, 3, 3, 0.95);
    --bg-modal-overlay: rgba(0, 0, 0, 0.85);
    --bg-modal-overlay-fallback: rgba(0, 0, 0, 0.92);
    /* Borders */
    --border: rgba(255, 255, 255, 0.08);
    --border-222: #222;
    --border-333: #333;
    /* Text */
    --text-main: #e0e0e0;
    --text-muted: #777;
    --text-999: #999;
    --text-888: #888;
    --text-666: #666;
    --text-555: #555;
    --text-444: #444;
    --text-333: #333;
    --text-ccc: #ccc;
    --text-ddd: #ddd;
    /* Gold palette */
    --gold-solid: #e7d4aa;
    --gold-dim: #a08957;
    --gold-text: linear-gradient(135deg, #997B2F, var(--gold-solid), var(--color-white), var(--gold-solid), #997B2F);
    --gold-shimmer: linear-gradient(90deg, var(--gold-solid), var(--gold-dim), var(--gold-solid));
    /* CTA gold */
    --cta-gradient: linear-gradient(to bottom, var(--gold-solid), var(--gold-dim));
    --cta-border: var(--gold-solid);
    --cta-shadow: rgba(191, 149, 63, 0.6);
    /* Alerts / error */
    --alert-red: #8e1c1c;
    --error-bg: rgba(142, 28, 28, 0.15);
    --error-input-bg: rgba(142, 28, 28, 0.05);
    --sold-red: #cc3333;
    --laser-red: #ff0000;
    /* Effects & shadows */
    --shadow-card: 0 25px 60px rgba(0, 0, 0, 0.6);
    --shadow-modal: 0 0 50px rgba(0, 0, 0, 0.8);
    --shadow-rentbar: 0 0 40px rgba(212, 175, 55, 0.3);
    --shadow-gold-soft: 0 0 50px rgba(180, 138, 56, 0.2);
    --shadow-gold-avatar: 0 0 20px rgba(212, 175, 55, 0.5);
    --shadow-alert: 0 0 20px rgba(142, 28, 28, 0.4);
    --shadow-alert-text: 0 0 20px rgba(142, 28, 28, 0.5);
    --shadow-white-soft: 0 0 10px rgba(255, 255, 255, 0.5);
    --shadow-gold-text: 0 0 15px rgba(212, 175, 55, 0.6);
    /* Misc */
    --radius-xs: 0;
    --radius-md: 0;
    --blur-lg: 15px;
    --noise-opacity: 0.03;
    --vip-hover-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
    --vip-border-active: rgba(212, 175, 55, 0.3);
    --vip-bg-active: rgba(212, 175, 55, 0.05);
    --mr-card-bg: rgba(255, 255, 255, 0.02);
    --list-divider: rgba(255, 255, 255, 0.03);
    --btn-shine: rgba(255, 255, 255, 0.4);
    --scarcity-inset-shadow: inset 0 0 100px rgba(0, 0, 0, 0.9);
}

/* #endregion */
/* #region Basic */

html {
    scroll-behavior: smooth;
}

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

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    opacity: 0;
    animation: pageLoad 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

    body.no-scroll {
        overflow: hidden;
    }

@keyframes pageLoad {
    to {
        opacity: 1;
    }
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: -1;
    contain: strict;
}

@media (prefers-reduced-motion: reduce) {
    body::before {
        background-image: none !important;
    }
}

h1, h2, .serif {
    font-family: var(--font-serif);
}

/* #endregion */
/* #region Utilities */

.mono {
    font-family: var(--font-mono);
}

.gold-text {
    background: var(--gold-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* #endregion */
/* #region Header */

header {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-header);
    backdrop-filter: blur(var(--blur-lg));
    z-index: 100;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 1.3rem;
    color: var(--color-white);
}

    .brand a {
        color: var(--color-white);
        text-decoration: none;
    }

        .brand a img {
            height: 28px;
            vertical-align: middle;
            margin-right: 10px;
            margin-top: -6px;
            margin-bottom: -2px;
        }

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 6px;
    border: 1px solid transparent;
    background: transparent;
    box-shadow: none;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    user-select: none;
    transition: color 0.2s ease;
}

    .lang-switch a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        padding: 0 6px;
        text-decoration: none;
        color: var(--text-666);
        border-bottom: 1px solid transparent;
        background: transparent;
        transition: color 0.2s ease, border-color 0.2s ease;
    }

        .lang-switch a:hover {
            color: var(--color-white);
            border-bottom-color: rgba(231, 212, 170, 0.35);
        }

    .lang-switch span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 24px;
        padding: 0 6px;
        color: var(--gold-solid);
        font-weight: 800;
        cursor: default;
        background: transparent;
        border-bottom: 1px solid rgba(231, 212, 170, 0.6);
        text-shadow: 0 0 12px rgba(212, 175, 55, 0.18);
    }

    .lang-switch a:focus-visible {
        outline: none;
        border-bottom-color: rgba(231, 212, 170, 0.7);
    }

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg-header-fallback);
    }

    .modal-overlay {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: var(--bg-modal-overlay-fallback);
    }
}

/* #endregion */
/* #region Animations */

.reveal-group {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

    .reveal-group.active {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes pulseGlow {
    0% {
        opacity: 0.8;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.8;
    }
}

.alive-text {
    animation: pulseGlow 4s infinite ease-in-out;
}

@keyframes shimmerGold {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.shimmer-text {
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: shimmerGold 5s linear infinite;
    font-weight: 700;
}

@keyframes fadeRow {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-row {
    animation: fadeRow 0.4s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* #endregion */
/* #region Hero */

.hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(3.5rem, 6vw, 5.5rem);
    line-height: 1.05;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    font-weight: 500;
}

.hero-text p {
    color: var(--text-muted);
    font-size: 1.15rem;
    margin-bottom: 40px;
    max-width: 500px;
    font-weight: 300;
    line-height: 1.6;
}

.cta-btn {
    color: var(--gold-solid);
    padding: 18px 45px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: box-shadow 0.3s, transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    border: 1.5px solid var(--cta-border);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

    .cta-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, var(--btn-shine), transparent);
        transform: translateX(-100%);
        animation: shineBtn 3s infinite;
    }

@keyframes shineBtn {
    0% {
        transform: translateX(-100%);
    }

    20% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.cta-btn:hover {
    box-shadow: 0 0 30px var(--cta-shadow);
    transform: translateY(-2px);
}

/* #endregion */
/* #region Card */

.card-stage {
    perspective: 1200px;
    width: 100%;
    height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.identity-card {
    width: 100%;
    max-width: 450px;
    height: 250px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
}

    .identity-card.flipped {
        transform: rotateY(180deg);
    }

.card-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-222);
}

.face-amateur {
    background: var(--bg-surface-111);
    transform: rotateY(0deg);
}

    .face-amateur .c-email {
        text-decoration: line-through;
        color: var(--text-555);
        font-size: 0.8rem;
    }

.face-pro {
    background: var(--color-black);
    border: 1px solid var(--gold-solid);
    transform: rotateY(180deg);
    box-shadow: var(--shadow-gold-soft);
}

.c-header {
    display: flex;
    gap: 20px;
    align-items: center;
}

.c-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 1.1rem;
}

.face-amateur .c-avatar {
    background: var(--border-222);
    color: var(--text-555);
}

.face-pro .c-avatar {
    background: var(--gold-solid);
    color: var(--color-black);
    box-shadow: var(--shadow-gold-avatar);
}

.c-name {
    font-size: 1.4rem;
    font-weight: 500;
    font-family: var(--font-serif);
}

.c-role {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 5px;
    font-family: var(--font-mono);
}

.face-pro .c-role,
.face-pro .c-email {
    color: var(--gold-solid);
    font-weight: 500;
}

.status-timeline {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 450px;
    margin-top: 40px;
    gap: 20px;
}

.st-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-444);
    transition: color 0.3s, text-shadow 0.3s, transform 0.3s;
}

    .st-label.active-white {
        color: var(--white, #f5f5f5);
        text-shadow: var(--shadow-white-soft);
        transform: scale(1.05);
    }

    .st-label.active-gold {
        color: var(--gold-solid);
        text-shadow: var(--shadow-gold-text);
        transform: scale(1.05);
    }

.st-bar-bg {
    flex-grow: 1;
    height: 1px;
    background: var(--border-222);
    position: relative;
}

.st-bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
    background: var(--gold-solid);
    transition: width 3s linear;
    box-shadow: 0 0 10px var(--gold-solid);
}

    .st-bar-fill.full {
        width: 100%;
    }

/* #endregion */
/* #region Strategy */

.strategy {
    padding: 120px 0;
    background: var(--bg-section-050);
}

.section-title {
    text-align: center;
    margin-bottom: 100px;
}

    .section-title h2 {
        font-family: var(--font-serif);
        font-size: 3.5rem;
        font-weight: 400;
        color: var(--color-white);
        margin: 0;
        line-height: 1.1;
    }

        .section-title h2 span {
            font-weight: 500;
            font-style: italic;
        }

    .section-title p {
        font-family: var(--font-mono);
        font-size: 0.8rem;
        font-weight: 700;
        color: var(--gold-solid);
        text-transform: uppercase;
        letter-spacing: 3px;
        display: block;
        margin-bottom: 15px;
    }

.strat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.strat-card {
    background: var(--bg-surface-080);
    border: 1px solid var(--border-222);
    padding: 40px;
    transition: border-color 0.4s, transform 0.4s, background 0.4s;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.strategy.active .strat-card {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.strat-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-10px);
    background: var(--bg-surface-0c0c0c);
}

.strat-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: var(--gold-solid);
}

.strat-icon-svg {
    width: 36px;
    height: 36px;
    display: block;
    stroke: var(--gold-solid);
    fill: none;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.98;
}

.strat-head {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--white, #f5f5f5);
}

.strat-desc {
    font-size: 0.95rem;
    color: var(--text-888);
    line-height: 1.7;
}

    .strat-desc b {
        color: var(--text-ddd);
        font-weight: 500;
    }

/* #endregion */
/* #region Scarcity */

.scarcity-banner {
    background: var(--color-black);
    padding: 120px 0 110px 0;
    border-top: 1px solid var(--border-222);
    border-bottom: 1px solid var(--border-222);
    text-align: center;
    box-shadow: var(--scarcity-inset-shadow);
    position: relative;
    z-index: 10;
}

.scarcity-box {
    display: inline-block;
    padding: 30px 70px;
    position: relative;
    background: rgba(10, 0, 0, 0.9);
    color: var(--white, #f5f5f5);
}

    .scarcity-box::before {
        content: '';
        position: absolute;
        inset: 0;
        border: 1px solid var(--alert-red);
        box-shadow: var(--shadow-alert);
    }

.laser-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.laser-line {
    position: absolute;
    background: var(--laser-red);
    box-shadow: 0 0 10px var(--laser-red);
    z-index: 20;
}

.l-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateX(-100%);
    animation: laserH 4s infinite linear;
}

.l-right {
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    transform: translateY(-100%);
    animation: laserV 4s infinite linear 1s;
}

.l-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateX(100%);
    animation: laserH-rev 4s infinite linear 2s;
}

.l-left {
    bottom: 0;
    left: 0;
    width: 2px;
    height: 100%;
    transform: translateY(100%);
    animation: laserV-rev 4s infinite linear 3s;
}

@keyframes laserH {
    0% {
        transform: translateX(-100%);
    }

    20% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

@keyframes laserV {
    0% {
        transform: translateY(-100%);
    }

    20% {
        transform: translateY(100%);
    }

    100% {
        transform: translateY(100%);
    }
}

@keyframes laserH-rev {
    0% {
        transform: translateX(100%);
    }

    20% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes laserV-rev {
    0% {
        transform: translateY(100%);
    }

    20% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(-100%);
    }
}

.scarcity-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-black);
    padding: 2px 15px;
    color: var(--alert-red);
    font-size: 0.75rem;
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    z-index: 30;
    white-space: nowrap;
}

.scarcity-text {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--white, #f5f5f5);
    line-height: 1.2;
    text-shadow: var(--shadow-alert-text);
    position: relative;
    z-index: 25;
}

.scarcity-sub {
    color: var(--text-888);
    font-size: 1rem;
    margin-top: 50px;
    margin-inline: auto;
}

    .scarcity-sub span.scarcity-white {
        color: var(--white, #f5f5f5);
    }

/* #endregion */
/* #region Chart */

.chart-section {
    padding: 100px 0;
    border-bottom: 1px solid var(--border);
    background: var(--bg-section-040);
}

    .chart-section h2 {
        font-family: var(--font-serif);
        font-size: 3.5rem;
        font-weight: 400;
        color: var(--color-white);
        margin: 0 0 60px 0;
        line-height: 1.1;
    }

        .chart-section h2 span {
            font-weight: 500;
            font-style: italic;
        }

.chart-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .chart-grid p {
        color: var(--text-666);
        font-size: 1.1rem;
    }

.chart-flex {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 80px;
    height: 350px;
}

.bar-wrap {
    text-align: center;
    width: 100px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bar {
    width: 100%;
    transition: height 1.5s ease;
    height: 0;
    margin-top: 10px;
    margin-bottom: 20px;
}

.bar-buy {
    background: var(--border-222);
}

.bar-rent {
    background: var(--gold-text);
    box-shadow: var(--shadow-rentbar);
}

.chart-section.active .bar-buy {
    height: 100%;
}

.chart-section.active .bar-rent {
    height: 3%;
}

.val {
    font-family: var(--font-mono);
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    display: block;
    opacity: 0;
    transition: opacity 1s;
}

.chart-section.active .val {
    opacity: 1;
}

.mr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 100px;
    margin-bottom: 20px;
}

.mr-card {
    border: 1px solid var(--border-222);
    padding: 25px;
    background: var(--mr-card-bg);
}

.mr-domain {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--white, #f5f5f5);
    display: block;
    margin-bottom: 5px;
}

.mr-price {
    font-family: var(--font-mono);
    font-size: 1.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    display: block;
}

.mr-sold {
    color: var(--sold-red);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    margin-top: 10px;
    display: block;
}

.mr-source {
    font-size: 0.7rem;
    color: var(--text-444);
    margin-top: 15px;
    display: block;
}

/* #endregion */
/* #region Order */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-modal-overlay);
    backdrop-filter: blur(var(--blur-lg));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
}

    .modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

.modal-card {
    background: var(--bg-section-050);
    border: 1px solid var(--gold-dim);
    padding: 30px 50px 40px;
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-modal);
    transform: translateY(50px);
    transition: transform 0.4s;
}

.modal-overlay.open .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: var(--text-555);
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    transition: color 0.3s;
}

    .modal-close:hover {
        color: var(--white, #f5f5f5);
    }

.m-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white, #f5f5f5);
    margin-bottom: 8px;
    margin-top: 0;
    position: relative;
    display: block;
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
}

    .m-title > span {
        display: inline-block;
        max-width: 100%;
    }

    .m-title::after {
        content: "...";
        position: absolute;
        right: 0;
        bottom: 0;
        padding-left: 10px;
        background: var(--bg-section-050);
        color: var(--gold-solid);
        display: none;
    }

    .m-title.is-truncated::after {
        display: inline;
    }

.m-sub {
    color: var(--text-666);
    font-size: 0.8rem;
    margin-bottom: 35px;
    font-family: var(--font-mono);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
    position: relative;
}

.form-input {
    width: 100%;
    background: var(--bg-surface-111);
    border: 1px solid var(--border-333);
    padding: 15px;
    color: var(--white, #f5f5f5);
    font-family: var(--font-mono);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

    .form-input:focus {
        border-color: var(--gold-solid);
    }

    .form-input.error {
        border-color: var(--alert-red);
        background: var(--error-input-bg);
    }

.form-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.75rem;
    color: var(--text-666);
    cursor: pointer;
}

    .form-check input {
        margin-top: 3px;
        accent-color: var(--gold-solid);
    }

    .form-check.error-text {
        color: var(--alert-red);
    }

    .form-check a {
        color: var(--text-666);
    }

.error-msg {
    color: var(--alert-red);
    font-size: 0.75rem;
    margin-top: 5px;
    font-family: var(--font-mono);
    display: none;
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.modal-btn {
    width: 100%;
    color: var(--gold-solid);
    background: transparent;
    padding: 18px 45px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--cta-border);
    position: relative;
    overflow: hidden;
    margin-top: 20px;
    cursor: pointer;
    transition: box-shadow 0.3s, transform 0.3s;
}

    .modal-btn:hover {
        box-shadow: 0 0 30px var(--cta-shadow);
        transform: translateY(-2px);
    }

.success-content {
    display: none;
    text-align: center;
}

    .success-content p {
        color: var(--text-888);
        font-size: 0.9rem;
        line-height: 1.6;
    }

.checkmark-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid var(--gold-solid);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-solid);
    font-size: 2.5rem;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-close-success {
    background: transparent;
    border: 1px solid var(--border-333);
    color: var(--text-666);
    margin-top: 30px;
    transition: border-color 0.3s, color 0.3s;
}

    .btn-close-success:hover {
        border-color: var(--white, #f5f5f5);
        color: var(--white, #f5f5f5);
        background: transparent;
    }

/* #endregion */
/* #region Contact */

.concierge-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-222);
    text-align: center;
    background: linear-gradient(to bottom, var(--bg-deep), var(--bg-surface-080));
}

.concierge-title {
    color: var(--text-666);
    font-family: var(--font-mono);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin-bottom: 20px;
}

.concierge-email {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--white, #f5f5f5);
    text-decoration: none;
    border-bottom: 1px solid var(--border-333);
    transition: color 0.3s, border-color 0.3s;
}

    .concierge-email:hover {
        color: var(--gold-solid);
        border-color: var(--gold-solid);
    }

/* #endregion */
/* #region Footer */

footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-222);
}

.footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.f-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
}

    .f-links a {
        display: block;
        color: var(--text-666);
        text-decoration: none;
        font-size: 0.8rem;
        transition: color 0.3s, transform 0.3s;
    }

        .f-links a:hover {
            color: var(--gold-solid);
            transform: translateY(-2px);
        }

.copy {
    text-align: center;
    color: var(--text-333);
    font-size: 0.75rem;
    margin-top: 20px;
}

.footer-link {
    color: var(--text-444);
    text-decoration: none;
    transition: color 0.3s;
}

    .footer-link:hover {
        color: var(--gold-dim);
    }

/* #endregion */
/* #region Portfolio */

#portfolio {
    background-color: var(--bg-deep);
    color: var(--text-main);
    width: 100%;
    position: relative;
    z-index: 10;
    line-height: 1.5;
}

    #portfolio a {
        text-decoration: none;
        color: inherit;
        cursor: pointer;
        transition: all 0.2s ease;
    }

.p-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.p-nav-wrapper {
    position: sticky;
    top: 70px;
    z-index: 900;
    background: var(--bg-nav-sticky);
    backdrop-filter: blur(var(--blur-lg));
    -webkit-backdrop-filter: blur(var(--blur-lg));
    border-bottom: 1px solid var(--border);
    padding: 15px 0;
}

.p-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.p-nav-link {
    font-family: var(--font-sans);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    padding: 8px 16px;
    border: 1px solid transparent;
    border-radius: var(--radius-xs);
    white-space: nowrap;
}

    .p-nav-link:hover,
    .p-nav-link.active {
        color: var(--gold-solid);
        border-color: var(--vip-border-active);
        background: var(--vip-bg-active);
    }

    .p-nav-link:focus,
    .p-nav-link:focus-visible {
        outline: none;
    }

.p-section {
    padding: 120px 0;
    border-bottom: 1px solid var(--border);
}

    .p-section:nth-child(even) {
        background-color: var(--bg-panel);
    }

.p-header {
    text-align: center;
    margin-bottom: 100px;
    opacity: 0;
    transition: opacity 1s ease-out;
}

    .p-header.visible {
        opacity: 1;
    }

@media (max-width: 900px) {
    .p-header {
        opacity: 1;
    }
}

.p-subtitle {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold-solid);
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 15px;
}

.p-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--color-white);
    margin: 0;
    line-height: 1.1;
}

    .p-title span {
        font-weight: 500;
        font-style: italic;
    }

/* #endregion */
/* #region Portfolio – VIP Cards */

.vip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.vip-card {
    background: linear-gradient(145deg, #121212, #080808);
    border: 1px solid var(--border);
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    min-width: 0;
}

    .vip-card:hover {
        transform: translateY(-5px) scale(1.01);
        border-color: var(--gold-solid);
        box-shadow: var(--vip-hover-shadow);
    }

.vip-domain {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.vip-desc {
    font-size: 0.9rem;
    color: var(--text-ccc);
    letter-spacing: 0.15px;
    min-width: 0;
    width: 100%;
    text-align: center;
    line-height: 1.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.vip-price {
    color: var(--text-555);
    font-size: 1.0rem;
    margin-top: 15px;
    font-family: var(--font-mono);
    font-weight: 600;
}

    .vip-price span {
        font-size: 0.7rem;
        font-weight: 400;
    }

.animate-in .vip-card {
    animation: fadeUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

    .animate-in .vip-card:nth-child(1) {
        animation-delay: 0.05s;
    }

    .animate-in .vip-card:nth-child(2) {
        animation-delay: 0.1s;
    }

    .animate-in .vip-card:nth-child(3) {
        animation-delay: 0.15s;
    }

    .animate-in .vip-card:nth-child(4) {
        animation-delay: 0.2s;
    }

    .animate-in .vip-card:nth-child(5) {
        animation-delay: 0.25s;
    }

    .animate-in .vip-card:nth-child(6) {
        animation-delay: 0.3s;
    }

/* #endregion */
/* #region Portfolio – Domain Lists */

.list-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    padding-top: 20px;
}

.list-group {
    break-inside: avoid;
    margin-bottom: 50px;
}

.list-col {
    display: flex;
    flex-direction: column;
}

.col-header {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-888);
}

.list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--list-divider);
    transition: border-color 0.2s;
}

    .list-item:hover {
        border-bottom-color: var(--gold-solid);
    }

.li-list-item {
    margin-top: 35px;
}

.li-domain-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.li-domain {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-ccc);
    transition: color 0.2s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-item:hover .li-domain {
    color: var(--gold-solid);
}

.li-desc {
    font-size: 0.8rem;
    color: var(--text-ccc);
    letter-spacing: 0.15px;
    margin-top: 5px;
    line-height: 1.4rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.li-price {
    color: var(--text-555);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-mono);
}

.li-vat {
    font-size: 0.7rem;
    font-family: var(--font-mono);
    color: var(--text-555);
}

.animate-in .list-col,
.animate-in .list-group {
    animation: fadeUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* #endregion */
/* #region Responsive */

@media (max-width: 1024px) {
    .vip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .list-grid {
        grid-template-columns: 1fr;
        grid-row-gap: 60px;
        padding-top: 20px;
    }

    .mr-grid {
        grid-template-columns: 1fr;
    }

    .p-title {
        font-size: 2.5rem;
    }

    .p-nav-wrapper {
        top: 60px;
        overflow-x: auto;
    }

    .p-nav {
        justify-content: flex-start;
        padding-left: 20px;
        white-space: nowrap;
        gap: 0;
    }

    .p-nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 80px;
    }

    .hero-grid,
    .chart-grid,
    .strat-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        margin-bottom: 40px;
    }

        .section-title h2 {
            font-size: 3rem;
            line-height: 1.2;
        }

    .hero-text h1 {
        font-size: 3.5rem;
        line-height: 1.15;
    }

    .concierge-email {
        font-size: 1.8rem;
    }

    .modal-card {
        padding: 30px 20px;
        width: 90%;
    }

    .m-title {
        font-size: 1.5rem;
    }

    .f-links {
        gap: 8px;
        line-height: 1.2;
    }

        .f-links a {
            font-size: 0.75rem;
            padding: 2px 5px;
        }

    .strat-icon-svg {
        margin: 0 auto;
    }

    .scarcity-text {
        font-size: 2.0rem;
    }
}

@media (max-width: 600px) {
    .vip-grid {
        grid-template-columns: 1fr;
    }

    .p-section {
        padding: 100px 0;
    }
}

/* #endregion */
/* #region Accessibility */

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

    .alive-text,
    .shimmer-text,
    .fade-in-row,
    .cta-btn::after,
    .laser-line {
        animation: none !important;
        transition: none !important;
    }
}

/* #endregion */

.domain-pills-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
    margin-bottom: 25px;
}

.domain-pill-hitbox {
    display: inline-flex;
    position: relative;
}

.domain-pill {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, #121212, #080808);
    border: 1px solid var(--border);
    padding: 7px 20px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    will-change: transform;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.2s, border-color 0.2s;
    user-select: none;
    z-index: 1;
}

#portfolio .domain-pill-hitbox:hover .domain-pill {
    transform: translateY(-5px) scale(1.01);
    border-color: var(--gold-solid);
    box-shadow: var(--vip-hover-shadow);
    z-index: 2;
}

.pill-name, .pill-price-block {
    position: relative;
    z-index: 1;
}

.pill-name {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-ccc);
    transition: color 0.2s;
}

.domain-pill-hitbox:hover .pill-name {
    color: var(--gold-solid);
}

.pill-price-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    line-height: 1.0;
    border-left: 1px solid rgba(255,255,255,0.05);
    padding-left: 15px;
}

.pill-price {
    font-family: var(--font-mono);
    color: var(--text-555);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s;
}

.pill-vat {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    color: var(--text-444);
    white-space: nowrap;
    letter-spacing: 0;
    opacity: 0.8;
}

.domain-pill-hitbox:hover .pill-price {
    color: var(--text-888);
}

.domain-pill-hitbox:hover .pill-vat {
    color: var(--text-666);
}

.mega-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 250px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--gold-dim);
    box-shadow: var(--shadow-gold-soft), 0 15px 40px rgba(0,0,0,0.9);
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    text-align: center;
}

    .mega-tooltip::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        border-width: 8px;
        border-style: solid;
        border-color: var(--gold-dim) transparent transparent transparent;
    }

#portfolio .domain-pill-hitbox:hover .mega-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-tooltip-desc {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--text-ddd);
    font-weight: 300;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .mega-tooltip {
        display: none !important;
    }
}
