:root {
    --bg-primary: #060913;
    --bg-secondary: #0d1526;
    --bg-tertiary: #111d34;
    --surface: rgba(13, 22, 39, 0.72);
    --surface-strong: rgba(16, 28, 49, 0.9);
    --surface-elevated: rgba(18, 31, 54, 0.96);
    --border-soft: rgba(108, 140, 205, 0.2);
    --border-strong: rgba(113, 165, 255, 0.34);
    --text-primary: #edf3ff;
    --text-secondary: #9fb0d6;
    --text-muted: #8092ba;
    --accent-cyan: #33d1ff;
    --accent-blue: #4d7cff;
    --accent-blue-strong: #78a4ff;
    --accent-gold: #d8b568;
    --shadow-soft: 0 18px 44px rgba(4, 10, 24, 0.28);
    --shadow-card: 0 28px 60px rgba(4, 10, 24, 0.34);
    --shadow-glow: 0 0 0 1px rgba(115, 173, 255, 0.08), 0 18px 40px rgba(23, 71, 163, 0.18);
    --ok-bg: rgba(44, 198, 142, 0.12);
    --ok-border: rgba(60, 209, 153, 0.4);
    --error-bg: rgba(255, 98, 98, 0.12);
    --error-border: rgba(255, 111, 111, 0.45);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(1100px 620px at 8% -8%, rgba(70, 124, 255, 0.2), transparent 60%),
        radial-gradient(900px 520px at 92% 4%, rgba(52, 209, 255, 0.12), transparent 60%),
        radial-gradient(800px 420px at 50% 28%, rgba(73, 103, 180, 0.08), transparent 65%),
        linear-gradient(135deg, var(--bg-primary) 12%, #08111f 44%, #071021 100%);
    color: var(--text-primary);
    font-family: 'IBM Plex Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.page-gradient {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(900px 500px at 15% 10%, rgba(83, 137, 255, 0.1), transparent 65%),
        radial-gradient(840px 440px at 82% 6%, rgba(63, 212, 255, 0.08), transparent 68%),
        linear-gradient(130deg, rgba(73, 128, 255, 0.06), transparent 42%, rgba(52, 195, 255, 0.03));
}

.grid-overlay {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(120, 148, 207, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(120, 148, 207, 0.045) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: radial-gradient(circle at 50% 16%, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.08) 72%);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 180ms ease, opacity 180ms ease;
}

.container {
    width: min(1160px, calc(100% - 3rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: rgba(7, 11, 20, 0.76);
    border-bottom: 1px solid rgba(108, 140, 205, 0.16);
    box-shadow: 0 10px 30px rgba(3, 8, 20, 0.16);
}

.nav-wrap {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
    position: relative;
}

.brand-mark {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(145deg, var(--accent-cyan), var(--accent-blue));
    box-shadow:
        0 0 0 7px rgba(52, 188, 255, 0.1),
        0 8px 18px rgba(20, 93, 255, 0.25);
}

.site-navigation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 0.48rem 0.86rem;
    border-radius: 999px;
    transition:
        color 180ms ease,
        background-color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
    color: var(--text-primary);
    background: rgba(62, 114, 255, 0.14);
    transform: translateY(-1px);
}

.nav-link-active {
    color: var(--text-primary);
    background: rgba(62, 114, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(113, 165, 255, 0.18);
}

.mobile-menu-toggle {
    display: none;
    border: 1px solid var(--border-soft);
    background: rgba(22, 34, 58, 0.75);
    color: var(--text-primary);
    border-radius: 999px;
    padding: 0.52rem 0.95rem;
    font-weight: 500;
    transition: border-color 180ms ease, background-color 180ms ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible {
    border-color: rgba(126, 166, 239, 0.52);
    background: rgba(29, 44, 73, 0.92);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 0.76rem 1.34rem;
    font-size: 0.95rem;
    font-weight: 600;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background-color 180ms ease,
        box-shadow 180ms ease,
        opacity 180ms ease;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    color: #f7fbff;
    background: linear-gradient(135deg, rgba(52, 203, 255, 0.22), rgba(76, 103, 255, 0.4));
    border-color: rgba(87, 156, 255, 0.34);
    box-shadow:
        0 18px 36px rgba(26, 88, 255, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    border-color: rgba(114, 175, 255, 0.6);
    background: linear-gradient(135deg, rgba(52, 203, 255, 0.28), rgba(76, 103, 255, 0.5));
    box-shadow:
        0 22px 42px rgba(26, 88, 255, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.btn-secondary {
    background: rgba(20, 31, 52, 0.84);
    border-color: rgba(93, 130, 197, 0.44);
    color: var(--text-primary);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
    border-color: rgba(126, 166, 239, 0.64);
    background: rgba(27, 41, 69, 0.96);
}

.btn-nav {
    white-space: nowrap;
}

.site-main {
    padding-bottom: 4.8rem;
}

.section {
    position: relative;
    padding: 6.25rem 0;
}

.section::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(102, 132, 198, 0.18), transparent);
    pointer-events: none;
}

.site-main > .section:first-child::before {
    display: none;
}

.section-tight {
    padding-top: 4.7rem;
}

.hero {
    padding-top: 7rem;
    padding-bottom: 5.8rem;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 260px at 16% 10%, rgba(72, 125, 255, 0.12), transparent 72%),
        radial-gradient(520px 240px at 88% 12%, rgba(52, 210, 255, 0.08), transparent 72%);
    pointer-events: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.34rem 0.84rem;
    border: 1px solid rgba(122, 157, 224, 0.24);
    background: rgba(18, 29, 50, 0.72);
    border-radius: 999px;
    color: #c0cff1;
    font-size: 0.71rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-layout {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.8rem;
    align-items: center;
}

.hero-title,
.section-title {
    margin: 1rem 0 1rem;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.04;
    letter-spacing: -0.03em;
}

.hero-title {
    font-size: clamp(2.55rem, 4.25vw, 4.85rem);
    max-width: 13ch;
    text-wrap: balance;
}

.section-title {
    font-size: clamp(1.95rem, 3vw, 3.15rem);
    text-wrap: balance;
}

.hero-subtitle,
.section-subtitle {
    color: var(--text-secondary);
    max-width: 66ch;
    margin: 0;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.35vw, 1.24rem);
    margin-bottom: 1.95rem;
    max-width: 62ch;
}

.section-header {
    margin-bottom: 1.6rem;
}

.section-header .section-title {
    max-width: 14ch;
}

.section-header .section-subtitle {
    max-width: 68ch;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.hero-metrics {
    display: grid;
    gap: 1rem;
}

.metric-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(20, 32, 54, 0.9), rgba(14, 23, 40, 0.84));
    border: 1px solid rgba(108, 140, 205, 0.22);
    border-radius: 1.2rem;
    padding: 1.15rem 1.2rem;
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.metric-card::before,
.card::before,
.surface-block::before,
.token-card::before,
.value-card::before,
.contact-card::before,
.phase-card::before,
.form-shell::before,
.aside-shell::before,
.timeline-content::before,
.cta-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(155, 197, 255, 0.34), transparent);
    pointer-events: none;
}

.metric-card:hover,
.metric-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(108, 169, 255, 0.38);
    box-shadow: var(--shadow-card);
}

.metric-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.metric-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.36rem;
    line-height: 1.25;
    margin-top: 0.38rem;
    color: var(--text-primary);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
    margin-top: 2rem;
}

