:root {
  --g: #00ff66;
  --g2: #00cc50;
  --g3: #008833;
  --glow: rgba(0,255,102,0.3);
  --gfaint: rgba(0,255,102,0.07);
  --gborder: rgba(0,255,102,0.18);
  --bg: #030a04;
  --bg2: #040e06;
  --bg3: #051009;
  --text: #d4ffd8;
  --muted: #527a5e;
  --fh: 'Orbitron', monospace;
  --fb: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  overflow-x: hidden;
}

em { font-style: normal; color: var(--g); }

#bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.22;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

.modal-wrap {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.modal-wrap.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: linear-gradient(150deg, #071a0a 0%, #030a04 100%);
  border: 1px solid var(--gborder);
  border-radius: 22px;
  padding: 2.5rem 2rem 2rem;
  width: 440px;
  max-width: 95vw;
  position: relative;
  box-shadow: 0 0 80px rgba(0,255,102,0.1), 0 40px 80px rgba(0,0,0,0.5);
  animation: mIn 0.32s cubic-bezier(.34,1.56,.64,1);
  text-align: center;
}

.auth-box { text-align: left; }

@keyframes mIn {
  from { transform: scale(0.86) translateY(28px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-glow {
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 200px;
  background: radial-gradient(circle, rgba(0,255,102,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.modal-x {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  background: none;
  border: 1px solid var(--gborder);
  color: var(--muted);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-x:hover { color: var(--g); border-color: var(--g); }

.modal-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
}

.modal-logo-svg {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 10px var(--g));
  animation: lpulse 3s ease-in-out infinite;
}

@keyframes lpulse {
  0%,100% { filter: drop-shadow(0 0 8px var(--g)); }
  50% { filter: drop-shadow(0 0 22px var(--g)) drop-shadow(0 0 44px rgba(0,255,102,0.25)); }
}

.modal-dl-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--g);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--g);
  margin: 0 auto 1rem;
  box-shadow: 0 0 20px var(--glow);
  animation: iconPulse 2.2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,100% { box-shadow: 0 0 14px var(--glow); }
  50% { box-shadow: 0 0 30px var(--glow), 0 0 60px rgba(0,255,102,0.12); }
}

.modal-title {
  font-family: var(--fh);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.modal-sub {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.4rem;
}

.modal-chips {
  display: flex;
  gap: 0.55rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.modal-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.1rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--gborder);
  background: var(--gfaint);
  border-radius: 10px;
  min-width: 76px;
}

.modal-chip span { font-size: 0.63rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.modal-chip strong { font-size: 0.88rem; font-weight: 700; }

.dl-confirm-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--g);
  color: #000;
  font-family: var(--fh);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.28s;
  margin-bottom: 1rem;
}

.dl-confirm-btn:hover {
  background: #fff;
  box-shadow: 0 0 28px var(--g), 0 0 56px rgba(0,255,102,0.2);
  transform: translateY(-2px);
}

.dl-confirm-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.modal-note { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }
.modal-note a { color: var(--g); text-decoration: none; }
.modal-note a:hover { text-decoration: underline; }

.auth-tabs {
  display: flex;
  border-bottom: 1px solid var(--gborder);
  margin-bottom: 1.5rem;
}

.atab {
  flex: 1;
  padding: 0.65rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--muted);
  font-family: var(--fb);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s;
}

.atab.active { color: var(--g); border-bottom-color: var(--g); }

.atab-content { display: none; }
.atab-content.active { display: block; }

.auth-brand {
  font-family: var(--fh);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.aform { display: flex; flex-direction: column; gap: 0.8rem; }

.afield {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--gfaint);
  border: 1px solid var(--gborder);
  border-radius: 10px;
  padding: 0 1rem;
  transition: border-color 0.22s, box-shadow 0.22s;
}

.afield:focus-within {
  border-color: var(--g);
  box-shadow: 0 0 0 3px rgba(0,255,102,0.1);
}

.afield span { color: var(--g); font-size: 0.9rem; flex-shrink: 0; opacity: 0.65; }

.afield input {
  flex: 1;
  padding: 0.85rem 0;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--fb);
  font-size: 0.95rem;
  outline: none;
}

