:root{
  --bg:#0b1220;
  --bg2:#060b16;
  --card:#0f172a;
  --card2:#0a1326;
  --stroke: rgba(255,255,255,.10);
  --text:#eaf2ff;
  --muted: rgba(234,242,255,.72);

  --green:#22c55e;
  --green2:#16a34a;

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 30% 10%, rgba(34,197,94,.18), transparent 55%),
              radial-gradient(1000px 700px at 70% 20%, rgba(59,130,246,.18), transparent 55%),
              linear-gradient(180deg, var(--bg2), var(--bg));
  color: var(--text);
  overflow-x:hidden;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* Topbar */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(6,11,22,.68);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 0;
  gap: 14px;
}
.brand-mini{
  display:flex; align-items:center; gap:10px;
}
.brand-mini-logo{
  width:28px; height:28px; border-radius:10px;
  border: 1px solid rgba(255,255,255,.12);
}
.brand-mini-text{
  font-weight: 850;
  letter-spacing: .3px;
}
.topbar-actions{ display:flex; gap:10px; align-items:center; }

/* Buttons */
.primary-btn, .secondary-btn, .ghost-btn{
  border-radius: 14px;
  padding: 12px 16px;
  font-weight: 850;
  border:1px solid rgba(255,255,255,.12);
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  user-select:none;
}

.primary-btn{
  background: linear-gradient(180deg, rgba(34,197,94,.95), rgba(22,163,74,.95));
  color:#04160b;
  box-shadow: 0 16px 55px rgba(34,197,94,.25);
}
.primary-btn:hover{ transform: translateY(-1px); box-shadow: 0 22px 70px rgba(34,197,94,.28); }
.primary-btn:active{ transform: translateY(0px); }

.secondary-btn{
  background: rgba(255,255,255,.06);
  color: var(--text);
  box-shadow: 0 10px 40px rgba(0,0,0,.28);
}
.secondary-btn:hover{ transform: translateY(-1px); border-color: rgba(255,255,255,.20); }

.ghost-btn{
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,.14);
}
.ghost-btn:hover{ background: rgba(255,255,255,.05); }

.small{ padding: 10px 12px; border-radius: 12px; }

/* Hero */
.hero{
  padding: 48px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: start;
}
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: var(--muted);
  width: fit-content;
}
.pill .dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(34,197,94,.18);
}

.hero-title{
  margin: 16px 0 10px;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.6px;
}
.hero-title .accent{
  display:block;
  color: var(--green);
  text-shadow: 0 18px 70px rgba(34,197,94,.30);
}
.hero-subtitle{
  margin: 0 0 18px;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 64ch;
}
.hero-cta{ display:flex; gap: 12px; flex-wrap:wrap; margin-bottom: 14px; }

.hero-badges{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}
.badge{
  display:flex;
  gap: 12px;
  padding: 12px 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
}
.badge-ic{ font-size: 18px; }
.badge-title{ font-weight: 850; }
.badge-sub{ font-size: 13px; color: rgba(234,242,255,.70); }

.hero-visual{
  position: relative;
  min-height: 540px;
}
.hero-card{
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-card-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  padding: 14px 16px;
  background: rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-card-brand{ display:flex; align-items:center; gap:10px; font-weight: 900; }
.leaf{
  width:18px;height:18px;border-radius: 6px;
  background: radial-gradient(circle at 30% 30%, rgba(34,197,94,.95), rgba(22,163,74,.9));
  box-shadow: 0 10px 30px rgba(34,197,94,.25);
  display:inline-block;
}
.leaf.small{ width:14px;height:14px;border-radius: 5px; }

.hero-card-tag{
  font-size: 12px;
  color: rgba(234,242,255,.80);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(34,197,94,.12);
  border: 1px solid rgba(34,197,94,.20);
}

.hero-card-body{ padding: 16px; }
.mock-screen{
  position: relative;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: radial-gradient(900px 420px at 50% 20%, rgba(34,197,94,.12), transparent 55%),
              linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  min-height: 320px;
}
.mock-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .62;
  filter: saturate(1.08) contrast(1.05);
}
.mock-fallback{
  opacity: .10;
  filter: none;
}

.mock-overlay{
  position:absolute;
  inset: 0;
  padding: 18px;
  display:flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.62));
}
.mock-line{ font-size: 12px; color: rgba(234,242,255,.70); }
.mock-value{ font-size: 18px; font-weight: 900; }
.mock-meter{
  margin-top: 8px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
}
.mock-meter-fill{
  height:100%;
  width: 78%;
  background: linear-gradient(90deg, rgba(34,197,94,.95), rgba(22,163,74,.95));
  box-shadow: 0 16px 50px rgba(34,197,94,.30);
}
.mock-meter-label{ font-size: 12px; color: rgba(234,242,255,.78); }

.hero-card-actions{
  display:flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.mini-note{
  margin-top: 10px;
  color: rgba(234,242,255,.70);
  font-size: 12.5px;
  line-height: 1.45;
}

.glow-orbs{
  position:absolute;
  inset: -60px -40px -40px -40px;
  background:
    radial-gradient(400px 220px at 20% 30%, rgba(34,197,94,.22), transparent 70%),
    radial-gradient(420px 240px at 80% 20%, rgba(59,130,246,.18), transparent 70%),
    radial-gradient(380px 220px at 70% 80%, rgba(34,197,94,.14), transparent 70%);
  filter: blur(10px);
  z-index: -1;
}

/* Strip */
.strip{
  margin-top: 18px;
  padding: 14px 0;
}
.strip-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px){
  .strip-grid{ grid-template-columns: repeat(2, 1fr); }
}
.strip-item{
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.strip-num{ font-weight: 950; letter-spacing:.2px; }
.strip-txt{ color: rgba(234,242,255,.72); font-size: 13px; margin-top: 4px; }

/* Sections */
.section{
  padding: 54px 0;
}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,0));
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.section-head{
  margin-bottom: 20px;
}
.section-head h2{
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.4px;
}
.section-head p{
  margin:0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}

