:root{
  --bg:#0b1020;
  --bg-2:#111b30;
  --bg-3:#0c1325;
  --text:#f8fafc;
  --muted:#b5c2d3;
  --muted-2:#8fa2bb;
  --line:rgba(148,163,184,.18);
  --card:rgba(255,255,255,.06);
  --card-strong:rgba(255,255,255,.1);
  --accent:#ff7a45;
  --accent-2:#22d3ee;
  --accent-3:#a3e635;
  --shadow:0 24px 60px rgba(2,6,23,.45);
  --radius:20px;
  --font-display:"Cormorant Garamond", serif;
  --font-body:"Plus Jakarta Sans", system-ui, -apple-system, Segoe UI, sans-serif;
}
:root.theme-light{
  --bg:#f5f7fb;
  --bg-2:#e9eef6;
  --bg-3:#ffffff;
  --text:#0f172a;
  --muted:#4b5a73;
  --muted-2:#6b7a93;
  --line:rgba(15,23,42,.12);
  --card:rgba(255,255,255,.92);
  --card-strong:rgba(255,255,255,.98);
  --shadow:0 18px 45px rgba(15,23,42,.12);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:
    radial-gradient(900px 600px at 15% -10%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(900px 600px at 90% 5%, rgba(255,122,69,.16), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(163,230,53,.12), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
.theme-light body{
  background:
    radial-gradient(900px 600px at 10% -10%, rgba(59,130,246,.12), transparent 60%),
    radial-gradient(900px 600px at 90% 0%, rgba(14,165,164,.12), transparent 60%),
    radial-gradient(700px 500px at 50% 110%, rgba(234,179,8,.08), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.wrap{
  width:100%;
  max-width:100%;
  margin:0 auto;
  padding:26px 24px 80px;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(11,16,32,.7);
  backdrop-filter: blur(14px);
  position:sticky;
  top:18px;
  z-index:10;
}
.theme-light .nav{
  background:rgba(255,255,255,.85);
  border-color:rgba(15,23,42,.12);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:700;
  letter-spacing:.3px;
}
.brand-badge{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(255,122,69,.35), rgba(34,211,238,.35));
  border:1px solid rgba(255,255,255,.2);
  font-weight:800;
}
.theme-light .brand-badge{
  border-color:rgba(15,23,42,.12);
  background:linear-gradient(135deg, rgba(255,122,69,.22), rgba(34,211,238,.22));
}
.brand span{ font-size:15px; }
.nav-links{
  display:flex; align-items:center; gap:18px; font-size:13.5px; color:var(--muted);
}
.nav-links a:hover{ color:var(--text); }
.nav-actions{ display:flex; align-items:center; gap:10px; }
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px; padding:10px 16px; border-radius:999px;
  border:1px solid var(--line); background:rgba(255,255,255,.04);
  color:var(--text); font-size:13.5px; cursor:pointer;
  transition:all .2s ease;
}
.btn:hover{ border-color:rgba(255,255,255,.35); transform:translateY(-1px); }
.btn.primary{
  background:linear-gradient(135deg, var(--accent), #ff9f68);
  color:#1b120c; border-color:transparent; font-weight:700;
}
.btn.secondary{
  background:linear-gradient(135deg, rgba(34,211,238,.2), rgba(34,211,238,.05));
}
.theme-light .btn{
  background:rgba(15,23,42,.04);
  border-color:rgba(15,23,42,.12);
  color:var(--text);
}
.theme-light .btn:hover{
  border-color:rgba(15,23,42,.22);
}
.theme-light .btn.primary{
  color:#1b120c;
}
.theme-toggle{
  gap:6px;
  padding:10px 12px;
}
.theme-icon{
  width:16px; height:16px;
  display:grid; place-items:center;
}
.theme-icon svg{ width:16px; height:16px; }
.theme-icon.icon-moon{ display:none; }
.theme-dark .theme-icon.icon-moon{ display:grid; }
.theme-dark .theme-icon.icon-sun{ display:none; }
.theme-label{ font-weight:600; font-size:12.5px; }
.theme-light .theme-label{ color:#1f2a44; }
.nav-toggle{ display:none; }

.hero{
  display:grid; grid-template-columns:1.1fr .9fr; gap:42px; align-items:center;
  padding:48px 10px 24px;
}
.hero h1{
  font-family:var(--font-display);
  font-size:56px; line-height:1.05; margin:0 0 18px; letter-spacing:.5px;
}
.hero p{ color:var(--muted); font-size:17px; line-height:1.7; margin:0 0 24px; }
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; }
.hero-note{ color:var(--muted-2); font-size:12px; margin-top:10px; }
.hero-card{
  border:1px solid var(--line); border-radius:var(--radius); padding:18px;
  background:linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  box-shadow:var(--shadow);
  position:relative; overflow:hidden;
}
.hero-card::before{
  content:""; position:absolute; inset:-30% auto auto -20%; width:260px; height:260px;
  background:radial-gradient(circle, rgba(255,122,69,.25), transparent 65%);
  opacity:.9;
}
.hero-card::after{
  content:""; position:absolute; inset:auto -30% -40% auto; width:280px; height:280px;
  background:radial-gradient(circle, rgba(34,211,238,.2), transparent 65%);
  opacity:.9;
}
.hero-card .panel{
  background:rgba(7,12,24,.7); border:1px solid rgba(255,255,255,.08);
  border-radius:16px; padding:14px; margin-bottom:12px;
}
.theme-light .hero-card{
  background:linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,.75));
}
.theme-light .hero-card .panel{
  background:rgba(255,255,255,.92);
  border-color:rgba(15,23,42,.08);
}
.hero-card h3{ margin:0 0 8px; font-size:14px; color:var(--muted); letter-spacing:.4px; text-transform:uppercase; }
.hero-list{ list-style:none; padding:0; margin:0; display:grid; gap:10px; }
.hero-list li{ display:flex; gap:10px; align-items:flex-start; color:var(--text); font-size:13.5px; }
.hero-dot{ width:10px; height:10px; border-radius:999px; background:linear-gradient(135deg, var(--accent-2), var(--accent-3)); margin-top:5px; }

.section{
  margin-top:64px; padding:0 10px;
}
.section h2{
  font-family:var(--font-display);
  font-size:36px; margin:0 0 12px;
}
.section p.lead{ color:var(--muted); margin:0 0 28px; font-size:16px; }

.stats{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:16px;
}
.stat{
  border:1px solid var(--line); border-radius:16px; padding:16px; background:var(--card);
}
.stat h3{ margin:0 0 6px; font-size:24px; }
.stat p{ margin:0; color:var(--muted); font-size:13px; }

.feature-strip{
  margin-top:28px;
}
.strip-shell{
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  background:
    radial-gradient(160px 120px at 15% 0%, rgba(255,122,69,.18), transparent 70%),
    radial-gradient(220px 140px at 85% 0%, rgba(34,211,238,.2), transparent 70%),
    linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}
.strip-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(140px, 1fr));
  gap:14px;
}
.strip-item{
  border:1px solid rgba(255,255,255,.12);
  background:rgba(7,12,24,.55);
  border-radius:16px;
  padding:14px 10px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
  min-height:128px;
  position:relative;
  overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.strip-info{
  position:absolute;
  top:8px;
  right:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:2;
}
.strip-info-btn{
  width:20px;
  height:20px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.4);
  background:rgba(7,12,24,.6);
  color:var(--text);
  font-size:11px;
  font-weight:700;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:help;
}
.strip-tooltip{
  position:absolute;
  top:26px;
  right:0;
  min-width:180px;
  max-width:220px;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(7,12,24,.92);
  color:var(--text);
  font-size:12px;
  line-height:1.5;
  box-shadow:0 14px 26px rgba(2,6,23,.45);
  opacity:0;
  transform:translateY(6px);
  pointer-events:none;
  transition:all .2s ease;
}
.strip-info:hover .strip-tooltip,
.strip-info-btn:focus-visible + .strip-tooltip{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}
.strip-item::after{
  content:"";
  position:absolute;
  inset:-40% auto auto -40%;
  width:120px; height:120px;
  background:radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
  opacity:.4;
}
.strip-icon{
  width:44px; height:44px;
  border-radius:14px;
  display:grid; place-items:center;
  background:linear-gradient(135deg, rgba(255,122,69,.4), rgba(34,211,238,.4));
  color:#0b1020;
  box-shadow:0 10px 20px rgba(2,6,23,.35);
}
.strip-icon svg{ width:22px; height:22px; }
.strip-item p{
  margin:0;
  font-size:12.5px;
  font-weight:600;
  color:var(--text);
  letter-spacing:.2px;
}
.strip-item:hover{
  transform:translateY(-2px);
  border-color:rgba(255,255,255,.3);
  box-shadow:0 18px 40px rgba(2,6,23,.4);
}
.theme-light .strip-shell{
  background:
    radial-gradient(180px 120px at 15% 0%, rgba(255,122,69,.2), transparent 70%),
    radial-gradient(220px 140px at 85% 0%, rgba(34,211,238,.2), transparent 70%),
    linear-gradient(145deg, rgba(255,255,255,.95), rgba(255,255,255,.8));
}
.theme-light .strip-item{
  background:rgba(255,255,255,.9);
  border-color:rgba(15,23,42,.1);
  box-shadow:0 10px 24px rgba(15,23,42,.08);
}
.theme-light .strip-item:hover{
  border-color:rgba(15,23,42,.22);
  box-shadow:0 18px 40px rgba(15,23,42,.12);
}
.theme-light .strip-icon{
  color:#0f172a;
  box-shadow:0 8px 18px rgba(15,23,42,.12);
}
.theme-light .strip-info-btn{
  background:rgba(15,23,42,.04);
  border-color:rgba(15,23,42,.2);
  color:#0f172a;
}
.theme-light .strip-tooltip{
  background:#ffffff;
  color:#0f172a;
  border-color:rgba(15,23,42,.12);
  box-shadow:0 16px 32px rgba(15,23,42,.12);
}