.afield input::placeholder { color: var(--muted); }

.btn-g {
  padding: 0.85rem 1.8rem;
  background: var(--g);
  color: #000;
  font-family: var(--fh);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.28s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-g:hover {
  background: #fff;
  box-shadow: 0 0 22px var(--g), 0 0 44px rgba(0,255,102,0.2);
  transform: translateY(-2px);
}

.btn-g:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

.btn-big {
  padding: 1rem 2.2rem;
  font-size: 0.8rem;
  border-radius: 12px;
}

.astatus {
  font-size: 0.78rem;
  text-align: center;
  letter-spacing: 0.05em;
  min-height: 1.2rem;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
}

.astatus.ok { color: var(--g); background: rgba(0,255,102,0.08); }
.astatus.err { color: #ff5555; background: rgba(255,50,50,0.08); }

.hdr {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 0.85rem 2rem;
  transition: background 0.3s, box-shadow 0.3s;
}

.hdr.scrolled {
  background: rgba(3,10,4,0.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--gborder);
}

.hdr-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
  font-family: var(--fh);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

.hdr-logo strong { color: var(--g); }

.hdr-logo-img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 6px var(--g));
  animation: lpulse 3s ease-in-out infinite;
}

.pill-nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,255,102,0.05);
  border: 1px solid var(--gborder);
  border-radius: 50px;
  padding: 0.32rem 0.5rem;
  gap: 0.1rem;
}

.pnav-link {
  padding: 0.44rem 1.1rem;
  border-radius: 50px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.22s;
  white-space: nowrap;
}

.pnav-link:hover, .pnav-link.active {
  background: rgba(0,255,102,0.14);
  color: var(--g);
}

.hdr-right { display: flex; align-items: center; gap: 0.6rem; flex-shrink: 0; }

#userZone { display: flex; align-items: center; gap: 0.6rem; }

.btn-outline-sm {
  padding: 0.46rem 1.1rem;
  border: 1px solid var(--gborder);
  background: var(--gfaint);
  color: var(--muted);
  font-family: var(--fb);
  font-size: 0.86rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.22s;
}

.btn-outline-sm:hover { color: var(--g); border-color: var(--g); }

.btn-g-sm {
  padding: 0.46rem 1.1rem;
  background: var(--g);
  color: #000;
  font-family: var(--fb);
  font-size: 0.86rem;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-block;
  border: none;
  cursor: pointer;
  transition: all 0.22s;
}

.btn-g-sm:hover { background: #fff; box-shadow: 0 0 14px var(--g); }

.user-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.5rem;
  border: 1px solid var(--g);
  background: var(--gfaint);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--g);
  cursor: pointer;
  transition: all 0.22s;
  font-family: var(--fb);
}

.user-chip:hover { box-shadow: 0 0 12px var(--glow); }

.uchip-av {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--g);
}

.uchip-av svg { width: 100%; height: 100%; display: block; }

main { position: relative; z-index: 2; }

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}

.hero-orbs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbDrift ease-in-out infinite;
}

.o1 { width: 550px; height: 550px; background: radial-gradient(circle, rgba(0,255,102,0.09) 0%, transparent 70%); top: -150px; left: -150px; animation-duration: 20s; }
.o2 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,200,80,0.07) 0%, transparent 70%); bottom: -80px; right: -80px; animation-duration: 15s; animation-direction: reverse; }
.o3 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,255,102,0.05) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 11s; }

@keyframes orbDrift {
  0%,100% { transform: translate(0,0); }
  33% { transform: translate(30px,-20px); }
  66% { transform: translate(-20px,30px); }
}

.hero-center { text-align: center; max-width: 740px; position: relative; z-index: 1; }

.hero-logo {
  width: 110px;
  height: 110px;
  filter: drop-shadow(0 0 24px var(--g)) drop-shadow(0 0 60px rgba(0,255,102,0.28));
  margin-bottom: 1.6rem;
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.04); }
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 1rem;
  background: var(--gfaint);
  border: 1px solid var(--gborder);
  border-radius: 50px;
  font-size: 0.82rem;
  color: var(--g);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

