:root{
  --bg:#0b1220;
  --bg2:#0f1b33;
  --card:#0f1a2f;
  --card2:#0d172a;
  --line:rgba(255,255,255,.08);
  --line2:rgba(255,255,255,.12);
  --text:#e9eefc;
  --muted:rgba(233,238,252,.72);
  --dim:rgba(233,238,252,.55);
  --soft:rgba(233,238,252,.14);
  --shadow:0 18px 45px rgba(0,0,0,.42);
  --shadow2:0 12px 28px rgba(0,0,0,.35);
  --r:18px;
  --r2:22px;
  --gap:14px;
  --max:1180px;
  --grad:linear-gradient(90deg,#4cc9f0,#a78bfa,#22c55e);
}

/* Firefox */
html{
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.22) rgba(255,255,255,.06);
}

/* Chrome/Edge/Safari */
*::-webkit-scrollbar{
  width: 10px;
  height: 10px;
}

*::-webkit-scrollbar-track{
  background: rgba(255,255,255,.05);
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb{
  background: linear-gradient(180deg, rgba(96,165,250,.55), rgba(167,139,250,.55));
  border-radius: 999px;
  border: 2px solid rgba(11,18,32,.85);
}

*::-webkit-scrollbar-thumb:hover{
  background: linear-gradient(180deg, rgba(96,165,250,.75), rgba(167,139,250,.75));
}

*::-webkit-scrollbar-corner{
  background: transparent;
}

.atx-brandMark{
  width:30px;height:30px;
  box-shadow: var(--atx-shadow2);
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: radial-gradient(1000px 600px at 20% 0%, rgba(76,201,240,.10), transparent 55%),
              radial-gradient(900px 700px at 100% 15%, rgba(167,139,250,.10), transparent 55%),
              radial-gradient(800px 600px at 50% 100%, rgba(34,197,94,.08), transparent 60%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
.container{max-width:var(--max);margin:0 auto;padding:0 20px}

.bgGlow{
  position:fixed; inset:-40px;
  background:
    radial-gradient(700px 450px at 20% 10%, rgba(76,201,240,.10), transparent 60%),
    radial-gradient(680px 460px at 85% 15%, rgba(167,139,250,.10), transparent 60%),
    radial-gradient(620px 460px at 50% 95%, rgba(34,197,94,.07), transparent 62%);
  pointer-events:none;
  filter: blur(12px);
  opacity:.9;
}

.topbar{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(12px);
  background: rgba(11,18,32,.66);
  border-bottom:1px solid var(--line);
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 18px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  min-width:240px;
}
.brandMark{
  width:34px; height:34px; border-radius:12px;
  /* background: var(--grad); */
  box-shadow: 0 12px 25px rgba(0,0,0,.35);
}
.brandText{display:flex;flex-direction:column;line-height:1.1}
.brandText span{color:var(--muted);font-size:12px;margin-top:5px}

.nav{display:flex;align-items:center;gap:14px}
.nav a{
  color:var(--muted);
  padding:10px 10px;
  border-radius:12px;
  transition: .18s ease;
}
.nav a:hover{color:var(--text);background:rgba(255,255,255,.06)}
.nav a.cta{
  color:#07111f;
  background: linear-gradient(90deg, rgba(76,201,240,1), rgba(167,139,250,1));
  font-weight:800;
  padding:10px 14px;
}
.nav a.cta:hover{filter:brightness(1.05)}

.navBtn{
  display:none;
  width:44px; height:42px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  box-shadow: var(--shadow2);
  cursor:pointer;
}
.navBtn span{
  display:block;
  height:2px;
  width:18px;
  background:rgba(233,238,252,.85);
  margin:6px auto;
  border-radius:4px;
}

.hero{
  padding:54px 0 18px;
  padding-top: 20px;
}
.heroGrid{
  display:grid;
  gap: 26px;
  align-items:start;
}
.pill{
  display:inline-flex;
  padding:8px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  border-radius:999px;
  color:var(--muted);
  font-size:13px;
}
h1{
  margin:14px 0 10px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-.02em;
}
.grad{
  background: var(--grad);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  line-height:1.55;
}
.heroActions{
  display:flex; gap:12px; flex-wrap:wrap;
  margin-top:18px;
}
.btn{
  border:1px solid var(--line);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding:11px 14px;
  border-radius:14px;
  font-weight:700;
  cursor:pointer;
  transition:.16s ease;
}
.btn:hover{transform: translateY(-1px); background: rgba(255,255,255,.08)}
.btn.primary{
  border: none;
  color:#07111f;
  background: linear-gradient(90deg, rgba(34,197,94,1), rgba(76,201,240,1));
}
.btn.primary:hover{filter:brightness(1.05)}
.btn.ghost{
  background: transparent;
}
.metrics{
  margin-top:16px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.metric{
  padding:12px 12px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius:16px;
}
.metric .k{color:var(--dim);font-size:12px}
.metric .v{font-size:14px;font-weight:800;margin-top:4px}

.heroMedia{
  display:flex;
  flex-direction:column;
  gap:12px;
  margin: auto;
}
.shotCard{
  border:1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: var(--r2);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.shotTop{
  display:flex; align-items:center; gap:8px;
  padding:10px 12px;
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.18);
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: rgba(233,238,252,.22);
}
.shotTitle{margin-left:8px;color:var(--muted);font-weight:800;font-size:13px}
.shotHint{margin-left:auto;color:var(--dim);font-size:12px}
.shot{
  width:100%;
  display:block;
  background: rgba(0,0,0,.25);
}
.shot.big{
  max-height: 760px;
  object-fit: cover;
}
.shotNote{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r);
  padding:14px 14px;
}
.shotNote strong{display:block;margin-bottom:8px}
.shotNote ul{margin:0;padding-left:18px;color:var(--muted);line-height:1.55}
.shotNote li{margin:6px 0}

.strip{
  padding: 18px 0 8px;
}
.stripGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stripItem{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding:16px;
  box-shadow: var(--shadow2);
}
.iconCircle{
  width:44px;height:44px;border-radius:16px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
}
.iconCircle svg{width:22px;height:22px;color:rgba(233,238,252,.86)}
.stripItem h3{margin:12px 0 6px;font-size:16px}
.stripItem p{margin:0;color:var(--muted);line-height:1.55}

.section{padding:46px 0}
.section.alt{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.00));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.sectionHead{
  margin-bottom:18px;
}
.sectionHead h2{
  margin:0;
  font-size:28px;
  letter-spacing:-.01em;
}
.sectionHead p{
  margin:8px 0 0;
  color:var(--muted);
  max-width: 850px;
  line-height:1.6;
}

.moduleGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}
.moduleCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding:16px;
  box-shadow: var(--shadow2);
  display: flex;
  flex-direction: column;
}
.moduleTitle{display:flex;align-items:baseline;justify-content:space-between;gap:10px}
.moduleCard h3{margin:0;font-size:16px}
.tag{
  font-size:12px;
  color:rgba(233,238,252,.75);
  border:1px solid var(--line);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.04);
}
.moduleCard p{margin:10px 0 0; margin-bottom: 20px; color:var(--muted);line-height:1.6}
.moduleLinks{margin-top:auto}

