:root {
  --bg: #08111d;
  --bg-2: #0d1727;
  --panel: rgba(14, 24, 40, 0.82);
  --panel-2: rgba(18, 30, 48, 0.94);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #eef5ff;
  --muted: #a8b8d3;
  --primary: #7a5cff;
  --primary-2: #1fd6ff;
  --success: #49f0a1;
  --warning: #ffcc66;
  --danger: #ff6f85;
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  --radius: 24px;
  --radius-sm: 16px;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 10%, rgba(122, 92, 255, 0.14), transparent 26%),
    radial-gradient(circle at 85% 8%, rgba(31, 214, 255, 0.10), transparent 26%),
    linear-gradient(180deg, #050b14 0%, #0a1320 38%, #09111b 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.024) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 90%);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: -2;
}

.orb-a {
  width: 320px;
  height: 320px;
  top: 80px;
  left: -90px;
  background: rgba(122, 92, 255, 0.22);
}

.orb-b {
  width: 360px;
  height: 360px;
  top: 150px;
  right: -120px;
  background: rgba(31, 214, 255, 0.16);
}

.orb-c {
  width: 300px;
  height: 300px;
  bottom: 140px;
  left: 25%;
  background: rgba(73, 240, 161, 0.07);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(5, 10, 18, 0.58);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo.small .logo-mark {
  width: 38px;
  height: 38px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 34px rgba(122, 92, 255, 0.34);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-copy strong {
  font-size: 1.02rem;
  letter-spacing: 0.2px;
}

.logo-copy small {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.94rem;
}

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 44px rgba(63, 109, 255, 0.24);
}

.btn-secondary,
.btn-outline {
  color: var(--text);
  background: rgba(255,255,255,0.03);
  border-color: var(--line);
}

.hero {
  padding: 76px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  color: #dde8ff;
  font-weight: 600;
  font-size: 0.94rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(73, 240, 161, 0.75);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(73, 240, 161, 0.75); }
  70% { box-shadow: 0 0 0 12px rgba(73, 240, 161, 0); }
  100% { box-shadow: 0 0 0 0 rgba(73, 240, 161, 0); }
}

.hero h1 {
  margin: 18px 0 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 720px;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #bcecff 45%, #a18fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.07rem;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.note-card {
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
}

.note-kicker {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.app-shell {
  width: 100%;
  max-width: 560px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(16, 28, 46, 0.96), rgba(7, 14, 24, 0.98));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.app-shell::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(122, 92, 255, 0.6), rgba(31, 214, 255, 0.34), rgba(255,255,255,0.05));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.window-title {
  font-size: 0.95rem;
  color: #dbe7ff;
  font-weight: 700;
}

.dashboard-preview {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
  align-items: center;
}

.score-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.score-ring {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  padding: 14px;
  background: conic-gradient(from 220deg, var(--primary), var(--primary-2), var(--success), var(--primary));
  animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

.score-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #07111c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 44px rgba(255,255,255,0.03);
}

.score-inner span {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

.score-inner small {
  color: var(--muted);
  margin-top: 8px;
}

.score-badge {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
}

.score-badge.good {
  background: rgba(73, 240, 161, 0.12);
  border: 1px solid rgba(73, 240, 161, 0.22);
  color: #c8ffe4;
}

.score-badge.warn {
  background: rgba(255, 204, 102, 0.12);
  border: 1px solid rgba(255, 204, 102, 0.2);
  color: #ffe6b0;
}

.score-badge.bad {
  background: rgba(255, 111, 133, 0.12);
  border: 1px solid rgba(255, 111, 133, 0.2);
  color: #ffd0d7;
}

.metric-side {
  display: grid;
  gap: 12px;
}

.metric-card {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.metric-card span {
  color: var(--muted);
}

.metric-card strong {
  font-size: 1.05rem;
}

.analysis-panel {
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.analysis-panel h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.analysis-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-pill {
  min-height: 40px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.mini-pill.active {
  background: linear-gradient(135deg, rgba(122, 92, 255, 0.22), rgba(31, 214, 255, 0.12));
  border-color: rgba(122, 92, 255, 0.28);
}

.trust-strip {
  padding: 0 0 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.trust-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.section {
  padding: 92px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.012));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-head {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(122, 92, 255, 0.12);
  border: 1px solid rgba(122, 92, 255, 0.24);
  color: #e0d7ff;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.82;
}

.overview-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.overview-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--panel);
  backdrop-filter: blur(12px);
}

.overview-card.large {
  grid-row: span 2;
}

.overview-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.overview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-card {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 92, 255, 0.28);
  background: rgba(20, 33, 54, 0.88);
}

.feature-icon {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.shot-card {
  min-height: 250px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    linear-gradient(135deg, rgba(122,92,255,0.12), rgba(31,214,255,0.06));
}

.shot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.shot-label,
.shot-status {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.shot-label {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
}

.shot-status {
  background: rgba(73, 240, 161, 0.10);
  border: 1px solid rgba(73, 240, 161, 0.18);
  color: #cbffe4;
}

.shot-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.shot-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.guide-step {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.guide-number {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(122, 92, 255, 0.28), rgba(31, 214, 255, 0.12));
  border: 1px solid rgba(122, 92, 255, 0.24);
}

.guide-step h3 {
  margin: 0 0 10px;
}

.guide-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.req-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.req-card {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.req-card h3 {
  margin: 0 0 10px;
}

.req-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
  position: relative;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: 1.2rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-content {
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.8;
}

.download-section {
  padding-top: 92px;
}

.download-box {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 34px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 30, 48, 0.94), rgba(8, 16, 28, 0.98));
  box-shadow: var(--shadow);
}

.download-box h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
}

.download-box p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.meta-pill {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  color: #dde7fb;
  font-size: 0.9rem;
  font-weight: 700;
}

.download-panel {
  height: 100%;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,0.04);
}

.download-panel h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.download-panel p {
  margin: 0 0 12px;
}

.download-tip {
  margin-top: 16px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 30px 0 44px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  max-width: 560px;
}

.footer-brand p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 1180px) {
  .hero-grid,
  .download-box,
  .overview-grid,
  .feature-grid,
  .shots-grid,
  .guide-grid,
  .req-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .overview-card.large {
    grid-row: auto;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .download-box,
  .overview-grid,
  .feature-grid,
  .shots-grid,
  .guide-grid,
  .req-grid,
  .hero-notes,
  .trust-grid,
  .dashboard-preview {
    grid-template-columns: 1fr;
  }

  .score-side {
    align-items: flex-start;
  }

  .score-ring {
    margin: 0;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 700px) {
  .nav-actions .btn-outline {
    display: none;
  }

  .hero {
    padding-top: 54px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 72px 0;
  }

  .guide-step {
    grid-template-columns: 1fr;
  }

  .download-box,
  .app-shell {
    padding: 20px;
  }

  .footer-wrap {
    flex-direction: column;
  }
}