/* ==========================================================================
   PIXOVRA — Design System v2
   Professional light theme: deep navy ink, one confident accent, clean
   white cards with soft shadows. Minimal gradient use, no heavy blur.
   ========================================================================== */

:root{
  --bg:            #FFFFFF;
  --bg-2:          #F7F8FA;
  --bg-3:          #F1F2F6;
  --ink:           #12141C;
  --muted:         #5B6472;
  --muted-2:       #8A93A3;

  --dark:          #12141C;
  --dark-2:        #1B1E2A;
  --dark-ink:      #F5F6F8;
  --dark-muted:    #A7ADBB;

  --line:          #E6E8EE;
  --line-soft:     #EEF0F4;

  --card:          #FFFFFF;
  --card-border:   #E9EBF0;

  --accent:        #2A3EFF;
  --accent-ink:    #1B2AC7;
  --accent-tint:   #EEF0FF;
  --accent-2:      #0EA5A0;

  --aurora: var(--accent);
  --aurora-soft: var(--accent-tint);
  --grad-1: var(--accent);
  --grad-2: var(--accent);
  --grad-3: var(--accent-2);

  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-pill: 999px;
  --shadow-card: 0 1px 2px rgba(18,20,28,.04), 0 8px 24px rgba(18,20,28,.06);
  --shadow-card-hover: 0 4px 10px rgba(18,20,28,.06), 0 20px 40px rgba(18,20,28,.09);

  --step-sm: clamp(.9rem, .87rem + .15vw, 1rem);
  --step-base: 1.05rem;
  --step-lg: clamp(1.2rem, 1.1rem + .4vw, 1.4rem);
  --step-xl: clamp(1.7rem, 1.4rem + 1.1vw, 2.2rem);
  --step-2xl: clamp(2.1rem, 1.7rem + 1.8vw, 3rem);
  --step-3xl: clamp(2.5rem, 1.9rem + 2.8vw, 3.9rem);

  --ease: cubic-bezier(.2,.7,.3,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0; background:var(--bg); color:var(--ink);
  font-family:'Inter',system-ui,-apple-system,sans-serif;
  font-size:17px; line-height:1.65; -webkit-font-smoothing:antialiased; overflow-x:hidden;
}

h1,h2,h3,h4,.display{
  font-family:'Sora',system-ui,sans-serif; font-weight:650; line-height:1.16;
  letter-spacing:-0.01em; color:var(--ink); margin:0 0 .5em;
}
h1{ font-size:var(--step-3xl); }
h2{ font-size:var(--step-2xl); }
h3{ font-size:var(--step-lg); }
p{ margin:0 0 1em; color:var(--muted); font-size:var(--step-base); }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
button{ font-family:inherit; cursor:pointer; }
.mono{ font-family:'JetBrains Mono',monospace; }

.wrap{ max-width:1200px; margin:0 auto; padding:0 24px; }
.wrap-narrow{ max-width:760px; margin:0 auto; padding:0 24px; }
section{ position:relative; padding:96px 0; }
section.tight{ padding:64px 0; }
@media (max-width:860px){ section{ padding:60px 0; } body{ font-size:16px; } }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible{
  outline:2px solid var(--accent); outline-offset:3px; border-radius:6px;
}

.eyebrow{
  display:inline-flex; align-items:center; gap:8px;
  font-family:'JetBrains Mono',monospace; font-size:12.5px; font-weight:500;
  letter-spacing:.04em; text-transform:uppercase;
  padding:7px 14px; border-radius:var(--r-pill);
  background:var(--accent-tint); border:1px solid #DEE2FF;
  color:var(--accent-ink); margin-bottom:20px;
}
.eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--accent); }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-weight:600; font-size:15.5px; padding:14px 26px; border-radius:var(--r-sm);
  border:none; transition:transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn-primary{ background:var(--accent); color:#fff; box-shadow:0 6px 18px -6px rgba(42,62,255,.45); }
.btn-primary:hover{ background:var(--accent-ink); transform:translateY(-1px); }
.btn-glass{ background:#fff; color:var(--ink); border:1px solid var(--line); }
.btn-glass:hover{ border-color:var(--accent); color:var(--accent-ink); }
.btn-block{ width:100%; }
.btn-sm{ padding:10px 18px; font-size:14px; }

.nav{
  position:fixed; top:0; left:0; right:0; z-index:100; padding:20px 0;
  transition:padding .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease);
  background:rgba(255,255,255,.85); backdrop-filter:blur(8px); border-bottom:1px solid transparent;
}
.nav.scrolled{ padding:13px 0; border-bottom-color:var(--line); box-shadow:0 2px 12px rgba(18,20,28,.04); }
.nav .wrap{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
.nav-links{ display:flex; align-items:center; gap:28px; list-style:none; margin:0; padding:0; }
.nav-links a{ font-size:14.5px; font-weight:500; color:var(--muted); transition:color .2s; }
.nav-links a:hover, .nav-links a.active{ color:var(--ink); }
.nav-right{ display:flex; align-items:center; gap:16px; }
.nav-toggle{ display:none; background:none; border:none; color:var(--ink); }
.logo{ display:flex; align-items:center; gap:10px; font-family:'Sora',sans-serif; font-weight:700; font-size:19px; color:var(--ink); }
.logo svg{ height:30px; width:auto; }
#nav-cta-desktop{ display:none !important; }

@media (max-width:920px){
  .nav-links{
    position:fixed; inset:0 0 0 auto; width:min(320px,84vw); height:100vh;
    background:#fff; flex-direction:column; align-items:flex-start;
    padding:100px 30px 30px; gap:22px; transform:translateX(100%);
    transition:transform .3s var(--ease); border-left:1px solid var(--line);
    box-shadow:-10px 0 40px rgba(18,20,28,.08);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-toggle{ display:block; }
  .nav-links a{ font-size:17px; }
}

.hero{ padding:158px 0 90px; position:relative; overflow:hidden; display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; }
.aurora-bg{ position:absolute; inset:-10% -10% auto -10%; height:640px; z-index:-1; pointer-events:none; background: radial-gradient(46% 60% at 78% 15%, var(--accent-tint), transparent 70%); opacity:.9; }
.hero h1{ max-width:640px; }
.hero h1 .grad-text{ color:var(--accent); }
.hero .lede{ font-size:var(--step-lg); max-width:520px; color:var(--muted); }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-top:8px; }
.hero-visual{ position:relative; height:440px; }
.float-card{ position:absolute; background:#fff; border:1px solid var(--card-border); border-radius:var(--r-md); padding:18px 20px; box-shadow:var(--shadow-card); animation:floaty 7s ease-in-out infinite; }
@keyframes floaty{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
.trustbar{ display:flex; gap:30px; align-items:center; margin-top:42px; flex-wrap:wrap; }
.trustbar span{ font-size:12.5px; letter-spacing:.06em; text-transform:uppercase; color:var(--muted-2); font-family:'JetBrains Mono',monospace; }
@media (max-width:980px){ .hero{ grid-template-columns:1fr; padding-top:130px; text-align:left; } .hero-visual{ height:300px; } }

.card{ background:var(--card); border:1px solid var(--card-border); border-radius:var(--r-md); padding:26px; box-shadow:var(--shadow-card); transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease); }
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-card-hover); border-color:#DADEFB; }
.card .icon-tile{ width:46px; height:46px; border-radius:11px; display:flex; align-items:center; justify-content:center; background:var(--accent-tint); margin-bottom:16px; }
.card .icon-tile svg{ width:21px; height:21px; stroke:var(--accent-ink); }
.card .num-tag{ font-family:'JetBrains Mono',monospace; font-size:12.5px; color:var(--accent); display:block; margin-bottom:10px; letter-spacing:.02em; }

.section-head{ max-width:640px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ font-size:var(--step-lg); }

.grid{ display:grid; gap:20px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-auto{ grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
@media (max-width:920px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:640px){ .grid-2,.grid-3,.grid-4{ grid-template-columns:1fr; } }

.stats-band{ background:var(--dark); border-radius:var(--r-lg); padding:2px; }
.stats-inner{ background:var(--dark); border-radius:var(--r-lg); display:grid; grid-template-columns:repeat(4,1fr); padding:44px 20px; }
.stat{ text-align:center; padding:10px; }
.stat .counter{ font-family:'JetBrains Mono',monospace; font-weight:700; font-size:clamp(1.5rem,1.2rem+1.3vw,2.2rem); color:#fff; }
.stat .lbl{ font-size:13px; color:var(--dark-muted); margin-top:6px; }
@media (max-width:920px){ .stats-inner{ grid-template-columns:repeat(2,1fr); } }

.process-row{ display:flex; gap:22px; counter-reset:step; flex-wrap:wrap; }
.process-step{ flex:1 1 200px; position:relative; padding-top:8px; }
.process-step::before{ counter-increment:step; content:counter(step,decimal-leading-zero); font-family:'JetBrains Mono',monospace; font-size:13px; color:var(--accent); display:block; margin-bottom:14px; }
.process-step .line{ position:absolute; top:26px; left:100%; width:22px; height:1px; background:var(--line); }
@media (max-width:920px){ .process-step .line{ display:none; } }

.testi-track{ display:flex; gap:20px; overflow-x:auto; scroll-snap-type:x mandatory; padding-bottom:14px; scrollbar-width:none; }
.testi-track::-webkit-scrollbar{ display:none; }
.testi-card{ scroll-snap-align:start; min-width:320px; max-width:320px; }
.stars{ color:#F0A000; letter-spacing:2px; margin-bottom:12px; font-size:15px; }
.avatar{ width:42px; height:42px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--accent); color:#fff; font-weight:700; font-size:13.5px; font-family:'Sora',sans-serif; }
.testi-person{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.testi-person .who b{ display:block; font-size:14.5px; color:var(--ink); }
.testi-person .who span{ font-size:12.5px; color:var(--muted-2); }

.price-card{ text-align:left; position:relative; }
.price-card.featured{ border-color:var(--accent); box-shadow:0 4px 10px rgba(42,62,255,.08),0 20px 40px rgba(42,62,255,.12); }
.price-card.featured::before{ content:'Most Popular'; position:absolute; top:-13px; left:24px; font-size:11.5px; font-weight:700; background:var(--accent); color:#fff; padding:5px 12px; border-radius:var(--r-pill); letter-spacing:.03em; }
.price-amount{ font-family:'Sora',sans-serif; font-size:2.2rem; font-weight:700; margin:14px 0 4px; color:var(--ink); }
.price-amount span{ font-size:14px; color:var(--muted); font-weight:500; }
.price-list{ list-style:none; padding:0; margin:22px 0; display:flex; flex-direction:column; gap:11px; font-size:14.5px; }
.price-list li{ display:flex; gap:10px; align-items:flex-start; }
.price-list li svg{ flex:none; width:16px; height:16px; margin-top:3px; stroke:var(--accent); }

.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; color:inherit; display:flex; justify-content:space-between; align-items:center; gap:20px; padding:20px 4px; font-family:'Sora',sans-serif; font-weight:600; font-size:16.5px; }
.faq-q .plus{ flex:none; width:22px; height:22px; position:relative; }
.faq-q .plus::before,.faq-q .plus::after{ content:''; position:absolute; background:var(--accent); border-radius:2px; transition:transform .3s var(--ease); }
.faq-q .plus::before{ width:14px; height:2px; top:10px; left:4px; }
.faq-q .plus::after{ width:2px; height:14px; top:4px; left:10px; }
.faq-item.open .plus::after{ transform:rotate(90deg); opacity:0; }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .35s var(--ease); }
.faq-a p{ padding:0 4px 20px; margin:0; max-width:640px; }

.marquee{ overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); }
.marquee-track{ display:flex; gap:64px; width:max-content; animation:scrollX 28s linear infinite; align-items:center; }
.marquee-track span{ font-family:'Sora',sans-serif; font-weight:700; font-size:20px; color:var(--muted-2); white-space:nowrap; opacity:.6; }
@keyframes scrollX{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }

.field{ position:relative; margin-bottom:18px; }
.field label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:7px; color:var(--muted); }
.field input, .field select, .field textarea{ width:100%; padding:13px 15px; border-radius:var(--r-sm); font-size:15px; font-family:inherit; background:#fff; border:1px solid var(--line); color:var(--ink); }
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--accent); }
.field textarea{ resize:vertical; min-height:110px; }
.field.error input, .field.error select, .field.error textarea{ border-color:#DC2626; }
.field .err-msg{ color:#DC2626; font-size:12.5px; margin-top:6px; display:none; }
.field.error .err-msg{ display:block; }
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
@media (max-width:640px){ .form-row{ grid-template-columns:1fr; } }
.form-success{ display:none; text-align:center; padding:40px 20px; }
.form-success.show{ display:block; animation:popIn .4s var(--ease); }
.form-success .check{ width:60px; height:60px; border-radius:50%; background:var(--accent); display:flex; align-items:center; justify-content:center; margin:0 auto 18px; }
@keyframes popIn{ from{ opacity:0; transform:scale(.9); } to{ opacity:1; transform:scale(1); } }

.modal-overlay{ position:fixed; inset:0; background:rgba(18,20,28,.55); display:flex; align-items:center; justify-content:center; z-index:200; padding:20px; opacity:0; pointer-events:none; transition:opacity .25s var(--ease); }
.modal-overlay.open{ opacity:1; pointer-events:auto; }
.modal{ background:#fff; border:1px solid var(--line); border-radius:var(--r-lg); max-width:460px; width:100%; padding:34px; position:relative; transform:translateY(20px) scale(.98); opacity:0; transition:transform .3s var(--ease), opacity .3s var(--ease); box-shadow:0 30px 70px rgba(18,20,28,.25); max-height:88vh; overflow-y:auto; }
.modal-overlay.open .modal{ transform:translateY(0) scale(1); opacity:1; }
.modal-close{ position:absolute; top:16px; right:16px; width:32px; height:32px; border-radius:50%; background:var(--bg-2); border:1px solid var(--line); color:var(--ink); font-size:16px; }
.modal .aurora-chip{ display:inline-block; width:38px; height:38px; border-radius:11px; background:var(--accent); margin-bottom:16px; }

.floating-stack{ position:fixed; right:22px; bottom:22px; z-index:90; display:flex; flex-direction:column; gap:12px; align-items:flex-end; }
.fab{ width:54px; height:54px; border-radius:50%; display:flex; align-items:center; justify-content:center; box-shadow:0 8px 22px rgba(18,20,28,.25); border:none; }
.fab-contact{ background:var(--accent); color:#fff; }
.fab svg{ width:22px; height:22px; }

footer{ background:var(--dark); color:var(--dark-ink); padding:66px 0 24px; }
footer p{ color:var(--dark-muted); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1.2fr; gap:34px; margin-bottom:50px; }
.footer-grid h4{ font-size:13px; text-transform:uppercase; letter-spacing:.06em; color:var(--dark-muted); margin-bottom:16px; }
.footer-grid ul{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:11px; }
.footer-grid ul a{ font-size:14.5px; color:var(--dark-muted); transition:color .2s; }
.footer-grid ul a:hover{ color:#fff; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px; padding-top:24px; border-top:1px solid rgba(255,255,255,.1); font-size:13px; color:var(--dark-muted); }
.social-row{ display:flex; gap:12px; }
.social-row a{ width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; color:#fff; }
.newsletter-inline{ display:flex; gap:10px; margin-top:14px; }
.newsletter-inline input{ flex:1; padding:12px 14px; border-radius:var(--r-sm); background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); color:#fff; }
@media (max-width:920px){ .footer-grid{ grid-template-columns:1fr 1fr; } }

.breadcrumb{ font-size:13px; color:var(--muted-2); padding-top:112px; }
.breadcrumb a{ color:var(--muted-2); } .breadcrumb a:hover{ color:var(--accent); }
.breadcrumb .sep{ margin:0 6px; }

.reveal{ opacity:0; transform:translateY(22px); transition:opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal-stagger > *{ opacity:0; transform:translateY(18px); transition:opacity .5s var(--ease), transform .5s var(--ease); }
.reveal-stagger.in > *{ opacity:1; transform:translateY(0); }
.reveal-stagger.in > *:nth-child(1){ transition-delay:.04s; }
.reveal-stagger.in > *:nth-child(2){ transition-delay:.1s; }
.reveal-stagger.in > *:nth-child(3){ transition-delay:.16s; }
.reveal-stagger.in > *:nth-child(4){ transition-delay:.22s; }
.reveal-stagger.in > *:nth-child(5){ transition-delay:.28s; }
.reveal-stagger.in > *:nth-child(6){ transition-delay:.34s; }

.section-light{ background:var(--bg-2); border-radius:32px; margin:0 16px; }
.section-light .muted{ color:var(--muted); }
.divider-fade{ height:1px; background:linear-gradient(90deg,transparent,var(--line),transparent); }

.cta-band{ background:var(--dark); color:#fff; border-radius:var(--r-lg); padding:48px 40px; text-align:center; }
.cta-band h2{ color:#fff; font-size:var(--step-2xl); }
.cta-band p{ color:var(--dark-muted); max-width:520px; margin:0 auto 22px; }

#page-loader{ position:fixed; inset:0; background:#fff; z-index:999; display:flex; align-items:center; justify-content:center; transition:opacity .4s var(--ease), visibility .4s var(--ease); }
#page-loader.hide{ opacity:0; visibility:hidden; }
.loader-mark{ width:46px; height:46px; border-radius:12px; background:var(--accent); animation:loaderPulse 1s ease-in-out infinite; }
@keyframes loaderPulse{ 0%,100%{ transform:scale(.85); opacity:.7; } 50%{ transform:scale(1.05); opacity:1; } }

.text-center{ text-align:center; }
.flex{ display:flex; } .items-center{ align-items:center; } .gap-8{ gap:8px; } .gap-16{ gap:16px; }
.chip-list{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{ padding:9px 16px; border-radius:var(--r-pill); background:#fff; border:1px solid var(--line); font-size:13.5px; color:var(--ink); transition:border-color .2s, color .2s; }
.chip:hover{ border-color:var(--accent); color:var(--accent-ink); }
