@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&display=swap');

:root {
  --bg: #05070f;
  --panel: #0a101a;
  --muted: #a6b3c2;
  --text: #eef3fb;
  --accent: #78c9ff;
  --accent-2: #9ae6ff;
  --border: #1a2634;
  --gradient: radial-gradient(120% 90% at 20% 15%, rgba(120, 201, 255, 0.18), transparent 40%), radial-gradient(100% 90% at 78% 10%, rgba(154, 230, 255, 0.16), transparent 45%), radial-gradient(80% 70% at 50% 85%, rgba(70, 110, 160, 0.18), transparent 40%), linear-gradient(180deg, #05070f 0%, #060a14 48%, #04060c 100%);
  --shadow: 0 10px 60px rgba(0, 0, 0, 0.48);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Space Grotesk', 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  letter-spacing: 0.01em;
  overflow-x: hidden;
  overflow-y: auto;
}

body.page {
  position: relative;
  opacity: 1;
  transform: none;
  filter: saturate(1);
  transition: none;
}

body.page::before,
body.page::after {
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  body.page {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }

  body.page::before {
    animation: none;
    opacity: 0.55;
  }

  body.page::after {
    animation: none;
    opacity: 0.45;
  }
}

body.page.is-ready {
  opacity: 1;
  transform: none;
  filter: saturate(1);
}

@keyframes aurora-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(12px, -10px, 0) scale(1.03); }
  100% { transform: translate3d(-10px, 8px, 0) scale(1.05); }
}

@keyframes organism-shift {
  0% { transform: translate3d(0, 0, 0) scale(1); filter: blur(55px) saturate(1.05); }
  50% { transform: translate3d(-18px, 16px, 0) scale(1.04); filter: blur(60px) saturate(1.1); }
  100% { transform: translate3d(16px, -14px, 0) scale(1.06); filter: blur(65px) saturate(1.12); }
}

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

img {
  max-width: 100%;
  height: auto;
}

.page {
  background: var(--gradient);
}

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

header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  background: rgba(6, 10, 18, 0.7);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.brand-logo {
  display: none;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.98rem;
}

.menu a {
  padding: 8px 12px;
  border-radius: 10px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.menu a:hover,
.menu a:focus-visible {
  background: rgba(100, 216, 255, 0.1);
  color: #dff4ff;
  transform: translateY(-1px);
}

.cta {
  padding: 10px 16px;
  background: linear-gradient(120deg, #8ae0a4, #72c9ff);
  color: #041012;
  border-radius: 12px;
  font-weight: 600;
  box-shadow: 0 8px 26px rgba(138, 224, 164, 0.26);
}

.hero {
  padding: 120px 0 80px;
  position: relative;
}

.hero {
  padding: 120px 0 80px;
  position: relative;
}

.hero-graphic {
  display: none;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.8;
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  z-index: 1;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(100, 216, 255, 0.12);
  color: #c6e9ff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

p {
  color: var(--muted);
  margin: 0 0 18px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: #d7e7f6;
  font-size: 0.96rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--shadow);
  transition: transform 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 216, 255, 0.35);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(100, 216, 255, 0.1);
  color: #bce9ff;
  font-size: 0.86rem;
  margin-bottom: 10px;
}

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

.split.equal-panels > .panel {
  align-self: stretch;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.split.equal-panels {
  align-items: stretch;
}

.section {
  padding: 70px 0;
}

.panel {
  padding: 26px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(12, 17, 29, 0.9), rgba(9, 14, 25, 0.85));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  color: var(--muted);
}

.list strong {
  color: #dff1ff;
}

.list + p {
  margin-top: 14px;
}

footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 50px;
  background: rgba(5, 8, 16, 0.9);
  margin-top: 50px;
}

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

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

.footer-links a:hover {
  color: #e6f5ff;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 26px;
}

.legal p,
.legal li {
  color: var(--muted);
}

.legal ul {
  padding-left: 20px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(960px, 94vw);
  background: rgba(12, 18, 30, 0.96);
  color: var(--text);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.btn {
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  cursor: pointer;
  font-weight: 600;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
}

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

.btn-primary {
  background: linear-gradient(120deg, #66d1ff, #2e6ecb);
  border-color: rgba(100, 216, 255, 0.5);
  color: #031020;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.03);
}

.cookie-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgba(100, 216, 255, 0.16);
  border: 1px solid rgba(100, 216, 255, 0.4);
  color: #dff5ff;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
  display: none;
  z-index: 15;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.table th,
.table td {
  border: 1px solid var(--border);
  padding: 10px 12px;
  text-align: left;
  color: var(--muted);
}

.table th {
  color: #e8f5ff;
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 960px) {
  .section {
    padding: 55px 0;
  }

  .panel,
  .card {
    padding: 20px;
  }

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

@media (max-width: 720px) {
  .menu {
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    justify-content: flex-start;
  }

  .nav {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 0 8px;
  }

  .hero {
    padding-top: 90px;
  }

  .section {
    padding: 50px 0;
  }

  .card-grid,
  .split {
    gap: 18px;
  }

  .cookie-banner {
    width: 96vw;
    left: 2vw;
    transform: none;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