.dot {
  width: 7px;
  height: 7px;
  background: var(--g);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--g);
  animation: blink 1.3s ease-in-out infinite;
}

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.25} }

.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.hero-h1 strong {
  color: var(--g);
  font-weight: 900;
  text-shadow: 0 0 40px var(--g), 0 0 90px rgba(0,255,102,0.22);
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2.2rem;
}

.hero-btns {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-ghost-sm {
  padding: 1rem 2.2rem;
  border: 1px solid var(--gborder);
  background: var(--gfaint);
  color: var(--muted);
  font-family: var(--fh);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 12px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.22s;
}

.btn-ghost-sm:hover { color: var(--g); border-color: var(--g); }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 1.4rem 2.5rem;
  background: rgba(0,255,102,0.04);
  border: 1px solid var(--gborder);
  border-radius: 18px;
  backdrop-filter: blur(10px);
  max-width: 520px;
  margin: 0 auto;
}

.hstat { display: flex; flex-direction: column; align-items: center; gap: 0.25rem; }

.hstat strong {
  font-family: var(--fh);
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--g);
  line-height: 1;
}

.hstat span { font-size: 0.76rem; color: var(--muted); }

.hstat-div { width: 1px; height: 38px; background: var(--gborder); }

section { padding: 90px 2rem; position: relative; z-index: 2; }

.sec-wrap { max-width: 1140px; margin: 0 auto; }

.pill-label {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 1rem;
  background: rgba(0,255,102,0.1);
  border: 1px solid rgba(0,255,102,0.28);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--g);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.sec-h {
  font-family: var(--fh);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2.5rem;
}

.visual-section { background: var(--bg2); }

.single-visual-card {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--gborder);
  border-radius: 22px;
  overflow: hidden;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.single-visual-card:hover {
  border-color: var(--g);
  box-shadow: 0 0 40px rgba(0,255,102,0.1);
}

