:root {
  --bg: #060a12;
  --bg-2: #0b1220;
  --panel: rgba(16, 26, 44, 0.55);
  --panel-solid: #0d1626;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.17);
  --text: #eaf1fb;
  --muted: #93a4c0;
  --cyan: #58c6ff;
  --cyan-2: #8fd8ff;
  --plasma: #dbeeff;
  --sky: #bcd8ff;
  --aurora: #9db6ff;
  --warn: #ffcf6b;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 70px -24px rgba(0, 0, 0, 0.75);
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0; letter-spacing: -0.02em; }
p { margin: 0; }
.muted { color: var(--muted); }
.small { font-size: 0.85rem; }

#sky { position: fixed; inset: 0; z-index: -3; width: 100%; height: 100%; pointer-events: none; }
.sky-veil {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% -10%, transparent 30%, rgba(6, 10, 18, 0.55) 78%, var(--bg) 100%),
    linear-gradient(180deg, rgba(6, 10, 18, 0.35), rgba(6, 10, 18, 0.15) 30%, rgba(6, 10, 18, 0.55) 80%, var(--bg) 100%);
}

.glass {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit; font-weight: 600; font-size: 0.95rem;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; fill: currentColor; }
.btn-sm { padding: 0.5rem 0.9rem; font-size: 0.85rem; }
.btn-block { width: 100%; }
.btn-primary {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan-2), var(--cyan) 55%, var(--aurora));
  box-shadow: 0 0 40px -8px rgba(88, 198, 255, 0.85);
}
.btn-primary:hover { box-shadow: 0 0 62px -6px rgba(88, 198, 255, 1); }
.btn-ghost { color: var(--text); background: rgba(255, 255, 255, 0.05); border-color: var(--line-strong); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.09); border-color: rgba(88, 198, 255, 0.55); }

.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 2rem;
  max-width: var(--max); margin: 0 auto;
  padding: 1rem 1.25rem;
  transition: background .25s ease, border-color .25s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  max-width: none;
  background: rgba(6, 10, 18, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding-left: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
  padding-right: max(1.25rem, calc((100vw - var(--max)) / 2 + 1.25rem));
}
.brand { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 800; font-size: 1.2rem; letter-spacing: -0.02em; }
.brand b { color: var(--cyan); font-weight: 800; margin-left: 3px; }
.brand-cloud { width: 26px; height: 26px; fill: var(--cyan-2); filter: drop-shadow(0 0 10px rgba(88, 198, 255, 0.85)); }
.nav-links { display: flex; gap: 1.6rem; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 0.95rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-burger { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); margin: 5px 0; border-radius: 2px; transition: transform .2s; }

