:root {
  --brand: #b11116;
  --brand-2: #d92b2b;
  --brand-3: #ff4d4d;
  --grid-gap-x: 80px;
  --grid-gap-y: 40px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; background: #0a0a0f; color: #fff; overflow-x: hidden; }

#preloader { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; background: #0a0a0f; transition: opacity .5s ease, visibility .5s ease; }
#preloader .pl-logo { width: 120px; height: auto; filter: drop-shadow(0 0 12px rgba(255,77,77,.6)); animation: pl-spin 1s cubic-bezier(.55,.1,.3,1) 1 both; }
@keyframes pl-spin { from { transform: rotate(0deg) scale(1); opacity: 1; } to { transform: rotate(360deg) scale(1); opacity: 1; } }

.js body:not(.ready) header,
.js body:not(.ready) main,
.js body:not(.ready) footer { opacity: 0; pointer-events: none; }
.js body.ready header,
.js body.ready main,
.js body.ready footer { opacity: 1; transition: opacity .5s ease .1s; }

.preloader-exit { opacity: 0 !important; }

.bg-grid { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.bg-grid::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.85) 100%); }

.bg-grid-canvas { position: fixed; inset: 0; z-index: -1; display: block; width: 100vw; height: 100vh; pointer-events: none; }

.page-particles { position: fixed; inset: 0; z-index: -1; width: 100vw; height: 100vh; display: block; pointer-events: none; }

