:root {
  --bg: #0c0e16;
  --bg-2: #14161f;
  --surface: #1a1d2b;
  --surface-2: #232634;
  --text: #e6e6ea;
  --muted: #a0a3b1;
  --accent: #6c63ff;
  --accent-2: #4f46e5;
  --accent-dim: rgba(108, 99, 255, .15);
  --border: rgba(255, 255, 255, .08);
  --border-strong: rgba(255, 255, 255, .14);
  --green: #10b981;
  --red: #ef4444;
  --yellow: #fbbf24;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; cursor: pointer; }

.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 14px 24px; background: rgba(12, 14, 22, .72); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px); border-bottom: 1px solid var(--border); }
.site-header-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; letter-spacing: -.3px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand-icon { width: 36px; height: 36px; border-radius: 10px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(108, 99, 255, .35); }
.brand span { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-link { color: var(--muted); font-size: 14px; padding: 6px 10px; border-radius: 8px; transition: color .15s; }
.nav-link:hover { color: var(--text); text-decoration: none; }

.lang-switcher { position: relative; display: inline-block; }
.lang-switcher-btn { display: flex; align-items: center; gap: 6px; background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 8px; padding: 6px 10px; font-size: 12px; font-weight: 600; color: var(--text); cursor: pointer; transition: background .15s; }
.lang-switcher-btn:hover { background: rgba(255,255,255,.09); }
.lang-switcher-btn .arrow { font-size: 9px; opacity: .55; transition: transform .18s; }
.lang-switcher.open .lang-switcher-btn .arrow { transform: rotate(180deg); }
.lang-switcher-menu { position: absolute; top: calc(100% + 6px); right: 0; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 12px; padding: 6px; min-width: 200px; box-shadow: 0 14px 40px rgba(0,0,0,.45); z-index: 200; display: none; backdrop-filter: blur(20px); }
.lang-switcher.open .lang-switcher-menu { display: block; }
.lang-switcher-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 8px; font-size: 13px; color: var(--text); text-decoration: none; font-weight: 500; transition: background .12s; }
.lang-switcher-menu a:hover { background: var(--surface-2); text-decoration: none; }
.lang-switcher-menu a.active { background: var(--accent-dim); color: var(--accent); }
.lang-switcher-menu .flag { width: 22px; text-align: center; font-size: 16px; line-height: 1; }

.hero { padding: 140px 24px 80px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -200px; left: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(108, 99, 255, .22), transparent 60%); filter: blur(60px); pointer-events: none; z-index: 0; }
.hero::after { content: ""; position: absolute; top: 100px; right: -150px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(79, 70, 229, .18), transparent 60%); filter: blur(80px); pointer-events: none; z-index: 0; }
.hero-inner { max-width: 980px; margin: 0 auto; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); padding: 6px 14px; background: var(--accent-dim); border: 1px solid rgba(108, 99, 255, .3); border-radius: 100px; margin-bottom: 20px; }
.hero h1 { font-size: clamp(40px, 6.5vw, 68px); margin: 0 0 18px; letter-spacing: -1.5px; line-height: 1.05; font-weight: 800; }
.hero h1 .grad { background: linear-gradient(135deg, var(--accent) 0%, #a78bfa 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero p.tagline { font-size: clamp(17px, 2vw, 20px); color: var(--muted); max-width: 620px; margin: 0 auto 38px; line-height: 1.55; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.store-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 22px; background: #000; color: #fff; border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; text-decoration: none; font-weight: 600; transition: transform .18s, box-shadow .18s, border-color .18s; }
.store-btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 12px 32px rgba(0, 0, 0, .5); border-color: rgba(255, 255, 255, .25); }
.store-btn small { display: block; font-size: 11px; font-weight: 400; opacity: .7; letter-spacing: .3px; }
.store-btn strong { font-size: 17px; }
.hero-banner-wrap { margin: 50px auto 0; max-width: 880px; position: relative; z-index: 1; }
.hero-banner-wrap img { width: 100%; border-radius: 22px; box-shadow: 0 30px 80px rgba(108, 99, 255, .25), 0 10px 30px rgba(0, 0, 0, .4); border: 1px solid var(--border-strong); }

section { position: relative; }
.section-inner { max-width: 1140px; margin: 0 auto; padding: 100px 24px; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.section-title { font-size: clamp(32px, 5vw, 46px); margin: 0 0 18px; letter-spacing: -1px; line-height: 1.1; font-weight: 800; }
.section-lead { color: var(--muted); font-size: clamp(16px, 1.6vw, 18px); max-width: 640px; margin: 0 auto 60px; line-height: 1.6; text-align: center; }
.section-head { text-align: center; }

.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding: 60px 0; }
.feature-row.reverse .feature-content { order: 2; }
.feature-row.reverse .feature-visual { order: 1; }
.feature-content { padding: 20px 0; }
.feature-icon-box { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--accent-dim); border: 1px solid rgba(108, 99, 255, .3); color: var(--accent); margin-bottom: 20px; }
.feature-row h3 { font-size: clamp(26px, 3.2vw, 36px); margin: 0 0 16px; letter-spacing: -.6px; line-height: 1.15; font-weight: 800; }
.feature-row p { color: var(--muted); font-size: 16px; margin: 0 0 18px; line-height: 1.6; }
.feature-bullets { list-style: none; padding: 0; margin: 0; }
.feature-bullets li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 15px; }
.feature-bullets li svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.feature-visual { position: relative; display: flex; justify-content: center; }
.feature-visual img { max-width: 320px; width: 100%; filter: drop-shadow(0 30px 60px rgba(108, 99, 255, .25)); }

