:root {
  --bg: #07111f;
  --bg-soft: #0b1727;
  --panel: rgba(14, 28, 46, .78);
  --panel-solid: #0f1d30;
  --line: rgba(255,255,255,.09);
  --text: #f7fbff;
  --muted: #92a6bc;
  --green: #54f0a5;
  --green-2: #2bd884;
  --cyan: #5cc9ff;
  --danger: #ff7272;
  --shadow: 0 24px 80px rgba(0,0,0,.34);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 0%, rgba(52, 240, 162, .07), transparent 34%),
    radial-gradient(circle at 92% 18%, rgba(65, 179, 255, .08), transparent 31%),
    var(--bg);
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
code {
  padding: .12rem .34rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255,255,255,.045);
  color: #d8ebff;
}

.ambient {
  position: fixed;
  width: 520px;
  height: 520px;
  filter: blur(120px);
  opacity: .09;
  pointer-events: none;
  z-index: -1;
}
.ambient-one { top: 14vh; left: -280px; background: var(--green); }
.ambient-two { top: 48vh; right: -300px; background: var(--cyan); }

.section-shell {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(7, 17, 31, .72);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  background: rgba(7, 17, 31, .92);
}
.nav-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 74px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
  width: fit-content;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(84,240,165,.28);
  border-radius: 9px;
  color: var(--green);
  background: linear-gradient(145deg, rgba(84,240,165,.13), rgba(92,201,255,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-weight: 900;
}
.brand-mark svg { width: 21px; height: 21px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: #a9bbce;
  transition: color .2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  justify-self: end;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
  color: #05140d;
  background: var(--green);
  box-shadow: 0 10px 30px rgba(84,240,165,.12);
}
.menu-button {
  display: none;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 9px;
  color: white;
  background: transparent;
  padding: 7px 10px;
  cursor: pointer;
}

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 64px;
  padding: 80px 0 94px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .17em;
}
.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(84,240,165,.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(84,240,165,.48); }
  70% { box-shadow: 0 0 0 8px rgba(84,240,165,0); }
  100% { box-shadow: 0 0 0 0 rgba(84,240,165,0); }
}
.hero h1 {
  max-width: 690px;
  margin: 18px 0 22px;
  font-size: clamp(52px, 7vw, 82px);
  line-height: .96;
  letter-spacing: -.065em;
}
.hero h1 span { color: var(--green); }
.hero-text {
  max-width: 650px;
  margin: 0;
  color: #9cb0c5;
  font-size: 17px;
  line-height: 1.75;
}
.hero-actions { display: flex; gap: 12px; margin-top: 34px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 19px;
  border-radius: 11px;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  color: #04120c;
  background: var(--green);
  box-shadow: 0 14px 40px rgba(84,240,165,.13);
}
.button.primary:hover { background: #6ff8b4; }
.button.ghost {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.025);
  color: #d9e5f0;
}
.button.ghost:hover { border-color: rgba(255,255,255,.2); }
.button.large { min-height: 52px; padding-inline: 24px; }
.hero-meta {
  display: flex;
  gap: 34px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.hero-meta div { display: grid; gap: 4px; }
.hero-meta strong { font-size: 14px; }
.hero-meta span { color: #71869c; font-size: 10px; text-transform: uppercase; letter-spacing: .11em; }

.browser-card {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
  background: #0b1523;
  box-shadow: var(--shadow), 0 0 0 1px rgba(84,240,165,.02);
  transform: perspective(1100px) rotateY(-5deg) rotateX(2deg);
}
.browser-top {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
  background: #101b2b;
}
.browser-top > span { width: 8px; height: 8px; border-radius: 50%; background: #33445a; }
.browser-url {
  flex: 1;
  margin-left: 8px;
  padding: 6px 10px;
  border-radius: 7px;
  color: #70859a;
  background: rgba(0,0,0,.22);
  font-size: 9px;
}
.mock-page {
  min-height: 510px;
  position: relative;
  padding: 28px 25px;
  background:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px),
    #f6f7f8;
  background-size: 26px 26px;
  color: #132131;
}
.mock-heading { font-size: 18px; font-weight: 800; margin-bottom: 18px; }
.offer-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-radius: 10px;
  background: white;
  border: 1px solid #e7ebee;
  box-shadow: 0 8px 22px rgba(20,40,60,.04);
  margin-bottom: 10px;
}
.offer-card > div { display: grid; gap: 4px; }
.offer-card b { font-size: 11px; }
.offer-card small { color: #74808b; font-size: 9px; }
.offer-card.dim { opacity: .62; }
.offer-card.active { border-color: rgba(43,216,132,.5); box-shadow: 0 0 0 2px rgba(43,216,132,.08); }
.status { padding: 5px 8px; border-radius: 6px; font-size: 8px; font-weight: 800; }
.status.filled { color: #7f8c99; background: #eef1f3; }
.status.available { color: #07643c; background: #daf8e9; }
.watcher-panel {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: min(330px, calc(100% - 40px));
  padding: 14px;
  border-radius: 14px;
  color: #f8fbff;
  background: rgba(8, 19, 33, .97);
  border: 1px solid rgba(84,240,165,.16);
  box-shadow: 0 18px 50px rgba(0,0,0,.34);
}
.watcher-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; }
.watcher-head > div { display: flex; align-items: center; gap: 7px; }
.mini-logo { width: 20px; height: 20px; display: grid; place-items: center; border-radius: 6px; color: #04140d; background: var(--green); font-weight: 900; }
.live-pill { color: var(--green); background: rgba(84,240,165,.09); padding: 4px 7px; border-radius: 999px; font-size: 7px; letter-spacing: .13em; font-weight: 900; }
.watcher-status {
  margin: 13px 0;
  padding: 10px;
  border-radius: 8px;
  color: #b9f8d7;
  background: rgba(84,240,165,.07);
  font-size: 9px;
  font-weight: 700;
}
.watcher-status span { width: 6px; height: 6px; display: inline-block; border-radius: 50%; background: var(--green); margin-right: 6px; }
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.stats-row div { display: grid; gap: 2px; padding: 8px; border-radius: 8px; background: rgba(255,255,255,.035); }
.stats-row small { color: #72879d; font-size: 7px; }
.stats-row strong { font-size: 9px; }
.watcher-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-top: 10px; }
.watcher-actions button { border: 0; border-radius: 7px; padding: 7px; color: #dce7f1; background: #18283a; font-size: 8px; font-weight: 700; }
.watcher-actions button:first-child { color: #04140d; background: var(--green); }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.018);
}
.trust-strip div { padding: 18px 20px; color: #8ea3b8; font-size: 11px; font-weight: 600; text-align: center; border-right: 1px solid var(--line); }
.trust-strip div:last-child { border-right: 0; }
.trust-strip span { color: var(--green); margin-right: 5px; }

.content-section { padding: 110px 0; }
.section-heading { max-width: 680px; margin-bottom: 42px; }
.section-heading h2,
.download-copy h2,
.final-cta h2 {
  margin: 12px 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.045em;
  line-height: 1.05;
}
.section-heading p, .download-copy > p, .final-cta p { margin: 0; color: var(--muted); line-height: 1.7; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.feature-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255,255,255,.028), rgba(255,255,255,.012));
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.feature-card:hover { transform: translateY(-5px); border-color: rgba(84,240,165,.22); background: linear-gradient(145deg, rgba(84,240,165,.045), rgba(255,255,255,.012)); }
.feature-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: rgba(84,240,165,.075);
  border: 1px solid rgba(84,240,165,.12);
  margin-bottom: 25px;
  font-weight: 800;
}
.feature-card h3 { margin: 0 0 10px; font-size: 15px; }
.feature-card p { margin: 0; color: #8499ae; font-size: 12px; line-height: 1.7; }

.split-section { padding: 100px 0 115px; }
.steps { border-top: 1px solid var(--line); }
.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}
.step-number { color: var(--green); font-size: 12px; font-weight: 800; letter-spacing: .08em; }
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; max-width: 750px; color: #879cb1; font-size: 13px; line-height: 1.75; }

.download-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 50%, rgba(84,240,165,.07), transparent 32%),
    rgba(255,255,255,.012);
}
.download-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; padding-block: 95px; }
.download-copy { max-width: 540px; }
.version-line { display: flex; align-items: center; gap: 10px; margin: 24px 0 20px; color: #8398ad; font-size: 11px; }
.release-badge { padding: 6px 9px; border-radius: 7px; color: var(--green); background: rgba(84,240,165,.08); border: 1px solid rgba(84,240,165,.12); font-weight: 800; }
.license-note { margin-top: 12px !important; color: #64798f !important; font-size: 10px; }
.install-card {
  padding: 28px;
  border-radius: 17px;
  border: 1px solid var(--line);
  background: #0c1929;
  box-shadow: var(--shadow);
}
.install-card h3 { margin: 0 0 18px; font-size: 16px; }
.install-card ol { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.install-card li { display: grid; grid-template-columns: 31px 1fr; align-items: center; gap: 11px; padding: 11px; border-radius: 10px; background: rgba(255,255,255,.024); }
.install-card li > span { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; color: var(--green); background: rgba(84,240,165,.07); font-size: 10px; font-weight: 800; }
.install-card li > div { display: grid; gap: 4px; }
.install-card b { font-size: 11px; }
.install-card small { color: #73889d; font-size: 9px; }

.timeline { position: relative; max-width: 850px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 1px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 26px 1fr; gap: 18px; padding: 0 0 34px; }
.timeline-dot { width: 11px; height: 11px; margin-top: 5px; border-radius: 50%; border: 2px solid var(--bg); background: var(--green); box-shadow: 0 0 0 2px rgba(84,240,165,.14); z-index: 1; }
.timeline-content { padding-bottom: 4px; }
.timeline-top { display: flex; gap: 10px; align-items: center; }
.timeline-top h3 { margin: 0; font-size: 14px; }
.timeline-top span { color: #6f8499; font-size: 9px; text-transform: uppercase; letter-spacing: .1em; }
.timeline-content p { margin: 8px 0 0; color: #8296ab; font-size: 12px; line-height: 1.7; }

.faq-list { max-width: 850px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { padding: 21px 0; cursor: pointer; font-size: 13px; font-weight: 700; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; color: var(--green); font-size: 18px; font-weight: 400; }
.faq-item[open] summary::after { content: "–"; }
.faq-item p { max-width: 760px; margin: -4px 0 22px; color: #8196ab; font-size: 12px; line-height: 1.75; }

.final-cta {
  margin-top: 25px;
  margin-bottom: 110px;
  padding: 42px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  border: 1px solid rgba(84,240,165,.16);
  border-radius: 18px;
  background: linear-gradient(125deg, rgba(84,240,165,.07), rgba(92,201,255,.025));
}
.final-cta h2 { font-size: clamp(30px, 3.3vw, 44px); max-width: 720px; }
.final-cta p { max-width: 650px; font-size: 12px; }

.site-footer { border-top: 1px solid var(--line); background: rgba(0,0,0,.12); }
.footer-inner { min-height: 190px; display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; position: relative; padding-block: 40px; }
.footer-brand { margin-bottom: 11px; }
.footer-inner > div:first-child p { color: #687d92; font-size: 10px; margin: 0; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #7f94a9; font-size: 10px; font-weight: 600; }
.footer-links a:hover { color: white; }
.copyright { position: absolute; bottom: 22px; left: 0; margin: 0; color: #4e6378; font-size: 9px; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 980px) {
  .nav-wrap { grid-template-columns: 1fr auto; }
  .nav-links {
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #0b1727;
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .menu-button { display: block; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 650px; width: 100%; margin-inline: auto; }
  .browser-card { transform: none; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-strip div:nth-child(2) { border-right: 0; }
  .trust-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .download-wrap { grid-template-columns: 1fr; gap: 45px; }
  .download-copy { max-width: 680px; }
}

@media (max-width: 680px) {
  .section-shell, .nav-wrap { width: min(100% - 28px, 1160px); }
  .hero { gap: 44px; padding-bottom: 68px; }
  .hero h1 { font-size: clamp(46px, 15vw, 66px); }
  .hero-text { font-size: 14px; }
  .hero-meta { gap: 18px; flex-wrap: wrap; }
  .mock-page { min-height: 430px; padding: 20px 16px; }
  .watcher-panel { right: 12px; bottom: 12px; width: calc(100% - 24px); }
  .feature-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip div:last-child { border-bottom: 0; }
  .content-section, .split-section { padding: 78px 0; }
  .step { grid-template-columns: 55px 1fr; }
  .download-wrap { padding-block: 72px; }
  .final-cta { padding: 28px; flex-direction: column; align-items: flex-start; margin-bottom: 75px; }
  .footer-inner { grid-template-columns: 1fr; padding-bottom: 70px; }
  .footer-links { flex-wrap: wrap; }
  .copyright { left: 0; bottom: 24px; }
}
