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

:root {
    --bg: #060606;
    --bg-raised: #0b0b0b;
    --bg-hover: #101010;
    --border: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(255, 255, 255, 0.1);
    --text: #eee;
    --text-dim: #888;
    --text-dimmer: #555;
    --accent: #ff6b9d;
    --accent-soft: rgba(255, 107, 157, 0.12);
    --accent2: #d4547e;
    --radius: 14px;
    --radius-sm: 10px;
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.25s var(--ease);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 0 24px;
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    filter: blur(1px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 60px;
    background: transparent;
    transition: background var(--transition), border-color var(--transition), opacity 0.6s ease, transform 0.6s ease;
    border-bottom: 1px solid transparent;
    opacity: 0;
    transform: translateY(-20px);
}

body.revealed .navbar {
    opacity: 1;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(6, 6, 6, 0.85);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    border-bottom-color: var(--border);
}

.nav-brand {
    display: flex;
    align-items: center;
}

.nav-logo {
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-dim);
    transition: color var(--transition);
    letter-spacing: 0.01em;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 110;
}

.mobile-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 24px 80px;
    text-align: center;
}

.hero-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 107, 157, 0.12) 0%, rgba(220, 80, 120, 0.04) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(100px);
    animation: glowPulse 8s ease-in-out infinite alternate;
}

.hero-glow::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 100, 140, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: glowPulse 6s ease-in-out 2s infinite alternate;
}

@keyframes glowPulse {
    0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    100% { opacity: 0.85; transform: translateX(-50%) scale(1.15); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
}

.hero-wordmark {
    max-width: 520px;
    width: 100%;
    margin: 0 auto 32px;
    opacity: 0;
    filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.08));
}

body.revealed .hero-wordmark {
    animation: logoEntrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-wordmark.idle {
    opacity: 1;
    animation: logoFloat 6s ease-in-out infinite;
}

@keyframes logoEntrance {
    0% {
        opacity: 0;
        transform: scale(0.6) translateY(30px);
        filter: blur(12px);
    }
    50% {
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0px);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 40px rgba(255, 107, 157, 0.08));
    }
    50% {
        transform: translateY(-10px);
        filter: drop-shadow(0 0 60px rgba(255, 107, 157, 0.15));
    }
}

.glow-border {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    padding: 1px;
}

.glow-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(
        from var(--glow-angle, 0deg),
        transparent 0%,
        rgba(255, 107, 157, 0.4) 10%,
        rgba(255, 150, 180, 0.15) 20%,
        transparent 30%,
        transparent 70%,
        rgba(255, 107, 157, 0.25) 80%,
        rgba(255, 180, 200, 0.1) 90%,
        transparent 100%
    );
    border-radius: inherit;
    animation: glowSpin 4s linear infinite;
    z-index: 0;
}

@keyframes glowSpin {
    0%   { --glow-angle: 0deg; }
    100% { --glow-angle: 360deg; }
}

@property --glow-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.hero-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
    opacity: 0;
}

body.revealed .hero-badges {
    animation: fadeUp 0.8s ease 0.35s forwards;
}

.notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 100px;
    background: rgba(255, 107, 157, 0.06);
    border: 1px solid rgba(255, 107, 157, 0.12);
    opacity: 1;
}

.notice-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px var(--accent);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px var(--accent); }
    50% { opacity: 0.5; box-shadow: 0 0 16px var(--accent), 0 0 4px var(--accent); }
}

.notice-badge span:last-child {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-card {
    display: inline-block;
    margin-bottom: 24px;
    border-radius: 16px;
    opacity: 0;
}

body.revealed .hero-card {
    animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 6px;
    background: var(--bg-raised);
    border-radius: 15px;
}

.hc-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dim);
    border-radius: 12px;
    transition: color var(--transition), background var(--transition);
}

.hc-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.hc-sep {
    width: 1px;
    height: 20px;
    background: var(--border);
    flex-shrink: 0;
}

.domain-badge {
    display: inline-block;
    border-radius: 100px;
}

.domain-badge-inner {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    background: var(--bg-raised);
    border-radius: 100px;
    color: var(--accent);
}

.domain-badge-inner svg {
    opacity: 0.7;
}

.domain-badge-inner span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 0 12px rgba(255, 107, 157, 0.3);
}

.hero-legal {
    font-size: 11px;
    color: var(--text-dimmer);
    margin-bottom: 36px;
    opacity: 0;
}

body.revealed .hero-legal {
    animation: fadeUp 0.8s ease 0.45s forwards;
}

.hero-legal a {
    color: var(--text-dim);
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.12);
    text-underline-offset: 3px;
    transition: color var(--transition), text-decoration-color var(--transition);
}

.hero-legal a:hover {
    color: var(--accent);
    text-decoration-color: rgba(255, 107, 157, 0.4);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
}

body.revealed .hero-stats {
    animation: fadeUp 0.8s ease 0.55s forwards;
}

.stat-card {
    border-radius: 14px;
    min-width: 110px;
}

.stat-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 16px 24px;
    background: var(--bg-raised);
    border-radius: 13px;
}

