:root {
  --bg: #060a13;
  --bg-alt: #0c1322;
  --text: #edf4ff;
  --muted: #9faec4;
  --stroke: rgba(167, 191, 225, 0.22);
  --panel: rgba(12, 22, 38, 0.7);
  --accent: #78f3d3;
  --accent-2: #e8bf73;
  --ok: #76f7c3;
  --warn: #ffd67a;
  --soon: #9eb6db;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 5% -10%, rgba(111, 180, 255, 0.22), transparent 55%),
    radial-gradient(800px 500px at 95% 5%, rgba(116, 248, 209, 0.18), transparent 60%),
    linear-gradient(180deg, #070b14 0%, #05070d 100%);
}

h1,
h2,
h3 {
  font-family: "Sora", "Space Grotesk", sans-serif;
  margin-top: 0;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 8vw, 4.2rem);
  line-height: 1.08;
}

h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.container {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

main {
  position: relative;
  z-index: 2;
}

.orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  z-index: 1;
}

.orb-one {
  width: 260px;
  height: 260px;
  top: 20%;
  left: -60px;
  background: rgba(116, 248, 209, 0.12);
}

.orb-two {
  width: 340px;
  height: 340px;
  top: 65%;
  right: -90px;
  background: rgba(109, 181, 255, 0.12);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  isolation: isolate;
  overflow: hidden;
  backdrop-filter: blur(16px);
  background: rgba(13, 19, 30, 0.46);
  border-bottom: 1px solid rgba(160, 186, 211, 0.16);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      118deg,
      rgba(60, 128, 170, 0.2),
      rgba(67, 168, 146, 0.16),
      rgba(232, 191, 115, 0.12),
      rgba(60, 128, 170, 0.18)
    );
  background-size: 260% 260%;
  animation: headerShift 14s ease-in-out infinite;
  opacity: 0.48;
}

.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 11, 18, 0.5), rgba(7, 11, 18, 0.42));
}

.site-header.scrolled {
  border-bottom-color: rgba(198, 213, 233, 0.28);
  box-shadow: 0 10px 25px rgba(4, 9, 18, 0.33);
}

.site-header.scrolled::before {
  opacity: 0.62;
}

@keyframes headerShift {
  0% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
  50% {
    background-position: 100% 50%;
    filter: hue-rotate(22deg);
  }
  100% {
    background-position: 0% 50%;
    filter: hue-rotate(0deg);
  }
}

.nav-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
}

.logo-link {
  text-decoration: none;
}

.site-logo {
  height: 40px;
  width: auto;
  max-width: 188px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(134, 174, 206, 0.14));
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.86;
}

.nav-link:hover {
  opacity: 1;
  color: #f6d7a2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  padding: 0.7rem 1.15rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

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

.btn-primary {
  color: #111317;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 40px rgba(232, 191, 115, 0.25);
}

.btn-secondary {
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(130, 166, 213, 0.08);
}

.hero {
  padding: 6.5rem 0 4rem;
}

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

.hero-text {
  max-width: 760px;
  font-size: clamp(1rem, 2.6vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.8rem 0 1.4rem;
}

.proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.proof-chip {
  border: 1px solid var(--stroke);
  background: rgba(232, 191, 115, 0.09);
  color: #f1dec1;
  border-radius: 999px;
  font-size: 0.86rem;
  padding: 0.5rem 0.9rem;
}

section {
  margin-bottom: 2.2rem;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.inline-link {
  color: #f0d1a0;
  text-decoration: none;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1rem;
}

.card-grid-two {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.glass-card {
  background: linear-gradient(145deg, rgba(20, 29, 47, 0.8), rgba(11, 18, 30, 0.78));
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(130deg, rgba(120, 243, 211, 0.34), rgba(232, 191, 115, 0.16));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.glass-card:hover::before {
  opacity: 1;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.status {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid;
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  margin-bottom: 0.35rem;
}

.status-live {
  border-color: rgba(118, 247, 195, 0.6);
  color: var(--ok);
}

.status-private_beta {
  border-color: rgba(255, 214, 122, 0.6);
  color: var(--warn);
}

.status-coming_soon {
  border-color: rgba(158, 182, 219, 0.55);
  color: var(--soon);
}

.compact-list {
  margin: 0;
  padding-left: 1.1rem;
  color: #d0ddf2;
}

.compact-list li {
  margin: 0.35rem 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.55rem;
}

.tag-row span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  color: #d5e8ff;
  background: rgba(111, 180, 255, 0.08);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
}

.capability-tile {
  background: rgba(17, 28, 45, 0.8);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  color: #d7e4f7;
}

.trust-strip {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 1rem;
}

.labs-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.75rem;
}

.labs-item {
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(109, 181, 255, 0.06);
  padding: 0.8rem 0.95rem;
}

.contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.page-intro {
  padding-top: 5.3rem;
}

.filters-wrap {
  display: grid;
  gap: 0.75rem;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-pill {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  background: rgba(130, 166, 213, 0.08);
  color: #d9e5f8;
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  cursor: pointer;
}

.filter-pill.active {
  border-color: rgba(232, 191, 115, 0.55);
  background: rgba(232, 191, 115, 0.16);
}

.detail-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1rem;
}

.deployment {
  margin-top: 0.9rem;
  color: #d4e2f8;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
}

.form-row {
  margin-bottom: 0.85rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  color: #d2e2ff;
  margin-bottom: 0.3rem;
}

.form-input,
.form-textarea,
select.form-input {
  width: 100%;
  border: 1px solid rgba(157, 184, 225, 0.35);
  background: rgba(11, 19, 32, 0.82);
  color: var(--text);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font: inherit;
}

.form-textarea {
  resize: vertical;
}

.form-error {
  color: #ffd6d0;
  font-size: 0.8rem;
  margin: 0.3rem 0 0;
}

.success-panel {
  border: 1px solid rgba(116, 248, 209, 0.45);
  background: rgba(116, 248, 209, 0.11);
  border-radius: 12px;
  padding: 1rem;
}

.empty-state {
  color: var(--muted);
}

.hidden {
  display: none;
}

.site-footer {
  border-top: 1px solid rgba(130, 166, 213, 0.16);
  margin-top: 2.5rem;
  padding: 1.3rem 0 1.8rem;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.95rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: transform 0.45s ease, opacity 0.45s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .trust-strip,
  .detail-grid,
  .contact-layout,
  .contact-cta {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-logo {
    height: 34px;
    max-width: 160px;
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero {
    padding-top: 5.3rem;
  }
}
