:root {
    --primary: #133AB8;
    --primary-deep: #000829;
    --secondary: #FF4F8B;
    --bg: #FFFFFF;
    --bg-soft: #F2F2F7;
    --bg-dark: #0A0A12;
    --text: #1D1D1F;
    --text-mute: #5A5A66;
    --text-invert: #FFFFFF;
    --border: #E6E6EE;
    --card-bg: #FFFFFF;
    --card-bg-dark: #0F1530;
    --accent-gradient: linear-gradient(135deg, #133AB8 0%, #2E5BFF 60%, #FF4F8B 100%);
    --hero-gradient: radial-gradient(120% 80% at 80% 0%, #1B47D6 0%, #133AB8 35%, #0A1F6E 70%, #000829 100%);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 2px rgba(15,21,48,0.05), 0 4px 16px rgba(15,21,48,0.06);
    --shadow-md: 0 6px 24px rgba(15,21,48,0.10), 0 24px 60px rgba(15,21,48,0.08);
    --shadow-glow: 0 18px 60px rgba(19,58,184,0.35);
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 18px 32px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.98rem;
    letter-spacing: -0.01em;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    line-height: 1;
}
.btn-primary { background: #0A0A12; color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-glow); background: var(--primary); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--text); }
.btn-outline:hover { background: var(--text); color: #fff; }
.btn-ghost { background: rgba(255,255,255,0.08); color: #fff; backdrop-filter: blur(8px); border-color: rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-lg { padding: 22px 40px; font-size: 1.05rem; }

.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 18px 32px;
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease, padding 0.25s ease, background 0.25s ease;
}
.navbar.scrolled { border-color: var(--border); padding: 12px 32px; }
.nav-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-weight: 800; letter-spacing: -0.02em; font-size: 1.15rem; }
.brand-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent-gradient); box-shadow: 0 0 0 3px rgba(255,79,139,0.18); display: inline-block; }
.brand-name { color: var(--text); }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { color: var(--text-mute); font-weight: 500; font-size: 0.95rem; transition: color 0.2s ease; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
    padding: 12px 22px;
    background: #0A0A12;
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--primary); transform: translateY(-1px); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.2s ease; }

