@font-face {
    font-family: 'Burford Rustic Test';
    src: url('../fonts/BurfordRusticBook-Regular2.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {
    /* ApiTwitter Liquid Theme Palette */
    --bg-dark: #050508;
    --surface: rgba(255, 255, 255, 0.05);
    /* Used as fallback */
    --accent: #6366f1;
    /* Indigo */
    --text-main: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.45);

    --success: #00bb7f;
    --warning: #fcbb00;
    --error: #fb2c36;

    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.04);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Segoe UI, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.easter-egg-open {
    overflow: hidden;
}

h1,
h2,
h3,
.logo,
.step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Background Effects */
/* Background Effects (Liquid Theme) */
.landing-liquid {
    position: fixed;
    inset: 0;
    z-index: -2;
    background-color: #050508;
    background-image: radial-gradient(130% 90% at 50% -35%, rgba(99, 102, 241, 0.26), transparent 52%),
        radial-gradient(55% 70% at 0% 5%, rgba(139, 92, 246, 0.14), transparent 48%),
        radial-gradient(50% 65% at 100% 12%, rgba(56, 189, 248, 0.1), transparent 48%),
        radial-gradient(100% 55% at 50% 105%, rgba(79, 70, 229, 0.12), transparent 52%),
        linear-gradient(#0e0e14, #08080d 38%, #040406);
    pointer-events: none;
}

.ambient-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 1;
    background: radial-gradient(85% 55% at 50% -5%, rgba(255, 255, 255, 0.07), transparent 52%),
        radial-gradient(42% 40% at 12% 28%, rgba(129, 140, 248, 0.1), transparent 55%),
        radial-gradient(42% 40% at 88% 32%, rgba(167, 139, 250, 0.08), transparent 55%),
        radial-gradient(120% 65% at 50% 100%, rgba(0, 0, 0, 0.55), transparent 58%);
}

.hero-dot-grid {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-position: 0 0, 11px 11px;
    background-size: 22px 22px, 5.5px 5.5px;
    -webkit-mask-image: radial-gradient(72% 58% at 50% 30%, black 6%, transparent 68%);
    mask-image: radial-gradient(72% 58% at 50% 30%, black 6%, transparent 68%);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.4);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Header (Floating Glass Pill) */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: 900px;
    z-index: 1000;
    background: rgba(14, 14, 18, 0.6);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    box-shadow: 0 4px 24px -4px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.header.scrolled {
    background: rgba(14, 14, 18, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 1px rgba(255, 255, 255, 0.05);
    top: 1rem;
}

.nav-container {
    padding: 0.5rem 0.5rem 0.5rem 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
    padding: 0.75rem 0.5rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.logo:hover {
    color: rgba(255, 255, 255, 0.88);
}

.logo-text {
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin-left: 0.25rem;
    margin-right: auto;
}

.nav-menu li:has(.btn-cabinet-mobile) {
    display: none;
}

.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--text-main);
}

.btn-cabinet {
    background: rgba(41, 42, 125, 0.4);
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: var(--text-main);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-cabinet:hover {
    background: rgba(99, 102, 241, 0.6);
    border-color: rgba(99, 102, 241, 0.8);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}

.btn-cabinet-mobile {
    display: none;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: #ffffff;
    color: #050508;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
    border: none;
    position: relative;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
    background: #f1f1f1;
}

/* Section Global */
.section {
    padding: 2rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
    scroll-margin-top: 100px;
}

.section-header h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(to right, #ffffff, var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    position: relative;
}

.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: fadeInDown 1s ease-out;
}

.hero-badge .badge-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-badge .rkn-letter-white {
    color: #ffffff;
}

.hero-badge .rkn-letter-blue {
    color: #60a5fa;
}

.hero-badge .rkn-letter-red {
    color: #fb2c36;
}

.hero h1 {
    font-family: 'Burford Rustic Test', 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    background: linear-gradient(to right, #ffffff 30%, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out 0.2s both;
    position: relative;
}

.hero h1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent 50%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.hero p {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto 3rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-btns {
    animation: fadeInUp 1s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

/* Features Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.4s;
    display: inline-block;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {

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

    50% {
        transform: translateY(-8px);
    }
}

.feature-card:hover .feature-icon {
    transform: scale(1.15) rotate(5deg) translateY(-8px);
    animation: none;
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

/* Timeline / Steps */
.steps-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent), var(--text-muted), transparent);
    transform: translateX(-50%);
    opacity: 0.3;
}

.step-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.step-row:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.step-content::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.step-content:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5), 0 0 20px rgba(99, 102, 241, 0.1);
}

