:root {
  --bg: #070b17;
  --bg-soft: rgba(14, 19, 41, 0.76);
  --card: linear-gradient(180deg, rgba(24, 31, 66, 0.9), rgba(14, 20, 44, 0.86));
  --border: rgba(165, 180, 255, 0.16);
  --border-strong: rgba(195, 206, 255, 0.28);
  --text: #f5f7ff;
  --muted: rgba(234, 240, 255, 0.7);
  --soft: rgba(234, 240, 255, 0.52);
  --primary: #8f63ff;
  --primary-2: #5675ff;
  --teal: #68f2dd;
  --lime: #c8ff59;
  --shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 124px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 99, 255, 0.24), transparent 24%),
    radial-gradient(circle at 84% 16%, rgba(104, 242, 221, 0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(86, 117, 255, 0.18), transparent 40%),
    linear-gradient(180deg, #070b17 0%, #0a1020 52%, #090d1b 100%);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.page-shell {
  position: relative;
  overflow: hidden;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 20px 48px;
}

.page-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.16));
  pointer-events: none;
}

.bg-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  pointer-events: none;
}

.orb-left {
  top: -90px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(143, 99, 255, 0.28);
}

.orb-right {
  top: 80px;
  right: -90px;
  width: 260px;
  height: 260px;
  background: rgba(104, 242, 221, 0.18);
}

.orb-bottom {
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  background: rgba(86, 117, 255, 0.2);
}

