/* ── Reset & Variables ──────────────────────────────────────────── */
:root {
  --bg:       #0e0e0e;
  --bg2:      #141414;
  --bg3:      #1a1a1a;
  --border:   rgba(255,255,255,0.08);
  --border2:  rgba(255,255,255,0.14);
  --accent:   #00e5a0;
  --accent2:  #00b37a;
  --orange:   #ff6b35;
  --purple:   #6c63ff;
  --text:     #f2f2f2;
  --muted:    #888;
  --muted2:   #555;
  --danger:   #ff4466;
  --r-sm:     8px;
  --r-md:     12px;
  --r-lg:     18px;
  --r-xl:     24px;
  --mono:     'JetBrains Mono', monospace;
  --sans:     'Outfit', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { overflow-x: hidden; max-width: 100%; }
body { overflow-x: clip; max-width: 100%; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Canvas ──────────────────────────────────────────────────────── */
#net-canvas {
  position: fixed; inset: 0;
  z-index: 0; pointer-events: none;
}

/* ── Cursor ──────────────────────────────────────────────────────── */
#cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width .15s, height .15s;
}
#cursor-ring {
  position: fixed; width: 32px; height: 32px;
  border: 1px solid rgba(0,229,160,.35);
  border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .22s, height .22s, border-color .2s;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 52px; height: 52px; border-color: var(--accent); }

/* ── NAV ─────────────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 56px;
  transition: background .3s, backdrop-filter .3s, border-bottom .3s;
}
nav.scrolled {
  background: rgba(14,14,14,.93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--mono);
  font-size: 20px; font-weight: 700;
  letter-spacing: -0.5px;
  cursor: pointer;
}
.logo-bracket { color: var(--muted2); }
.logo-accent  { color: var(--accent); }

.nav-links {
  display: flex; gap: 32px;
}
.nav-links a {
  font-size: 13px; color: var(--muted);
  font-weight: 500; letter-spacing: .03em;
  transition: color .2s; cursor: pointer;
}
.nav-links a:hover { color: var(--text); }

.nav-cta {
  font-family: var(--mono);
  font-size: 12px; font-weight: 500;
  color: var(--bg); background: var(--accent);
  padding: 9px 20px; border-radius: 100px;
  letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.nav-cta:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(0,229,160,.3); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(14,14,14,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 99; display: flex; flex-direction: column;
  padding: 12px 0;
  transform: translateY(-10px); opacity: 0;
  pointer-events: none;
  transition: transform .25s, opacity .25s;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu a {
  padding: 14px 32px; font-size: 14px; color: var(--muted);
  font-weight: 500; transition: color .15s, background .15s;
  cursor: pointer;
}
.mobile-menu a:hover { color: var(--text); background: rgba(255,255,255,.03); }

/* ── HERO ────────────────────────────────────────────────────────── */
#hero {
  position: relative; z-index: 1;
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding: 140px 56px 80px;
  max-width: 1200px; margin: 0 auto;
}

.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: .12em;
  border: 1px solid rgba(0,229,160,.2);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp .7s ease both;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
.tag-mono { color: var(--accent); }

.hero-h1 {
  font-family: var(--sans); font-size: clamp(40px,5.5vw,72px);
  font-weight: 700; line-height: .97; letter-spacing: -2.5px;
  margin-bottom: 22px;
  animation: fadeUp .7s .08s ease both;
}
.nav-intel {
  color: var(--accent) !important;
  border: 1px solid rgba(0,229,160,.25);
  padding: 5px 12px !important;
  border-radius: 100px;
  font-family: var(--mono);
  font-size: 11px !important;
  letter-spacing: .05em;
  transition: background .2s, border-color .2s !important;
}
.nav-intel:hover { background: rgba(0,229,160,.08) !important; border-color: rgba(0,229,160,.5) !important; }

.hero-accent {
  display: block;
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
  letter-spacing: -2px;
}

.hero-sub {
  font-size: 16px; color: var(--muted); font-weight: 300;
  line-height: 1.7; max-width: 460px;
  margin-bottom: 40px;
  animation: fadeUp .7s .16s ease both;
}

