:root {
  --bg: #060817;
  --bg-2: #0b0f23;
  --surface: rgba(13, 18, 40, 0.78);
  --surface-2: rgba(18, 24, 52, 0.88);
  --surface-light: rgba(236, 240, 255, 0.06);
  --text: #f5f7ff;
  --muted: #adb4d6;
  --muted-2: #9098bc;
  --line: rgba(155, 168, 220, 0.18);
  --line-strong: rgba(155, 168, 220, 0.3);
  --accent: #8f74ff;
  --accent-2: #6c52f5;
  --accent-soft: rgba(143, 116, 255, 0.16);
  --green: #3ed8a8;
  --green-soft: rgba(62, 216, 168, 0.14);
  --danger: #ff6988;
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.42);
  --shadow-xl: 0 28px 100px rgba(0, 0, 0, 0.5);
  --max: 1480px;
  --content: 1360px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(143, 116, 255, 0.18), transparent 30%),
    radial-gradient(circle at 100% 12%, rgba(62, 216, 168, 0.10), transparent 24%),
    linear-gradient(180deg, #0a0d1c 0%, #060817 28%, #080b1a 62%, #050712 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.inline-link {
  color: var(--text);
  text-decoration: underline;
  text-decoration-color: rgba(62, 216, 168, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.inline-link:hover {
  color: var(--green);
  text-decoration-color: currentColor;
}

button,
input,
select,
textarea {
  font: inherit;
}

.page {
  min-height: 100vh;
  overflow: clip;
}

.shell {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 24px;
}

.content-shell {
  width: min(100%, var(--content));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(6, 8, 23, 0.92), rgba(6, 8, 23, 0.76));
  border-bottom: 1px solid rgba(155, 168, 220, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
}

.logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 40px;
}

.logo-img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color 0.18s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--accent), var(--green));
  transition: transform 0.2s ease;
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(143, 116, 255, 0.26);
}

.btn-primary,
.btn-primary:visited {
  color: #07101c;
  background: linear-gradient(135deg, #ffffff 0%, #d7cbff 20%, #9d83ff 56%, #59ddb0 100%);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.34);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.42);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(155, 168, 220, 0.24);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(155, 168, 220, 0.42);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.94rem;
}

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

h1,
h2,
h3,
.display {
  font-family: Manrope, Inter, sans-serif;
  letter-spacing: -0.03em;
  margin: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(155, 168, 220, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #d8dcff;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 700;
  margin-bottom: 20px;
}

.eyebrow--tight {
  margin-bottom: 14px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(62, 216, 168, 0.75);
}

.highlight {
  background: linear-gradient(135deg, #ffffff 0%, #c3b5ff 26%, #8f74ff 62%, #3ed8a8 100%);
  -webkit-background-clip: text;
  color: transparent;
}

section {
  padding: 90px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  margin: 0 auto 38px;
  max-width: 1180px;
  text-align: center;
  justify-items: center;
}

.section-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(173, 180, 214, 0.75);
}

.section-title {
  font-size: clamp(1.85rem, 2.6vw, 2.75rem);
  line-height: 1.06;
  max-width: 30ch;
  font-weight: 600;
}

.section-title--wide {
  max-width: none;
  white-space: nowrap;
}

.section-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 72ch;
}

.visual-window {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(155, 168, 220, 0.18);
  background: rgba(8, 12, 28, 0.76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 50px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(155, 168, 220, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 0.82rem;
}

.dots {
  display: flex;
  gap: 8px;
}

.dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
}

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

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(155, 168, 220, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #dfe4ff;
  font-size: 0.82rem;
  font-weight: 600;
}

.shot-caption {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
}

.card {
  border-radius: 24px;
  border: 1px solid rgba(155, 168, 220, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  padding: 22px 20px 20px;
  box-shadow: var(--shadow-lg);
}

.card h3 {
  font-size: 1.02rem;
  line-height: 1.26;
  margin: 0 0 8px;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 600;
}

.card p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--muted);
}

.small {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 6px;
}

footer {
  padding: 32px 0 42px;
  border-top: 1px solid rgba(155, 168, 220, 0.12);
  color: var(--muted);
  font-size: 0.84rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.footer-links a {
  opacity: 0.86;
}

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

@media (max-width: 1100px) {
  .section-title--wide {
    white-space: normal;
  }
}

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

  section {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .shell {
    padding: 0 16px;
  }

  .nav-cta .btn-ghost:not(.btn-login) {
    display: none;
  }
}

@media (max-width: 460px) {
  .btn {
    width: 100%;
  }

  .nav {
    min-height: 68px;
  }

  .logo-img {
    height: 34px;
  }
}