.site-header,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(165, 180, 255, 0.14);
  border-radius: 28px;
  background: rgba(7, 11, 23, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

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

.brand-mark {
  width: 64px;
  height: 64px;
  border-radius: 24px;
  padding: 8px;
  background: linear-gradient(180deg, rgba(23, 32, 67, 0.95), rgba(14, 20, 41, 0.88));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.brand-mark img {
  border-radius: 18px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-copy strong {
  font-size: 1.1rem;
}

.brand-copy span {
  color: var(--soft);
  font-size: 0.92rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.site-nav a {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--muted);
  transition: 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.site-nav .nav-cta {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(86, 117, 255, 0.28);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: white;
}

.section {
  padding-top: 84px;
}

section[id] {
  scroll-margin-top: 124px;
}

.hero {
  min-height: calc(100vh - 148px);
  display: grid;
  align-items: center;
  gap: 56px;
  grid-template-columns: 1.02fr 0.98fr;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(200, 255, 89, 0.18);
  background: rgba(200, 255, 89, 0.08);
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(3.5rem, 6vw, 6.1rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff, #cae2ff 54%, #8ff5ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 670px;
  margin: 24px 0 0;
  font-size: 1.16rem;
  line-height: 1.9;
  color: var(--muted);
}

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

.hero-actions.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  box-shadow: 0 18px 38px rgba(86, 117, 255, 0.34);
}

.btn-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.proof-grid li,
.surface-card {
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.proof-grid li {
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

.surface-card {
  border-radius: var(--radius-xl);
}

.hero-panel {
  padding: 28px;
}

.panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.mini-label,
.section-kicker,
.feature-index {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}

.mini-label,
.section-kicker {
  color: var(--soft);
}

.panel-head h2,
.section-heading h2,
.narrative-card h2,
.cta-card h2 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.status-chip {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(200, 255, 89, 0.12);
  color: var(--lime);
  font-size: 0.92rem;
  font-weight: 700;
}

.flow-card {
  border-radius: 28px;
  border: 1px solid rgba(166, 183, 255, 0.14);
  background: rgba(8, 13, 29, 0.74);
  padding: 20px;
}

.primary-card {
  margin-top: 26px;
}

.flow-card h3,
.flow-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.55rem;
}

.flow-card span {
  display: block;
  margin-top: 10px;
  color: var(--soft);
  line-height: 1.65;
}

.progress-bar {
  margin-top: 18px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 64%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--teal));
}

.hero-stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.section-heading {
  max-width: 760px;
}

.section-heading p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 1.03rem;
}

.section-heading.compact {
  max-width: 520px;
}

.feature-grid {
  display: grid;
  gap: 20px;
}

.feature-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.feature-grid.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card,
.narrative-card,
.cta-card,
.steps-card,
.faq-item {
  padding: 28px;
}

.feature-card h3,
.narrative-card h2,
.steps-card h3 {
  margin: 14px 0 0;
}

.feature-card p,
.narrative-card p,
.steps-card p,
.cta-card p,
.faq-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.feature-index {
  color: var(--teal);
}

.split-section {
  display: grid;
  gap: 28px;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
}

.steps-card {
  display: grid;
  gap: 18px;
}

.steps-card article {
  display: grid;
  gap: 18px;
  grid-template-columns: 48px 1fr;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.steps-card article:first-child {
  padding-top: 0;
  border-top: 0;
}

.steps-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(143, 99, 255, 0.18), rgba(86, 117, 255, 0.18));
  color: white;
  font-weight: 800;
}

.how-stack {
  display: grid;
  gap: 22px;
}
.showcase-card {
  padding: 28px;
}
.showcase-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.showcase-head h3 {
  margin: 12px 0 0;
  font-size: 1.45rem;
}
.subtle-chip {
  background: rgba(104, 242, 221, 0.1);
  color: var(--teal);
}
.screenshot-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.15fr 1fr 1fr;
  margin-top: 24px;
}
.shot-card {
  min-height: 220px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(166, 183, 255, 0.14);
  background:
    radial-gradient(circle at top right, rgba(104, 242, 221, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(11, 17, 37, 0.95), rgba(10, 14, 29, 0.86));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}
.shot-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.shot-label,
.level-badge,
.shot-streak,
.mini-btn,
.shot-pill-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}
.shot-label {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}
.shot-streak {
  background: rgba(200, 255, 89, 0.1);
  color: var(--lime);
}
.level-badge {
  background: rgba(143, 99, 255, 0.14);
  color: #d8c6ff;
}
.mini-btn {
  border: 1px solid rgba(104, 242, 221, 0.18);
  background: rgba(104, 242, 221, 0.09);
  color: var(--teal);
}
.shot-body {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.shot-mission strong {
  display: block;
  font-size: 1.15rem;
}
.shot-mission span {
  display: block;
  margin-top: 8px;
  color: var(--soft);
  line-height: 1.65;
}
.shot-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.shot-pill-row span {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}
.compact-bar {
  margin-top: 0;
  height: 10px;
}
.compact-bar span {
  width: 72%;
}
.bars-stack {
  display: grid;
  gap: 10px;
}
.bars-stack span {
  display: block;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.bars-stack span:nth-child(1) {
  width: 100%;
  background: linear-gradient(90deg, rgba(143, 99, 255, 0.24), rgba(86, 117, 255, 0.5));
}
.bars-stack span:nth-child(2) {
  width: 82%;
  background: linear-gradient(90deg, rgba(104, 242, 221, 0.2), rgba(86, 117, 255, 0.4));
}
.bars-stack span:nth-child(3) {
  width: 64%;
  background: linear-gradient(90deg, rgba(200, 255, 89, 0.18), rgba(104, 242, 221, 0.34));
}.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.faq-item {
  overflow: hidden;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0;
  text-align: left;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-panel > div,
.faq-panel > p {
  overflow: hidden;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.cta-card {
  text-align: center;
}

.site-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-top: 80px;
  padding: 28px 0 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--soft);
}

.site-footer div {
  display: flex;
  gap: 18px;
}

@media (max-width: 1080px) {
  .hero,
  .split-section,
  .feature-grid.three-up,
  .feature-grid.two-up {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }
}

@media (max-width: 840px) {
  .site-header {
    align-items: flex-start;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 28px;
    border: 1px solid var(--border);
    background: rgba(10, 15, 32, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    text-align: center;
  }

  .proof-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 840px) {
  .showcase-head {
    flex-direction: column;
  }
}@media (max-width: 640px) {
  .page-shell {
    padding: 14px 16px 34px;
  }

  html,
  section[id] {
    scroll-padding-top: 110px;
    scroll-margin-top: 110px;
  }

  .brand-mark {
    width: 58px;
    height: 58px;
    border-radius: 22px;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .section {
    padding-top: 68px;
  }

  .feature-card,
  .narrative-card,
  .cta-card,
  .steps-card,
  .faq-item,
  .hero-panel {
    padding: 22px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