.card,
.token-card,
.phase-card,
.value-card,
.contact-card,
.surface-block,
.form-shell,
.aside-shell,
.timeline-content {
    position: relative;
    overflow: hidden;
}

.card {
    background:
        linear-gradient(180deg, rgba(17, 28, 48, 0.88), rgba(11, 19, 35, 0.92));
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1.18rem;
    padding: 1.42rem;
    min-height: 182px;
    transition:
        transform 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease,
        background-color 220ms ease;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.card:hover,
.card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(108, 169, 255, 0.42);
    box-shadow: var(--shadow-card);
}

.card h3,
.token-card h3,
.phase-card h3,
.value-card h3,
.contact-card h3 {
    margin-top: 0;
    margin-bottom: 0.68rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.22rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.card p,
.token-card p,
.phase-card p,
.value-card p,
.contact-card p {
    margin: 0;
    color: var(--text-secondary);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.45rem;
    margin-top: 2rem;
}

.surface-block {
    background:
        linear-gradient(180deg, rgba(17, 29, 49, 0.92), rgba(10, 18, 34, 0.96));
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1.28rem;
    padding: 1.6rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.surface-block:hover,
.surface-block:focus-within {
    transform: translateY(-4px);
    border-color: rgba(108, 169, 255, 0.34);
    box-shadow: var(--shadow-card);
}

.token-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
    margin-top: 1.8rem;
}

.token-card {
    background:
        linear-gradient(180deg, rgba(16, 27, 47, 0.92), rgba(10, 18, 34, 0.96));
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1.16rem;
    padding: 1.42rem;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.token-card:hover,
.token-card:focus-within {
    transform: translateY(-5px);
    border-color: rgba(108, 169, 255, 0.4);
    box-shadow: var(--shadow-card);
}

.token-tag {
    display: inline-block;
    margin-bottom: 0.8rem;
    padding: 0.24rem 0.68rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(59, 212, 255, 0.14), rgba(84, 118, 255, 0.18));
    border: 1px solid rgba(98, 178, 255, 0.18);
    color: #b8ecff;
    font-size: 0.69rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.list {
    margin-top: 0.95rem;
    margin-bottom: 0;
    padding-left: 1.2rem;
    color: var(--text-secondary);
}

.list li {
    margin-bottom: 0.46rem;
    padding-left: 0.1rem;
}

.phase-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.8rem;
}

.phase-card {
    background:
        linear-gradient(180deg, rgba(17, 28, 48, 0.88), rgba(11, 19, 35, 0.92));
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1.05rem;
    padding: 1.25rem;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.phase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 169, 255, 0.38);
    box-shadow: var(--shadow-card);
}

