:root {
  color-scheme: dark;
  --bg: #060918;
  --surface: rgba(15, 23, 48, 0.7);
  --line: rgba(153, 178, 226, 0.16);
  --text: #f7f9ff;
  --muted: #aab5cd;
  --live: #12c8ff;
  --insights: #20e6b0;
  --ops: #ff9d12;
  font-family: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { min-width: 320px; }

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -20%, #17254c 0, transparent 45%),
    linear-gradient(145deg, #040712 0%, var(--bg) 50%, #080c1f 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  content: "";
}

.ambient {
  position: fixed;
  z-index: -1;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .12;
}

.ambient-one { top: 10%; left: -14rem; background: #008cff; }
.ambient-two { right: -15rem; bottom: 0; background: #9d00ff; }

.site-header,
main,
footer {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: white;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 45px;
  height: 37px;
  filter: drop-shadow(0 0 12px rgba(31, 143, 255, .28));
}

.arrow {
  position: absolute;
  width: 35px;
  height: 12px;
  border-radius: 10px 3px 3px 10px;
  transform: skewX(-18deg);
}

.arrow::after {
  position: absolute;
  top: -6px;
  width: 0;
  height: 0;
  border-block: 12px solid transparent;
  content: "";
}

.arrow-top { top: 3px; left: 2px; background: linear-gradient(90deg, #087dff, #12e6f4); }
.arrow-top::after { right: -10px; border-left: 14px solid #12e6f4; }
.arrow-bottom { right: 2px; bottom: 3px; background: linear-gradient(90deg, #cc00f0, #275cff); }
.arrow-bottom::after { left: -10px; border-right: 14px solid #cc00f0; }

.brand-name {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -.06em;
  background: linear-gradient(100deg, #0bd6f8 48%, #425cff 72%, #c500ed);
  background-clip: text;
  color: transparent;
}

.brand-name span { color: white; }

.status {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22dfaf;
  box-shadow: 0 0 14px #22dfaf;
}

.hero {
  padding: clamp(70px, 11vw, 140px) 0 clamp(78px, 10vw, 124px);
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: #62d9ff;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .25em;
  text-transform: uppercase;
}

h1 {
  max-width: 950px;
  margin: 0 auto;
  font-size: clamp(3.15rem, 8vw, 7rem);
  line-height: .94;
  letter-spacing: -.075em;
}

h1 span {
  background: linear-gradient(90deg, #15cff7 10%, #2771ff 47%, #b600ed 90%);
  background-clip: text;
  color: transparent;
}

.intro {
  max-width: 660px;
  margin: 32px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.launch-note {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 38px;
  padding: 8px 9px 8px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 18, 39, .72);
  color: #8996b1;
  font-size: .78rem;
}

.launch-note strong {
  padding: 9px 14px;
  border-radius: 999px;
  background: white;
  color: #080b18;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}

.product {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  min-height: 245px;
  padding: 48px 34px;
}

.product + .product { border-left: 1px solid var(--line); }

.product-icon {
  position: relative;
  display: flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 17px;
  box-shadow: inset 0 0 20px rgba(255,255,255,.03), 0 0 24px color-mix(in srgb, currentColor 18%, transparent);
}

.product-live { color: var(--live); }
.product-insights { color: var(--insights); }
.product-ops { color: var(--ops); }

.icon-live span {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-block: 12px solid transparent;
  border-left: 18px solid currentColor;
}

.icon-insights { align-items: flex-end; gap: 4px; padding-bottom: 12px; }
.icon-insights i { display: block; width: 7px; border-radius: 4px 4px 1px 1px; background: currentColor; }
.icon-insights i:nth-child(1) { height: 14px; }
.icon-insights i:nth-child(2) { height: 24px; }
.icon-insights i:nth-child(3) { height: 35px; }

.icon-ops span { position: absolute; width: 23px; height: 23px; border: 2px solid currentColor; }
.cube-top { top: 12px; transform: rotate(45deg) skew(-8deg, -8deg); }
.cube-left { bottom: 10px; left: 13px; border-top: 0 !important; transform: skewY(30deg); }
.cube-right { right: 13px; bottom: 10px; border-top: 0 !important; transform: skewY(-30deg); }

.product-name {
  margin: 3px 0 25px;
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -.045em;
}

.product-name span { color: white; }
.product-name b { margin-left: 4px; text-transform: uppercase; font-size: .68rem; letter-spacing: .13em; }

.product h2 {
  margin: 0 0 10px;
  color: white;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.product p:last-child {
  margin: 0;
  color: #909cb5;
  font-size: .84rem;
  line-height: 1.65;
}

footer {
  display: flex;
  justify-content: space-between;
  padding-block: 34px 48px;
  color: #67728a;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .products { grid-template-columns: 1fr; }
  .product { min-height: 0; padding: 35px 20px; }
  .product + .product { border-top: 1px solid var(--line); border-left: 0; }
}

@media (max-width: 560px) {
  .site-header, main, footer { width: min(100% - 30px, 1160px); }
  .site-header { padding-block: 20px; }
  .brand-name { font-size: 1.35rem; }
  .brand-mark { width: 39px; transform: scale(.88); transform-origin: left center; }
  .status { font-size: .62rem; letter-spacing: .08em; }
  .hero { padding-top: 75px; }
  h1 { font-size: clamp(3rem, 16vw, 4.4rem); }
  .intro { line-height: 1.6; }
  .launch-note { gap: 10px; padding-left: 12px; }
  .launch-note span { display: none; }
  .product { grid-template-columns: 52px 1fr; gap: 15px; }
  .product-icon { width: 50px; height: 50px; border-radius: 14px; transform: scale(.9); transform-origin: top left; }
  footer { gap: 20px; align-items: flex-end; }
  footer span:last-child { text-align: right; }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot { animation: pulse 2.5s ease-in-out infinite; }
  @keyframes pulse { 50% { opacity: .45; box-shadow: 0 0 5px #22dfaf; } }
}
