@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Google+Sans:100,200,300,400,500,600,700,800,900&display=swap&subset=latin-ext');

:root {
  --bg: #000410;
  --bg-soft: #061126;
  --bg-panel: rgba(6, 17, 38, 0.96);
  --bg-card: rgba(10, 18, 38, 0.82);
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #eef2ff;
  --muted: #9aa7cf;
  --accent: #7a5cff;
  --accent-strong: #9b7aff;
  --accent-soft: rgba(122, 92, 255, 0.16);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
}

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

::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(122, 92, 255, 0.5);
  border-radius: 999px;
}

html {
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  font-family: 'Google Sans', sans-serif;
  letter-spacing: 0.012rem;
  background: linear-gradient(180deg, #000410 0%, #000410 100%);
  color: var(--text);
}

body.menu-locked {
  overflow: hidden;
  touch-action: none;
}

a {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: 0.35s;
  cursor: pointer;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
  color: inherit;
}

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

small,
p {
  font-weight: 300;
}

.site-shell {
  min-height: 100vh;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.hero,
.strip,
.journey,
.products,
.references,
.library,
.final-cta,
.site-footer,
.not-found,
.placeholder-page {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  width: 100%;
  margin: 0;
}

.primary-button,
.support-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 0.35rem;
  border: 1px solid var(--line-strong);
  white-space: nowrap;
}

.primary-button {
  background: linear-gradient(135deg, rgba(74, 88, 204, 0.9) 0%, rgba(120, 94, 255, 0.92) 58%, rgba(76, 194, 255, 0.9) 100%);
  border-color: rgba(154, 188, 255, 0.24);
  box-shadow: none;
}

.support-button {
  background: rgba(255, 255, 255, 0.035);
  border-color: rgba(137, 160, 214, 0.26);
  color: #d7def9;
}

.ghost-button {
  background: rgba(255, 255, 255, 0.02);
}

.eyebrow {
  margin: 0 0 18px;
  color: #9e8cff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
}