.feature-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.feature-card{
  border:1px solid var(--line); border-radius:16px; padding:18px; background:var(--card);
  min-height:180px;
}
.feature-card h3{ margin:0 0 10px; font-size:18px; }
.feature-card p{ margin:0; color:var(--muted); font-size:14px; line-height:1.6; }

.steps{
  display:grid; grid-template-columns:repeat(3,1fr); gap:18px;
}
.step{
  border:1px solid var(--line); border-radius:16px; padding:16px; background:var(--card);
}
.step span{ font-size:12px; color:var(--muted-2); text-transform:uppercase; letter-spacing:.6px; }
.step h4{ margin:6px 0 8px; font-size:16px; }
.step p{ margin:0; color:var(--muted); font-size:13.5px; line-height:1.6; }

.pricing{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
.price-card{
  border:1px solid var(--line); border-radius:18px; padding:18px; background:var(--card);
  display:flex; flex-direction:column; gap:12px;
}
.price-card h3{ margin:0; font-size:18px; }
.price-card .limit{ font-size:28px; font-weight:700; }
.price-card ul{ margin:0; padding-left:16px; color:var(--muted); font-size:13px; line-height:1.6; }
.price-card .btn{ margin-top:auto; }
.price-badge{ font-size:12px; color:#1b120c; background:var(--accent-3); padding:4px 10px; border-radius:999px; width:max-content; }

.faq{
  display:grid; grid-template-columns:repeat(2,1fr); gap:16px;
}
.faq-item{
  border:1px solid var(--line); border-radius:16px; padding:16px; background:var(--card);
}
.faq-item h4{ margin:0 0 8px; }
.faq-item p{ margin:0; color:var(--muted); font-size:13.5px; line-height:1.6; }

.cta{
  margin-top:64px; padding:28px; border-radius:24px; border:1px solid var(--line);
  background:linear-gradient(135deg, rgba(255,122,69,.2), rgba(34,211,238,.18));
  display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap;
}
.cta h3{ margin:0; font-size:26px; font-family:var(--font-display); }
.cta p{ margin:6px 0 0; color:var(--muted); font-size:14px; }

.testimonial-sec{
  margin-top:64px;
}
.testi-header{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.testi-actions{
  display:flex; gap:10px;
}
.testi-arrow{
  width:42px; height:42px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  display:grid; place-items:center;
  transition:all .2s ease;
}
.testi-arrow:hover{
  border-color:rgba(255,255,255,.35);
  transform:translateY(-1px);
}
.testi-arrow svg{ width:20px; height:20px; }
.testi-slider{
  margin-top:18px;
}
.testi-track{
  display:flex;
  gap:18px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:10px;
  scrollbar-width:none;
}
.testi-track::-webkit-scrollbar{ display:none; }
.testi-card{
  flex:0 0 clamp(240px, 32vw, 360px);
  border-radius:18px;
  border:1px solid rgba(255,255,255,.16);
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:12px;
  background:rgba(255,255,255,.06);
  scroll-snap-align:start;
  min-height:260px;
}
.testi-card.color-1{
  background:linear-gradient(180deg, rgba(255,255,255,.18), rgba(255,255,255,.05));
}
.testi-card.color-2{
  background:linear-gradient(180deg, rgba(34,211,238,.2), rgba(255,255,255,.04));
}
.testi-card.color-3{
  background:linear-gradient(180deg, rgba(255,122,69,.2), rgba(255,255,255,.04));
}
.theme-light .testi-card{
  border-color:rgba(15,23,42,.12);
  background:rgba(255,255,255,.9);
  box-shadow:0 16px 32px rgba(15,23,42,.08);
}
.theme-light .testi-card.color-1{
  background:linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
}
.theme-light .testi-card.color-2{
  background:linear-gradient(180deg, rgba(34,211,238,.15), rgba(255,255,255,.9));
}
.theme-light .testi-card.color-3{
  background:linear-gradient(180deg, rgba(255,122,69,.15), rgba(255,255,255,.9));
}
.theme-light .testi-icon{
  background:rgba(15,23,42,.06);
  color:#0f172a;
}
.theme-light .testi-desc,
.theme-light .testi-list{
  color:var(--muted);
}
.testi-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.testi-name{
  margin:0;
  font-size:18px;
  font-family:var(--font-display);
}
.testi-icon{
  width:40px; height:40px;
  border-radius:12px;
  display:grid; place-items:center;
  background:rgba(255,255,255,.7);
  color:#0b1020;
}
.testi-icon svg{ width:20px; height:20px; }
.testi-desc{
  margin:0;
  color:var(--muted);
  font-size:13.5px;
  line-height:1.6;
}
.testi-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
  color:var(--muted);
  font-size:13px;
}
.testi-list li{
  display:flex;
  gap:8px;
  align-items:flex-start;
}
.testi-list li::before{
  content:"";
  width:8px; height:8px;
  border-radius:999px;
  margin-top:5px;
  background:linear-gradient(135deg, var(--accent-2), var(--accent-3));
  flex:0 0 auto;
}
.testi-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:14px;
  margin-top:14px;
}
.testi-dots{
  display:flex;
  gap:8px;
  align-items:center;
}
.testi-dot{
  width:8px; height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.25);
  border:1px solid rgba(255,255,255,.3);
  cursor:pointer;
  transition:all .2s ease;
}
.testi-dot.is-active{
  width:28px;
  background:linear-gradient(135deg, var(--accent), #ff9f68);
  border-color:transparent;
}

.site-footer{
  margin-top:72px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(160deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.theme-light .site-footer{
  background:linear-gradient(160deg, rgba(255,255,255,.95), rgba(255,255,255,.85));
  border-color:rgba(15,23,42,.12);
}
.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(420px 240px at 12% 18%, rgba(34,211,238,.18), transparent 65%),
    radial-gradient(520px 260px at 88% 10%, rgba(255,122,69,.2), transparent 65%);
  opacity:.9;
  pointer-events:none;
}
.footer-inner{
  position:relative;
  z-index:1;
  padding:32px 28px 26px;
  display:flex;
  flex-direction:column;
  gap:24px;
}
.footer-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-bottom:18px;
  border-bottom:1px solid rgba(148,163,184,.18);
}
.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer-brand strong{
  display:block;
  font-size:16px;
  letter-spacing:.3px;
}
.footer-brand p{
  margin:4px 0 0;
  color:var(--muted);
  font-size:12.5px;
}
.footer-logos{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.logo-chip{
  padding:6px 12px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,.28);
  background:rgba(7,12,24,.55);
  font-size:11.5px;
  color:var(--muted);
  letter-spacing:.2px;
}
.theme-light .logo-chip{
  background:rgba(15,23,42,.04);
  border-color:rgba(15,23,42,.12);
}
.footer-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:20px;
}
.footer-col h4{
  margin:0 0 12px;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.22em;
  color:rgba(226,232,240,.75);
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:8px;
}
.footer-col li{
  color:var(--muted);
  font-size:13px;
}
.footer-col li span{
  color:var(--muted-2);
}
.footer-col a{
  color:var(--text);
  opacity:.86;
  transition:opacity .15s ease, color .15s ease;
}
.footer-col a:hover{
  opacity:1;
  color:#e2f2ff;
}
.footer-legal{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  border-top:1px solid rgba(148,163,184,.18);
  padding-top:16px;
  color:var(--muted-2);
  font-size:12px;
}
.legal-links{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-items:center;
}
.legal-links span{
  color:rgba(148,163,184,.45);
}
.legal-copy{
  color:var(--muted-2);
}
.social-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.social-links a{
  width:34px; height:34px;
  border-radius:999px;
  display:grid; place-items:center;
  border:1px solid rgba(148,163,184,.3);
  background:rgba(7,12,24,.55);
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.2px;
  color:var(--text);
  transition:transform .15s ease, border-color .15s ease, color .15s ease;
}
.theme-light .social-links a{
  background:rgba(15,23,42,.04);
  border-color:rgba(15,23,42,.12);
}
.social-links a:hover{
  transform:translateY(-1px);
  border-color:rgba(34,211,238,.6);
  color:#e2f2ff;
}