.hero-btns {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeUp .7s .24s ease both;
  margin-bottom: 56px;
}

.btn-primary {
  background: var(--accent); color: #000;
  font-family: var(--sans); font-weight: 600; font-size: 14px;
  padding: 13px 28px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,229,160,.28); }

.btn-ghost {
  background: transparent; color: var(--text);
  font-family: var(--sans); font-weight: 400; font-size: 14px;
  padding: 13px 28px; border-radius: 100px;
  border: 1px solid var(--border);
  cursor: pointer; transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--border2); background: rgba(255,255,255,.04); }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  padding-top: 32px; border-top: 1px solid var(--border);
  animation: fadeUp .7s .32s ease both;
}
.stat { text-align: center; }
.stat-n {
  display: block; font-family: var(--sans);
  font-size: 32px; font-weight: 700; letter-spacing: -1px;
  color: var(--text);
}
.stat-plus { color: var(--accent); }
.stat-l { font-size: 11px; color: var(--muted); letter-spacing: .05em; }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* Code block in hero */
.hero-code-block {
  position: relative; z-index: 1;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  animation: fadeUp .7s .2s ease both;
  background: rgba(255,255,255,.02);
}
.code-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 18px;
  background: rgba(255,255,255,.03);
  border-bottom: 1px solid var(--border);
}
.cb-dot { width: 10px; height: 10px; border-radius: 50%; }
.cb-red    { background: #ff5f57; }
.cb-yellow { background: #febc2e; }
.cb-green  { background: #28c840; }
.cb-file {
  margin-left: 8px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.code-content {
  font-family: var(--mono); font-size: 13px;
  line-height: 1.85; padding: 24px 28px;
  color: #c9d1d9; white-space: pre;
}
.c-kw  { color: #ff7b72; }
.c-cl  { color: #79c0ff; }
.c-ty  { color: #ffa657; }
.c-st  { color: #a5d6ff; }
.c-fn  { color: #d2a8ff; }

/* ── Sections ─────────────────────────────────────────────────────── */
section {
  position: relative; z-index: 1;
}
.section-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 100px 56px;
}

.section-label {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent); letter-spacing: .15em;
  margin-bottom: 14px;
}
.section-h2 {
  font-size: clamp(28px,4vw,48px);
  font-weight: 700; letter-spacing: -1.5px;
  line-height: 1.05; margin-bottom: 14px;
}
.section-sub {
  font-size: 15px; color: var(--muted);
  font-weight: 300; max-width: 480px; line-height: 1.7;
  margin-bottom: 56px;
}

/* ── Apps Grid ────────────────────────────────────────────────────── */
#apps { background: rgba(255,255,255,.015); }

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.app-card {
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px;
  background: transparent;
  transition: border-color .3s, transform .3s;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.app-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 0% 0%, rgba(0,229,160,.05), transparent 60%);
  opacity: 0; transition: opacity .4s;
  pointer-events: none;
}
.app-card:hover { border-color: rgba(0,229,160,.25); transform: translateY(-3px); }
.app-card:hover::before { opacity: 1; }
.app-card.featured { border-color: rgba(0,229,160,.2); }

.app-card-top { margin-bottom: 4px; }
.app-badge-wrap {
  min-height: 26px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.app-badge {
  font-family: var(--mono); font-size: 10px;
  background: rgba(0,229,160,.12); color: var(--accent);
  padding: 3px 10px; border-radius: 100px;
  letter-spacing: .08em; font-weight: 500;
}
.app-badge.pending {
  background: rgba(255,190,85,.1); color: #ffbe55;
}

.app-header-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 14px;
}
.app-header-row > div:last-child { flex: 1; min-width: 0; }

.app-icon-wrap { display: none; }

.app-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

.tool-icon-sm {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}

.app-name {
  font-size: 20px; font-weight: 700; letter-spacing: -.5px;
  margin-bottom: 4px;
}
.app-tagline {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: .05em;
}

.app-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7;
  font-weight: 300; margin-bottom: 16px;
}

.app-features {
  list-style: none; margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 6px;
}
.app-features li {
  font-size: 12px; color: var(--muted);
  padding-left: 16px; position: relative;
  font-weight: 300;
}
.app-features li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--accent); font-size: 10px;
}

.app-actions { display: flex; gap: 8px; flex-wrap: wrap; margin-top: auto; padding-top: 16px; }

.btn-store {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  background: var(--accent); color: #000;
  padding: 8px 16px; border-radius: 100px;
  letter-spacing: .04em;
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-store:hover { transform: scale(1.04); box-shadow: 0 0 16px rgba(0,229,160,.3); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 11px; font-weight: 500;
  background: transparent; color: var(--muted);
  padding: 8px 16px; border-radius: 100px;
  border: 1px solid var(--border);
  letter-spacing: .04em;
  transition: color .2s, border-color .2s;
  cursor: pointer;
}
.btn-outline:hover { color: var(--text); border-color: var(--border2); }

/* ── Extensions ──────────────────────────────────────────────────── */
.ext-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }

.ext-card {
  display: flex; gap: 28px; align-items: flex-start;
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 36px; background: transparent;
  transition: border-color .3s;
}
.ext-card:hover { border-color: rgba(0,229,160,.25); }

.ext-icon {
  font-size: 42px; flex-shrink: 0;
  width: 72px; height: 72px;
  border: 1px solid var(--border); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
}

.ext-name {
  font-size: 20px; font-weight: 700; letter-spacing: -.5px;
  margin-bottom: 10px;
}
.ext-desc {
  font-size: 13px; color: var(--muted); line-height: 1.7;
  font-weight: 300; margin-bottom: 16px; max-width: 560px;
}

.ext-features {
  list-style: none; display: flex; flex-direction: column; gap: 5px;
  margin-bottom: 24px;
}
.ext-features li {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
}
.ext-body { display: flex; flex-direction: column; flex: 1; }
.ext-actions { margin-top: auto; padding-top: 8px; }

/* ── Web Tools ───────────────────────────────────────────────────── */
#webtools { background: rgba(255,255,255,.015); }
.tools-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 20px;
}

.tool-card {
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: 32px; background: transparent;
  transition: border-color .3s, transform .3s;
  display: flex; flex-direction: column;
  overflow: visible;
}
.tool-card:hover { border-color: rgba(0,229,160,.25); transform: translateY(-3px); }

.tool-name { font-size: 18px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 10px; }
.tool-name { font-size: 20px; font-weight: 700; letter-spacing: -.5px; margin-bottom: 10px; }
.tool-desc { font-size: 13px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 16px; }

.btn-tool {
  font-family: var(--mono); font-size: 12px; color: var(--accent);
  border: 1px solid rgba(0,229,160,.3);
  padding: 8px 18px; border-radius: 100px;
  transition: background .2s, color .2s; cursor: pointer;
  display: inline-block; margin-top: auto; align-self: flex-start;
}
.btn-tool:hover { background: rgba(0,229,160,.1); }

/* ── About ───────────────────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  margin-top: 8px;
}
.about-col-title {
  font-family: var(--mono); font-size: 11px; color: var(--accent);
  letter-spacing: .12em; margin-bottom: 24px;
}

.stack-list { display: flex; flex-direction: column; gap: 14px; }
.stack-item { display: flex; align-items: center; gap: 14px; }
.stack-lang { font-family: var(--mono); font-size: 12px; color: var(--muted); min-width: 120px; }
.stack-bar {
  flex: 1; height: 3px; background: rgba(255,255,255,.07); border-radius: 10px; overflow: hidden;
}
.stack-bar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 10px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s cubic-bezier(.16,1,.3,1);
}
.stack-bar span.animated { transform: scaleX(1); }

.values-list { display: flex; flex-direction: column; gap: 20px; }
.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-icon {
  font-size: 18px; flex-shrink: 0;
  width: 36px; height: 36px;
  border: 1px solid var(--border); border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
}
.value-title { font-size: 14px; font-weight: 600; margin-bottom: 3px; }
.value-desc { font-size: 12px; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ── Contact ─────────────────────────────────────────────────────── */
#contact { background: rgba(255,255,255,.015); }
.contact-inner { position: relative; }
.contact-glow {
  position: absolute; width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,160,.07), transparent 70%);
  left: 50%; top: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}