.timeline {
    position: relative;
    display: grid;
    gap: 1.1rem;
    margin-top: 1.95rem;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 52px;
    width: 1px;
    background: linear-gradient(180deg, rgba(97, 145, 240, 0.02), rgba(97, 145, 240, 0.34), rgba(73, 213, 255, 0.14), rgba(97, 145, 240, 0.02));
    pointer-events: none;
}

.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 1rem;
    align-items: start;
}

.timeline-phase {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 0.95rem;
    border: 1px solid rgba(112, 161, 242, 0.34);
    background:
        linear-gradient(135deg, rgba(30, 44, 74, 0.96), rgba(15, 25, 43, 0.96));
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #c7d6f3;
    box-shadow:
        0 10px 24px rgba(4, 10, 24, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.timeline-content {
    background:
        linear-gradient(180deg, rgba(16, 28, 49, 0.94), rgba(10, 18, 34, 0.98));
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1.05rem;
    padding: 1.12rem 1.2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.timeline-content:hover,
.timeline-content:focus-within {
    transform: translateY(-4px);
    border-color: rgba(108, 169, 255, 0.36);
    box-shadow: var(--shadow-card);
}

.timeline-content h3 {
    margin: 0 0 0.42rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    line-height: 1.15;
}

.timeline-content p {
    margin: 0;
    color: var(--text-secondary);
}

.info-bar {
    border-left: 3px solid var(--accent-gold);
    background: linear-gradient(135deg, rgba(38, 33, 20, 0.45), rgba(24, 22, 15, 0.28));
    padding: 0.96rem 1.02rem;
    border-radius: 0.7rem;
    color: #dcc8a1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

.register-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.35rem;
    align-items: start;
    margin-top: 1.8rem;
}

.form-shell,
.aside-shell {
    background:
        linear-gradient(180deg, rgba(18, 30, 52, 0.94), rgba(12, 20, 37, 0.98));
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1.18rem;
    padding: 1.3rem;
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.status-message {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.5;
}

.status-success {
    background: rgba(16, 185, 129, 0.1);
    color: #bdfbe0;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.status-error {
    background: rgba(239, 68, 68, 0.1);
    color: #ffd3d3;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.field-full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.84rem;
    color: #b8c9ed;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 0.78rem;
    border: 1px solid rgba(95, 126, 186, 0.44);
    background: rgba(10, 17, 33, 0.82);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.96rem;
    padding: 0.72rem 0.82rem;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

textarea {
    resize: vertical;
    min-height: 118px;
}

input:hover,
select:hover,
textarea:hover {
    border-color: rgba(115, 156, 225, 0.56);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: rgba(111, 173, 255, 0.86);
    box-shadow: 0 0 0 3px rgba(75, 143, 255, 0.18);
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 0.3rem;
}

.checkbox-row input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
}

.small-muted {
    font-size: 0.83rem;
    color: var(--text-secondary);
}

.value-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.9rem;
}

.value-card,
.contact-card {
    background:
        linear-gradient(180deg, rgba(17, 28, 48, 0.88), rgba(11, 19, 35, 0.92));
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1.08rem;
    padding: 1.26rem;
    box-shadow: var(--shadow-soft);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.value-card:hover,
.contact-card:hover,
.value-card:focus-within,
.contact-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(108, 169, 255, 0.38);
    box-shadow: var(--shadow-card);
}

.contact-card a {
    color: #b9e8ff;
}

.contact-card a:hover {
    color: #e8f7ff;
}

.section-cta {
    padding-top: 2.4rem;
}

.cta-panel {
    background:
        radial-gradient(500px 180px at 12% 0%, rgba(73, 127, 255, 0.16), transparent 68%),
        radial-gradient(420px 180px at 88% 0%, rgba(52, 205, 255, 0.12), transparent 68%),
        linear-gradient(150deg, rgba(20, 32, 56, 0.96), rgba(10, 17, 34, 0.98));
    border: 1px solid rgba(108, 140, 205, 0.22);
    border-radius: 1.38rem;
    padding: 1.85rem;
    box-shadow: var(--shadow-card);
}

.site-footer {
    border-top: 1px solid rgba(80, 113, 173, 0.24);
    background: rgba(7, 11, 20, 0.86);
    padding: 2.2rem 0 1.8rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 1.45rem;
}

.footer-links {
    display: grid;
    gap: 0.48rem;
    align-content: start;
}

.footer-links a {
    color: var(--text-secondary);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-brand h3,
.footer-legal h4 {
    margin-top: 0;
}

.footer-brand p,
.footer-legal p,
.footer-bottom {
    color: var(--text-secondary);
    margin: 0;
}

.footer-regulatory {
    margin-top: 1.5rem;
    padding: 1rem 0 1rem 0;
    border-top: 1px solid rgba(85, 115, 174, 0.2);
    border-bottom: 1px solid rgba(85, 115, 174, 0.2);
    color: var(--text-secondary);
    font-size: 0.75rem;
    line-height: 1.75;
    text-align: left;
}

.footer-regulatory p {
    margin: 0 0 0.7rem 0;
}

.footer-regulatory p:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    margin-top: 0.9rem;
    padding: 0;
    border-top: 0;
    width: 100%;
    color: var(--text-secondary);
    font-size: 0.83rem;
    line-height: 1.75;
    text-align: center;
}

.footer-bottom p,
.footer-bottom span {
    margin: 0;
}

.is-hidden {
    display: none;
}

.field-error {
    border: 1px solid #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

button.is-loading,
.btn.is-loading {
    opacity: 0.75;
    cursor: not-allowed;
}

button[disabled],
.btn[disabled] {
    opacity: 0.75;
    cursor: not-allowed;
}

.iti {
    width: 100%;
}

.phone-intl-input,
.iti input[type="tel"] {
    width: 100%;
}

.iti__country-container {
    color: #0f172a;
}

.ts-wrapper {
    width: 100%;
}

select[data-country-select="true"] {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}

select[data-country-select="true"].field-error {
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.ts-wrapper .ts-control,
.ts-wrapper.single.input-active .ts-control {
    height: 46px;
    border-radius: 0.78rem;
    border: 1px solid rgba(95, 126, 186, 0.44);
    background: rgba(10, 17, 33, 0.82);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.96rem;
    padding: 0 2.2rem 0 0.78rem;
    display: flex;
    align-items: center;
    box-shadow: none;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.ts-wrapper .ts-control input {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.96rem;
}

.ts-wrapper .ts-control input::placeholder {
    color: var(--text-secondary);
    opacity: 1;
}

.ts-wrapper.single .ts-control > div,
.ts-wrapper .item {
    display: flex;
    align-items: center;
    height: 100%;
    line-height: 1;
    margin: 0;
    padding: 0;
}

.ts-wrapper.single .ts-control::after {
    border-color: #b8c9ed transparent transparent transparent;
    right: 14px;
}

.ts-wrapper.focus .ts-control,
.ts-wrapper.single.input-active .ts-control,
.ts-wrapper.dropdown-active .ts-control {
    border-color: rgba(111, 173, 255, 0.86);
    box-shadow: 0 0 0 3px rgba(75, 143, 255, 0.18);
}

.ts-wrapper.field-error {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

.ts-wrapper.field-error .ts-control,
.ts-wrapper.field-error.focus .ts-control,
.ts-wrapper.field-error.dropdown-active .ts-control,
.ts-wrapper.field-error.single.input-active .ts-control {
    border: 1px solid #dc2626 !important;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12) !important;
    border-radius: 0.78rem !important;
    outline: none !important;
}

.ts-wrapper.field-error .ts-control::before,
.ts-wrapper.field-error .ts-control::after {
    box-shadow: none !important;
}

.ts-dropdown {
    border-radius: 0.95rem;
    border: 1px solid rgba(95, 126, 186, 0.48);
    background: rgba(10, 17, 33, 0.98);
    color: var(--text-primary);
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.35);
    overflow: hidden;
}

.ts-dropdown .ts-dropdown-content {
    max-height: 260px;
}

.ts-dropdown .option,
.ts-dropdown .create,
.ts-dropdown .no-results {
    padding: 0.72rem 0.84rem;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.ts-dropdown .active {
    background: rgba(62, 114, 255, 0.24);
    color: var(--text-primary);
}

.ts-dropdown .no-results {
    color: var(--text-secondary);
}

@media (max-width: 1080px) {
    .hero-layout,
    .register-layout,
    .footer-grid,
    .value-grid,
    .contact-grid,
    .phase-grid {
        grid-template-columns: 1fr;
    }

    .card-grid,
    .split-grid,
    .token-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        grid-template-columns: 82px 1fr;
    }
}

@media (max-width: 860px) {
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .site-navigation {
        position: absolute;
        left: 0;
        right: 0;
        top: 82px;
        margin: 0 auto;
        width: min(1160px, calc(100% - 2.4rem));
        background: rgba(10, 16, 30, 0.98);
        border: 1px solid var(--border-soft);
        border-radius: 0.9rem;
        padding: 0.8rem;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        box-shadow: var(--shadow-card);
    }

    .site-navigation.is-open {
        display: flex;
    }

    .btn-nav {
        display: none;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(1160px, calc(100% - 1.4rem));
    }

    .hero {
        padding-top: 5.1rem;
        padding-bottom: 4.3rem;
    }

    .section {
        padding: 4.55rem 0;
    }

    .card-grid,
    .split-grid,
    .token-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .timeline-phase {
        justify-self: start;
        min-width: 88px;
    }

    .cta-panel,
    .surface-block,
    .form-shell,
    .aside-shell {
        padding: 1.25rem;
    }

    .hero-title {
        max-width: 100%;
    }

    .button-row,
    .cta-button-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .button-row .btn,
    .cta-button-row .btn {
        width: min(100%, 320px);
    }
}


/* ========================================
   Language Switcher Styles
   ======================================== */

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.38rem 0.6rem;
    background: rgba(18, 29, 50, 0.72);
    border: 1px solid rgba(122, 157, 224, 0.24);
    border-radius: 999px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.lang-link {
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    padding: 0.32rem 0.68rem;
    border-radius: 999px;
    transition: 
        color 180ms ease,
        background-color 180ms ease,
        transform 120ms ease;
}

.lang-link:hover {
    color: var(--text-primary);
    background: rgba(62, 114, 255, 0.12);
    transform: translateY(-1px);
}

.lang-link-active {
    color: #f7fbff;
    background: linear-gradient(135deg, rgba(52, 203, 255, 0.22), rgba(76, 103, 255, 0.38));
    box-shadow: 
        0 4px 12px rgba(26, 88, 255, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lang-link-active:hover {
    transform: translateY(0);
    background: linear-gradient(135deg, rgba(52, 203, 255, 0.26), rgba(76, 103, 255, 0.44));
}

/* Hero Image Styles */
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg,
            rgba(6, 9, 19, 0.96) 0%,
            rgba(8, 12, 24, 0.92) 24%,
            rgba(9, 14, 28, 0.88) 48%,
            rgba(7, 11, 21, 0.94) 100%
        );
    pointer-events: none;
}

.hero.has-image {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.hero.has-image > .container {
    position: relative;
    z-index: 2;
}

@media (min-width: 980px) {
    .hero.has-image {
        min-height: 540px;
        display: flex;
        align-items: center;
        padding-top: 7.4rem;
        padding-bottom: 5.8rem;
    }

    .hero.has-image > .container {
        width: 100%;
    }

    .hero-image::after {
        background:
            linear-gradient(90deg,
                rgba(5, 8, 18, 0.93) 0%,
                rgba(5, 8, 18, 0.88) 24%,
                rgba(5, 8, 18, 0.74) 46%,
                rgba(5, 8, 18, 0.82) 68%,
                rgba(5, 8, 18, 0.92) 100%
            ),
            linear-gradient(180deg,
                rgba(9, 14, 28, 0.12) 0%,
                rgba(9, 14, 28, 0.38) 100%
            );
    }

    .hero.has-image > .container:not(.hero-layout) {
        max-width: min(1160px, calc(100% - 2.4rem));
        padding-top: 0;
        padding-bottom: 0;
    }

    .hero.has-image > .container:not(.hero-layout) .hero-title {
        max-width: 12ch;
    }

    .hero.has-image > .container:not(.hero-layout) .hero-subtitle {
        max-width: 58ch;
    }
}

/* Enhanced Card Hover Effects */
.card,
.token-card,
.phase-card,
.surface-block,
.metric-card,
.contact-card,
.value-card {
    transition: 
        transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
        border-color 280ms ease,
        box-shadow 280ms ease,
        background-color 280ms ease;
}

.card::after,
.token-card::after,
.surface-block::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(82, 165, 255, 0.06),
        transparent 40%
    );
    transition: opacity 280ms ease;
    pointer-events: none;
}

.card:hover::after,
.token-card:hover::after,
.surface-block:hover::after {
    opacity: 1;
}

/* Premium Glass Effect on Hover */
.timeline-content,
.form-shell,
.aside-shell {
    backdrop-filter: blur(12px);
    transition: 
        transform 280ms cubic-bezier(0.4, 0, 0.2, 1),
        backdrop-filter 280ms ease,
        border-color 280ms ease,
        box-shadow 280ms ease;
}

.timeline-content:hover,
.form-shell:hover,
.aside-shell:hover {
    backdrop-filter: blur(16px);
}

/* Smooth Section Transitions */
.section {
    animation: fadeInUp 600ms ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transform: translate(-50%, -50%);
    transition: width 600ms ease, height 600ms ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Gradient Text Highlight */
.hero-title,
.section-title {
    background: linear-gradient(
        135deg,
        var(--text-primary) 0%,
        var(--text-primary) 60%,
        rgba(139, 186, 255, 0.9) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Eyebrow Animation */
.eyebrow {
    animation: slideInDown 500ms ease-out;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Token Tag Pulse */
.token-tag {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 
            0 4px 12px rgba(26, 88, 255, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }
    50% {
        box-shadow: 
            0 4px 16px rgba(26, 88, 255, 0.28),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }
}

/* Mobile Language Switcher */
@media (max-width: 860px) {
    .language-switcher {
        order: 3;
        margin-left: auto;
    }
    
    .nav-wrap {
        flex-wrap: wrap;
    }
}

@media (max-width: 720px) {
    .language-switcher {
        gap: 0.1rem;
        padding: 0.32rem 0.5rem;
    }
    
    .lang-link {
        font-size: 0.72rem;
        padding: 0.28rem 0.58rem;
    }
}



/* ========================================
   Strategic Enhancement Styles
   ======================================== */

/* Flow Diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2.5rem 0;
}

.flow-step {
    background: rgba(17, 28, 48, 0.92);
    border: 1px solid rgba(108, 140, 205, 0.28);
    border-radius: 1rem;
    padding: 1.5rem 2rem;
    min-width: 180px;
    text-align: center;
    position: relative;
    transition: all 280ms ease;
}

.flow-step:hover {
    transform: translateY(-4px);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 24px rgba(52, 203, 255, 0.15);
}

.flow-step-number {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.flow-step-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.3rem;
}

.flow-step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.flow-arrow {
    color: var(--accent-blue-strong);
    font-size: 1.8rem;
    opacity: 0.6;
}

/* Simple Charts */
.chart-container {
    background: rgba(17, 28, 48, 0.88);
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1rem;
    padding: 2rem;
    margin: 1.5rem 0;
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    min-width: 120px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.bar-visual {
    flex: 1;
    height: 36px;
    background: linear-gradient(90deg, rgba(52, 203, 255, 0.15), rgba(62, 114, 255, 0.25));
    border-radius: 0.5rem;
    border: 1px solid rgba(52, 203, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 280ms ease;
}

.bar-visual:hover {
    background: linear-gradient(90deg, rgba(52, 203, 255, 0.25), rgba(62, 114, 255, 0.35));
    border-color: var(--accent-cyan);
}

.bar-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue-strong));
    border-radius: 0.5rem;
    transition: width 800ms cubic-bezier(0.4, 0, 0.2, 1);
}

.bar-value {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Level Comparison Grid */
.level-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.level-box {
    background: rgba(17, 28, 48, 0.92);
    border: 1px solid rgba(108, 140, 205, 0.22);
    border-radius: 0.9rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 280ms ease;
    position: relative;
    overflow: hidden;
}

.level-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue-strong));
    opacity: 0;
    transition: opacity 280ms ease;
}

.level-box:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.level-box:hover::before {
    opacity: 1;
}

.level-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0.8rem;
}

.level-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(108, 140, 205, 0.12);
    font-size: 0.85rem;
}

.level-stat:last-child {
    border-bottom: none;
}

.level-stat-label {
    color: var(--text-muted);
}

.level-stat-value {
    color: var(--text-primary);
    font-weight: 600;
}

/* Scarcity Badge */
.scarcity-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 87, 87, 0.15), rgba(255, 87, 87, 0.08));
    border: 1px solid rgba(255, 87, 87, 0.4);
    color: #ff9999;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* FAQ Accordion */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(17, 28, 48, 0.88);
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 0.9rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 280ms ease;
}

.faq-item:hover {
    border-color: rgba(108, 140, 205, 0.35);
}

.faq-question {
    padding: 1.3rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: background 280ms ease;
}

.faq-question:hover {
    background: rgba(62, 114, 255, 0.08);
}

.faq-question-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    transition: transform 280ms ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 400ms ease, padding 400ms ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.3rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Token Flow Visual */
.token-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem;
    background: rgba(17, 28, 48, 0.88);
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 1.2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.token-flow-node {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 1.5rem;
    background: rgba(26, 41, 64, 0.9);
    border: 1px solid rgba(108, 140, 205, 0.25);
    border-radius: 0.9rem;
    transition: all 280ms ease;
}

.token-flow-node:hover {
    transform: scale(1.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 20px rgba(52, 203, 255, 0.15);
}

.token-flow-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: var(--accent-cyan);
}

.token-flow-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.4rem;
}