.hero {
  max-width: var(--max); margin: 0 auto;
  padding: 5rem 1.25rem 6rem;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center;
  min-height: min(calc(100vh - 70px), 860px);
}
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.8rem; border-radius: 999px;
  background: rgba(88, 198, 255, 0.08); border: 1px solid rgba(88, 198, 255, 0.28);
  color: var(--cyan-2); font-size: 0.8rem; font-weight: 600;
}
.pill b { color: #fff; font-weight: 700; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 1.8s infinite; }
@keyframes pulse { 50% { opacity: 0.35; } }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 900; margin: 1.2rem 0 1.2rem; }
.grad {
  background: linear-gradient(100deg, var(--cyan-2), #fff 45%, var(--aurora));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  filter: drop-shadow(0 0 24px rgba(88, 198, 255, 0.35));
}
.lead { color: #c4d2e6; font-size: 1.1rem; max-width: 34rem; }
.hero-cta { display: flex; gap: 0.8rem; margin-top: 2rem; flex-wrap: wrap; }
.hero-facts { list-style: none; padding: 0; margin: 2.5rem 0 0; display: flex; gap: 2.2rem; flex-wrap: wrap; }
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts b { font-size: 1.25rem; }
.hero-facts span { color: var(--muted); font-size: 0.85rem; }

.compat { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.compat-center { justify-content: center; margin-top: 1.6rem; }
.cbadge {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.4rem 0.8rem; border-radius: 999px;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line-strong);
  color: #cdd8ec; font-size: 0.82rem; font-weight: 600; white-space: nowrap;
}
.cbadge svg { width: 15px; height: 15px; fill: var(--cyan-2); flex: none; }
.cbadge-fabric { border-color: rgba(88, 198, 255, 0.4); background: rgba(88, 198, 255, 0.08); }

.preview { position: relative; }
.preview-frame {
  position: relative; width: 100%; aspect-ratio: 16 / 10;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow), 0 0 90px -28px rgba(88, 198, 255, 0.55);
  background: #0a1220;
}
.preview-stack { position: absolute; inset: 0; }
.preview-stack img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .9s ease;
}
.preview-stack img.on { opacity: 1; }
.preview-frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(6,10,18,0.28), transparent 28%, transparent 62%, rgba(6,10,18,0.62));
}
.preview-live {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(6,10,18,0.6); border: 1px solid var(--line-strong);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--cyan-2); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
}
.preview-cap {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  padding: 5px 11px; border-radius: 999px; font-size: 0.8rem; font-weight: 600;
  background: rgba(6,10,18,0.72); border: 1px solid var(--line); color: #cfe4f6;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.preview-dots { position: absolute; right: 12px; bottom: 12px; z-index: 2; display: flex; gap: 7px; }
.pdot {
  width: 8px; height: 8px; border-radius: 50%; padding: 0; cursor: pointer;
  background: rgba(255,255,255,0.35); border: 0; transition: background .2s, transform .2s, box-shadow .2s;
}
.pdot:hover { background: rgba(255,255,255,0.65); }
.pdot.on { background: var(--cyan); box-shadow: 0 0 10px var(--cyan); transform: scale(1.25); }

.spark { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: pulse 1.4s infinite; }

.section { max-width: var(--max); margin: 0 auto; padding: 6rem 1.25rem; }
.section-narrow { max-width: 820px; }
.section-head { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; margin: 0.6rem 0 1rem; }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.eyebrow { color: var(--cyan); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow.warn { color: var(--warn); }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.visuals { max-width: 940px; margin: 0 auto; }
.preset-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.7rem; }
.preset {
  display: flex; flex-direction: column; gap: 2px; text-align: left;
  padding: 1rem 1.05rem; border-radius: 14px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--line);
  color: var(--muted); font: inherit; cursor: pointer;
  transition: transform .15s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.preset b { color: var(--text); font-size: 1rem; font-weight: 700; }
.preset span { font-size: 0.78rem; }
.preset:hover { transform: translateY(-2px); border-color: var(--line-strong); color: var(--text); }
.preset.active {
  color: #fff; background: rgba(88, 198, 255, 0.12);
  border-color: rgba(88, 198, 255, 0.55);
  box-shadow: 0 0 40px -14px rgba(88, 198, 255, 0.9);
}
.preset.active b { color: var(--cyan-2); }
.visuals-note {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
  margin-top: 1.2rem; padding: 1rem 1.25rem;
  border-radius: 14px; background: rgba(0,0,0,0.28); border: 1px solid var(--line);
}
.vn-name { display: block; font-weight: 700; color: var(--cyan-2); }
.vn-desc { color: var(--muted); font-size: 0.95rem; }
#motionToggle { flex: none; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.feature { padding: 1.8rem; transition: transform .25s ease, border-color .25s ease; }
.feature:hover { transform: translateY(-4px); border-color: rgba(88, 198, 255, 0.4); }
.feature h3 { font-size: 1.15rem; margin: 1.1rem 0 0.5rem; }
.feature p { color: var(--muted); font-size: 0.95rem; }
.feature-ico {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(88, 198, 255, 0.32), rgba(157, 182, 255, 0.18));
  border: 1px solid rgba(88, 198, 255, 0.3);
}
.feature-ico svg { width: 22px; height: 22px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.showcase { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; align-items: center; }
.showcase-img { position: relative; }
.showcase-img img { border-radius: 18px; border: 1px solid var(--line); box-shadow: 0 30px 80px -24px rgba(88, 198, 255, 0.35); }
.shot-tag {
  position: absolute; left: 14px; bottom: 14px;
  padding: 5px 11px; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
  background: rgba(6, 10, 18, 0.75); border: 1px solid var(--line-strong); color: var(--cyan-2);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.showcase-copy h2 { font-size: clamp(2rem, 4vw, 2.6rem); font-weight: 800; margin: 0.6rem 0 1rem; }
.showcase-copy p { color: var(--muted); margin-bottom: 1.4rem; }
.showcase-copy .btn { margin-top: 1.6rem; }

.checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.checks li { display: flex; gap: 0.6rem; align-items: center; color: #d3ddec; }
.checks li::before {
  content: ""; flex: none; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(88, 198, 255, 0.16) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2358c6ff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 12 4 4 8-8'/%3E%3C/svg%3E") center / 12px no-repeat;
}

.clickgui { display: grid; grid-template-columns: 200px 1fr; border-radius: 20px; overflow: hidden; min-height: 470px; box-shadow: var(--shadow); }
.gui-side { padding: 1rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 4px; background: rgba(0,0,0,0.18); }
.gui-tab {
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; padding: 0.65rem 0.85rem; border-radius: 10px;
  background: none; border: 1px solid transparent; color: var(--muted);
  font: inherit; font-weight: 600; cursor: pointer; transition: all .15s;
}
.gui-tab small { font-weight: 500; font-size: 0.75rem; opacity: 0.7; }
.gui-tab:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.gui-tab.active { color: #fff; background: rgba(88, 198, 255, 0.16); border-color: rgba(88, 198, 255, 0.4); }
.gui-main { display: flex; flex-direction: column; padding: 1rem 1.2rem 1.2rem; min-width: 0; }
.gui-top { display: flex; gap: 1rem; align-items: center; margin-bottom: 1rem; }
.gui-top input {
  flex: 1; min-width: 0; padding: 0.65rem 0.9rem; border-radius: 10px;
  background: rgba(0,0,0,0.28); border: 1px solid var(--line); color: var(--text); font: inherit;
  outline: none; transition: border-color .15s;
}
.gui-top input:focus { border-color: rgba(88, 198, 255, 0.55); }
.gui-count { color: var(--muted); font-size: 0.85rem; white-space: nowrap; }
.gui-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px, 1fr)); gap: 8px; align-content: start; flex: 1; }
.mod {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 0.7rem 0.85rem; border-radius: 10px;
  background: rgba(255,255,255,0.03); border: 1px solid var(--line);
  color: var(--muted); font: inherit; font-size: 0.92rem; font-weight: 500; text-align: left;
  cursor: pointer; transition: all .15s;
}
.mod:hover { color: var(--text); border-color: var(--line-strong); }
.mod .sw { width: 28px; height: 16px; border-radius: 99px; background: rgba(255,255,255,0.12); position: relative; flex: none; transition: background .2s; }
.mod .sw::after { content: ""; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; border-radius: 50%; background: #cfd6e4; transition: transform .2s, background .2s; }
.mod.on { color: #fff; border-color: rgba(88, 198, 255, 0.5); background: rgba(88, 198, 255, 0.1); }
.mod.on .sw { background: var(--cyan); }
.mod.on .sw::after { transform: translateX(12px); background: #fff; }
.gui-empty { color: var(--muted); padding: 2rem 0; grid-column: 1 / -1; text-align: center; }
.gui-detail { margin-top: 1rem; padding: 0.85rem 1rem; border-radius: 10px; background: rgba(0,0,0,0.24); border: 1px solid var(--line); font-size: 0.92rem; min-height: 3.2rem; }
.gui-detail b { color: var(--cyan-2); }
.gui-detail .tag { color: var(--muted); }

.unhook-card {
  border-radius: 22px; padding: 2.8rem;
  display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 2.5rem; align-items: center;
  background: linear-gradient(120deg, rgba(255, 207, 107, 0.08), rgba(16, 26, 44, 0.55) 45%);
  border-color: rgba(255, 207, 107, 0.22);
}
.unhook-copy h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); font-weight: 800; margin: 0.5rem 0 1rem; }
.unhook-copy > p { color: var(--muted); margin-bottom: 1.5rem; }
.unhook-steps { display: grid; gap: 0.6rem; }
.ustep { display: flex; align-items: center; gap: 0.8rem; color: #d3ddec; font-size: 0.95rem; }
.ustep span {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(255, 207, 107, 0.14); border: 1px solid rgba(255, 207, 107, 0.35);
  color: var(--warn); font-weight: 700; font-size: 0.85rem;
}
.unhook-key { display: grid; place-items: center; gap: 0.9rem; }
.keycap {
  width: 150px; height: 92px; border-radius: 16px; cursor: pointer;
  display: grid; place-items: center; gap: 2px; user-select: none;
  background: linear-gradient(180deg, #1a2942, #0c1626);
  border: 1px solid var(--line-strong);
  box-shadow: 0 8px 0 #060c16, 0 14px 24px -8px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform .08s ease, box-shadow .08s ease;
}
.keycap-top { font-weight: 800; font-size: 1.1rem; letter-spacing: 0.02em; }
.keycap-sub { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.14em; }
.keycap.pressed { transform: translateY(8px); box-shadow: 0 0 0 #060c16, 0 4px 14px -6px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.08); }
.keycap.pressed .keycap-top { color: var(--warn); }
.key-hint { color: var(--muted); font-size: 0.82rem; }
.unhook-card.hooked-off { border-color: rgba(255, 207, 107, 0.5); }

.media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.shot { position: relative; border-radius: var(--radius); overflow: hidden; display: block; }
.shot img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; transition: transform .4s ease; }
.shot:hover img { transform: scale(1.05); }
.shot-play {
  position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(6, 10, 18, 0.6); border: 1px solid var(--line-strong);
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: transform .2s ease, background .2s ease;
}
.shot:hover .shot-play { transform: scale(1.1); background: rgba(88, 198, 255, 0.28); }
.shot-play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.shot-cap {
  position: absolute; left: 12px; bottom: 12px; z-index: 2;
  padding: 4px 10px; border-radius: 999px; font-size: 0.76rem; font-weight: 600;
  background: rgba(6, 10, 18, 0.72); border: 1px solid var(--line); color: #cfe4f6;
}
.shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(6,10,18,0.55)); pointer-events: none; }
.shot-menu { cursor: default; }

.download-card { padding: 1.6rem; box-shadow: 0 0 80px -26px rgba(88, 198, 255, 0.8); }
.dl-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap;
  padding-bottom: 1.4rem; margin-bottom: 1.4rem; border-bottom: 1px solid var(--line);
}
.dl-file { display: flex; align-items: center; gap: 0.9rem; min-width: 0; }
.dl-ico {
  flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(88, 198, 255, 0.3), rgba(157, 182, 255, 0.16));
  border: 1px solid rgba(88, 198, 255, 0.3);
}
.dl-ico svg { width: 24px; height: 24px; fill: var(--cyan-2); }
.dl-meta { display: flex; flex-direction: column; min-width: 0; }
.dl-meta b { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 1rem; word-break: break-all; }
.dl-meta span { color: var(--muted); font-size: 0.85rem; }
.dl-head .btn { flex: none; }
.dl-steps h3 { font-size: 1.05rem; margin-bottom: 1rem; }
.dl-steps ol { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.7rem; }
.dl-steps li { display: flex; align-items: flex-start; gap: 0.8rem; color: #d3ddec; font-size: 0.95rem; min-width: 0; overflow-wrap: anywhere; }
.dl-steps li span {
  flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(88, 198, 255, 0.14); border: 1px solid rgba(88, 198, 255, 0.35);
  color: var(--cyan-2); font-weight: 700; font-size: 0.85rem;
}
.dl-steps li b { color: #fff; font-weight: 600; }
.dl-note { color: var(--muted); font-size: 0.88rem; margin-top: 1.2rem; }
kbd {
  font: 600 0.82em "JetBrains Mono", monospace; color: var(--cyan-2);
  background: rgba(88, 198, 255, 0.12); border: 1px solid rgba(88, 198, 255, 0.3);
  border-radius: 6px; padding: 1px 6px; white-space: nowrap;
}
code {
  font: 600 0.9em "JetBrains Mono", monospace; color: var(--cyan-2);
  background: rgba(255, 255, 255, 0.05); border-radius: 5px; padding: 1px 6px;
}

.faq { display: grid; gap: 0.7rem; }
.faq details { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 0 1.2rem; transition: border-color .2s; }
.faq details[open] { border-color: rgba(88, 198, 255, 0.4); }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 0; font-weight: 600; display: flex; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--cyan); font-size: 1.3rem; line-height: 1; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 1.2rem; }

