* {
  box-sizing: border-box;
}

:root {
  --bg: #03070d;
  --panel: rgba(7, 15, 28, 0.88);
  --panel-solid: #07111f;
  --panel-2: rgba(9, 20, 36, 0.92);
  --text: #f4f8ff;
  --muted: #9fb2ca;
  --soft: #c7d3e3;
  --cyan: #39d6ff;
  --cyan-2: #1ea7e8;
  --green: #68ffc6;
  --orange: #ffc96f;
  --border: rgba(84, 211, 255, 0.18);
  --border-strong: rgba(84, 211, 255, 0.34);
  --shadow: rgba(0, 0, 0, 0.48);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 22% 24%, rgba(46, 214, 255, 0.20), transparent 22%),
    radial-gradient(circle at 78% 30%, rgba(68, 255, 195, 0.18), transparent 24%),
    radial-gradient(circle at 46% 72%, rgba(94, 79, 255, 0.14), transparent 25%),
    linear-gradient(135deg, #02060c 0%, #07111e 50%, #020a0d 100%);
  overflow-x: hidden;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 8%, rgba(55, 214, 255, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(2, 6, 12, 0.38), rgba(2, 6, 12, 0.80));
}

.pc-fluid-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: 0.86;
  filter: saturate(1.32) brightness(1.08) contrast(1.14);
}

.site-shade {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 12, 0.60) 0%, rgba(2, 6, 12, 0.26) 45%, rgba(2, 6, 12, 0.62) 100%),
    radial-gradient(circle at center, rgba(2, 6, 12, 0.02), rgba(2, 6, 12, 0.36) 76%);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 46px;
  height: 46px;
}

.brand h1 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  padding: 10px 12px;
  color: var(--muted);
  font-size: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}

.navlinks a:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.hero {
  min-height: 640px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 34px;
  padding: 70px 0 46px;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(56, 207, 255, 0.06);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .02em;
}

.hero h2,
.section h2 {
  margin: 18px 0 14px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-shadow: 0 3px 28px rgba(0,0,0,.65);
}

.section h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.sub,
.lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  max-width: 710px;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn,
.tool a,
.downloadbox .main,
.downloadbox .alt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  font-weight: 900;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.btn {
  padding: 15px 20px;
  border: 1px solid var(--border);
}

.btn.primary,
.downloadbox .main {
  color: #03101d;
  background: linear-gradient(135deg, #4fd6ff, #1aa9e8);
  border: 0;
}

.btn.secondary,
.downloadbox .alt {
  background: rgba(255, 255, 255, 0.035);
  color: var(--soft);
  border: 1px solid var(--border);
}

.btn:hover,
.tool a:hover,
.downloadbox .main:hover,
.downloadbox .alt:hover {
  transform: translateY(-2px);
  border-color: var(--border-strong); box-shadow: 0 0 24px rgba(57, 214, 255, 0.14);
}

.tags,
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.tags span,
.pills span {
  color: var(--soft);
  background: rgba(5, 11, 21, 0.72);
  border: 1px solid var(--border);
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
}

.card,
.panel {
  background: linear-gradient(180deg, rgba(10, 21, 38, 0.94), rgba(5, 11, 22, 0.96));
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px var(--shadow), 0 0 48px rgba(57, 214, 255, 0.055);
  backdrop-filter: blur(14px);
}

.screenshot-shell {
  padding: 16px;
  border-radius: 24px;
  overflow: hidden;
}

.screenshot-shell img {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: #050912;
}

.hero-shot {
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
}

.section {
  padding: 42px 0;
}

.tools {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.tool {
  min-height: 275px;
  padding: 22px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tool .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.icon,
.tool-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.status {
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.status.live {
  color: var(--green);
  background: rgba(98, 255, 194, 0.08);
  border: 1px solid rgba(98,255,194,.18);
}

.status.soon {
  color: var(--orange);
  background: rgba(255, 199, 106, 0.08);
  border: 1px solid rgba(255,199,106,.18);
}

.tool h3 {
  margin: 18px 0 10px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.tool p {
  color: var(--muted);
  line-height: 1.55;
}

.tool a {
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(56, 207, 255, 0.08);
  border: 1px solid var(--border);
  color: var(--cyan);
}

.muted-card {
  opacity: .82;
}

.feature {
  padding: 34px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: center;
}

.feature p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.metricbox {
  min-height: 220px;
  border: 1px solid var(--border);
  background: rgba(2, 8, 16, 0.48);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  place-items: center;
  text-align: center;
}

.metricbox .big {
  font-size: 54px;
  font-weight: 950;
  letter-spacing: -0.05em;
  color: var(--green);
}

.metricbox p {
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.metricbox small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
}

.icon-metric img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  margin-bottom: 8px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.preview-grid .screenshot-shell img {
  width: 100%;
  height: 230px;
  object-fit: contain;
}

.download {
  padding: 34px;
  border-radius: 26px;
}

.download-intro {
  max-width: 720px;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.downloadbox {
  background: rgba(2, 8, 16, 0.52);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
}

.downloadbox h3 {
  margin: 0 0 14px;
  font-size: 24px;
}

.downloadbox .main {
  width: 100%;
  min-height: 76px;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px;
  text-align: center;
}

.downloadbox .main span {
  font-size: 12px;
  opacity: .88;
}

.downloadbox .alt {
  width: 100%;
  margin-top: 12px;
  min-height: 52px;
}

.notice {
  padding: 30px;
  border-radius: 26px;
}

.notice p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

.footer {
  min-height: 88px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

.footer div {
  display: flex;
  gap: 16px;
}

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

.third-party-note {
  margin: -16px 0 28px;
  color: rgba(159, 178, 202, 0.62);
  font-size: 12px;
}

.page {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0;
  position: relative;
  z-index: 3;
}

.pagecard {
  background: linear-gradient(180deg, rgba(10, 22, 39, 0.96), rgba(6, 13, 24, 0.96));
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(26px, 5vw, 54px);
  box-shadow: 0 24px 80px var(--shadow), 0 0 48px rgba(57, 214, 255, 0.055);
  backdrop-filter: blur(14px);
}

.pagecard h1,
.pagecard h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  letter-spacing: -0.045em;
}

.pagecard h3 {
  margin: 30px 0 10px;
  color: var(--cyan);
}

.pagecard p,
.pagecard li {
  color: var(--muted);
  line-height: 1.75;
  font-size: 16px;
}

.pagecard ul {
  padding-left: 22px;
}

.callout {
  margin-top: 30px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(56, 207, 255, 0.06);
  color: var(--soft);
  line-height: 1.65;
}

.backlink {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--cyan);
  font-weight: 900;
}

@media (max-width: 980px) {
  .hero,
  .feature {
    grid-template-columns: 1fr;
  }

  .tools,
  .download-grid,
  .preview-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-shot {
    transform: none;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: min(100% - 24px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .navlinks {
    justify-content: flex-start;
  }

  .hero {
    min-height: unset;
    padding-top: 46px;
  }

  .tools,
  .download-grid,
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .download,
  .notice {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .pc-fluid-bg {
    opacity: 0.72;
  }
  .btn,
  .tool a,
  .downloadbox .main,
  .downloadbox .alt {
    transition: none;
  }
}
