/* HOME PAGE ONLY — all styles prefixed with home- */

.home-hero{
  position:relative;
  padding:78px 0 48px;
  overflow:hidden;
}

.home-hero__inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:44px;
  align-items:center;
}

.home-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:9px 12px;
  border-radius:999px;
  color:var(--muted);
  font-weight:800;
  font-size:13px;
}
.home-pill__dot{
  width:8px; height:8px;
  border-radius:999px;
  background:linear-gradient(180deg, var(--accent2), var(--accent));
}

.home-hero__title{
  font-size:56px;
  line-height:1.05;
  margin:16px 0 12px;
  letter-spacing:-1px;
}

.home-hero__desc{
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
  margin:0 0 18px;
  max-width:66ch;
}

.home-hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:16px 0 20px;
}

.home-metrics{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:8px;
}
.home-metric{
  flex:1;
  min-width:170px;
  padding:14px 14px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
}
.home-metric__num{font-size:22px; font-weight:900; letter-spacing:-.2px}
.home-metric__label{font-size:12px; color:var(--muted2); margin-top:4px}

.home-hero__note{
  margin-top:14px;
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted2);
  font-size:13px;
}
.home-hero__noteDot{
  width:10px; height:10px;
  border-radius:999px;
  background:rgba(51,214,159,.16);
  border:1px solid rgba(51,214,159,.28);
}

.home-hero__media{display:grid; gap:14px}

.home-visual{display:grid; gap:14px}
.home-visual__card{
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  box-shadow:var(--shadow);
  overflow:hidden;
}

.home-visual__top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 16px 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.home-chip{
  font-size:12px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(124,92,255,.16);
  border:1px solid rgba(124,92,255,.22);
}
.home-chip--muted{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:var(--muted);
  font-weight:800;
}

.home-visual__imgWrap{
  padding:22px;
  background:
    radial-gradient(800px 340px at 50% 55%, rgba(124,92,255,.14), transparent 62%),
    radial-gradient(800px 340px at 40% 20%, rgba(0,212,255,.12), transparent 58%);
}
.home-visual__img{
  width:100%;
  aspect-ratio: 16 / 10;
  object-fit:contain;
}

.home-visual__bottom{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  padding:16px;
  border-top:1px solid rgba(255,255,255,.08);
}
.home-visual__title{font-weight:900; letter-spacing:-.2px}
.home-visual__text{font-size:13px; color:var(--muted); margin-top:5px; line-height:1.7}

.home-visual__mini{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  padding:18px;
}
.home-miniRow{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.home-miniRow:last-child{border-bottom:none}
.home-miniRow span{color:var(--muted); font-size:13px}
.home-miniRow b{font-size:13px}

.home-hero__bg{position:absolute; inset:0; pointer-events:none; z-index:-1}

/* ---------- Strip ---------- */
.home-strip{padding:18px 0 0}
.home-strip__inner{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  padding:16px;
  display:grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap:14px;
  align-items:center;
}
.home-strip__k{color:var(--muted2); font-size:12px; font-weight:800}
.home-strip__v{font-weight:900; letter-spacing:-.2px}
.home-strip__sep{width:1px; height:44px; background:rgba(255,255,255,.10)}

/* ---------- Sections ---------- */
.home-section{padding:76px 0}
.home-section--muted{background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,0))}

.home-sectionHead{max-width:860px}
.home-sectionHead__title{font-size:38px; margin:0 0 10px; letter-spacing:-.7px}
.home-sectionHead__sub{margin:0; color:var(--muted); line-height:1.8}