.contact-form {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 640px; margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
}
.form-field input, .form-field select, .form-field textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--sans); font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: rgba(0,229,160,.4);
  background: rgba(0,229,160,.03);
}
.form-field select option { background: #1a1a1a; }
.form-field textarea { resize: vertical; min-height: 130px; }

.btn-submit {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  letter-spacing: .06em;
  background: var(--accent); color: #000;
  border: none; padding: 15px 36px; border-radius: 100px;
  cursor: pointer; align-self: center; margin-top: 6px;
  transition: transform .2s, box-shadow .2s;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,229,160,.3); }

.social-btn.disabled {
  color: var(--muted2);
  border-color: rgba(255,255,255,.05);
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
.footer-link-disabled {
  font-size: 12px;
  color: var(--muted2);
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
}

.elfsight-wrap {
  max-width: 640px;
  margin: 0 auto 40px;
}

.contact-alt {
  text-align: center; margin-top: 48px; padding-top: 36px;
  border-top: 1px solid var(--border);
  color: #ffffff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}
.contact-alt p { font-size: 13px; color: #ffffff; margin-bottom: 10px; }
.contact-email {
  font-family: var(--mono); font-size: 16px; color: var(--accent);
  display: inline-block; margin-bottom: 20px;
  transition: color .2s; cursor: pointer;
}
.contact-email:hover { color: #fff; }

.social-links { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.social-btn {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  border: 1px solid var(--border); padding: 7px 16px; border-radius: 100px;
  transition: color .2s, border-color .2s; cursor: pointer;
  display: inline-block;
}
.social-btn:hover { color: var(--text); border-color: var(--border2); }

/* ── Footer ──────────────────────────────────────────────────────── */
footer {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 28px 56px;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--mono); font-size: 17px; font-weight: 700; }
.mono-muted { font-family: var(--mono); font-size: 11px; color: var(--muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--muted); transition: color .2s; cursor: pointer; }
.footer-links a:hover { color: var(--text); }

/* ── Animations ──────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%,100%{opacity:1;} 50%{opacity:.3;}
}

.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; padding: 120px 32px 80px; }
  .hero-code-block { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section-inner { padding: 72px 24px; }
  .tools-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ext-card { flex-direction: column; gap: 16px; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; padding: 24px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
}

/* ── Screenshot Gallery ── */
.screenshots {
  display: flex;
  gap: 8px;
  margin: 16px 0 20px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,229,160,.2) transparent;
}
.screenshots::-webkit-scrollbar { height: 3px; }
.screenshots::-webkit-scrollbar-thumb { background: rgba(0,229,160,.2); border-radius: 3px; }

.screenshot-frame {
  flex-shrink: 0;
  width: 110px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #000;
  cursor: pointer;
  transition: border-color .2s, transform .2s;
}
.screenshot-frame:hover { border-color: rgba(0,229,160,.3); transform: translateY(-2px); }
.screenshot-frame.wide { width: 200px; }
.screenshot-frame img {
  width: 100%;
  height: 195px;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform .3s;
}
.screenshot-frame.wide img { height: 130px; object-position: center; }
.screenshot-frame:hover img { transform: scale(1.03); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 0 60px rgba(0,0,0,0.8);
}
.lightbox-close {
  position: absolute; top: 20px; right: 24px;
  font-size: 28px; color: var(--muted);
  cursor: pointer; background: none; border: none;
  transition: color 0.2s; line-height: 1;
}
.lightbox-close:hover { color: var(--text); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 28px; color: var(--muted);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 50%; width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: color 0.2s, background 0.2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { color: var(--text); background: rgba(255,255,255,0.12); }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (pointer: coarse) {
  #cursor, #cursor-ring { display: none !important; }
  body { cursor: auto; }
}
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; padding: 120px 32px 80px; }
  .hero-code-block { display: none; }
  .apps-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section-inner { padding: 72px 24px; }
  .tools-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .ext-card { flex-direction: column; gap: 16px; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; padding: 24px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
}