.top-scan { position: fixed; left: 0; right: 0; top: 0; height: 2px; z-index: 240; pointer-events: none; }
.top-scan::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: linear-gradient(90deg, rgba(255,77,77,.0), rgba(255,77,77,.8), rgba(255,77,77,.0)); filter: drop-shadow(0 0 8px rgba(255,77,77,.7)); transform-origin: left; animation: scanMove 3.4s linear infinite; }
.top-scan::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 12px; background: linear-gradient(180deg, rgba(255,77,77,.18), rgba(255,77,77,0)); opacity: .6; mask: linear-gradient(90deg, transparent 0, #000 28%, #000 72%, transparent 100%); }
@keyframes scanMove { 0% { transform: translateX(-30%) } 100% { transform: translateX(30%) } }
@media (prefers-reduced-motion: reduce) { .top-scan::before { animation: none; } }

.hero-ac::before { background: none; }

html { scrollbar-color: #2b2b33 #0b0b11; scrollbar-width: thin; }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #0b0b11; }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #2b2b33, #1b1b22); border-radius: 8px; border: 2px solid #0b0b11; }
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #34343d, #22222b); }

.fade-in { opacity: 0; transform: translateY(40px); transition: opacity .8s cubic-bezier(.77,0,.18,1), transform .8s cubic-bezier(.77,0,.18,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
html.no-js .fade-in { opacity: 1 !important; transform: none !important; }

#lines { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.line { position: absolute; width: 2px; height: 100%; background: linear-gradient(to bottom, transparent, var(--brand), transparent); opacity: .2; animation: move 8s linear infinite; }
@keyframes move { 0% { transform: translateY(-100%);} 100% { transform: translateY(100%);} }
.dot { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: #fff; opacity: .8; animation: twinkle 2.8s ease-in-out infinite; }
@keyframes twinkle { 0%,100% { opacity:.2; transform:scale(.9);} 50% { opacity:.9; transform:scale(1);} }

.navbar { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); width: min(1100px, 94vw); padding: 8px 12px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; background: rgba(12,12,18,.75); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; box-shadow: 0 10px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(255,255,255,.04) inset; transition: background .25s, box-shadow .25s, border-color .25s; z-index: 300; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; letter-spacing: .2px; }
.navbar.scrolled { background: rgba(12,12,18,.85); border-color: rgba(255,255,255,.12); box-shadow: 0 12px 50px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06) inset; }
.logo-img { height: 30px; display: block; }
.nav-links { display: flex; justify-content: center; gap: 6px; list-style: none; }
.nav-links li a { color: #cfcfd6; text-decoration: none; font-size: .98rem; padding: 8px 12px; border-radius: 10px; transition: color .25s, background .25s, box-shadow .25s; font-weight: 600; }
.nav-links li a:hover, .nav-links li a.active { color: #fff; background: rgba(255,255,255,.06); box-shadow: inset 0 0 0 1px rgba(255,255,255,.08); }
.nav-links li a.disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }
.nav-actions { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav-links { position: relative; align-items: center; }
.nav-indicator { position: absolute; height: 2px; background: linear-gradient(90deg, var(--brand-3), var(--brand-2)); bottom: -6px; left: 0; width: 0; border-radius: 2px; box-shadow: 0 0 14px rgba(255,77,77,.6); transition: transform .25s cubic-bezier(.55,.1,.3,1), width .25s cubic-bezier(.55,.1,.3,1), opacity .25s; opacity: 0; }
.nav-progress { position: absolute; left: 10px; right: 10px; bottom: 2px; height: 2px; border-radius: 2px; background: linear-gradient(90deg, rgba(255,255,255,.08), rgba(255,255,255,.08)); overflow: hidden; }
.nav-progress::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: var(--prog, 0%); background: linear-gradient(90deg, var(--brand), var(--brand-3)); box-shadow: 0 0 10px rgba(255,77,77,.6); border-radius: 2px; transition: width .1s linear; }
.dashboard-btn { position: relative; background: linear-gradient(90deg, var(--brand), var(--brand-2)); color: #fff; padding: 8px 16px; border-radius: 999px; font-weight: 700; border: 1px solid rgba(255,255,255,.08); box-shadow: 0 6px 20px rgba(177,17,22,.22); transition: transform .2s, box-shadow .2s, background .2s, text-shadow .2s; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; overflow: visible; }
.dashboard-btn::before { content: ''; position: absolute; inset: -6px; border-radius: inherit; background: radial-gradient(90% 90% at 50% 50%, rgba(255,77,77,.35), rgba(0,0,0,0) 70%); filter: blur(10px); opacity: .8; z-index: -1; }
.dashboard-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(177,17,22,.38), 0 0 0 2px rgba(255,77,77,.15) inset; background: linear-gradient(90deg, var(--brand-2), var(--brand)); text-shadow: 0 0 8px rgba(255,77,77,.3); }
.dashboard-btn:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 2px; }
.dash-icon { display: inline-flex; align-items: center; justify-content: center; transform: translateY(1px); transition: transform .2s ease, filter .2s ease; filter: drop-shadow(0 0 0 rgba(255,77,77,0)); }
.dash-icon svg { display: block; }
.dashboard-btn:hover .dash-icon { transform: translateY(-1px) rotate(-6deg) scale(1.05); filter: drop-shadow(0 0 6px rgba(255,77,77,.6)); }

.prox-hover-target { --prox: 0; transition: filter .2s ease, box-shadow .2s ease, background .2s ease, outline-color .2s ease; }
.nav-links a.prox-hover-target { position: relative; }
.nav-links a.prox-hover-target::after { content: ''; position: absolute; inset: -4px; border-radius: 12px; background: radial-gradient(120% 100% at var(--mx,50%) var(--my,50%), rgba(255,77,77,.18), rgba(255,77,77,0) 60%); opacity: calc(.9 * var(--prox)); pointer-events: none; filter: blur(10px); z-index: -1; }
.dashboard-btn.prox-hover-target { position: relative; }
.dashboard-btn.prox-hover-target::after { content: ''; position: absolute; inset: -2px; border-radius: inherit; background: radial-gradient(140% 140% at var(--mx,50%) var(--my,50%), rgba(255,77,77,.28), rgba(255,77,77,0) 65%); opacity: calc(.65 * var(--prox)); pointer-events: none; z-index: -1; filter: blur(8px); }
.dashboard-btn.prox-hover-target { filter: drop-shadow(0 0 calc(14px * var(--prox)) rgba(255,77,77,.5)); }
.hero-login-btn.prox-hover-target { filter: drop-shadow(0 0 calc(18px * var(--prox)) rgba(255,77,77,.55)); }
.faq-toggle.prox-hover-target { box-shadow: 0 0 0 calc(1px + 3px * var(--prox)) rgba(255,77,77, calc(.25 * var(--prox))) inset; background-color: rgba(255,77,77, calc(.04 * var(--prox))); }

.hamburger { display: none; width: 40px; height: 40px; cursor: pointer; z-index: 200; align-items: center; justify-content: center; }
.hamburger span { width: 28px; height: 4px; margin: 4px 0; border-radius: 2px; background: var(--brand); display: block; transition: .4s; }
@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-links { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: rgba(10,10,20,0.98); flex-direction: column; gap: 0; }
  .nav-links.active { display: flex; }
  .nav-links li { border-bottom: 1px solid #222; }
  .navbar { grid-template-columns: 1fr auto auto; }
  .nav-actions { order: 2; }
  .nav-actions .dashboard-btn { display: none; }
  .hamburger { order: 3; }
  .login-link-mobile { display: block; }
  .nav-indicator, .nav-progress { display: none; }
}
.login-link-mobile { display: none; }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 2rem; }
.hero-ac { position: relative; padding-top: 80px; padding-bottom: 14vh; gap: 2rem; flex-direction: column; }
.hero-ac::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.04) 0 1px, transparent 1px 60px), repeating-linear-gradient(90deg, rgba(255,255,255,.04) 0 1px, transparent 1px 60px); z-index: -2; }
.hero-ac::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.9) 100%); z-index: -1; }
.hero-particles { display: none; }
.hero-intro { position: relative; text-align: center; max-width: 900px; margin: 0 auto; }

:root {
  --hi-anim: 8s;
  --hi-path: 2px;
  --hi-gap: 5%;
  --hi-radius: 16px;
  --hi-color: #69ca62;
}
.border-anim { position: relative; border-radius: var(--hi-radius); }
.border-anim::before,
.border-anim::after {
  content: '';
  position: absolute;
  z-index: 0;
  inset: calc(-1 * var(--hi-gap));
  border-radius: var(--hi-radius);
  pointer-events: none;
  box-shadow: inset 0 0 0 var(--hi-path) var(--hi-color);
  animation: clipRun var(--hi-anim) linear infinite;
}
.border-anim::before { animation-delay: calc(var(--hi-anim) * -0.5); }

@keyframes clipRun {
  0%, 100%   { clip-path: inset(0 0 calc(100% - var(--hi-path)) 0); }
  25%        { clip-path: inset(0 calc(100% - var(--hi-path)) 0 0); }
  50%        { clip-path: inset(calc(100% - var(--hi-path)) 0 0 0); }
  75%        { clip-path: inset(0 0 0 calc(100% - var(--hi-path))); }
}