.shotRow{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
  margin-bottom: 14px;
}
.figureCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  overflow:hidden;
  box-shadow: var(--shadow2);
  margin:0;
  margin-top: 20px;
}
.figureCard figcaption{
  padding:14px 16px;
  border-bottom:1px solid var(--line);
  background: rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
  gap:6px;
}
.figureCard figcaption strong{font-size:14px}
.figureCard figcaption span{color:var(--muted);font-size:13px;line-height:1.45}

.twoCol{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items:start;
}
.steps{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding: 14px;
  box-shadow: var(--shadow2);
}
.step{
  display:flex; gap:12px; align-items:flex-start;
  padding: 12px 10px;
  border-radius: 16px;
}
.step + .step{border-top:1px solid var(--line)}
.num{
  width:34px;height:34px;border-radius:14px;
  display:grid;place-items:center;
  background: rgba(255,255,255,.06);
  border:1px solid var(--line);
  font-weight:900;
}
.txt strong{display:block;font-size:14px}
.txt span{display:block;color:var(--muted);margin-top:4px;line-height:1.5}
.benefits{
  margin-top:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding: 16px;
  box-shadow: var(--shadow2);
}
.benefits h3{margin:0 0 10px;font-size:16px}
.benefits ul{margin:0;padding-left:18px;color:var(--muted);line-height:1.6}
.benefits li{margin:6px 0}

.linkGrid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.linkCard{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: var(--r2);
  padding: 16px;
  box-shadow: var(--shadow2);
  transition:.16s ease;
}
.linkCard:hover{transform: translateY(-2px); background: rgba(255,255,255,.06)}
.lcTop{display:flex;align-items:baseline;justify-content:space-between;gap:10px}
.lcTop strong{font-size:14px}
.lcTop span{color:var(--dim);font-size:12px}
.linkCard p{margin:10px 0 0;color:var(--muted);line-height:1.6}