.final-cta {
  border-radius: 22px; padding: 2.8rem;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  background: linear-gradient(120deg, rgba(88, 198, 255, 0.22), rgba(157, 182, 255, 0.14) 55%, rgba(88, 198, 255, 0.1));
  border-color: rgba(88, 198, 255, 0.3);
}
.final-cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.6rem; }
.final-cta p { color: #cdd8ec; max-width: 36rem; }

.footer {
  max-width: var(--max); margin: 0 auto; padding: 3rem 1.25rem 3.5rem;
  border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
}
.footer nav { display: flex; gap: 1.4rem; }
.footer nav a { color: var(--muted); font-size: 0.92rem; }
.footer nav a:hover { color: var(--text); }
.footer .small { width: 100%; }

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

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 3rem; min-height: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase { grid-template-columns: 1fr; gap: 2.5rem; }
  .unhook-card { grid-template-columns: 1fr; gap: 2rem; }
  .media-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav { gap: 1rem; }
  .nav .nav-cta { margin-left: auto; }
  .nav-burger { display: block; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; margin: 0;
    background: rgba(6, 10, 18, 0.97); border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-links a { padding: 0.9rem 1.25rem; border-top: 1px solid var(--line); }
  .nav.open .nav-links { max-height: 360px; }
  .nav.open .nav-burger span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .nav.open .nav-burger span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

  .section { padding: 4.5rem 1rem; }
  .hero { padding-left: 1rem; padding-right: 1rem; }
  .preset-row { grid-template-columns: repeat(2, 1fr); }
  .visuals-note { flex-direction: column; align-items: flex-start; }
  .feature-grid, .media-grid { grid-template-columns: 1fr; }
  .dl-head { flex-direction: column; align-items: stretch; }
  .dl-head .btn { justify-content: center; }
  .clickgui { grid-template-columns: 1fr; }
  .gui-side { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .gui-tab { flex: none; gap: 0.5rem; }
  .final-cta { flex-direction: column; align-items: flex-start; padding: 2rem; }
  .unhook-card { padding: 2rem; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .dot, .spark { animation: none; }
}