.hero {
    position: relative;
    min-height: 92vh;
    padding: 140px 32px 80px;
    background: var(--hero-gradient);
    color: #fff;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.55; }
.hero-orb-a { width: 480px; height: 480px; background: #FF4F8B; top: -120px; right: -120px; }
.hero-orb-b { width: 600px; height: 600px; background: #2E5BFF; bottom: -200px; left: -160px; opacity: 0.45; }
.hero-inner { position: relative; max-width: 1080px; margin: 0 auto; text-align: center; }
.hero-eyebrow { display: inline-block; padding: 8px 18px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-pill); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem; backdrop-filter: blur(10px); }
.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.035em;
    font-weight: 900;
    margin-bottom: 1.5rem;
}
.hero-title em { font-style: normal; background: linear-gradient(120deg, #FF4F8B 0%, #FFB199 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: rgba(255,255,255,0.78); max-width: 640px; margin: 0 auto 2.5rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-meta { display: flex; align-items: center; justify-content: center; gap: 1.4rem; flex-wrap: wrap; }
.hero-rating { display: inline-flex; align-items: center; gap: 0.6rem; }
.stars { color: #FFD37A; letter-spacing: 0.08em; font-size: 1.05rem; }
.rating-value { font-weight: 700; font-size: 1.05rem; }
.rating-count { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.hero-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }
.hero-stat strong { font-weight: 800; font-size: 1.1rem; }
.hero-stat span { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-left: 0.4rem; }

.section-head { max-width: 760px; margin: 0 auto 3.5rem; text-align: center; }
.section-eyebrow { display: inline-block; padding: 6px 14px; background: rgba(19,58,184,0.08); color: var(--primary); border-radius: var(--radius-pill); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; letter-spacing: -0.03em; font-weight: 800; margin-bottom: 1rem; }
.section-sub { color: var(--text-mute); font-size: 1.05rem; max-width: 580px; margin: 0 auto; }

.characters { padding: 100px 32px; background: var(--bg); }
.characters.alt { background: var(--bg-soft); }
.characters .section-head { margin-bottom: 3rem; }
.character-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.character-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
}
.character-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(19,58,184,0.18); }
.character-media { aspect-ratio: 3 / 4; overflow: hidden; background: var(--bg-soft); }
.character-media img, .character-media video { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.5s ease; display: block; }
.character-card:hover .character-media img { transform: scale(1.03); }
.character-info { padding: 1.1rem 1.2rem 1.4rem; }
.character-info h3 { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.4rem; display: flex; align-items: baseline; gap: 0.5rem; }
.character-info h3 span { font-size: 0.85rem; color: var(--primary); font-weight: 600; }
.character-info p { color: var(--text-mute); font-size: 0.9rem; line-height: 1.5; }

.features { padding: 110px 32px; background: var(--bg-dark); color: #fff; }
.features .section-eyebrow { background: rgba(255,79,139,0.18); color: #FFB199; }
.features .section-title { color: #fff; }
.features .section-sub { color: rgba(255,255,255,0.65); }
.feature-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.feature-card {
    padding: 2.2rem 1.8rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,79,139,0.45); background: rgba(255,79,139,0.05); }
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: var(--accent-gradient);
    margin-bottom: 1.4rem;
    position: relative;
    box-shadow: 0 8px 24px rgba(255,79,139,0.25);
}
.feature-icon::after {
    content: ''; position: absolute; inset: 0;
    background-position: center; background-repeat: no-repeat; background-size: 24px;
}
.icon-spark::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2l1.6 6.4L20 10l-6.4 1.6L12 18l-1.6-6.4L4 10l6.4-1.6z'/></svg>"); }
.icon-shield::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2l8 4v6c0 5-3.5 9-8 10-4.5-1-8-5-8-10V6l8-4z'/></svg>"); }
.icon-heart::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 21s-7-4.5-9.5-9.2C.7 8 3 4 7 4c2 0 3.7 1 5 2.6C13.3 5 15 4 17 4c4 0 6.3 4 4.5 7.8C19 16.5 12 21 12 21z'/></svg>"); }
.icon-stars::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M5 3l1 3 3 1-3 1-1 3-1-3-3-1 3-1zm10 0l1.5 4.5L21 9l-4.5 1.5L15 15l-1.5-4.5L9 9l4.5-1.5zm-3 12l1 3 3 1-3 1-1 3-1-3-3-1 3-1z'/></svg>"); }
.icon-memory::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M12 2a7 7 0 017 7c0 1.5-.5 3-1.4 4.2L19 18l-2 .5-1-2.5a7 7 0 11-4-14z'/></svg>"); }
.icon-lock::after { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M6 10V8a6 6 0 1112 0v2h1a1 1 0 011 1v9a1 1 0 01-1 1H5a1 1 0 01-1-1v-9a1 1 0 011-1h1zm2 0h8V8a4 4 0 10-8 0v2z'/></svg>"); }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.feature-card p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

.gallery { padding: 110px 32px; background: var(--bg); }
.gallery-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.2rem; grid-auto-rows: 220px; }
.gallery-item {
    position: relative;
    grid-column: span 4;
    grid-row: span 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: var(--bg-soft);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-tall { grid-column: span 6; grid-row: span 2; }
.gallery-item-mobile { grid-column: span 4; grid-row: span 2; }
.gallery-cap {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 14px;
    background: rgba(10,10,18,0.78);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}

.pricing { padding: 110px 32px; background: var(--bg-soft); }
.price-grid { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; align-items: stretch; }
.price-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card-featured {
    background: var(--bg-dark);
    color: #fff;
    border-color: var(--bg-dark);
    transform: scale(1.03);
    box-shadow: var(--shadow-glow);
}
.price-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: #fff;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 8px 22px rgba(255,79,139,0.35);
}
.price-tier { font-size: 0.95rem; font-weight: 600; opacity: 0.7; letter-spacing: 0.02em; margin-bottom: 0.6rem; }
.price-amount { font-size: 3rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; display: flex; align-items: baseline; gap: 0.15rem; }
.price-amount .currency { font-size: 1.5rem; font-weight: 700; opacity: 0.7; }
.price-period { font-size: 0.9rem; opacity: 0.65; margin-top: 0.4rem; margin-bottom: 1.6rem; }
.price-list { list-style: none; flex: 1; margin-bottom: 1.8rem; }
.price-list li {
    padding: 0.55rem 0 0.55rem 1.6rem;
    position: relative;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(128,128,150,0.12);
}
.price-list li:last-child { border: 0; }
.price-list li::before {
    content: '';
    position: absolute; left: 0; top: 0.85rem;
    width: 14px; height: 8px;
    border-left: 2px solid var(--secondary);
    border-bottom: 2px solid var(--secondary);
    transform: rotate(-45deg);
}
.price-card-featured .btn-primary { background: #fff; color: var(--bg-dark); }
.price-card-featured .btn-primary:hover { background: var(--secondary); color: #fff; }

.faq { padding: 110px 32px; background: var(--bg); }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.9rem; }
.faq-item {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 0;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.faq-item[open] { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.2rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
    transition: transform 0.25s ease;
    line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 0 1.5rem 1.4rem; color: var(--text-mute); font-size: 0.98rem; line-height: 1.6; }

.final-cta {
    padding: 120px 32px;
    background: var(--hero-gradient);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.final-cta::before {
    content: '';
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 20% 30%, rgba(255,79,139,0.35) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(46,91,255,0.4) 0%, transparent 50%);
    pointer-events: none;
}
.final-inner { position: relative; max-width: 720px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 900; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.2rem; }
.final-cta p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 2.2rem; }
.final-cta .btn-primary { background: #fff; color: var(--bg-dark); }
.final-cta .btn-primary:hover { background: var(--secondary); color: #fff; }

.footer { background: #050810; color: rgba(255,255,255,0.7); padding: 80px 32px 32px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 3rem; }
.footer-brand .brand-name { color: #fff; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; margin-left: 0.55rem; }
.footer-brand .brand-dot { vertical-align: middle; }
.footer-tag { margin-top: 1rem; font-size: 0.92rem; max-width: 280px; color: rgba(255,255,255,0.55); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer-col { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.95rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--secondary); }
.footer-langs a::before { content: '· '; color: rgba(255,79,139,0.6); margin-right: 0.2rem; }
.footer-bottom {
    max-width: 1180px;
    margin: 3rem auto 0;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}
.footer-disclaimer { max-width: 520px; text-align: right; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
    .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 200px; }
    .gallery-item { grid-column: span 3; }
    .gallery-item-tall { grid-column: span 6; grid-row: span 2; }
    .gallery-item-mobile { grid-column: span 3; grid-row: span 2; }
    .footer-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar { padding: 14px 20px; }
    .nav-links {
        position: fixed;
        top: 64px; left: 0; right: 0;
        background: #fff;
        flex-direction: column;
        padding: 1.5rem 1.5rem 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        transition: transform 0.3s ease;
    }
    .nav-links.open { transform: translateY(0); }
    .nav-cta { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 120px 20px 60px; min-height: auto; }
    .hero-meta { flex-direction: column; gap: 0.8rem; }
    .hero-divider { display: none; }
    .characters, .features, .gallery, .pricing, .faq { padding: 80px 20px; }
    .character-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item, .gallery-item-tall, .gallery-item-mobile { grid-column: span 2; grid-row: span 1; }
    .gallery-item-tall, .gallery-item-mobile { grid-row: span 2; }
    .price-card-featured { transform: none; }
    .price-card-featured:hover { transform: translateY(-4px); }
    .footer-cols { grid-template-columns: repeat(2, 1fr); }
    .footer-bottom { justify-content: flex-start; }
    .footer-disclaimer { text-align: left; }
    .final-cta { padding: 80px 20px; }
}

@media (max-width: 480px) {
    .character-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.2rem; }
    .btn { padding: 16px 26px; font-size: 0.92rem; }
    .btn-lg { padding: 18px 30px; }
}