.ctaBox{
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}
.ctaCopy h2{margin:0;font-size:26px}
.ctaCopy p{margin:10px 0 0;color:var(--muted);line-height:1.6}
.ctaActions{margin-top:14px;display:flex;gap:12px;flex-wrap:wrap}
.ctaSide{display:flex;flex-direction:column;gap:12px}
.miniCard{
  border:1px solid var(--line);
  background: rgba(0,0,0,.18);
  border-radius: 20px;
  padding: 14px;
}
.miniTitle{font-weight:900;margin-bottom:8px}
.miniCard ul{margin:0;padding-left:18px;color:var(--muted);line-height:1.6}
.miniText{color:var(--muted);line-height:1.6}

.footer{
  padding: 22px 0 40px;
  border-top:1px solid var(--line);
  background: rgba(11,18,32,.55);
}
.footerGrid{display:flex;align-items:center;justify-content:space-between;gap:16px}
.footBrand{display:flex;align-items:center;gap:12px}
.dim{color:var(--dim)}
.footRight{display:flex;align-items:center;gap:14px}
.footRight a{color:var(--muted);padding:8px 10px;border-radius:12px}
.footRight a:hover{background: rgba(255,255,255,.06);color:var(--text)}

.reveal{opacity:0;transform: translateY(10px);transition: .5s ease}
.reveal.show{opacity:1;transform:none}

.modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:1000;
}

.modal.open{
  display:flex;
  align-items:center;
  justify-content:center;
}

.modalBackdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
  backdrop-filter:blur(6px);
}

.modalBody{
  position:relative;
  z-index:1;

  /* max-width:1200px; */
  max-height:95vh;
  width:calc(100% - 32px);

  padding:14px;
  border-radius:24px;
  border:1px solid var(--line);
  background:rgba(11,18,32,.92);
  box-shadow:var(--shadow);

  display:flex;
  flex-direction:column;
}

.modalBody img{
  max-width:100%;
  max-height:calc(90vh - 80px);
  object-fit:contain;

  border-radius:18px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
}

.modalClose{
  margin: auto;
  margin-top: 10px;
  width: 100px;
  padding: 11px 14px;
  border-radius: 16px;
  border:1px solid var(--line);
  background: rgb(143, 42, 42);
  color: var(--text);
  font-weight:900;
  cursor:pointer;
}

@media (max-width: 980px){
  /* .heroGrid{grid-template-columns:1fr} */
  .footBrand {
    display: none;
  }
  .footerGrid {
    justify-content: center;
  }
  h1{font-size:36px}
  .metrics{grid-template-columns: repeat(2, 1fr)}
  .stripGrid{grid-template-columns:1fr}
  .moduleGrid{grid-template-columns:1fr}
  .shotRow{grid-template-columns:1fr}
  .twoCol{grid-template-columns:1fr}
  .linkGrid{grid-template-columns:1fr}
  .ctaBox{grid-template-columns:1fr}
  .navBtn{display:block}
  .nav{
    position:fixed;
    top:64px; right:14px; left:14px;
    background: rgba(11,18,32,.92);
    border:1px solid var(--line);
    border-radius: 18px;
    padding: 10px;
    display:none;
    flex-direction:column;
    gap:6px;
    box-shadow: var(--shadow);
  }
  .nav.open{display:flex}
  .nav a{padding:12px 12px}
}

.imgFlow{
  display:grid;
  grid-template-columns: .9fr .9fr;
  gap:18px;
  align-items:stretch;
  margin-top:16px;
}

@media (max-width: 980px){
  .imgFlow{ grid-template-columns:1fr; }
}

.imgCard.slim img{ height:80vh; }

@media (max-width: 980px){
  .imgCard.slim img,
  .imgCard.wide img{ height:auto; }
}

.imgCard{
  margin:0;
  position:relative;
  border-radius:26px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow2);
  overflow:hidden;
}

.imgCard::before{
  content:attr(data-step);
  position:absolute;
  top:12px; left:12px;
  width:34px; height:34px;
  display:grid; place-items:center;
  border-radius:14px;
  font-weight:900;
  color:var(--text);
  background:rgba(255,255,255,.10);
  border:1px solid var(--line);
  z-index:3;
}

.imgCard img{
  width:100%;
  height:500px;
  display:block;
  object-fit:cover;
  background:rgba(0,0,0,.25);
  transform:scale(1.02);
  transition:transform .18s ease;
}

@media (max-width: 980px){
  .imgCard img{ height:auto; transform:none; }
}

.imgCard:hover img{ transform:scale(1.06); }