.svc-preview {
  aspect-ratio: 1;
  background: radial-gradient(ellipse at 40% 40%, rgba(0,255,102,0.18) 0%, rgba(0,20,8,0.9) 70%);
  border-radius: 16px;
  border: 1px solid var(--gborder);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.svc-orbs { position: absolute; inset: 0; }

.svc-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.svc-o1 { width: 200px; height: 200px; background: rgba(0,255,102,0.12); top: -50px; left: -50px; animation: orbDrift 12s ease-in-out infinite; }
.svc-o2 { width: 160px; height: 160px; background: rgba(0,200,80,0.1); bottom: -40px; right: -40px; animation: orbDrift 9s ease-in-out infinite reverse; }

.svc-logo {
  width: 120px;
  height: 120px;
  filter: drop-shadow(0 0 30px var(--g)) drop-shadow(0 0 60px rgba(0,255,102,0.4));
  animation: heroFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

.svc-lines {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.svc-line {
  height: 3px;
  background: var(--g);
  border-radius: 2px;
  opacity: 0.5;
  animation: lineAnim 2.5s ease-in-out infinite;
}

.l1 { width: 70%; animation-delay: 0s; }
.l2 { width: 50%; animation-delay: 0.2s; }
.l3 { width: 35%; animation-delay: 0.4s; }

@keyframes lineAnim {
  0%,100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.svc-badge {
  display: inline-block;
  padding: 0.22rem 0.8rem;
  background: rgba(0,255,102,0.12);
  border: 1px solid rgba(0,255,102,0.35);
  border-radius: 50px;
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: var(--g);
  margin-bottom: 0.9rem;
}

.svc-name {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  margin-bottom: 0.9rem;
  line-height: 1.1;
}

.svc-desc {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.svc-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.8rem;
}

.svc-feats li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.svc-feats li span { color: var(--g); font-weight: 700; flex-shrink: 0; }

.svc-dl-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.svc-dl-count { display: flex; flex-direction: column; align-items: center; }

.svc-dl-num {
  font-family: var(--fh);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--g);
  line-height: 1;
}

.svc-dl-label { font-size: 0.7rem; color: var(--muted); margin-top: 0.1rem; }

.features { background: var(--bg3); }

.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.feat-card {
  padding: 1.8rem;
  background: var(--bg);
  border: 1px solid var(--gborder);
  border-radius: 16px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.feat-card:hover {
  border-color: var(--g);
  box-shadow: 0 0 24px rgba(0,255,102,0.1);
  transform: translateY(-4px);
}

.feat-ic { font-size: 1.8rem; margin-bottom: 0.8rem; }

.feat-card h3 {
  font-family: var(--fh);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.feat-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.screenshots { background: var(--bg2); }

.screens-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.screen-card {
  height: 220px;
  border-radius: 14px;
  border: 1px solid var(--gborder);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.screen-card:hover {
  border-color: var(--g);
  transform: scale(1.02);
  box-shadow: 0 0 22px rgba(0,255,102,0.14);
}

.sc1 { background: radial-gradient(ellipse at 30% 40%, rgba(0,200,70,0.28) 0%, rgba(0,10,4,0.92) 70%); }
.sc2 { background: radial-gradient(ellipse at 70% 30%, rgba(0,160,60,0.22) 0%, rgba(0,10,4,0.92) 70%); }
.sc3 { background: radial-gradient(ellipse at 50% 70%, rgba(0,220,80,0.22) 0%, rgba(0,10,4,0.92) 70%); }
.sc4 { background: radial-gradient(ellipse at 65% 40%, rgba(0,255,100,0.18) 0%, rgba(0,10,4,0.92) 70%); }

.screen-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(0,255,102,0.05) 50%, transparent 60%);
  animation: shimmer 3.5s ease-in-out infinite;
}

@keyframes shimmer {
  0%,100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.screen-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.28rem 0.8rem;
  background: rgba(0,255,102,0.13);
  border: 1px solid rgba(0,255,102,0.3);
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--g);
  letter-spacing: 0.06em;
}

.screens-note {
  font-size: 0.84rem;
  color: var(--muted);
  text-align: center;
}

.faq { background: var(--bg3); }
.faq-wrap { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 0.7rem; }

.faq-item {
  border: 1px solid var(--gborder);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.22s;
}

.faq-item.open { border-color: var(--g); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.4rem;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--fb);
  font-size: 0.96rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-q:hover { color: var(--g); }

.faq-q span {
  font-size: 1.25rem;
  color: var(--g);
  font-weight: 300;
  transition: transform 0.25s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-q span { transform: rotate(45deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.68;
  padding: 0 1.4rem;
  transition: max-height 0.35s ease, padding 0.25s;
}

.faq-item.open .faq-a { max-height: 140px; padding: 0 1.4rem 1.2rem; }

.setup { background: var(--bg2); }

.steps-row {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.step-card {
  flex: 1;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border: 1px solid var(--gborder);
  border-radius: 16px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.step-card:hover { border-color: var(--g); box-shadow: 0 0 20px rgba(0,255,102,0.08); }

.step-num {
  font-family: var(--fh);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--g);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step-card h3 {
  font-family: var(--fh);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.55rem;
}

.step-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; }

.step-arrow {
  font-size: 1.4rem;
  color: var(--g);
  opacity: 0.45;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.setup-cta { text-align: center; }

.downloads-sec { background: var(--bg3); }

.dl-table-wrap {
  border: 1px solid var(--gborder);
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg);
}

.dl-table-head {
  display: grid;
  grid-template-columns: 1fr 110px 160px 100px;
  gap: 1rem;
  padding: 0.9rem 1.5rem;
  background: rgba(0,255,102,0.05);
  border-bottom: 1px solid var(--gborder);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
}

.dl-table-body { min-height: 80px; }

.dl-empty-row {
  padding: 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.dl-row {
  display: grid;
  grid-template-columns: 1fr 110px 160px 100px;
  gap: 1rem;
  padding: 0.95rem 1.5rem;
  border-bottom: 1px solid var(--gborder);
  font-size: 0.88rem;
  align-items: center;
  transition: background 0.18s;
}

.dl-row:last-child { border-bottom: none; }
.dl-row:hover { background: var(--gfaint); }

.dl-row-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dl-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: var(--gfaint);
  border: 1px solid var(--gborder);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--g);
  flex-shrink: 0;
}

.dl-status-chip {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  background: rgba(0,255,102,0.12);
  border: 1px solid rgba(0,255,102,0.28);
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--g);
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--gborder);
  padding: 1.8rem 2rem;
  position: relative;
  z-index: 2;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--fh);
  font-size: 0.86rem;
  letter-spacing: 0.06em;
}

.footer-logo img { width: 26px; height: 26px; filter: drop-shadow(0 0 5px var(--g)); }
.footer-logo strong { color: var(--g); }

.footer-copy { font-size: 0.82rem; color: var(--muted); }

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--g); }

