:root {
  color-scheme: dark;
  --bg: #080b14;
  --bg-2: #101629;
  --ink: #e8edf5;
  --muted: #b2bccf;
  --line: rgba(255, 255, 255, 0.08);
  --glass: rgba(15, 20, 35, 0.6);
  --accent: #5dd1c6;
  --accent-2: #f7b267;
  --accent-3: #6ca2ff;
  --shadow: 0 24px 70px rgba(5, 10, 25, 0.5);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: radial-gradient(circle at top, #141b2f 0%, #080b14 55%, #06080f 100%);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(8, 11, 20, 0.7);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  gap: 10px;
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 0 18px rgba(93, 209, 198, 0.4);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-actions {
  display: flex;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.btn.primary {
  background: linear-gradient(130deg, var(--accent), var(--accent-3));
  color: #041018;
  box-shadow: 0 16px 40px rgba(93, 209, 198, 0.3);
}

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

.btn.ghost {
  border-color: var(--line);
  color: var(--muted);
}

.btn.ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--ink);
}

.hero {
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.meta-label {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.meta-value {
  font-weight: 600;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.glass {
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.hero-shot {
  padding: 0;
  align-self: stretch;
  position: relative;
}

.hero-shot img {
  border-radius: 18px;
  width: 100%;
  height: auto;
  box-shadow: 0 24px 70px rgba(6, 12, 26, 0.55);
}

.hero-shot::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 28px;
  background: radial-gradient(circle at 30% 20%, rgba(108, 162, 255, 0.25), transparent 55%);
  opacity: 0.7;
  filter: blur(14px);
  z-index: -1;
}

.shot-caption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 12px;
}

.section {
  padding: 70px 0;
}

.section-title {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-title h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.card {
  padding: 18px 20px;
  display: grid;
  gap: 10px;
}

.card h3 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 1.05rem;
}

.card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.screens {
  display: grid;
  gap: 24px;
}

.shot-large {
  padding: 18px;
}

.shot-large img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.shot-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.shot-small {
  padding: 16px;
  display: grid;
  gap: 12px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border 0.25s ease;
}

.shot-small figcaption {
  font-size: 0.85rem;
  color: var(--muted);
}

.shot-wide {
  grid-column: span 2;
}

.shot-small img {
  border-radius: 14px;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: rgba(8, 12, 22, 0.6);
}

.shot-small:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 28px 60px rgba(6, 12, 26, 0.6);
}

.workflow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.step {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 0.8rem;
  color: var(--accent-2);
  letter-spacing: 0.22em;
}

.cta {
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta h2 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 10px;
}

.cta p {
  color: var(--muted);
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-links {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

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

.footer-meta {
  margin-top: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-meta a {
  color: var(--ink);
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  z-index: -1;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(93, 209, 198, 0.45), transparent 70%);
  top: -160px;
  left: -80px;
}

.orb-2 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(108, 162, 255, 0.35), transparent 70%);
  bottom: -220px;
  right: -120px;
  animation-delay: -6s;
}

.orb-3 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(247, 178, 103, 0.25), transparent 70%);
  top: 40%;
  right: 10%;
  animation-delay: -3s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (min-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr 1.3fr;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-wrap: wrap;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .shot-wide {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-orb {
    animation: none;
  }

  .btn {
    transition: none;
  }
}
