:root {
  --bg: #070b14;
  --ink: #f4f7ff;
  --muted: #9aa6c2;
  --glass: rgba(16, 22, 38, 0.72);
  --line: rgba(255, 255, 255, 0.1);
  --accent: #7c5cff;
  --accent-2: #4da3ff;
  --accent-3: #3ee8a0;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: Outfit, "Segoe UI", system-ui, sans-serif;
}

body { overflow-x: hidden; }

a { color: #b9a8ff; text-decoration: none; }
a:hover { color: #fff; text-decoration: underline; }

.site {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
  z-index: 0;
}

.aurora-a {
  width: 460px;
  height: 460px;
  left: -100px;
  top: 40px;
  background: rgba(124, 92, 255, 0.22);
}

.aurora-b {
  width: 380px;
  height: 380px;
  right: -70px;
  top: 420px;
  background: rgba(77, 163, 255, 0.16);
}

.aurora-c {
  width: 300px;
  height: 300px;
  left: 45%;
  bottom: 80px;
  background: rgba(62, 232, 160, 0.08);
}

.site-header,
.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font: 700 19px/1 Outfit, sans-serif;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.brand-link:hover { color: var(--ink); text-decoration: none; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  overflow: hidden;
  background: #101830;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 18px rgba(124, 92, 255, 0.35);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  justify-content: flex-end;
}

.nav a {
  color: #a9b4d0;
  font: 600 14px Outfit, sans-serif;
  text-decoration: none;
}

.nav a:hover { color: #fff; }

.site-main {
  flex: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px 56px;
}

.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  width: 100%;
  color: #6f7b96;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--line);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.reg {
  margin: 6px 0 0;
  font-size: 12px;
  color: #5d687f;
}

/* Hero */

.hero {
  padding: 40px 0 44px;
  max-width: 46rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: #a9b4d0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(40px, 6.4vw, 66px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.04;
  background: linear-gradient(180deg, #fff, #c8d2f0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 14px;
  border: 0;
  font: 600 15px Outfit, sans-serif;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover { text-decoration: none; }

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #8b6cff, #6a48f0);
  box-shadow: 0 10px 24px rgba(124, 92, 255, 0.28);
}

.btn-primary:hover { color: #fff; background: linear-gradient(180deg, #9b80ff, #7454ff); }

.btn-ghost {
  color: #e8edf8;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.btn-ghost:hover { color: #fff; background: rgba(255, 255, 255, 0.14); }

.btn.is-soon {
  opacity: 0.5;
  cursor: default;
}

/* Sections */

.section {
  padding: 26px 0 14px;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section h2 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.section-note {
  margin: 0;
  color: #6f7b96;
  font-size: 13px;
}

/* Product cards */

.products {
  display: grid;
  gap: 18px;
}

.product {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.product-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 5px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: #a9b4d0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product h3 {
  margin: 0 0 10px;
  font-size: 30px;
  letter-spacing: -0.025em;
}

.product p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.product-list {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 7px;
}

.product-list li {
  position: relative;
  padding-left: 20px;
  color: #b6c0d8;
  font-size: 14.5px;
  line-height: 1.45;
}

.product-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

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

.product-art {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b1020;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

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

/* About */

.about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.about-card {
  padding: 20px 18px;
  border-radius: 16px;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.about-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}

.about-card p {
  margin: 0;
  font-size: 14px;
  color: #a9b4d0;
  line-height: 1.55;
}

/* Contact */

.contact {
  margin-top: 12px;
  padding: 30px 26px;
  border-radius: 22px;
  background: var(--glass);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  text-align: center;
}

.contact h2 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.02em;
}

.contact p {
  margin: 0 0 20px;
  color: var(--muted);
}

@media (max-width: 880px) {
  .product { grid-template-columns: 1fr; }
  .product-art { order: -1; }
  .about { grid-template-columns: 1fr; }
  .site-header { flex-direction: column; align-items: flex-start; }
  .nav { justify-content: flex-start; }
}