[data-reveal]{ opacity:0; transform:translateY(18px); transition:all .6s ease; }
[data-reveal].is-visible{ opacity:1; transform:translateY(0); }

@media (max-width: 1024px){
  .hero{ grid-template-columns:1fr; }
  .feature-grid, .steps, .pricing{ grid-template-columns:repeat(2,1fr); }
  .stats{ grid-template-columns:repeat(2,1fr); }
  .footer-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .strip-grid{ grid-template-columns:repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px){
  .nav{ border-radius:18px; padding:12px 14px; }
  .nav-links{ display:none; }
  .nav-toggle{ display:inline-flex; }
  body.menu-open .nav-links{
    display:flex; flex-direction:column; gap:12px; padding:12px 0 0; width:100%;
  }
  body.menu-open .nav{ flex-wrap:wrap; }
  .hero h1{ font-size:40px; }
  .feature-grid, .steps, .pricing, .faq, .stats{ grid-template-columns:1fr; }
  .cta{ align-items:flex-start; }
  .strip-shell{ padding:14px; }
  .strip-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .testi-header{ align-items:flex-start; }
  .testi-footer{ align-items:flex-start; }
  .footer-inner{ padding:24px 20px; }
  .footer-top{ align-items:flex-start; }
  .footer-grid{ grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}