.step-center {
    width: 50px;
    height: 50px;
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-main);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.6), inset 0 0 15px rgba(139, 92, 246, 0.4);
    z-index: 2;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.step-content p {
    color: var(--text-muted);
}

/* Platforms */
.platforms-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.platform-pill {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.8rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    font-weight: 500;
    font-size: 1.05rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
}

.platform-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.platform-pill i {
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: color 0.3s;
}

.platform-pill:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.1), 0 10px 25px rgba(139, 92, 246, 0.3);
}

.platform-pill:hover i {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(167, 139, 250, 0.6);
}

/* FAQ */
.faq-wrap {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    user-select: none;
    color: var(--text-main);
}

.faq-question i {
    transition: transform 0.4s ease;
    color: var(--accent);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--text-muted);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--text-muted);
    padding: 0 1.5rem;
}

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

/* CTA Bottom */
.cta-bottom {
    margin: 4rem auto 0;
    max-width: 1000px;
    padding: 4rem 2rem;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    text-align: center;
    position: relative;
}

.cta-bottom h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    background: var(--surface);
    opacity: 0.9;
}

.footer .neon-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--text-muted));
    margin: 0 auto 1.5rem;
    border-radius: 10px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.65rem;
    margin: 0 auto 1.5rem;
    max-width: 900px;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-link:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-divider {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.26);
    flex: 0 0 auto;
}

.legal-page {
    min-height: 100vh;
}

.legal-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 1.5rem 3rem;
}

.legal-shell {
    width: min(100%, 900px);
}

.legal-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}

.legal-back-link:hover {
    color: var(--text-main);
}

