:root {
  --bg: #070a13;
  --bg2: #0b1026;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.55);
  --primary: #3b82f6;
  --primary2: #8b5cf6;
  --shadow: 0 18px 70px rgba(0, 0, 0, 0.55);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 900px at 20% 10%, rgba(139, 92, 246, 0.20), transparent 58%),
    radial-gradient(900px 650px at 85% 30%, rgba(59, 130, 246, 0.22), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg__grid {
  position: absolute;
  inset: -2px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(700px 500px at 50% 20%, black 35%, transparent 70%);
  opacity: 0.35;
}

.bg__orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.26;
  transform: translate3d(0, 0, 0);
  animation: float 10s ease-in-out infinite;
}

.bg__orb--1 {
  left: -140px;
  top: 120px;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.9), transparent 60%);
}

.bg__orb--2 {
  right: -180px;
  top: 40px;
  animation-delay: -2.5s;
  background: radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.9), transparent 60%);
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(7, 10, 19, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header[data-elevate="true"] {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.header__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.brand__mark {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(0, 0, 0, 0.10);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  display: grid;
  place-items: center;
  padding: 4px;
  overflow: hidden;
}

.brand__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.card__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

.brand__text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
}

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

.nav__link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.76);
  transition: color 160ms ease;
}

.nav__link:hover {
  color: rgba(255, 255, 255, 0.96);
}

.header__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(139, 92, 246, 1));
  box-shadow: 0 16px 40px rgba(59, 130, 246, 0.2);
}

.btn--primary:hover {
  box-shadow: 0 18px 52px rgba(139, 92, 246, 0.24);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.10);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn--full {
  width: 100%;
}

.hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.86);
  margin: 4px auto;
  border-radius: 999px;
}

.mobile {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 10, 19, 0.8);
}

.mobile__inner {
  padding: 16px 0 22px;
  display: grid;
  gap: 12px;
}

.mobile__link {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile__cta {
  padding-top: 8px;
}

.hero {
  padding: 88px 0 22px;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
}

.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(139, 92, 246, 1));
  box-shadow: 0 10px 22px rgba(59, 130, 246, 0.22);
}

.hero__title {
  margin: 16px 0 12px;
  font-size: clamp(34px, 4.2vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.grad {
  background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(139, 92, 246, 1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  margin: 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.hero__cta {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__badges {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.badge {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.badge__title {
  font-weight: 700;
  font-size: 13px;
}

.badge__desc {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted2);
}

.hero__card {
  display: flex;
  justify-content: flex-end;
}

.glass {
  width: min(420px, 100%);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.glass__header {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.glass__lights span {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  margin-right: 6px;
}

.glass__lights span:nth-child(1) {
  background: rgba(248, 113, 113, 0.95);
}

.glass__lights span:nth-child(2) {
  background: rgba(251, 191, 36, 0.95);
}

.glass__lights span:nth-child(3) {
  background: rgba(52, 211, 153, 0.95);
}

.glass__title {
  font-weight: 600;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.glass__body {
  padding: 16px;
}

.kpi {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kpi + .kpi {
  margin-top: 10px;
}

.kpi__label {
  font-size: 12px;
  color: var(--muted2);
}

.kpi__value {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.spark {
  margin-top: 14px;
  height: 86px;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  align-items: end;
}

.spark__bar {
  height: var(--h);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(59, 130, 246, 0.95), rgba(139, 92, 246, 0.95));
  opacity: 0.86;
}

.glass__footer {
  margin-top: 14px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.link {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.section {
  padding: 64px 0;
}

.section__head {
  margin-bottom: 18px;
}

.h2 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 32px);
  letter-spacing: -0.02em;
}

.muted {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.grid {
  display: grid;
  gap: 14px;
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.20);
  transition: transform 180ms ease, border-color 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.card__icon {
  width: 80px;
  height: 80px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 26px;
  padding: 12px;
}

.card__title {
  margin: 12px 0 6px;
  font-size: 16px;
}

.card__desc {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.card__link {
  display: inline-block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 600;
  font-size: 13px;
}

.product {
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.22);
}

.product--cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.product__logo {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.product__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.product__name {
  margin: 0;
  font-size: 16px;
}

.product__tag {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--muted2);
}

.list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

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

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  padding: 14px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat__value {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.stat__label {
  margin-top: 6px;
  color: var(--muted2);
  font-size: 12px;
}

.mission {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 14px;
  align-items: stretch;
}

.mission__copy {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.checks {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.check {
  padding: 12px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.80);
  font-size: 13px;
}

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

.mission__visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
}

.map {
  position: relative;
  height: 100%;
  min-height: 260px;
  background:
    radial-gradient(600px 240px at 40% 40%, rgba(59, 130, 246, 0.20), transparent 60%),
    radial-gradient(600px 240px at 70% 60%, rgba(139, 92, 246, 0.20), transparent 60%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0.18));
}

.map:before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  opacity: 0.7;
}

.map__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(139, 92, 246, 1));
  box-shadow: 0 18px 40px rgba(59, 130, 246, 0.28);
}

.map__pin:after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.9;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.map__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(7, 10, 19, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.quote {
  padding: 18px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

.quote__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.75;
}

.quote__meta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote__avatar {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-weight: 800;
}

.quote__name {
  font-weight: 700;
  font-size: 13px;
}

.quote__role {
  margin-top: 2px;
  color: var(--muted2);
  font-size: 12px;
}

.logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo {
  height: 70px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  display: grid;
  place-items: center;
  padding: 10px;
  overflow: hidden;
}

.logo img {
  max-width: 100%;
  max-height: 34px;
  object-fit: contain;
  opacity: 0.92;
  filter: saturate(0.9) contrast(1.1);
}

.logo__text {
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.cta {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.20), rgba(139, 92, 246, 0.20));
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.footer__title {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.footer__link {
  display: block;
  padding: 6px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer__link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.footer__bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page {
  padding: 54px 0 64px;
}

.page__head {
  padding: 24px 0 12px;
}

.breadcrumb {
  display: inline-flex;
  gap: 8px;
  color: var(--muted2);
  font-size: 12px;
}

.form {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.label {
  font-size: 12px;
  color: var(--muted);
}

.input,
.textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  outline: none;
}

.textarea {
  min-height: 120px;
  resize: vertical;
}

.input:focus,
.textarea:focus {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.18);
}

.notice {
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.notice--ok {
  border-color: rgba(52, 211, 153, 0.35);
}

.notice--err {
  border-color: rgba(248, 113, 113, 0.35);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 600ms ease, transform 600ms ease;
}

@media (max-width: 980px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

  .hero__card {
    justify-content: flex-start;
  }

  .mission {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .nav,
  .header__actions {
    display: none;
  }

  .hamburger {
    display: inline-block;
  }

  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 62px;
  }

  .hero__badges {
    grid-template-columns: 1fr;
  }

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

  .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