.token-flow-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
}

.token-flow-connector {
    font-size: 1.5rem;
    color: var(--accent-blue-strong);
    opacity: 0.5;
}

/* Premium CTA Enhanced */
.cta-premium {
    background: linear-gradient(135deg, rgba(17, 28, 48, 0.95), rgba(10, 18, 32, 0.98));
    border: 1px solid rgba(52, 203, 255, 0.25);
    border-radius: 1.2rem;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}

.cta-premium-eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 0.8rem;
}

.cta-premium-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-premium-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}



/* ========================================
   Token Sales Interface Styles
   ======================================== */

.token-sales-section {
    background: linear-gradient(180deg, rgba(6, 9, 19, 0) 0%, rgba(8, 12, 24, 0.5) 100%);
}

.token-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.token-selection-card {
    background: rgba(17, 28, 48, 0.95);
    border: 2px solid rgba(108, 140, 205, 0.25);
    border-radius: 1.2rem;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.token-selection-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(62, 114, 255, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 350ms ease;
}

.token-selection-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 12px 32px rgba(52, 203, 255, 0.2);
}

.token-selection-card:hover::before {
    opacity: 1;
}

.token-selection-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(62, 114, 255, 0.18), rgba(76, 103, 255, 0.25));
    border: 1px solid rgba(62, 114, 255, 0.4);
    color: var(--accent-blue-strong);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.token-selection-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.token-selection-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.token-selection-arrow {
    font-size: 2rem;
    color: var(--accent-cyan);
    opacity: 0.7;
    transition: all 280ms ease;
}