@media (max-width: 860px) { .feature-row { grid-template-columns: 1fr; gap: 32px; text-align: center; padding: 40px 0; } .feature-row.reverse .feature-content { order: unset; } .feature-row.reverse .feature-visual { order: unset; } .feature-bullets li { justify-content: center; } .feature-icon-box { margin-left: auto; margin-right: auto; } }

.section-features-grid { background: linear-gradient(180deg, transparent 0%, rgba(108, 99, 255, .04) 100%); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.feature-card { background: var(--surface); border: 1px solid var(--border); padding: 24px; border-radius: 18px; transition: transform .2s, border-color .2s, background .2s; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(108, 99, 255, .4); background: var(--surface-2); }
.feature-card .feature-icon-box { width: 44px; height: 44px; margin-bottom: 14px; }
.feature-card h4 { font-size: 17px; margin: 0 0 8px; letter-spacing: -.2px; font-weight: 700; }
.feature-card p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.55; }

.section-pricing { background: linear-gradient(180deg, rgba(108, 99, 255, .04) 0%, transparent 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; max-width: 820px; margin: 0 auto; }
.price-card { background: var(--surface); border: 1px solid var(--border); padding: 32px 28px; border-radius: 22px; position: relative; }
.price-card.featured { background: linear-gradient(180deg, rgba(108, 99, 255, .12) 0%, rgba(108, 99, 255, .03) 100%); border: 2px solid var(--accent); box-shadow: 0 24px 60px rgba(108, 99, 255, .2); }
.price-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #1a1d30; font-size: 11px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; box-shadow: 0 4px 12px rgba(245, 158, 11, .35); }
.price-tier { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.price-amount { font-size: 48px; font-weight: 800; letter-spacing: -1.5px; margin: 14px 0 4px; line-height: 1; }
.price-amount small { font-size: 17px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-subtext { color: var(--muted); font-size: 13px; margin-bottom: 22px; }
.price-list { list-style: none; padding: 0; margin: 0 0 24px; }
.price-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text); }
.price-list li svg { flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.price-list li.no { color: var(--muted); }
.price-list li.no svg { color: var(--muted); opacity: .55; }
.price-cta { display: block; text-align: center; padding: 13px 22px; background: var(--accent); color: #fff; border-radius: 12px; font-weight: 600; font-size: 15px; text-decoration: none; transition: transform .15s, box-shadow .15s; }
.price-cta:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 10px 26px rgba(108, 99, 255, .35); }
.price-cta.secondary { background: transparent; border: 1px solid var(--border-strong); color: var(--text); }
.price-cta.secondary:hover { background: var(--surface-2); box-shadow: none; }
.price-trial { font-size: 12px; color: var(--muted); text-align: center; margin-top: 14px; }

.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; margin-bottom: 10px; overflow: hidden; transition: border-color .15s; }
.faq-item:hover { border-color: var(--border-strong); }
.faq-item summary { padding: 18px 22px; font-size: 16px; font-weight: 600; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 14px; user-select: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; font-weight: 300; color: var(--accent); transition: transform .2s; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--muted); font-size: 15px; line-height: 1.65; }