.acc-fab {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--g);
  border: none;
  cursor: pointer;
  z-index: 400;
  box-shadow: 0 0 22px var(--glow);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.28s;
}

.acc-fab:hover { transform: scale(1.12); box-shadow: 0 0 34px var(--g); }

.acc-fab img { width: 28px; height: 28px; filter: brightness(0); }

.acc-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  max-width: 100vw;
  height: 100vh;
  background: linear-gradient(160deg, #071a0a 0%, #030a04 100%);
  border-left: 1px solid var(--gborder);
  z-index: 800;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}

.acc-panel.open { right: 0; }

.acc-panel-inner {
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  min-height: 100%;
}

.acc-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: none;
  border: 1px solid var(--gborder);
  color: var(--muted);
  width: 30px;
  height: 30px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.acc-close:hover { color: var(--g); border-color: var(--g); }

.acc-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
  width: 100%;
}

.acc-avatar-wrap { position: relative; }

.acc-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--g);
  box-shadow: 0 0 22px var(--glow);
}

.acc-avatar svg { width: 100%; height: 100%; display: block; }

.acc-ring {
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(0,255,102,0.22);
  animation: ringPulse 2.8s ease-in-out infinite;
}

@keyframes ringPulse {
  0%,100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.09); opacity: 0.85; }
}

.acc-nick {
  font-family: var(--fh);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.acc-badge {
  display: inline-block;
  padding: 0.2rem 0.85rem;
  border-radius: 50px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  background: rgba(0,255,102,0.12);
  border: 1px solid rgba(0,255,102,0.35);
  color: var(--g);
}

.acc-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.acc-cell {
  padding: 0.9rem;
  background: var(--gfaint);
  border: 1px solid var(--gborder);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.acc-cell span { font-size: 0.67rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.acc-cell strong { font-size: 0.84rem; font-weight: 700; word-break: break-all; }

.acc-hist-title {
  width: 100%;
  font-family: var(--fh);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

.acc-hist-list { width: 100%; display: flex; flex-direction: column; gap: 0.5rem; }

.acc-hist-empty {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  padding: 1.5rem;
  border: 1px dashed var(--gborder);
  border-radius: 10px;
}

.acc-hist-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.9rem;
  background: var(--gfaint);
  border: 1px solid var(--gborder);
  border-radius: 10px;
}

.ahi-ic {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(0,255,102,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--g);
  flex-shrink: 0;
}

.ahi-name { flex: 1; font-size: 0.83rem; }
.ahi-date { font-size: 0.7rem; color: var(--muted); white-space: nowrap; }

.btn-logout {
  width: 100%;
  padding: 0.82rem;
  border: 1px solid rgba(255,80,80,0.3);
  background: rgba(255,50,50,0.06);
  color: #ff6060;
  font-family: var(--fb);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.22s;
  margin-top: auto;
}

.btn-logout:hover { background: rgba(255,50,50,0.14); border-color: rgba(255,80,80,0.6); }

@media (max-width: 960px) {
  .single-visual-card { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }
}

@media (max-width: 700px) {
  .pill-nav { display: none; }
  .feat-grid { grid-template-columns: 1fr; }
  .screens-grid { grid-template-columns: 1fr; }
  .dl-table-head { grid-template-columns: 1fr 90px; }
  .dl-table-head span:nth-child(2),
  .dl-table-head span:nth-child(3) { display: none; }
  .dl-row { grid-template-columns: 1fr 90px; }
  .dl-row > *:nth-child(2),
  .dl-row > *:nth-child(3) { display: none; }
  .hero-stats { gap: 1.2rem; padding: 1.2rem 1.5rem; }
  .hstat strong { font-size: 1.4rem; }
}