.token-selection-card:hover .token-selection-arrow {
    opacity: 1;
    transform: translateX(8px);
}

.token-flow-container {
    margin-top: 3rem;
    animation: fadeIn 500ms ease-out;
}

.flow-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(17, 28, 48, 0.6);
    border-radius: 1rem;
    border: 1px solid rgba(108, 140, 205, 0.15);
}

.flow-header h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.flow-header p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.level-selection-grid,
.phase-selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.level-select-card,
.phase-select-card {
    background: rgba(17, 28, 48, 0.92);
    border: 2px solid rgba(108, 140, 205, 0.22);
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 300ms ease;
}

.level-select-card:hover,
.phase-select-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(52, 203, 255, 0.15);
}

.level-select-card.active,
.phase-select-card.active {
    border-color: var(--accent-cyan);
    background: rgba(52, 203, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(52, 203, 255, 0.1);
}

.level-select-label,
.phase-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent-cyan);
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.level-select-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.level-select-value,
.phase-price {
    font-size: 1.1rem;
    color: var(--accent-blue-strong);
    margin-bottom: 0.8rem;
}

.level-select-card p,
.phase-select-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.8rem;
}

.amount-input-section {
    margin: 2.5rem 0;
    padding: 2rem;
    background: rgba(17, 28, 48, 0.7);
    border-radius: 1rem;
    border: 1px solid rgba(108, 140, 205, 0.18);
}