.section-waitlist { background: linear-gradient(135deg, rgba(108, 99, 255, .08) 0%, rgba(79, 70, 229, .04) 100%); }
.waitlist-card { max-width: 580px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 36px 30px; text-align: center; position: relative; overflow: hidden; }
.waitlist-card::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(108, 99, 255, .1), transparent 50%); pointer-events: none; }
.waitlist-card > * { position: relative; z-index: 1; }
.waitlist-icon { width: 60px; height: 60px; border-radius: 16px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: inline-flex; align-items: center; justify-content: center; margin: 0 auto 18px; box-shadow: 0 8px 24px rgba(108, 99, 255, .35); }
.waitlist-card h3 { font-size: 26px; margin: 0 0 10px; letter-spacing: -.4px; font-weight: 800; }
.waitlist-card p { color: var(--muted); font-size: 15px; margin: 0 0 24px; }
.waitlist-form { display: flex; gap: 8px; max-width: 420px; margin: 0 auto; flex-wrap: wrap; }
.waitlist-form input[type="email"] { flex: 1; min-width: 200px; padding: 13px 16px; background: var(--bg-2); border: 1px solid var(--border-strong); border-radius: 12px; color: var(--text); font-size: 15px; outline: none; transition: border-color .15s; }
.waitlist-form input[type="email"]:focus { border-color: var(--accent); }
.waitlist-form button { padding: 13px 24px; background: var(--accent); color: #fff; border: none; border-radius: 12px; font-weight: 600; font-size: 14px; white-space: nowrap; transition: transform .15s, box-shadow .15s; }
.waitlist-form button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(108, 99, 255, .4); }
.waitlist-form button:disabled { opacity: .6; cursor: not-allowed; transform: none; }
.waitlist-status { margin-top: 14px; font-size: 13px; min-height: 18px; }
.waitlist-status.ok { color: var(--green); }
.waitlist-status.err { color: var(--red); }
.waitlist-meta { margin-top: 20px; font-size: 12px; color: var(--muted); opacity: .8; }

footer.site-footer { background: var(--bg-2); padding: 50px 24px 30px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1140px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 36px; }
.footer-col h5 { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { padding: 4px 0; }
.footer-col a { color: var(--text); font-size: 14px; transition: color .15s; }
.footer-col a:hover { color: var(--accent); text-decoration: none; }
.footer-brand p { color: var(--muted); font-size: 13px; margin: 14px 0 14px; max-width: 320px; line-height: 1.55; }
.footer-studio-card { display: inline-flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--border); padding: 10px 16px 10px 10px; border-radius: 14px; text-decoration: none; transition: border-color .15s, transform .15s, background .15s; }
.footer-studio-card:hover { border-color: var(--accent); background: var(--surface-2); transform: translateY(-1px); text-decoration: none; }
.footer-studio-card .studio-logo { width: 38px; height: 38px; border-radius: 10px; display: block; object-fit: cover; background: #000; }
.footer-studio-card .studio-meta { display: flex; flex-direction: column; gap: 1px; }
.footer-studio-card .studio-meta small { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }
.footer-studio-card .studio-meta strong { font-size: 14px; color: var(--text); font-weight: 700; letter-spacing: -.2px; }
.footer-studio-card .studio-arrow { color: var(--muted); font-size: 14px; font-weight: 600; margin-left: 6px; transition: color .15s, transform .15s; }
.footer-studio-card:hover .studio-arrow { color: var(--accent); transform: translateX(2px); }
.footer-bottom { max-width: 1140px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--border); font-size: 13px; color: var(--muted); }
.footer-bottom-line { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom-line strong { color: var(--text); font-weight: 700; }
.footer-trademark { font-size: 11px; color: var(--muted); opacity: .7; margin-top: 10px; line-height: 1.5; }

@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; } .nav-right { gap: 8px; } .nav-link { display: none; } .hero { padding: 110px 20px 60px; } .section-inner { padding: 60px 20px; } .lang-switcher-btn span:not(.flag):not(.arrow) { display: none; } }

.cookie-banner { position: fixed; bottom: 16px; left: 16px; right: 16px; max-width: 540px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 18px; padding: 18px 22px; box-shadow: 0 20px 50px rgba(0, 0, 0, .5); z-index: 200; display: none; align-items: center; gap: 14px; font-size: 14px; backdrop-filter: blur(20px); }
.cookie-banner.visible { display: flex; flex-wrap: wrap; }
.cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--text); line-height: 1.55; }
.cookie-banner p a { color: var(--accent); }
.cookie-banner button { padding: 10px 18px; background: var(--accent); color: #fff; border: none; border-radius: 10px; font-weight: 600; font-size: 13px; white-space: nowrap; }
.cookie-banner button:hover { background: var(--accent-2); }