/* Feature cards */
.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
}
.card{
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.card-ic{
  width: 42px; height:42px;
  border-radius: 14px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.20);
  margin-bottom: 10px;
}
.card h3{ margin: 0 0 6px; font-size: 18px; }
.card p{ margin: 0; color: rgba(234,242,255,.72); line-height:1.55; }

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 980px){
  .steps{ grid-template-columns: 1fr; }
}
.step{
  display:flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.step-num{
  width: 38px; height:38px;
  border-radius: 14px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.20);
  display:flex; align-items:center; justify-content:center;
  font-weight: 950;
}
.step h3{ margin:0 0 6px; }
.step p{ margin:0; color: rgba(234,242,255,.72); line-height:1.55; }

/* Screenshots */
.shots-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 980px){
  .shots-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .shots-grid{ grid-template-columns: 1fr; }
}
.shot{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  cursor:pointer;
  transition: transform .12s ease, box-shadow .2s ease;
}
.shot:hover{ transform: translateY(-2px); box-shadow: 0 18px 60px rgba(0,0,0,.35); }
.shot img{ width:100%; height: 240px; object-fit: cover; }
.shot figcaption{
  padding: 10px 12px;
  color: rgba(234,242,255,.75);
  font-size: 13px;
}

/* FAQ */
.faq{
  display:grid;
  gap: 10px;
}
.faq-item{
  padding: 14px 14px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
}
.faq-item summary{
  cursor:pointer;
  font-weight: 900;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item p{
  margin: 10px 0 0;
  color: rgba(234,242,255,.72);
  line-height: 1.6;
}

/* Download */
.download-card{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(34,197,94,.12), rgba(255,255,255,.03));
  border: 1px solid rgba(34,197,94,.20);
  box-shadow: 0 24px 80px rgba(0,0,0,.45);
  padding: 18px;
}
@media (max-width: 980px){
  .download-card{ grid-template-columns: 1fr; }
}
.download-card h2{ margin: 0 0 8px; }
.download-card p{ margin: 0 0 14px; color: rgba(234,242,255,.78); line-height: 1.6; }
.download-actions{ display:flex; gap: 10px; flex-wrap: wrap; }
.fineprint{ margin-top: 12px; color: rgba(234,242,255,.68); font-size: 12.5px; }

.qr{
  height: 100%;
  border-radius: 18px;
  background: rgba(0,0,0,.20);
  border: 1px solid rgba(255,255,255,.10);
  padding: 14px;
  display:flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align:center;
}
.qr-title{ font-weight: 900; }
.qr img{ width: 200px; border-radius: 12px; border:1px solid rgba(255,255,255,.12); }
.qr-sub{ font-size: 13px; color: rgba(234,242,255,.72); }

/* Footer */
.footer{
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .6fr .8fr;
  gap: 14px;
  align-items:start;
}
@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom: 6px; }
.footer-txt{ color: rgba(234,242,255,.72); margin: 0; line-height: 1.6; }
.footer-links{ display:flex; flex-direction: column; gap: 8px; }
.footer-links a{ color: rgba(234,242,255,.78); }
.footer-links a:hover{ color: rgba(234,242,255,1); }
.footer-meta{ color: rgba(234,242,255,.72); font-size: 13px; }
.footer-sub{ margin-top: 6px; opacity: .85; }

/* Modal */
.modal{
  position: fixed;
  inset: 0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.68);
  z-index: 1200;
  padding: 18px;
}
.modal-content{
  width: min(980px, 100%);
  border-radius: 18px;
  background: rgba(15,23,42,.92);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 30px 110px rgba(0,0,0,.65);
  padding: 14px;
}
.modal-title{
  font-weight: 950;
  margin-bottom: 10px;
}
.modal-close{
  float:right;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
  cursor:pointer;
}
.modal-close:hover{ background: rgba(255,255,255,.12); }

.ratio{
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: #000;
}
.ratio iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.modal-hint{
  margin-top: 10px;
  color: rgba(234,242,255,.70);
  font-size: 12.5px;
}

/* Lightbox */
.lightbox{
  position: fixed;
  inset: 0;
  display:none;
  place-items:center;
  background: rgba(0,0,0,.78);
  z-index: 1300;
  padding: 16px;
}
.lightbox img{
  width: min(980px, 96vw);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.25);
}
.lightbox-close{
  position:absolute;
  top: 16px;
  right: 16px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor:pointer;
}
.lightbox-nav{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor:pointer;
  font-size: 28px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.lightbox-nav.prev{ left: 16px; }
.lightbox-nav.next{ right: 16px; }
.lightbox-nav:hover,
.lightbox-close:hover{ background: rgba(255,255,255,.12); }

/* To top */
.toTop{
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: var(--text);
  cursor:pointer;
  display:none;
  z-index: 1400;
}
.toTop:hover{ background: rgba(255,255,255,.12); }