.amount-calculator {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.calc-field {
    flex: 1;
    min-width: 200px;
}

.calc-field label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.calc-field input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    background: rgba(26, 41, 64, 0.9);
    border: 1px solid rgba(108, 140, 205, 0.25);
    border-radius: 0.6rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    transition: all 250ms ease;
}

.calc-field input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 0 3px rgba(52, 203, 255, 0.1);
    outline: none;
}

.calc-divider {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.calculated-result {
    margin-top: 1.5rem;
    padding: 1.2rem;
    background: rgba(52, 203, 255, 0.08);
    border: 1px solid rgba(52, 203, 255, 0.25);
    border-radius: 0.8rem;
    text-align: center;
}

.calc-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 0.8rem;
}

.calc-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.access-request-form {
    margin-top: 3rem;
    padding: 2.5rem;
    background: rgba(17, 28, 48, 0.95);
    border: 1px solid rgba(108, 140, 205, 0.22);
    border-radius: 1.2rem;
    animation: fadeIn 500ms ease-out;
}

.token-request-form .form-grid {
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.1rem 3rem;
    font-size: 1.05rem;
    font-weight: 600;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .token-selection-grid {
        grid-template-columns: 1fr;
    }
    
    .level-selection-grid,
    .phase-selection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .amount-calculator {
        flex-direction: column;
    }
    
    .calc-divider {
        transform: rotate(90deg);
    }
}