.imgCard figcaption{
  position:absolute;
  left:0; right:0; bottom:0;
  padding:14px 14px;
  border-top:1px solid var(--line);
  background:linear-gradient(180deg, rgba(11,18,32,0) 0%, rgba(11,18,32,.78) 45%, rgba(11,18,32,.92) 100%);
}

.imgCard figcaption strong{
  display:block;
  font-size:14px;
  font-weight:900;
  letter-spacing:-.2px;
}

.imgCard figcaption span{
  display:block;
  margin-top:4px;
  font-size:12.5px;
  color:rgba(233,238,252,.78);
}

.shotHint{
  margin-left:auto;
  color:var(--dim);
  font-size:12px;
  padding:6px 10px;
  border:1px solid var(--line);
  border-radius:999px;
  background:rgba(255,255,255,.04);
}

.shotMiniGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.shotMini{
  margin:0;
  border:1px solid var(--line);
  background:rgba(255,255,255,.035);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow2);
}

.shotMiniImg{
  width:100%;
  height:120px;
  display:block;
  object-fit:cover;
  background:rgba(0,0,0,.22);
}

.shotMiniCap{
  padding:10px 10px;
  color:var(--muted);
  font-size:12px;
  line-height:1.35;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.16);
}

@media (max-width: 980px){
  .shotMiniGrid{ grid-template-columns:1fr; }
  .shotMiniImg{ height:160px; }
}


.mini{
  display:inline-flex;
  gap:8px;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:14px;

  /* warm accent on dark-blue UI */
  background: linear-gradient(180deg, rgba(245,158,11,.30), rgba(245,158,11,.16));
  border: 1px solid rgba(245,158,11,.45);

  color: var(--text);
  font-weight:800;

  cursor:pointer;
  user-select:none;
  text-decoration:none;

  box-shadow: 0 10px 26px rgba(0,0,0,.30);
  transition: transform .14s ease, background .14s ease, border-color .14s ease, box-shadow .14s ease, filter .14s ease;
}

.mini:hover{
  transform: translateY(-2px);
  background: linear-gradient(180deg, rgba(245,158,11,.38), rgba(245,158,11,.22));
  border-color: rgba(245,158,11,.62);
  box-shadow: 0 16px 38px rgba(0,0,0,.38);
  filter: brightness(1.06);
}

.mini:active{
  transform: translateY(0) scale(.98);
  background: linear-gradient(180deg, rgba(245,158,11,.26), rgba(245,158,11,.14));
  box-shadow: 0 9px 20px rgba(0,0,0,.28);
}

.mini:focus-visible{
  outline:none;
  box-shadow: 0 0 0 4px rgba(245,158,11,.26), 0 16px 38px rgba(0,0,0,.38);
}



.mini::after{
  content:"›";
  opacity:.8;
  transform: translateY(-.5px);
  transition: transform .14s ease, opacity .14s ease;
}
.mini:hover::after{
  opacity:1;
  transform: translate(2px, -0.5px);
}

.demoStack{margin-top:20px;display:flex;flex-direction:column;gap:18px}
.demoRow{display:grid;grid-template-columns:1fr 1.25fr;gap:18px;align-items:stretch}
.demoRow.reverse{grid-template-columns:1.25fr 1fr}
.demoCopy{border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:18px;background:rgba(255,255,255,.03);box-shadow:0 18px 50px rgba(0,0,0,.35)}
.demoKicker{display:inline-flex;align-items:center;gap:10px;font-size:12px;letter-spacing:.2px;color:rgba(255,255,255,.72);border:1px solid rgba(255,255,255,.10);padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.02);margin-bottom:10px}
.demoCopy h3{margin:8px 0 10px 0}
.demoList{margin:0;padding-left:18px;display:grid;gap:8px;color:rgba(255,255,255,.85)}
.demoActions{display:flex;gap:10px;flex-wrap:wrap;margin-top:20px}
.demoShot{margin:0;border-radius:18px;overflow:hidden;border:1px solid rgba(255,255,255,.08);background:rgba(255,255,255,.02);box-shadow:0 18px 50px rgba(0,0,0,.35)}
.demoShot img{display:block;width:100%;height:auto}
.demoFoot{margin-top:18px;display:flex;align-items:center;justify-content:space-between;gap:12px;flex-wrap:wrap}
.demoFootBox{display:flex;flex-direction:column;gap:4px;border:1px solid rgba(255,255,255,.08);border-radius:18px;padding:14px 16px;background:rgba(255,255,255,.03)}
.demoFootBox span{color:rgba(255,255,255,.75);font-size:14px}
@media (max-width: 980px){
  .demoRow,.demoRow.reverse{grid-template-columns:1fr}
}

