@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-1: #101011;
    --bg-2: #232324;
    --bg-3: #343434;
    --brand: #7673ff;
    --brand-hover: #8481ff;
    --text-white: #ffffff;
    --text-1: #3d4757;
    --text-2: #767c85;
    --text-3: #949aae;
    --text-4: #c0c6cf;
    --success: #00bf79;
    --error: #eb5451;
    --border-gray: #5c5c6e;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 12px 48px rgba(118, 115, 255, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: Inter, SFPro-Regular, -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-1);
    color: var(--text-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.navbar.scrolled {
    background: rgba(16, 16, 17, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: -0.5px;
}
.nav-logo span { color: var(--brand); }
.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-4);
    transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--text-white); }
.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.nav-cta:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(118, 115, 255, 0.35);
}
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(118, 115, 255, 0.18), transparent 60%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(118, 115, 255, 0.08), transparent 50%);
    pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #c6c4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-4);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}
.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-4);
}
.hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--brand);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.hero-cta:hover {
    background: var(--brand-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(118, 115, 255, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}
.section-header p {
    font-size: 16px;
    color: var(--text-4);
    max-width: 560px;
    margin: 0 auto;
}

.characters-section { padding: 96px 0; }
.characters-section:nth-child(even) { background: rgba(255, 255, 255, 0.015); }
.char-category-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.char-category-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--brand);
    border-radius: 2px;
}
.char-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.char-card {
    position: relative;
    background: var(--bg-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.char-card:hover {
    transform: translateY(-4px);
    border-color: rgba(118, 115, 255, 0.35);
    box-shadow: var(--shadow-hover);
}
.char-card .media {
    position: relative;
    aspect-ratio: 9/16;
    background: var(--bg-3);
    overflow: hidden;
}
.char-card .media img,
.char-card .media video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--bg-3);
    transition: transform 0.4s ease;
}
.char-card:hover .media img,
.char-card:hover .media video { transform: scale(1.03); }
.char-card .info { padding: 16px; }
.char-card .info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.char-card .info p {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.char-card .info .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}
.char-card .info .tags span {
    font-size: 11px;
    padding: 3px 8px;
    background: rgba(118, 115, 255, 0.1);
    color: var(--brand);
    border-radius: 999px;
}

.features-section { padding: 96px 0; }
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.feature-card {
    background: var(--bg-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(118, 115, 255, 0.25);
}
.feature-card .icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(118, 115, 255, 0.12);
    border-radius: 12px;
    margin-bottom: 18px;
    color: var(--brand);
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-4);
    line-height: 1.55;
}

.gallery-section { padding: 96px 0; background: rgba(255, 255, 255, 0.015); }
.gallery-list { display: flex; flex-direction: column; gap: 64px; }
.gallery-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}
.gallery-row.reverse { flex-direction: column; }
.gallery-media {
    flex: 0 0 auto;
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow-card);
}
.gallery-media img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    display: block;
}
.gallery-body { flex: 1; }
.gallery-body h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-1);
}
.gallery-body p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-3);
}

.pricing-section { padding: 96px 0; }
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}
.pricing-card {
    background: var(--bg-2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.popular {
    border-color: rgba(118, 115, 255, 0.45);
    box-shadow: var(--shadow-hover);
}
.pricing-card .badge {
    position: absolute;
    top: 0;
    right: 20px;
    transform: translateY(-50%);
    padding: 6px 12px;
    background: var(--brand);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 999px;
}
.pricing-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}
.pricing-card .price {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4px;
}
.pricing-card .price span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-3);
}
.pricing-card .billing {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 20px;
}
.pricing-card ul {
    list-style: none;
    margin-bottom: 24px;
}
.pricing-card ul li {
    font-size: 14px;
    color: var(--text-4);
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-card ul li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: rgba(0, 191, 121, 0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}
.pricing-card ul li.included::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2300bf79' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.pricing-card ul li.not-included { color: var(--text-2); }
.pricing-card ul li.not-included::before {
    background: rgba(255, 255, 255, 0.06);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24' fill='none' stroke='%23767c85' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}
.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: var(--brand);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: transform 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
}
.pricing-btn:hover {
    background: var(--brand-hover);
    transform: translateY(-1px);
}

.faq-section { padding: 96px 0; background: rgba(255, 255, 255, 0.015); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: var(--bg-2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}
.faq-question:hover { color: var(--brand); }
.faq-icon {
    width: 20px;
    height: 20px;
    min-width: 20px;
    position: relative;
    margin-left: 16px;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: currentColor;
    transition: transform 0.25s ease;
    border-radius: 1px;
}
.faq-icon::before { width: 12px; height: 2px; top: 9px; left: 4px; }
.faq-icon::after { width: 2px; height: 12px; top: 4px; left: 9px; }
.faq-item.active .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-4);
    line-height: 1.65;
}

.footer {
    padding: 56px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}
.footer-brand { font-size: 22px; font-weight: 700; }
.footer-brand span { color: var(--brand); }
.footer-tagline {
    font-size: 14px;
    color: var(--text-3);
    max-width: 320px;
    margin-top: 8px;
}
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}
.footer-links a {
    font-size: 14px;
    color: var(--text-4);
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--text-white); }
.footer-countries {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}
.footer-countries a {
    font-size: 13px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    color: var(--text-4);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.footer-countries a:hover {
    background: rgba(118, 115, 255, 0.12);
    border-color: rgba(118, 115, 255, 0.3);
    color: var(--text-white);
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 13px;
    color: var(--text-2);
}

.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 640px) {
    .char-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
    .nav-links { display: flex; }
    .nav-toggle { display: none; }
    .char-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .features-grid { grid-template-columns: repeat(3, 1fr); }
    .gallery-row { flex-direction: row; gap: 48px; }
    .gallery-row.reverse { flex-direction: row-reverse; }
    .gallery-media { flex: 0 0 52%; }
    .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