@media (max-width: 600px) {
    .level-selection-grid,
    .phase-selection-grid {
        grid-template-columns: 1fr;
    }
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, rgba(62, 114, 255, 0.12), rgba(52, 203, 255, 0.08));
    border-left: 4px solid var(--accent-cyan);
    padding: 1.5rem 2rem;
    border-radius: 0.6rem;
    margin: 2rem 0;
}

.highlight-box-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.highlight-box p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Stat Grid */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: rgba(17, 28, 48, 0.88);
    border: 1px solid rgba(108, 140, 205, 0.18);
    border-radius: 0.9rem;
    padding: 1.8rem 1.5rem;
    text-align: center;
    transition: all 280ms ease;
}

.stat-box:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-3px);
}

.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-sublabel {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* Responsive adjustments */
@media (max-width: 860px) {
    .flow-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .token-flow {
        flex-direction: column;
    }
    
    .token-flow-connector {
        transform: rotate(90deg);
    }
    
    .level-comparison {
        grid-template-columns: 1fr;
    }
    
    .cta-premium-title {
        font-size: 1.6rem;
    }
}

@media (min-width: 980px) {
    .site-header,
    .site-header .container,
    .site-header .nav-wrap,
    .site-header .site-navigation {
        overflow: visible !important;
    }

    .language-switcher {
	    position: relative;
	    width: 74px;
	    height: 44px;
	    z-index: 1300;
	    flex: 0 0 auto;
	    background: transparent !important;
	    border: none !important;
	    box-shadow: none !important;
	    padding: 0 !important;
	    border-radius: 0 !important;
	}

    .language-switcher > .lang-link.lang-link-active {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        border-radius: 999px;
        background: rgba(18, 29, 50, 0.72);
        border: 1px solid rgba(122, 157, 224, 0.24);
        text-decoration: none;
        position: relative;
        z-index: 2;
    }

    .language-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0;
        width: 74px;
        padding: 6px;
        display: none;
        flex-direction: column;
        gap: 4px;
        background: rgba(10, 16, 30, 0.96);
        border: 1px solid rgba(122, 157, 224, 0.24);
        border-radius: 12px;
        box-shadow:
            0 16px 40px rgba(0,0,0,0.35),
            inset 0 1px 0 rgba(255,255,255,0.04);
        z-index: 1;
    }

    .language-dropdown .lang-link {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 36px;
        border-radius: 8px;
        text-decoration: none;
        background: transparent;
        border: none;
    }

    .language-dropdown .lang-link:hover {
        background: rgba(255,255,255,0.06);
    }

    .language-switcher.open .language-dropdown {
        display: flex;
    }
}