.legal-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 2.5rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.legal-kicker {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.2rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.legal-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.legal-meta {
    display: grid;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-meta p {
    color: rgba(255, 255, 255, 0.7);
}

.legal-lead {
    max-width: 680px;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

.legal-copy {
    display: grid;
    gap: 1rem;
    color: var(--text-muted);
}

.legal-copy section {
    display: grid;
    gap: 0.85rem;
}

.legal-copy h2 {
    color: var(--text-main);
    font-size: 1.1rem;
    letter-spacing: 0.01em;
}

.legal-copy p {
    font-size: 1rem;
    line-height: 1.7;
}

.legal-copy ul {
    padding-left: 1.2rem;
    display: grid;
    gap: 0.45rem;
}

.legal-copy li {
    line-height: 1.65;
}

.legal-copy strong {
    color: rgba(255, 255, 255, 0.82);
}

.legal-copy a {
    color: rgba(255, 255, 255, 0.86);
    text-underline-offset: 0.2em;
}

.legal-note {
    margin-top: 1.8rem;
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.68);
}

/* Easter Egg Modal */
.easter-egg-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    background: rgba(4, 4, 8, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.easter-egg-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.easter-egg-dialog {
    position: relative;
    width: min(100%, 420px);
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(25, 25, 34, 0.96), rgba(11, 11, 17, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.04);
}

.easter-egg-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s ease;
}

.easter-egg-close:hover {
    color: var(--text-main);
    background: rgba(255, 255, 255, 0.08);
}

.easter-egg-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.8rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.easter-egg-title {
    font-size: clamp(1.6rem, 4vw, 2rem);
    line-height: 1.1;
    margin-bottom: 0.75rem;
}

.easter-egg-text {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.promo-code-box {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.16);
}

.promo-code-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.promo-code-value {
    font-size: clamp(1.2rem, 4vw, 1.55rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    word-break: break-word;
}

.easter-egg-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.promo-copy-btn,
.promo-open-link {
    flex: 1 1 180px;
    min-height: 3.25rem;
    padding: 0.9rem 1.1rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    transition: all 0.25s ease;
}

.promo-copy-btn {
    background: #ffffff;
    color: #050508;
    cursor: pointer;
}

.promo-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(255, 255, 255, 0.15);
}

.promo-open-link {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
}

.promo-open-link:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* Animations Utils */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Responsive */
@media (max-width: 900px) {
    .steps-container::before {
        left: 30px;
    }

    .step-row,
    .step-row:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
        margin-bottom: 2rem;
    }

    .step-center {
        left: 30px;
        transform: translateX(-50%);
    }

    .step-content {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .section-header {
        scroll-margin-top: 84px;
    }

    .header {
        width: auto;
        max-width: calc(100% - 1.25rem);
        top: 1rem;
        background: transparent;
        border: none;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .header.scrolled {
        top: 0.9rem;
        background: transparent;
        box-shadow: none;
    }

    .nav-container {
        width: fit-content;
        margin: 0 auto;
        padding: 0.32rem;
        justify-content: center;
        gap: 0.35rem;
        position: relative;
        background: linear-gradient(180deg, rgba(41, 42, 53, 0.9), rgba(24, 24, 31, 0.92));
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 999px;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), inset 0 1px rgba(255, 255, 255, 0.05);
    }

    .logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 2.35rem;
        padding: 0.72rem 0.7rem;
        gap: 0.42rem;
        font-size: 0.96rem;
        font-weight: 600;
        color: rgba(246, 246, 250, 0.9);
        border: none;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .logo-text {
        font-size: 0.96rem;
        letter-spacing: -0.02em;
        line-height: 1;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2.2rem;
        height: 2.2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.56);
        box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
        flex-shrink: 0;
        transition: all 0.25s ease;
    }

    .menu-toggle:hover,
    .menu-toggle:active {
        background: rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.8);
    }

    .menu-toggle i {
        font-size: 0.8rem;
    }

    .nav-menu {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 50%;
        width: min(390px, calc(100vw - 0.25rem));
        background: linear-gradient(180deg, rgba(31, 31, 40, 0.96), rgba(14, 14, 20, 0.96));
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: stretch;
        padding: 0.35rem;
        gap: 0.55rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-10px) scale(0.95);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0) scale(1);
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li:has(.btn-cabinet-mobile) {
        display: block;
        width: 100%;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.85rem 1rem;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 14px;
        font-size: 0.98rem;
        color: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.03);
        text-align: center;
    }

    .nav-menu a:hover {
        background: rgba(255, 255, 255, 0.06);
        border-color: rgba(255, 255, 255, 0.08);
    }

    .nav-container > .btn-cabinet {
        display: none;
    }

    .nav-menu a.btn-cabinet-mobile {
        display: flex;
        align-items: center;
        width: 100%;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.1rem;
        padding: 0.95rem 1rem;
        border-radius: 14px;
        background: rgba(41, 42, 125, 0.4);
        border: 1px solid rgba(99, 102, 241, 0.4);
        border-color: rgba(99, 102, 241, 0.4);
        color: var(--text-main);
        box-shadow: 0 0 18px rgba(99, 102, 241, 0.14);
    }

    .nav-menu a.btn-cabinet-mobile:hover {
        background: rgba(99, 102, 241, 0.6);
        border-color: rgba(99, 102, 241, 0.8);
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.22);
    }

    .hero-badge {
        margin-top: 0.45rem;
    }

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

    .easter-egg-dialog {
        padding: 1.15rem;
        border-radius: 24px;
    }

    .easter-egg-close {
        top: 0.8rem;
        right: 0.8rem;
    }

    .easter-egg-actions {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        align-items: stretch;
        gap: 0.4rem;
    }

    .footer-divider {
        display: none;
    }

    .footer-link {
        width: 100%;
    }

    .legal-main {
        align-items: flex-start;
        padding-top: 6.5rem;
    }

    .legal-card {
        padding: 1.5rem;
        border-radius: 24px;
    }

    .legal-title {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .legal-meta,
    .legal-note {
        padding: 0.95rem 1rem;
    }
}

@media (hover: none) and (pointer: coarse) {
    a,
    button,
    .feature-card,
    .step-content,
    .platform-pill,
    .faq-question {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
        -webkit-user-select: none;
    }

    .nav-menu a:hover {
        color: inherit;
        background: rgba(255, 255, 255, 0.03);
        border-color: rgba(255, 255, 255, 0.03);
    }

    .nav-menu a.btn-cabinet-mobile:hover {
        color: var(--text-main);
        background: rgba(41, 42, 125, 0.4);
        border-color: rgba(99, 102, 241, 0.4);
        box-shadow: 0 0 18px rgba(99, 102, 241, 0.14);
    }

    .btn-cabinet:hover {
        background: rgba(41, 42, 125, 0.4);
        border-color: rgba(99, 102, 241, 0.4);
        box-shadow: none;
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
        background: #ffffff;
    }

    .feature-card:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
    }

    .feature-card:hover .feature-icon {
        transform: none;
        animation: iconFloat 4s ease-in-out infinite;
    }

    .step-content:hover {
        transform: none;
        background: rgba(255, 255, 255, 0.03);
        box-shadow: none;
    }

    .platform-pill:hover {
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(255, 255, 255, 0.08);
        transform: none;
        box-shadow: none;
    }

    .platform-pill:hover i {
        color: var(--text-muted);
        text-shadow: none;
    }

    .menu-toggle:hover,
    .menu-toggle:active {
        background: rgba(255, 255, 255, 0.05);
        color: rgba(255, 255, 255, 0.56);
    }
}