/* Cards */
.home-cards{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
  margin-top:24px;
}
.home-card{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  padding:16px;
  transition:transform .18s ease, background .18s ease, border-color .18s ease;
  min-height:250px;
  overflow:hidden;
}
.home-card:hover{transform:translateY(-4px); background:rgba(255,255,255,.07); border-color:rgba(255,255,255,.14)}
.home-card__icon{
  height:120px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(0,0,0,.20);
  display:grid;
  place-items:center;
  overflow:hidden;
}
.home-card__icon img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.home-card__icon--svg{
  color:rgba(255,255,255,.92);
}
.home-card__icon--svg svg{
  width:46px; height:46px;
  opacity:.92;
}
.home-card__title{margin:14px 0 8px; font-size:16px; letter-spacing:-.2px}
.home-card__text{margin:0; color:var(--muted); line-height:1.8; font-size:14px}

/* ---------- Video ---------- */
.home-video{
  padding:78px 0;
}
.home-video__inner{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:center;
}
.home-video__title{
  margin:0 0 10px;
  font-size:38px;
  letter-spacing:-.7px;
}
.home-video__sub{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  max-width:70ch;
}
.home-video__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:16px;
}
.home-yt{
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  box-shadow:var(--shadow);
  overflow:hidden;
  position:relative;
}
.home-yt::before{
  content:"";
  display:block;
  padding-top:56.25%;
}
.home-yt iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}

/* ---------- Use cases ---------- */
.home-useGrid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.home-useCard{
  border-radius:22px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.05);
  padding:16px;
  min-height:180px;
}
.home-useCard__head{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.home-useCard__title{font-weight:900; letter-spacing:-.2px}
.home-useCard__tag{
  font-size:12px;
  font-weight:900;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(0,212,255,.10);
  border:1px solid rgba(0,212,255,.16);
  color:rgba(255,255,255,.9);
}
.home-useCard__text{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.8;
  font-size:14px;
}

/* Wide CTA */
.home-wideCta{
  margin-top:18px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(90deg, rgba(124,92,255,.16), rgba(0,212,255,.10));
  padding:20px;
  box-shadow:0 22px 70px rgba(0,0,0,.35);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.home-wideCta__title{font-weight:900; letter-spacing:-.3px}
.home-wideCta__text{color:var(--muted); margin-top:6px; line-height:1.8; font-size:14px}
.home-wideCta__actions{display:flex; gap:12px; flex-wrap:wrap}

/* ---------- FAQ ---------- */
.home-faq{padding:78px 0}
.home-faqList{
  margin-top:18px;
  border-radius:26px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  overflow:hidden;
}
.home-faqItem{
  width:100%;
  text-align:left;
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  background:transparent;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.08);
  color:var(--text);
  cursor:pointer;
}
.home-faqQ{font-weight:900; letter-spacing:-.2px}
.home-faqIcon{
  width:30px; height:30px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(0,0,0,.18);
  display:grid;
  place-items:center;
  font-weight:900;
}
.home-faqA{
  display:none;
  padding:0 16px 16px;
  color:var(--muted);
  line-height:1.85;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.home-faqA.is-open{display:block}
.home-faqItem.is-open .home-faqIcon{transform:rotate(45deg)}

/* ---------- Final CTA ---------- */
.home-finalCta{padding:74px 0}
.home-finalCta__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(90deg, rgba(124,92,255,.16), rgba(0,212,255,.10));
  padding:22px;
  box-shadow:0 22px 70px rgba(0,0,0,.45);
}
.home-finalCta__title{margin:0 0 6px; font-size:28px; letter-spacing:-.5px}
.home-finalCta__sub{margin:0; color:var(--muted); line-height:1.8}
.home-finalCta__actions{display:flex; gap:12px; flex-wrap:wrap}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .home-hero__inner{grid-template-columns:1fr; gap:22px}
  .home-hero__title{font-size:44px}
  .home-strip__inner{grid-template-columns:1fr; gap:10px}
  .home-strip__sep{display:none}
  .home-cards{grid-template-columns:repeat(2,1fr)}
  .home-video__inner{grid-template-columns:1fr}
  .home-useGrid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 560px){
  .home-hero{padding:60px 0 40px}
  .home-hero__title{font-size:36px}
  .home-cards{grid-template-columns:1fr}
  .home-useGrid{grid-template-columns:1fr}
  .home-finalCta__title{font-size:24px}
}