:root {
  --bg-1: #050b15;
  --bg-2: #0c1425;
  --panel: rgba(10, 18, 34, 0.8);
  --panel-strong: rgba(13, 22, 42, 0.92);
  --line: rgba(138, 175, 255, 0.24);
  --line-strong: rgba(138, 185, 255, 0.38);
  --text: #edf3ff;
  --muted: #9eb2d8;
  --cyan: #4edaff;
  --blue: #6294ff;
  --green: #4ee49d;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.42);
  --radius: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    radial-gradient(1000px 600px at 8% -10%, #133263 0%, transparent 58%),
    radial-gradient(900px 650px at 100% 0%, #223269 0%, transparent 60%),
    linear-gradient(140deg, var(--bg-1), var(--bg-2));
  line-height: 1.5;
}

.bg-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.28;
  animation: drift 16s ease-in-out infinite;
}

.blob-1 {
  width: 460px;
  height: 460px;
  top: -140px;
  left: -80px;
  background: #2b6dff;
}

.blob-2 {
  width: 390px;
  height: 390px;
  top: 24%;
  right: -120px;
  background: #1bc6d8;
  animation-delay: -6s;
}

.blob-3 {
  width: 510px;
  height: 510px;
  left: 24%;
  bottom: -270px;
  background: #2f4d9b;
  animation-delay: -9s;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.32) 0.4px, transparent 0.4px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

a {
  color: inherit;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(14px);
  background: rgba(4, 9, 18, 0.62);
  border-bottom: 1px solid rgba(120, 160, 240, 0.16);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 13, 24, 0.72);
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: linear-gradient(135deg, #68d9ff, #5f8dff 65%, #6cb4ff);
  position: relative;
  box-shadow: 0 0 0 3px rgba(96, 130, 255, 0.16);
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1.4px solid rgba(255, 255, 255, 0.78);
  border-radius: 6px;
}

.brand-text {
  display: grid;
  line-height: 1;
  gap: 4px;
}

.brand-text b {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(12, 20, 36, 0.9);
  color: var(--text);
  border-radius: 999px;
  min-height: 40px;
  padding: 0 14px;
  font-weight: 700;
  cursor: pointer;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  padding: 8px 11px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #ecf4ff;
  background: rgba(96, 136, 221, 0.2);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  min-width: 58px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(126, 162, 235, 0.4);
  background: rgba(12, 20, 36, 0.86);
  color: #dbe8ff;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

.lang-toggle:hover {
  transform: translateY(-1px);
  background: rgba(24, 38, 62, 0.96);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #03111b;
  background: linear-gradient(95deg, #6de7ff, #71a8ff);
  box-shadow: 0 10px 24px rgba(92, 164, 255, 0.3);
}

.btn-ghost {
  color: #dbe8ff;
  border-color: rgba(132, 175, 255, 0.38);
  background: rgba(10, 19, 35, 0.58);
}

.section-pad {
  padding: 80px 0;
  scroll-margin-top: 96px;
}

.section-alt {
  background: linear-gradient(145deg, rgba(8, 14, 26, 0.72), rgba(11, 19, 34, 0.56));
  border-top: 1px solid rgba(130, 170, 245, 0.14);
  border-bottom: 1px solid rgba(130, 170, 245, 0.14);
}

.kicker {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(124, 177, 255, 0.36);
  color: #d5e5ff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(10, 19, 35, 0.58);
  margin-bottom: 14px;
}

.section-title {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.015em;
}

.section-text {
  color: var(--muted);
  margin-top: 14px;
  max-width: 760px;
}

.hero {
  padding-top: 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: start;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  max-width: 760px;
}

.lead {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 700px;
  font-size: clamp(16px, 2.1vw, 22px);
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: #d8e5ff;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(120deg, var(--cyan), var(--blue));
  box-shadow: 0 0 10px rgba(93, 156, 255, 0.7);
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.hero-panel h2 {
  margin: 0;
  font-size: 24px;
}

.hero-panel p {
  margin-top: 10px;
  color: var(--muted);
}

.quick-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quick-metrics article {
  border-radius: 14px;
  border: 1px solid rgba(130, 170, 245, 0.2);
  padding: 10px;
  background: rgba(6, 13, 26, 0.7);
}

.quick-metrics strong {
  display: block;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  font-size: 18px;
}

.quick-metrics span {
  color: var(--muted);
  font-size: 13px;
}

.proof-grid,
.feature-grid,
.mode-grid,
.step-grid {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.mode-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-card,
.feature-card,
.mode-card,
.step-card,
.shot-card,
.contact-form,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.proof-card,
.feature-card,
.mode-card,
.step-card {
  padding: 16px;
}

.proof-card h3 {
  margin: 0;
  font-size: 30px;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
}

.proof-card p,
.feature-card p,
.mode-card p,
.step-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.feature-card h3,
.mode-card h3,
.step-card h3 {
  margin: 0;
  font-size: 20px;
}

.mode-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #dbe8ff;
  display: grid;
  gap: 6px;
}

.step-card span {
  display: inline-flex;
  min-width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  margin-bottom: 10px;
  font-weight: 800;
  color: #dceaff;
}

.screenshot-stack {
  margin-top: 24px;
  display: grid;
  gap: 18px;
}

.shot-card {
  padding: 14px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.shot-media {
  position: relative;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(132, 173, 255, 0.3);
  background: #04070f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.shot-media img {
  display: block;
  width: 100%;
  height: auto;
}


.shot-copy h3 {
  margin: 0;
  font-size: 25px;
}

.shot-copy p {
  margin: 10px 0 0;
  color: var(--muted);
}

.shot-copy ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #dbe8ff;
  display: grid;
  gap: 8px;
}

.faq-wrap .section-title {
  margin-bottom: 18px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.faq-icon {
  font-size: 22px;
  color: #9fc1ff;
  transition: transform 0.2s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 16px;
  color: var(--muted);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-copy ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: #dbe8ff;
  display: grid;
  gap: 8px;
}

.download-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.download-btn {
  gap: 8px;
}

.apple-icon {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.apple-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.download-btn.is-disabled {
  opacity: 0.58;
  cursor: not-allowed;
  filter: grayscale(0.18);
  pointer-events: none;
}

.download-status {
  margin: 10px 0 0;
  color: #8de6b0;
  font-size: 14px;
}

.download-status.is-unsupported {
  color: #ffb7b7;
}

.download-card {
  padding: 16px;
  display: grid;
  gap: 12px;
  background: var(--panel-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.download-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(130, 175, 255, 0.34);
  background: rgba(8, 16, 30, 0.72);
  color: #d9e8ff;
  font-size: 12px;
  letter-spacing: 0.02em;
  font-weight: 700;
}

.download-shot {
  border: 1px solid rgba(132, 173, 255, 0.3);
  border-radius: 14px;
  overflow: hidden;
  background: #04070f;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
}

.download-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.download-shot--brand {
  min-height: 180px;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(120% 120% at 8% 10%, rgba(90, 140, 255, 0.2) 0%, rgba(4, 7, 15, 0) 55%),
    linear-gradient(145deg, rgba(7, 13, 26, 0.95), rgba(4, 8, 18, 0.98));
}

.download-shot--brand img {
  width: min(100%, 512px);
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.download-caption h3 {
  margin: 0;
  font-size: 22px;
}

.site-footer {
  padding: 20px 0 28px;
  border-top: 1px solid rgba(130, 170, 245, 0.14);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner a {
  color: #d6e6ff;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

@media (max-width: 1060px) {
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .mode-grid,
  .step-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shot-card,
  .contact-grid,
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    grid-template-columns: auto auto;
    gap: 10px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 4vw;
    right: 4vw;
    background: rgba(7, 14, 27, 0.98);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 10px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

  .site-nav a {
    padding: 10px 12px;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .desktop-cta {
    flex: 1;
  }

  .section-pad {
    padding: 64px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .quick-metrics,
  .proof-grid,
  .feature-grid,
  .mode-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .shot-copy h3 {
    font-size: 22px;
  }


  .btn {
    width: 100%;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(9px, -13px) scale(1.04);
  }
}