.stat-val {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-dimmer);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.features {
    position: relative;
    z-index: 1;
    padding: 100px 0 80px;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.2), transparent);
}

.section-heading {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 107, 157, 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    font-size: 14px;
    color: var(--text-dim);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.card {
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
    cursor: default;
    position: relative;
}

.card:hover {
    border-color: rgba(255, 107, 157, 0.15);
    background: var(--bg-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(255, 107, 157, 0.06), 0 0 0 1px rgba(255, 107, 157, 0.06);
}

.card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    background: var(--accent-soft);
    margin-bottom: 18px;
    color: var(--accent);
    border: 1px solid rgba(255, 107, 157, 0.08);
    transition: box-shadow var(--transition);
}

.card:hover .card-icon {
    box-shadow: 0 0 20px rgba(255, 107, 157, 0.12);
}

.card h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    color: #fff;
}

.card p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
    font-weight: 400;
}

.faq {
    position: relative;
    z-index: 1;
    padding: 60px 0 120px;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.2), transparent);
}

.faq-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-raised);
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.open {
    border-color: rgba(255, 107, 157, 0.15);
    background: rgba(255, 107, 157, 0.02);
    box-shadow: 0 4px 24px rgba(255, 107, 157, 0.04);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text);
    font-family: inherit;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    letter-spacing: -0.01em;
    transition: color var(--transition);
}

.faq-q:hover {
    color: #fff;
}

.faq-arrow {
    flex-shrink: 0;
    color: var(--text-dimmer);
    transition: transform var(--transition), color var(--transition);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 0 20px;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 20px 16px;
}

.faq-a p {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.7;
    font-weight: 400;
}

.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
    padding: 40px 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 157, 0.15), transparent);
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo {
    width: 24px;
    height: 24px;
    border-radius: 6px;
}

.footer-brand-name {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-center {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-center a {
    font-size: 12px;
    color: var(--text-dimmer);
    transition: color var(--transition);
}

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

.footer-copy {
    font-size: 11px;
    color: var(--text-dimmer);
}

.legal-page {
    position: relative;
    z-index: 1;
    padding: 120px 0 80px;
    min-height: 80vh;
}

.legal-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 32px;
    transition: color var(--transition);
}

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

.legal-page h1 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 13px;
    color: var(--text-dimmer);
    margin-bottom: 40px;
}

.legal-content {
    max-width: 680px;
}

.legal-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 32px 0 12px;
    letter-spacing: -0.02em;
}

.legal-content p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 16px;
    font-weight: 400;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.8;
    margin-bottom: 4px;
}

.legal-content a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255, 107, 157, 0.3);
}

.legal-content a:hover {
    text-decoration-color: var(--accent);
}

.splash {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.splash.done {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.splash-logo {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    opacity: 0;
    transform: scale(0.5);
    animation: splashLogoIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

@keyframes splashLogoIn {
    0% { opacity: 0; transform: scale(0.5); filter: blur(8px); }
    100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

.splash-bar {
    width: 120px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
    opacity: 0;
    animation: fadeIn 0.4s ease 0.6s forwards;
}

.splash-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    border-radius: 3px;
    animation: splashProgress 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.8s forwards;
}

@keyframes splashProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.card,
.faq-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color var(--transition), background var(--transition);
}

.card.visible,
.faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.card:nth-child(1) { transition-delay: 0s; }
.card:nth-child(2) { transition-delay: 0.06s; }
.card:nth-child(3) { transition-delay: 0.12s; }
.card:nth-child(4) { transition-delay: 0.18s; }

.faq-item:nth-child(1) { transition-delay: 0s; }
.faq-item:nth-child(2) { transition-delay: 0.05s; }
.faq-item:nth-child(3) { transition-delay: 0.1s; }
.faq-item:nth-child(4) { transition-delay: 0.15s; }
.faq-item:nth-child(5) { transition-delay: 0.2s; }

@media (max-width: 768px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 80px 24px 24px;
        background: rgba(8, 8, 8, 0.97);
        backdrop-filter: blur(24px);
        border-left: 1px solid var(--border);
        transition: right var(--transition);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links a {
        font-size: 14px;
        padding: 14px 0;
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: 130px 20px 60px;
    }

    .hero-wordmark {
        max-width: 280px;
    }

    .hero-card-inner {
        padding: 5px;
    }

    .hc-btn {
        padding: 9px 16px;
        font-size: 12px;
    }

    .hero-stats {
        gap: 8px;
    }

    .stat-card {
        min-width: 90px;
    }

    .stat-card-inner {
        padding: 14px 18px;
    }

    .stat-val {
        font-size: 18px;
    }

    .section-heading {
        font-size: 26px;
    }

    .features {
        padding: 60px 0 40px;
    }

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

    .faq {
        padding: 40px 0 80px;
    }

    .footer-center {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .legal-page {
        padding: 100px 0 60px;
    }

    .legal-page h1 {
        font-size: 26px;
    }
}

@media (max-width: 420px) {
    .hero-stats {
        flex-direction: column;
        gap: 8px;
    }

    .stat-card {
        min-width: 160px;
    }
}

::selection {
    background: rgba(255, 107, 157, 0.25);
    color: #fff;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.12);
}