@media (prefers-reduced-motion: reduce) {
  .border-anim::before, .border-anim::after { animation: none; }
}

.hero-intro-btn { position: relative; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); color: #ddd; border-radius: 999px; padding: 10px 18px; font-weight: 600; margin-bottom: 18px; box-shadow: 0 0 0 4px rgba(177,17,22,.12) inset; overflow: visible; }
.hero-intro-btn::before, .hero-intro-btn::after { content: ''; position: absolute; top: 50%; transform: translateY(-50%); width: 26px; height: 70%; border-radius: 999px; pointer-events: none; opacity: calc(.35 + .55 * var(--prox, 0)); filter: blur(10px); transition: opacity .25s ease, filter .25s ease; }
.hero-intro-btn::before { left: -12px; background: radial-gradient(60% 60% at 55% 50%, rgba(255,77,77,.85), rgba(255,77,77,0) 65%); }
.hero-intro-btn::after { right: -12px; background: radial-gradient(60% 60% at 45% 50%, rgba(255,77,77,.85), rgba(255,77,77,0) 65%); }
.hero-intro-btn:hover::before, .hero-intro-btn:hover::after, .hero-intro-btn:focus-visible::before, .hero-intro-btn:focus-visible::after { opacity: 1; filter: blur(12px); }
.hero-intro-btn .spark { display: inline-flex; align-items: center; justify-content: center; color: var(--brand-3); margin-right: 6px; }
.hero-intro-btn .spark svg { display: block; width: 16px; height: 16px; }
.hero h1 { font-size: 3.2rem; line-height: 1.1; color: #e9e9f2; text-shadow: 0 0 30px rgba(209,32,32,.25); }
.hero .highlight { color: var(--brand-3); }
.hero-desc { color: #b9b9c5; margin: 14px auto 22px; max-width: 780px; font-size: 1.1rem; }
.hero-login-btn { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 12px 22px; border-radius: 12px; background: linear-gradient(180deg,#16161c,#0a0a0f); color: #fff; text-decoration: none; font-weight: 800; letter-spacing: .2px; border: 1px solid rgba(255,255,255,.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,.03), 0 8px 28px rgba(0,0,0,.45); transition: transform .2s ease, box-shadow .2s ease, color .2s ease; overflow: visible; }
.hero-login-btn::before { content: ''; position: absolute; inset: -4px; border-radius: inherit; background: radial-gradient(100% 100% at 50% 50%, rgba(255,77,77,.55) 0%, rgba(177,17,22,.35) 40%, rgba(0,0,0,.35) 70%, rgba(0,0,0,0) 100%); filter: blur(10px); z-index: -1; opacity: .9; pointer-events: none; }
.hero-login-btn::after { content: ''; position: absolute; inset: -10px; border-radius: inherit; background: linear-gradient(90deg, rgba(255,77,77,.45), rgba(0,0,0,0)); filter: blur(22px); z-index: -2; opacity: .8; pointer-events: none; animation: redPulse 2.8s ease-in-out infinite; }
.hero-login-btn:hover { transform: translateY(-2px) scale(1.03); box-shadow: inset 0 0 0 1px rgba(255,255,255,.05), 0 14px 40px rgba(177,17,22,.35); text-shadow: 0 0 10px rgba(255,77,77,.3); }
.hero-login-btn:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; }
@keyframes redPulse { 0%,100% { opacity: .8; filter: blur(22px); } 50% { opacity: 1; filter: blur(26px); } }

@media (prefers-reduced-motion: reduce) {
  .line, .dot { animation: none !important; }
  .hero-login-btn::after { animation: none !important; }
  .dashboard-btn::before { animation: none !important; }
  .hero-3d-card { transition: none !important; }
  .bg-grid::after { animation: none !important; opacity: 0 !important; }
}

.hero-preview { display: flex; justify-content: center; }
.hero-preview-window { position: relative; width: min(1050px, 92vw); margin: 28px auto 0; background: rgba(20,20,24,.9); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.04) inset; padding: 40px 24px; }
.hero-3d { perspective: 1200px; display: flex; justify-content: center; }
.hero-3d.dual { gap: 18px; align-items: center; flex-wrap: nowrap; }
.hero-3d-card { position: relative; width: min(900px, 86vw); border-radius: 16px; overflow: hidden; transform-style: preserve-3d; transition: transform 200ms ease, box-shadow 200ms ease; box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.06) inset; }
.hero-3d.dual .hero-3d-card { width: min(430px, 42vw); max-width: 520px; }
.hero-3d.dual .hero-3d-card.small { width: min(280px, 32vw); max-width: 340px; }
.hero-3d.dual .hero-3d-card.large { width: min(620px, 56vw); max-width: 720px; }
.hero-3d-card.small .hero-3d-img { object-fit: contain; background: rgba(0,0,0,.35); }
.hero-3d.dual .hero-3d-card.small { display: grid; place-items: center; }
.hero-3d-card.small .hero-3d-img { width: 100%; height: auto; }
.hero-3d-card::before { content: ''; position: absolute; inset: -2px; border-radius: 18px; pointer-events: none; background: radial-gradient(70% 50% at 50% 0%, rgba(209,32,32,.22), rgba(0,0,0,0)); filter: blur(20px); }
.hero-3d-card::after { content: ''; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(0,0,0,0) 75%, rgba(0,0,0,.6) 100%); }
.hero-3d-img { display: block; width: 100%; height: auto; }
.youtube-preview { position: relative; width: min(960px, 86vw); aspect-ratio: 16 / 9; margin: 0 auto; overflow: hidden; border-radius: 16px; background: #09090b; box-shadow: 0 30px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.08) inset; }
.youtube-preview-button { width: 100%; height: 100%; display: grid; place-items: center; align-content: center; gap: 18px; color: #e9e9f2; background-position: center; background-size: cover; border: 0; cursor: pointer; font: inherit; }
.youtube-preview-button::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.48)); }
.youtube-play { position: relative; z-index: 1; width: 76px; height: 54px; border-radius: 16px; background: #ff0000; box-shadow: 0 12px 32px rgba(0,0,0,.45); transition: transform .2s ease, background .2s ease; }
.youtube-play::after { content: ''; position: absolute; top: 50%; left: 52%; transform: translate(-50%,-50%); border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 18px solid #fff; }
.youtube-preview-button:hover .youtube-play { transform: scale(1.08); background: #e00000; }
.youtube-placeholder { position: relative; z-index: 1; font-weight: 700; text-shadow: 0 2px 12px #000; }
.youtube-preview iframe { width: 100%; height: 100%; display: block; border: 0; }

@media (max-width: 820px) {
  .hero-3d.dual { flex-wrap: wrap; }
  .hero-3d.dual .hero-3d-card,
  .hero-3d.dual .hero-3d-card.small,
  .hero-3d.dual .hero-3d-card.large { width: min(640px, 92vw); max-width: none; }
}

.btn-primary { background: linear-gradient(90deg, var(--brand), var(--brand-2)); padding: .8rem 1.5rem; border-radius: 8px; color: #fff; font-weight: 700; box-shadow: 0 2px 12px rgba(177,17,22,.12); transition: transform .3s, box-shadow .3s, background .3s; position: relative; overflow: hidden; text-decoration: none; display: inline-block; }
.btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #ff4d4d33, #b1111633); opacity: 0; transition: opacity .4s; z-index: 0; }
.btn-primary:hover { transform: scale(1.07) translateY(-2px); box-shadow: 0 4px 24px rgba(177,17,22,.22); background: linear-gradient(90deg, var(--brand-2), var(--brand)); }
.btn-primary:hover::after { opacity: 1; }

.section { padding: 6rem 2rem; text-align: center; }
.section h2 { font-size: 2rem; margin-bottom: 2rem; color: var(--brand); }

.features-title { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); color: #e9e9f2; font-weight: 800; margin-bottom: .6rem; }
.neon-title { color: var(--brand-3); text-shadow: 0 0 10px rgba(255,77,77,.45), 0 0 20px rgba(255,77,77,.28), 0 0 36px rgba(255,77,77,.18); }
.features-subtitle { color: #b9b9c5; max-width: 820px; margin: 0 auto 2.2rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; max-width: 1150px; margin: 0 auto; }
.feature-card { background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 26px; text-align: left; display: flex; align-items: flex-start; gap: 16px; box-shadow: 0 25px 60px rgba(0,0,0,.45); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.14); box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.feature-icon { width: 44px; height: 44px; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 44px; color: #d9dbe6; background: radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); box-shadow: inset 0 0 0 1px rgba(255,255,255,.04), 0 8px 24px rgba(0,0,0,.35); }
.feature-icon svg { display: block; }
.feature-card:hover .feature-icon { box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 10px 28px rgba(0,0,0,.45), 0 0 0 4px rgba(177,17,22,.10); color: #ffffff; }
.feature-content h3 { color: #eaeaf2; margin-bottom: 6px; }
.feature-content p { color: #9da0ab; }

.compare-header { margin-bottom: 1.8rem; }
.hero-intro-btn.small { padding: 6px 12px; font-size: .85rem; margin-bottom: 12px; }
.compare-title { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); font-weight: 800; color: #e9e9f2; margin: .25rem 0 .4rem; }
.compare-subtitle { color: #b9b9c5; max-width: 800px; margin: 0 auto; }
.compare-container { display: grid; grid-template-columns: 1fr; max-width: 1200px; margin: 0 auto; padding: 0 10px; }
.compare-wrapper { position: relative; height: clamp(260px, 46vw, 440px); border-radius: 22px; overflow: hidden; background: rgba(20,20,24,.9); border: 1px solid rgba(255,255,255,.08); box-shadow: 0 25px 60px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.04); }
.compare-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(.9) contrast(.95); }
.compare-before { clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare-after { clip-path: inset(0 0 0 var(--pos)); }
.compare-label { position: absolute; top: 14px; padding: 6px 12px; border-radius: 999px; background: rgba(0,0,0,.6); color: #eaeaf2; font-weight: 700; font-size: .9rem; border: 1px solid rgba(255,255,255,.12); }
.compare-label--left { left: 14px; }
.compare-label--right { right: 14px; }
.compare-divider { position: absolute; top: 0; bottom: 0; width: 3px; left: var(--pos); transform: translateX(-1.5px); background: linear-gradient(to bottom, transparent, rgba(255,255,255,.5) 30%, rgba(255,255,255,.5) 70%, transparent), radial-gradient(circle at center, rgba(209,32,32,.35) 0, rgba(209,32,32,0) 65%); box-shadow: 0 0 30px rgba(209,32,32,.3), 0 0 0 1px rgba(255,255,255,.06) inset; pointer-events: none; }
.compare-handle { position: absolute; top: 50%; left: var(--pos); transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); background: rgba(20,20,24,.75); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: grid; place-items: center; cursor: ew-resize; box-shadow: 0 10px 30px rgba(0,0,0,.5), 0 0 0 3px rgba(209,32,32,.18); transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease; }
.compare-handle::before, .compare-handle::after { content: ''; position: absolute; width: 10px; height: 10px; border-width: 2px; border-style: solid; border-color: currentColor; opacity: .85; filter: drop-shadow(0 0 4px rgba(209,32,32,.45)); transition: transform .2s ease, opacity .2s ease; }
.compare-handle::before { border-right: 0; border-top: 0; transform: rotate(45deg); left: 10px; color: var(--brand-3); }
.compare-handle::after { border-left: 0; border-bottom: 0; transform: rotate(45deg); right: 10px; color: var(--brand-3); }
.compare-handle:hover { box-shadow: 0 12px 36px rgba(0,0,0,.6), 0 0 0 4px rgba(209,32,32,.24); transform: translate(-50%, -50%) scale(1.04); }
.compare-handle:active, .compare-wrapper.dragging .compare-handle { box-shadow: 0 14px 40px rgba(0,0,0,.65), 0 0 0 5px rgba(209,32,32,.3); transform: translate(-50%, -50%) scale(1.07); }
.compare-handle:focus-visible { outline: 2px solid var(--brand-2); outline-offset: 3px; }
.compare-handle-dot { width: 8px; height: 8px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--brand-3), var(--brand-2)); box-shadow: 0 0 10px rgba(209,32,32,.55), 0 0 0 2px rgba(209,32,32,.25); }

.faq-title { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); font-weight: 800; color: #e9e9f2; margin: .25rem 0 .4rem; }
.faq-subtitle { color: #b9b9c5; }
.faq-card { width: min(980px, 94vw); margin: 18px auto 0; background: rgba(20,20,24,.9); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; box-shadow: 0 25px 60px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.04); text-align: left; }
.faq-list { list-style: none; margin: 0; padding: 6px; }
.faq-item + .faq-item { border-top: 1px solid rgba(255,255,255,.06); }
.faq-toggle { width: 100%; text-align: left; padding: 18px 16px; background: transparent; border: 0; color: #eaeaf2; font-weight: 600; font-size: 1rem; display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; }
.faq-toggle { position: relative; overflow: hidden; border-radius: 12px; }
/* Shine sweep */
.faq-toggle::after { content: ''; position: absolute; top: -50%; bottom: -50%; width: 60%; left: -60%; transform: skewX(-20deg); background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.12) 50%, rgba(255,255,255,0) 100%); opacity: 0; transition: transform .6s ease, opacity .4s ease; pointer-events: none; }
.faq-toggle:hover::after { transform: translateX(260%) skewX(-20deg); opacity: .7; }
/* Ink ripple */
.faq-toggle::before { content:''; position: absolute; inset: 0; background: radial-gradient(140px circle at var(--mx,50%) var(--my,50%), rgba(255,77,77,.18), rgba(255,77,77,0) 60%); opacity: 0; transition: opacity .45s ease; pointer-events: none; }
.faq-toggle:hover::before { opacity: 1; }
.faq-item.open .faq-toggle { background: rgba(255,77,77,.08); box-shadow: 0 0 0 1px rgba(255,77,77,.2) inset; }
.faq-content { padding: 0 16px 16px; color: #9da0ab; line-height: 1.6; overflow: hidden; }
.chevron { width: 18px; height: 18px; border-right: 2px solid #aaa; border-bottom: 2px solid #aaa; transform: rotate(-45deg); transition: transform .25s ease; }
.faq-item.open .chevron { transform: rotate(45deg); }

.pricing-header { margin-bottom: 1.8rem; }
.pricing-title { font-size: clamp(2rem, 4vw + 1rem, 3.2rem); font-weight: 800; color: #e9e9f2; margin: .25rem 0 .4rem; }
.pricing-subtitle { color: #b9b9c5; max-width: 820px; margin: 0 auto 1.8rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; max-width: 1150px; margin: 0 auto; }
.price-card { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 18px; padding: 22px; text-align: left; box-shadow: 0 25px 60px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.04); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.price-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,.14); box-shadow: 0 30px 70px rgba(0,0,0,.55); }
.price-card .badge { position: absolute; top: 12px; right: 12px; font-size: .8rem; font-weight: 800; color: #fff; background: linear-gradient(90deg, var(--brand), var(--brand-2)); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; padding: 6px 10px; box-shadow: 0 8px 24px rgba(177,17,22,.32); }
.price-header { margin-bottom: 14px; }
.price-name { color: #eaeaf2; font-size: 1.2rem; margin-bottom: 8px; }
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price { font-size: 2.2rem; font-weight: 900; color: #fff; letter-spacing: .3px; }
.price-period { color: #9da0ab; font-weight: 600; }
.price-row-request { align-items: flex-end; flex-wrap: wrap; }
.price-request { font-size: clamp(1.35rem, 2.2vw, 1.8rem); line-height: 1.1; }
.price-cta { display: inline-flex; justify-content: center; align-items: center; width: 100%; padding: 10px 12px; border-radius: 10px; background: #fff; color: #111; font-weight: 800; border: 0; text-decoration: none; margin: 6px 0 14px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.price-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px rgba(0,0,0,.35); }
.price-features { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; color: #b9b9c5; }
.price-features .check { color: var(--brand-3); margin-right: 8px; }
.price-features li { display: flex; align-items: center; gap: 6px; }
.price-card.featured { border-color: rgba(255,77,77,.25); box-shadow: 0 30px 80px rgba(177,17,22,.38), inset 0 0 0 1px rgba(255,255,255,.05); }

@media (max-width: 1000px) { .pricing-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .pricing-grid { grid-template-columns: 1fr; } }

.reviews .features-title { color: #e9e9f2; }
.reviews-marquee { display: grid; gap: 16px; max-width: 1150px; margin: 0 auto; overflow: hidden; }
.marquee-row { position: relative; mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%); -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%); }
.marquee-track { display: inline-flex; gap: 16px; will-change: transform; }
.marquee-row[data-dir="left"] .marquee-track { animation: marquee-left 28s linear infinite; }
.marquee-row[data-dir="right"] .marquee-track { animation: marquee-right 30s linear infinite; }
.reviews-marquee:hover .marquee-track { animation-play-state: paused; }
.review-card { min-width: 300px; max-width: 340px; position: relative; overflow: hidden; background: transparent; border: 1px solid transparent; border-radius: 16px; padding: 14px; text-align: left; box-shadow: none; transition: transform .2s ease, box-shadow .25s ease, border-color .25s ease; }
.review-card::before { content: ''; position: absolute; inset: -4px; border-radius: inherit; background: linear-gradient(135deg, rgba(177,17,22,.45), rgba(0,0,0,.85)); filter: blur(10px); opacity: 0; transition: opacity .3s ease; z-index: 0; }
.review-card:hover { transform: translateY(-3px); border-color: rgba(255,77,77,.28); box-shadow: 0 16px 40px rgba(0,0,0,.55), 0 0 28px rgba(177,17,22,.22); }
.review-card:hover::before { opacity: 1; }
.review-card .review-top, .review-card .review-text { position: relative; z-index: 1; }
.review-name, .review-role, .review-text { text-shadow: 0 1px 1px rgba(0,0,0,.35); }
.review-top { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.review-avatar { flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%; background: var(--grad, linear-gradient(135deg, #6a5cff, #ff4d4d)); box-shadow: 0 0 0 2px rgba(255,255,255,.12) inset, 0 6px 16px rgba(0,0,0,.35); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: .72rem; letter-spacing: .5px; text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.review-meta { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; min-width: 0; }
.review-name { color: #eaeaf2; font-weight: 700; font-size: .95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.review-role { color: #9da0ab; font-size: .8rem; font-weight: 600; }
.review-stars { font-size: .82rem; letter-spacing: 2px; color: var(--brand-3); line-height: 1; }
.review-stars .off { color: rgba(255,255,255,.18); }
.review-text { color: #c9cbd6; font-size: .95rem; }
.review-text strong { color: #f2f2f6; display: inline-block; margin-bottom: 2px; }
.reviews-marquee--static .marquee-row { -webkit-mask: none; mask: none; }
.reviews-marquee--static .marquee-track { animation: none !important; justify-content: center; flex-wrap: wrap; }
.reviews-marquee--static .review-card { min-width: 260px; }

@keyframes marquee-left { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (max-width: 640px) {
  .review-card { min-width: 260px; }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none !important; }
}

.site-footer { position: relative; margin-top: 6rem; padding: 0 2rem 3rem; background: #0a0a0f; overflow: hidden; }
.footer-scan { position: absolute; left: 0; right: 0; top: 0; height: 2px; pointer-events: none; background: linear-gradient(90deg, rgba(255,77,77,0), rgba(255,77,77,.55) 20%, rgba(255,77,77,.95) 50%, rgba(255,77,77,.55) 80%, rgba(255,77,77,0)); filter: drop-shadow(0 0 10px rgba(255,77,77,.6)); }
.footer-scan::after { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 90px; background: linear-gradient(180deg, rgba(255,77,77,.10), rgba(255,77,77,0)); -webkit-mask: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent); mask: linear-gradient(90deg, transparent, #000 30%, #000 70%, transparent); }

.footer-panel { position: relative; width: min(1080px, 94vw); margin: 3.4rem auto 0; padding: 34px; border: 1px solid rgba(255,255,255,.08); border-radius: 22px; background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); box-shadow: 0 30px 70px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.03); }
.footer-panel::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px; background: linear-gradient(180deg, rgba(255,77,77,.3), rgba(255,77,77,0) 45%); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none; }

.footer-top { display: flex; flex-wrap: wrap; gap: clamp(36px, 8vw, 90px); justify-content: space-between; align-items: flex-start; }
.footer-brand { display: grid; justify-items: start; gap: 13px; max-width: 320px; }
.footer-logo { color: #e9e9f2; font-weight: 800; font-size: 1.15rem; letter-spacing: .3px; text-decoration: none; }
.footer-logo span { color: #9da0ab; font-weight: 500; }
.footer-logo:hover span { color: #ff8f8f; }
.brand-desc { margin: 0; color: #9da0ab; line-height: 1.6; font-size: .92rem; }
.footer-aside { display: grid; gap: 28px; justify-items: end; }
.footer-cta { --prox: 0; position: relative; display: inline-flex; align-items: center; gap: 8px; margin-top: 4px; padding: 9px 16px; border-radius: 999px; color: #fff; font-weight: 700; text-decoration: none; background: linear-gradient(90deg, #b11116, #ff4d4d); box-shadow: 0 10px 30px rgba(177,17,22,.35), 0 0 0 calc(3px + 5px * var(--prox)) rgba(255,77,77, calc(.10 + .20 * var(--prox))); transition: transform .2s ease, box-shadow .25s ease; }
.footer-cta:hover { transform: translateY(-2px); }
.footer-cta svg { width: 18px; height: 18px; }

.footer-links { display: flex; gap: 44px; }
.footer-col h4 { color: #8b8d99; margin: 0 0 14px; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a { position: relative; color: #b9b9c5; text-decoration: none; font-size: .95rem; transition: color .2s ease; }
.footer-col a::before { content: ''; position: absolute; left: 0; bottom: -3px; width: 0; height: 1px; background: #ff4d4d; box-shadow: 0 0 8px rgba(255,77,77,.75); transition: width .25s ease; }
.footer-col a:hover { color: #fff; }
.footer-col a:hover::before { width: 100%; }

.footer-social { display: flex; flex-wrap: wrap; gap: 12px; justify-content: flex-end; }
.social-chip { --prox: 0; position: relative; display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px 9px 9px; border-radius: 14px; text-decoration: none; color: #c9cbd6; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); overflow: hidden; transition: transform .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease; }
.social-chip::after { content: ''; position: absolute; inset: 0; background: radial-gradient(130px circle at var(--mx, 50%) var(--my, 50%), rgba(255,77,77,.2), rgba(255,77,77,0) 60%); opacity: var(--prox, 0); transition: opacity .3s ease; pointer-events: none; }
.social-ico { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 10px; color: #d9dbe6; background: radial-gradient(120% 120% at 20% 10%, rgba(255,255,255,.07), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.12); transition: color .22s ease, background .22s ease, box-shadow .22s ease; }
.social-ico svg { width: 18px; height: 18px; display: block; }
.social-name { position: relative; font-weight: 600; font-size: .92rem; }
.social-chip:hover { transform: translateY(-3px); color: #fff; border-color: rgba(255,77,77,.42); box-shadow: 0 18px 40px rgba(0,0,0,.45), 0 0 0 1px rgba(255,77,77,.25); }
.social-chip:hover .social-ico { color: #fff; background: linear-gradient(180deg, #b11116, #ff4d4d); box-shadow: 0 0 18px rgba(255,77,77,.55); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; margin-top: 26px; padding-top: 18px; color: #7a7a85; font-size: .9rem; border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom a { color: #9da0ab; text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 1000px) { .features-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .footer-panel { padding: 24px; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-aside { justify-items: start; }
  .footer-social { justify-content: flex-start; }
  .footer-links { gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 900px) { .hero h1 { font-size: 2.4rem; } }
@media (max-width: 768px) { .hero h1 { font-size: 2rem; } .section h2 { font-size: 1.5rem; } }

.legal-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
  max-width: min(1120px, 92vw);
  margin: 24px auto 80px;
}

.legal-toc {
  position: sticky;
  top: 88px;
  background: rgba(20, 20, 28, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 16px 14px;
  backdrop-filter: blur(8px);
}
.legal-toc h4 {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.7);
}
.legal-toc ul { list-style: none; margin: 0; padding: 0; }
.legal-toc li { margin: 6px 0; }
.legal-toc a {
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  color: rgba(255,255,255,0.86);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}
.legal-toc a:hover { background: rgba(255,255,255,0.06); }

.legal-content { min-width: 0; }
.legal-section { padding-top: 8px; text-align: left; }
.legal-card {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(26, 26, 34, 0.8), rgba(14, 14, 20, 0.8));
  box-shadow: 0 24px 60px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.04);
  padding-bottom: 8px;
}
.legal-card h3 { margin-top: 8px; }
.legal-card ul { padding-left: 18px; }
.legal-card li { margin: 10px 0; line-height: 1.65; color: #c5c7d3; }
.legal-card p { color: #b9bbc7; }
.legal-meta { color: #9da0ab; font-size: .9rem; margin: 6px 0 12px; }

ol.legal-ol { margin: 6px 0 6px 18px; padding: 0; counter-reset: item; }
ol.legal-ol > li { margin: 10px 0 12px 0; line-height: 1.65; color: #c5c7d3; }
ol.legal-ol > li > strong { color: #e9e9f2; }

.legal-hero {
  width: 100%;
  display: grid;
  place-items: center;
  padding: 110px 16px 36px;
  margin-top: 76px;
  background:
    radial-gradient(80% 60% at 50% 0%, rgba(177,17,22,.14), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, rgba(10,10,15,.7), rgba(10,10,15,.6));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.legal-hero-inner { width: min(1120px, 92vw); text-align: center; }
.legal-hero h1 { font-size: clamp(2rem, 3.6vw + 1rem, 3rem); color: #e9e9f2; margin: 8px 0 6px; }
.legal-hero p { color: #b9b9c5; }
.legal-hero .kicker { display: inline-block; padding: 6px 12px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; background: rgba(255,255,255,.05); color: #ddd; font-weight: 600; }

.legal-header { text-align: left; margin: 0 0 14px; }
.legal-title { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.2rem); color: #e9e9f2; font-weight: 800; margin: 2px 0 6px; }
.legal-subtitle { color: #9da0ab; margin: 0; }

[id] { scroll-margin-top: 96px; }

@media (max-width: 900px) {
  .legal-container { grid-template-columns: 1fr; gap: 16px; margin: 20px auto 60px; }
  .legal-toc { position: relative; top: 0; display: flex; flex-wrap: wrap; gap: 8px; padding: 12px; }
  .legal-toc h4 { width: 100%; margin-bottom: 4px; }
  .legal-toc a { padding: 6px 8px; font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .legal-toc { backdrop-filter: none; }
}

body:has(.terms-layout) { background: #0a0a0f; font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; }
.terms-layout { min-height: 100vh; display: grid; place-items: start center; padding: 40px 16px 80px; }
.terms-wrap { width: min(760px, 92vw); color: #c9cbd6; text-align: center; }
.terms-head { text-align: center; margin: 20px 0 30px; }
.terms-head .lang-switch { display: block; width: max-content; margin: 0 auto 22px; }
.changelog-wrap .lang-switch { display: block; width: max-content; margin: 0 0 18px; }
.terms-logo { height: 36px; margin-bottom: 8px; filter: drop-shadow(0 0 8px rgba(255,77,77,.35)); }
.terms-logo-link { display: block; width: max-content; margin: 0 auto; text-decoration: none; }
.terms-title { color: #e9e9f2; font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2rem); margin: 4px 0; font-weight: 800; }
.terms-updated { color: #9da0ab; font-size: .95rem; }
.terms-eyebrow { display: block; width: max-content; margin: 12px auto 14px; padding: 6px 14px; border-radius: 999px; font-size: .78rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: #ffb3b3; background: rgba(255,77,77,.1); border: 1px solid rgba(255,77,77,.25); }

.terms-list { list-style: none; counter-reset: term; margin: 0; padding: 0; display: grid; gap: 14px; text-align: left; }
.terms-item { counter-increment: term; display: flex; align-items: flex-start; gap: 16px; padding: 20px 22px; background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; box-shadow: 0 20px 50px rgba(0,0,0,.4); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.terms-item::before { content: counter(term); flex: 0 0 34px; height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800; font-size: .95rem; color: #ffd7d7; background: radial-gradient(120% 120% at 20% 10%, rgba(255,77,77,.28), rgba(255,77,77,.08)); border: 1px solid rgba(255,77,77,.35); box-shadow: 0 0 18px rgba(255,77,77,.15); }
.terms-item:hover { transform: translateY(-3px); border-color: rgba(255,77,77,.28); box-shadow: 0 26px 60px rgba(0,0,0,.5); }
.terms-item p { margin: 0; padding-top: 5px; color: #c9cbd6; line-height: 1.6; }
.terms-list .fade-in { transition-delay: var(--d, 0s); }
.terms-list .terms-item:nth-child(2) { --d: .06s; }
.terms-list .terms-item:nth-child(3) { --d: .12s; }
.terms-list .terms-item:nth-child(4) { --d: .18s; }
.terms-list .terms-item:nth-child(5) { --d: .24s; }
.terms-list .terms-item:nth-child(6) { --d: .30s; }

.changelog-wrap { max-width: 960px; margin: 90px auto 120px; padding: 0 20px; text-align: left; }
.crumb-back { display: inline-block; color: #bfbfd4; text-decoration: none; margin-bottom: 12px; transition: color .2s ease; }
.crumb-back:hover { color: #fff; }
.changelog-title { font-size: clamp(2rem, 1.2rem + 2.2vw, 2.6rem); margin: 0 0 16px; color: #e9e9f2; text-shadow: 0 0 24px rgba(177,17,22,.18); }

.change-card { position: relative; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 18px; margin-bottom: 18px; box-shadow: 0 12px 32px rgba(0,0,0,.38), inset 0 0 0 1px rgba(255,255,255,.04); overflow: hidden; }
.change-card::before { content: ""; position: absolute; right: -80px; top: -80px; width: 280px; height: 280px; background: radial-gradient(circle at 30% 30%, rgba(177,17,22,.22), rgba(177,17,22,0) 60%); filter: blur(10px); pointer-events: none; }
.change-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 4px 4px 12px; }
.change-version { font-size: 1.1rem; color: #f5f5f8; }
.change-date { font-size: .75rem; color: #a8a8b4; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); padding: 6px 10px; border-radius: 999px; }
.change-body { display: grid; grid-template-columns: 1fr; gap: 14px; padding: 0 4px 8px; }
.change-group { padding-top: 4px; }
.change-group ul { margin: 8px 0 0; padding-left: 18px; }
.change-group li { color: #d2d4de; line-height: 1.65; }
.change-group.added li::marker { color: #22c55e; }
.change-group.improved li::marker { color: #60a5fa; }
.change-group.fixed li::marker { color: #eab308; }
.badge-pill { display: inline-block; font-size: .75rem; padding: 4px 10px; border-radius: 999px; border: 1px solid transparent; letter-spacing: .2px; }
.badge-pill.added { color: #b5f5b5; background: rgba(34,197,94,.12); border-color: rgba(34,197,94,.22); }
.badge-pill.improved { color: #c7d2fe; background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.22); }
.badge-pill.fixed { color: #fde68a; background: rgba(234,179,8,.12); border-color: rgba(234,179,8,.22); }

@media (min-width: 760px) { .change-body { grid-template-columns: repeat(3, 1fr); } }

.changelog-wrap .fade-in { opacity: 0; transform: translateY(14px); }
.changelog-wrap .fade-in.visible { opacity: 1; transform: none; transition: all .6s ease; }
