:root{
  --bg:#040814;
  --bg-soft:#081225;
  --card:#0c1930;
  --card-2:#0d1b34;
  --text:#f7fbff;
  --muted:#a9b9d2;
  --line:rgba(255,255,255,.11);
  --primary:#39d0ff;
  --primary-2:#22d67a;
  --accent:#8ef2ff;
  --success:#32d583;
  --shadow:0 24px 60px rgba(0,0,0,.28);
  --radius:22px;
  --max:1200px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(57,208,255,.14), transparent 28%),
    radial-gradient(circle at 85% 20%, rgba(34,214,122,.14), transparent 24%),
    linear-gradient(180deg,#030712 0%, #07101f 42%, #040814 100%);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(var(--max),calc(100% - 40px));margin:0 auto}
.section{padding:88px 0}
.section-tight{padding:64px 0}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 12px;border:1px solid var(--line);border-radius:999px;
  color:var(--accent);background:rgba(255,255,255,.03);
  font-size:13px;font-weight:700;letter-spacing:.04em;text-transform:uppercase
}
h1,h2,h3{margin:0 0 14px}
h1{font-size:clamp(40px,6vw,78px);line-height:1.02;letter-spacing:-.04em}
h2{font-size:clamp(30px,4vw,50px);line-height:1.08;letter-spacing:-.03em}
h3{font-size:24px;line-height:1.2}
p.lead{font-size:clamp(18px,2.1vw,24px);color:#d5e3f8;max-width:900px}
p,li{color:var(--muted);font-size:18px}
.muted{color:var(--muted)}
.small{font-size:15px}
.center{text-align:center}
.badge{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  font-size:14px;font-weight:800;border-radius:999px;padding:10px 14px;
  border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04);color:#e7f8ff
}
.badge.primary{background:linear-gradient(90deg,var(--primary),var(--primary-2));color:#03101c;border:none}
.btns{display:flex;flex-wrap:wrap;gap:14px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:16px 24px;border-radius:16px;border:1px solid var(--line);
  font-size:17px;font-weight:800;transition:.2s ease;cursor:pointer
}
.btn-primary{
  background:linear-gradient(90deg,var(--primary),var(--primary-2));
  color:#04111d;border:none;box-shadow:0 12px 26px rgba(57,208,255,.18)
}
.btn-primary:hover{transform:translateY(-1px);filter:saturate(1.06)}
.btn-secondary{background:rgba(255,255,255,.03);color:var(--text)}
.btn-secondary:hover{background:rgba(255,255,255,.05)}
.nav-wrap{position:sticky;top:0;z-index:50;background:rgba(4,8,20,.74);backdrop-filter:blur(14px);border-bottom:1px solid rgba(255,255,255,.06)}
.nav{
  min-height:84px;display:flex;align-items:center;justify-content:space-between;gap:20px
}
.brand{display:flex;align-items:center;gap:14px;min-width:0}
.brand img{width:58px;height:auto}
.brand .brand-text{display:flex;flex-direction:column;min-width:0}
.brand .brand-text strong{font-size:28px;line-height:1.05;letter-spacing:-.03em}
.brand .brand-text span{font-size:13px;text-transform:uppercase;letter-spacing:.08em;color:var(--accent);font-weight:700}
.nav-links{
  display:flex;align-items:center;gap:26px
}
.nav-links a{
  color:#dff1ff;font-size:16px;font-weight:700;opacity:.9
}
.nav-cta{display:flex;align-items:center;gap:12px}
.hamburger{
  display:none;background:transparent;border:1px solid var(--line);border-radius:12px;
  width:48px;height:48px;color:var(--text);align-items:center;justify-content:center
}
.hamburger span,.hamburger span:before,.hamburger span:after{
  content:"";display:block;width:18px;height:2px;background:#fff;border-radius:2px;position:relative
}
.hamburger span:before{position:absolute;top:-6px}
.hamburger span:after{position:absolute;top:6px}
.mobile-menu{
  display:none;padding:14px 0 18px;border-top:1px solid rgba(255,255,255,.06)
}
.mobile-menu.open{display:block}
.mobile-menu .stack{display:flex;flex-direction:column;gap:10px}
.mobile-menu a,.mobile-menu button{padding:14px 0;color:#e8f4ff;font-size:16px;font-weight:700;background:none;border:none;text-align:left}
.hero{padding:72px 0 42px}
.hero-grid{
  display:grid;grid-template-columns:1.2fr .8fr;gap:28px;align-items:center
}
.hero-card{
  border:1px solid var(--line);background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.02));
  border-radius:28px;padding:34px;box-shadow:var(--shadow)
}
.hero-points{display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:14px;margin-top:20px}
.point{
  padding:18px;border-radius:18px;background:rgba(255,255,255,.03);border:1px solid var(--line)
}
.point strong{display:block;font-size:15px;color:#fff;margin-bottom:6px}
.panel{
  background:linear-gradient(180deg,rgba(57,208,255,.08),rgba(34,214,122,.06));
  border:1px solid rgba(57,208,255,.18);border-radius:28px;padding:24px;box-shadow:var(--shadow)
}
.panel .stat-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin:18px 0}
.stat{
  border-radius:18px;background:rgba(7,17,30,.72);padding:18px;border:1px solid var(--line)
}
.stat .num{font-size:28px;font-weight:900;line-height:1}
.stat .label{font-size:14px;color:var(--muted);margin-top:6px}
.progress{height:10px;border-radius:999px;background:rgba(255,255,255,.08);overflow:hidden;margin:14px 0 18px}
.progress > span{display:block;height:100%;width:62%;background:linear-gradient(90deg,var(--primary),var(--primary-2));border-radius:999px}
.grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}
.grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px}
.card{
  background:linear-gradient(180deg,rgba(12,25,48,.92),rgba(10,18,34,.92));
  border:1px solid var(--line);border-radius:24px;padding:28px;box-shadow:var(--shadow)
}
.card .icon{
  width:54px;height:54px;border-radius:16px;display:grid;place-items:center;
  background:linear-gradient(135deg, rgba(57,208,255,.18), rgba(34,214,122,.18));
  border:1px solid rgba(255,255,255,.08);margin-bottom:16px
}
.card .icon svg{width:26px;height:26px;stroke:#dff8ff}
.value-band{
  background:linear-gradient(90deg, rgba(57,208,255,.08), rgba(34,214,122,.08));
  border:1px solid rgba(57,208,255,.16);border-radius:28px;padding:34px
}
.steps{counter-reset:step}
.step{
  position:relative;padding-left:76px;min-height:60px
}
.step::before{
  counter-increment:step;content:counter(step);
  position:absolute;left:0;top:0;width:52px;height:52px;border-radius:16px;
  display:grid;place-items:center;font-size:20px;font-weight:900;
  background:linear-gradient(90deg,var(--primary),var(--primary-2));color:#03101c
}
.feature-list,.price-list{list-style:none;padding:0;margin:18px 0 0;display:flex;flex-direction:column;gap:12px}
.feature-list li,.price-list li{position:relative;padding-left:30px;font-size:17px}
.feature-list li::before,.price-list li::before{
  content:"✓";position:absolute;left:0;top:0;color:var(--success);font-weight:900
}
.pricing-wrap{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;align-items:stretch}
.price-card{
  position:relative;background:linear-gradient(180deg,rgba(12,25,48,.96),rgba(10,18,34,.96));
  border:1px solid var(--line);border-radius:26px;padding:30px;display:flex;flex-direction:column;box-shadow:var(--shadow)
}
.price-card.highlight{
  border-color:rgba(57,208,255,.28);
  transform:translateY(-8px);
  background:
    radial-gradient(circle at top right, rgba(34,214,122,.14), transparent 34%),
    linear-gradient(180deg, rgba(12,25,48,.98), rgba(10,18,34,.98))
}
.price-card .top{display:flex;align-items:flex-start;justify-content:space-between;gap:14px}
.plan{font-size:28px;font-weight:900;line-height:1.1}
.price{font-size:60px;font-weight:900;line-height:1;letter-spacing:-.04em;margin:18px 0 0}
.price small{font-size:22px;font-weight:800;color:#d6e8ff}
.price-note{font-size:15px;color:#bfd0e4;margin-top:8px}
.price-sub{font-size:17px;color:#d5e3f8;margin-top:18px;min-height:54px}
.price-card .cta{margin-top:auto;padding-top:24px}
.compare{
  overflow:auto;border:1px solid var(--line);border-radius:24px;background:rgba(255,255,255,.02)
}
table{width:100%;border-collapse:collapse;min-width:740px}
th,td{padding:18px 20px;border-bottom:1px solid rgba(255,255,255,.08);text-align:left}
th{font-size:15px;color:#dff2ff;background:rgba(255,255,255,.04)}
td{font-size:16px;color:var(--muted)}
.check{color:var(--success);font-weight:900}
.cross{color:#ff8a8a;font-weight:900}
.faq-wrap{display:grid;gap:14px}
.faq-item{
  border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.02);overflow:hidden
}
.faq-btn{
  width:100%;padding:22px 24px;background:none;border:none;color:#fff;text-align:left;
  display:flex;align-items:center;justify-content:space-between;gap:16px;font-size:19px;font-weight:800;cursor:pointer
}
.faq-icon{
  width:34px;height:34px;border-radius:999px;border:1px solid var(--line);display:grid;place-items:center;flex:0 0 auto
}
.faq-icon::before{content:"+";font-size:22px;line-height:1}
.faq-item.active .faq-icon::before{content:"−"}
.faq-answer{
  max-height:0;overflow:hidden;transition:max-height .28s ease;
}
.faq-answer .inner{padding:0 24px 24px}
.cta-band{
  padding:38px 42px;border-radius:30px;
  background:
    radial-gradient(circle at right center, rgba(34,214,122,.16), transparent 28%),
    linear-gradient(90deg, rgba(12,31,54,.95), rgba(5,24,28,.95));
  border:1px solid rgba(57,208,255,.22);box-shadow:var(--shadow)
}
.footer{
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:40px;padding:34px 0 26px
}
.footer-grid{
  display:grid;grid-template-columns:1.25fr 1fr 1fr;gap:34px;align-items:flex-start
}
.footer-brand{display:flex;gap:18px;align-items:flex-start}
.footer-brand img{width:88px;height:auto;flex:0 0 auto}
.footer-brand .text strong{display:block;font-size:30px;line-height:1.1;letter-spacing:-.03em}
.footer h4{font-size:18px;margin:0 0 14px}
.footer-links,.footer-list{display:flex;flex-direction:column;gap:10px}
.footer a{color:#d8ebff}
.footer-bottom{
  display:flex;justify-content:space-between;align-items:center;gap:18px;
  margin-top:26px;padding-top:24px;border-top:1px solid rgba(255,255,255,.08)
}
.doc-hero{padding:72px 0 28px}
.doc{
  padding:24px 0 72px
}
.doc .content{
  background:linear-gradient(180deg,rgba(12,25,48,.92),rgba(10,18,34,.92));
  border:1px solid var(--line);border-radius:24px;padding:30px;box-shadow:var(--shadow)
}
.doc ul{padding-left:22px}
.kicker{font-size:15px;color:var(--accent);font-weight:800;letter-spacing:.08em;text-transform:uppercase}
@media (max-width: 1080px){
  .hero-grid,.grid-3,.grid-2,.pricing-wrap,.footer-grid{grid-template-columns:1fr}
  .price-card.highlight{transform:none}
  .panel .stat-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width: 820px){
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  .container{width:min(var(--max),calc(100% - 24px))}
  .section{padding:72px 0}
  .hero{padding:46px 0 26px}
  .hero-card,.panel,.card,.price-card,.cta-band,.doc .content{padding:22px}
  .hero-points{grid-template-columns:1fr}
  .panel .stat-grid{grid-template-columns:1fr 1fr 1fr}
  .footer-brand{flex-direction:column}
  .footer-brand img{width:78px}
}
@media (max-width: 640px){
  h1{font-size:44px}
  h2{font-size:34px}
  p,li{font-size:17px}
  .brand img{width:52px}
  .brand .brand-text strong{font-size:24px}
  .panel .stat-grid{grid-template-columns:1fr}
  .price{font-size:48px}
  .step{padding-left:64px}
  .step::before{width:46px;height:46px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}


/* Hero section refinements only */
.hero-card h1{
  max-width: 9.6ch;
  font-size: clamp(54px, 7vw, 90px);
  line-height: .95;
  letter-spacing: -.055em;
  margin-bottom: 22px;
  text-wrap: balance;
}
.hero-card h1 span{display:inline-block}
.hero-card .lead{
  max-width: 760px;
  font-size: clamp(19px, 2.05vw, 22px);
  line-height: 1.45;
}
.hero-card .btns{
  margin-top: 8px;
  margin-bottom: 6px;
}
.hero-points{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 1080px){
  .hero-card h1{
    max-width: 11ch;
    font-size: clamp(50px, 8vw, 74px);
  }
}
@media (max-width: 820px){
  .hero-card h1{
    max-width: none;
    font-size: clamp(42px, 11vw, 62px);
    line-height: .98;
  }
  .hero-points{
    grid-template-columns: 1fr;
  }
}


/* Chrome Store live CTA update */
.hero-card h1{max-width:780px!important;font-size:clamp(44px,5.2vw,72px)!important;line-height:1.03!important;letter-spacing:-.045em!important;margin-bottom:18px!important;}
.hero-card h1 span{display:inline!important;}
.btn[target="_blank"]{white-space:nowrap;}
@media(max-width:820px){.hero-card h1{font-size:clamp(34px,9vw,52px)!important;}}