@media (min-width: 980px) {

    .hero.has-image > .container.hero-layout {
        width: min(1160px, calc(100% - 3rem));
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        align-items: center;
        gap: 3.2rem;
    }
}

@media (min-width: 980px) {
    .hero[data-testid="home-hero-section"] {
        padding-top: 4.2rem;
        padding-bottom: 5.8rem;
    }
}

/* ========================================
   Index Section Visual Treatments
   ======================================== */

.section-visual {
    position: relative;
    overflow: hidden;
}

/* ========================================
   Index Section Visual Treatments
   ======================================== */

.section-visual {
    position: relative;
    overflow: hidden;
}

.section-intro-row {
    position: relative;
}

@media (min-width: 981px) {
    .section-intro-row {
        min-height: 280px;
        padding-right: 420px;
    }

    .section-intro-row > .section-header {
        position: relative;
        z-index: 2;
        max-width: 620px;
    }

    .section-intro-row::before,
    .section-intro-row::after {
        content: '';
        position: absolute;
        pointer-events: none;
        z-index: 1;
    }

    /* 1) Strategic Positioning */
    .section-visual-strategy .section-intro-row::before {
        top: 0;
        right: 0;
        width: 360px;
        height: 240px;
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgba(5, 9, 19, 0.14), rgba(5, 9, 19, 0.72)),
            linear-gradient(120deg, rgba(10, 16, 29, 0.14), rgba(10, 16, 29, 0.48)),
            url('../images/section-strategy-architectural.svg');
        background-position: center;
        background-size: cover;
        opacity: 0.82;
    }

    .section-visual-strategy .section-intro-row::after {
        top: -18px;
        right: -28px;
        width: 430px;
        height: 300px;
        background: radial-gradient(circle at 50% 50%, rgba(78, 148, 255, 0.14), transparent 70%);
        filter: blur(26px);
        opacity: 0.92;
    }

    /* 2) CyHold Model */
    .section-visual-model .section-intro-row {
        min-height: 300px;
        padding-right: 420px;
    }

    .section-visual-model .section-intro-row::before {
        top: 8px;
        right: 36px;
        width: 280px;
        height: 280px;
        border-radius: 999px;
        background:
            radial-gradient(circle at 30% 35%, rgba(52, 209, 255, 0.24), transparent 34%),
            radial-gradient(circle at 72% 66%, rgba(86, 100, 255, 0.18), transparent 36%),
            radial-gradient(circle at 50% 50%, rgba(18, 29, 52, 0.82), rgba(8, 13, 26, 0.06) 72%);
        filter: blur(10px);
        opacity: 0.92;
    }

    .section-visual-model .section-intro-row::after {
        top: 72px;
        right: 92px;
        width: 170px;
        height: 170px;
        border-radius: 32px;
        background:
            linear-gradient(135deg, rgba(16, 25, 46, 0.56), rgba(8, 12, 23, 0.14)),
            linear-gradient(90deg, rgba(74, 131, 255, 0.18), transparent 58%);
        border: 1px solid rgba(93, 136, 215, 0.16);
        backdrop-filter: blur(8px);
        opacity: 0.94;
    }

    /* 3) Growth Phases */
    .section-visual-phases .section-intro-row {
        min-height: 250px;
        padding-right: 440px;
    }

    .section-visual-phases .section-intro-row::before {
        top: 8px;
        right: 0;
        width: 360px;
        height: 180px;
        border-radius: 24px;
        background:
            linear-gradient(180deg, rgba(8, 13, 25, 0.10), rgba(8, 13, 25, 0.52)),
            url('../images/section-phases-grid.svg');
        background-size: cover;
        background-position: center;
        opacity: 0.86;
    }

    .section-visual-phases .section-intro-row::after {
        top: 52px;
        right: 52px;
        width: 210px;
        height: 90px;
        border-radius: 999px;
        background: radial-gradient(circle at 50% 50%, rgba(30, 217, 255, 0.16), rgba(75, 105, 255, 0.10) 42%, transparent 72%);
        filter: blur(18px);
        opacity: 0.9;
    }
}

@media (max-width: 980px) {
    .section-intro-row {
        min-height: auto;
        padding-right: 0;
    }

    .section-intro-row::before,
    .section-intro-row::after {
        display: none;
    }
}

@media (min-width: 1081px) {
    .card-grid-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .card-grid-4 {
        grid-template-columns: 1fr;
    }
}