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

:root {
  --accent: #8b6fff;
  --accent2: #00d1ff;
  --bg: #050611;
  --panel: rgba(12, 15, 32, 0.88);
  --panel2: rgba(17, 23, 48, 0.78);
  --border: rgba(130, 160, 255, 0.18);
  --text: #f4f7ff;
  --soft: #bac5de;
  --muted: #7786a7;
  --green: #22f2b7;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 30%),
    radial-gradient(circle at 84% 6%, color-mix(in srgb, var(--accent2) 18%, transparent), transparent 28%),
    linear-gradient(135deg, #050611 0%, #070713 54%, #03040a 100%);
  color: var(--text);
  font-family: Inter, "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(120, 150, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 150, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 8%, #000, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 8%, #000, transparent 76%);
}

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

.page { position: relative; z-index: 1; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
  padding: 0.85rem clamp(1rem, 4vw, 4.5rem);
  background: rgba(5, 6, 17, 0.76);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: max-content;
  font-weight: 900;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px var(--accent2));
}

.brand strong {
  display: block;
  font-family: "LEMON MILK", Inter, sans-serif;
  font-size: 0.95rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.brand span {
  display: block;
  color: var(--soft);
  font-size: 0.73rem;
  font-weight: 500;
}

.links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 0.86rem;
}

.links a {
  border-bottom: 1px solid transparent;
  padding: 0.4rem 0;
}

.links a:hover,
.links a.active {
  color: #fff;
  border-color: var(--accent2);
}

.product-menu {
  position: relative;
}

.product-menu-trigger {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 0.36rem;
  border: 0;
  background: transparent;
  color: var(--soft);
  cursor: pointer;
  font: inherit;
}

.product-menu-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.product-menu-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  width: min(720px, calc(100vw - 28px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  padding: 0.8rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(8, 9, 23, 0.96);
  box-shadow: 0 24px 70px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  backdrop-filter: blur(22px);
}

.product-menu:hover .product-menu-panel,
.product-menu:focus-within .product-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.product-menu-panel a {
  display: grid;
  gap: 0.15rem;
  padding: 0.78rem;
  border: 1px solid rgba(139,111,255,0.13);
  border-radius: 12px;
  background: rgba(255,255,255,0.035);
}

.product-menu-panel a:hover {
  border-color: color-mix(in srgb, var(--accent2) 38%, transparent);
  background: color-mix(in srgb, var(--accent2) 10%, transparent);
}

.product-menu-panel strong {
  color: #fff;
  font-size: 0.9rem;
}

.product-menu-panel span {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.35;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 0.9rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 900;
  border: 1px solid color-mix(in srgb, var(--accent2) 42%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 72%, #000), color-mix(in srgb, var(--accent2) 72%, #000));
  box-shadow: 0 0 32px color-mix(in srgb, var(--accent2) 20%, transparent);
}

.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 4vw, 2rem) 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.75fr);
  gap: clamp(1.2rem, 4vw, 3rem);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: max-content;
  margin-bottom: 1rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--accent2) 38%, transparent);
  color: #fff;
  background: color-mix(in srgb, var(--accent2) 11%, transparent);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

h1 {
  max-width: 780px;
  font-family: "LEMON MILK", Inter, sans-serif;
  font-size: clamp(2.7rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: 0;
  color: #fff;
}

h1 span {
  display: block;
  background: linear-gradient(110deg, #fff 0%, var(--accent2) 36%, var(--accent) 72%, #fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 690px;
  margin-top: 1rem;
  color: var(--soft);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: #fff;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.055);
}

.btn.primary {
  border-color: color-mix(in srgb, var(--accent2) 46%, transparent);
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 0 34px color-mix(in srgb, var(--accent2) 28%, transparent);
}

.status-card,
.feature,
.preview,
.step,
.seo-strip {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.012)), var(--panel);
  box-shadow: var(--shadow);
}

.status-card {
  padding: 1.2rem;
}

.status-grid {
  display: grid;
  gap: 0.75rem;
}

.status-item {
  padding: 0.95rem;
  border-radius: 14px;
  background: var(--panel2);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.status-item small {
  display: block;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.38rem;
}

.status-item strong {
  display: block;
  color: #fff;
  overflow-wrap: anywhere;
}

.main {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem) 4.5rem;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin: 3.2rem 0 1.1rem;
}

.kicker {
  color: var(--accent2);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  max-width: 760px;
  color: #fff;
  font-family: "LEMON MILK", Inter, sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 3.1rem);
  line-height: 1.08;
}

.section-head p {
  max-width: 460px;
  color: var(--soft);
}

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

.feature {
  min-height: 290px;
  padding: 1.2rem;
}

.feature h3 {
  color: #fff;
  font-size: 1.05rem;
  line-height: 1.2;
  margin-bottom: 0.55rem;
}

.feature p {
  color: var(--soft);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
}

.feature ul {
  list-style: none;
  display: grid;
  gap: 0.48rem;
}

.feature li {
  display: flex;
  gap: 0.52rem;
  color: var(--soft);
  font-size: 0.86rem;
}

.feature li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.58em;
  border-radius: 50%;
  background: var(--accent2);
  box-shadow: 0 0 8px var(--accent2);
  flex: 0 0 auto;
}

.preview {
  padding: 1rem;
  overflow: hidden;
}

.preview-grid {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 380px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 8, 19, 0.74);
}

.preview-side {
  padding: 0.9rem;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(10, 15, 30, 0.84);
}

.preview-side div {
  min-height: 40px;
  display: flex;
  align-items: center;
  padding: 0 0.7rem;
  margin-bottom: 0.45rem;
  border-radius: 11px;
  color: var(--soft);
  font-weight: 850;
  font-size: 0.86rem;
}

.preview-side .active {
  color: #fff;
  border: 1px solid color-mix(in srgb, var(--accent2) 38%, transparent);
  background: color-mix(in srgb, var(--accent2) 12%, transparent);
}

.preview-body {
  padding: 1rem;
}

.mock-row,
.mock-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.mock-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0 0.85rem;
  margin-bottom: 0.65rem;
  color: var(--soft);
}

.mock-row strong { color: #fff; }

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.mock-card {
  min-height: 112px;
  padding: 0.9rem;
}

.mock-card small {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.mock-card strong {
  color: #fff;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step {
  min-height: 170px;
  padding: 1rem;
  box-shadow: none;
}

.step small {
  display: block;
  color: var(--accent2);
  font-family: "LEMON MILK", Inter, sans-serif;
  margin-bottom: 0.7rem;
}

.step h3 {
  color: #fff;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--soft);
  font-size: 0.88rem;
}

.seo-strip {
  margin-top: 3rem;
  padding: 1.4rem;
  box-shadow: none;
}

.seo-strip h2 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.seo-strip p {
  color: var(--soft);
  max-width: 920px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.4rem clamp(1rem, 4vw, 4.5rem);
  color: var(--muted);
  border-top: 1px solid var(--border);
}

@media (max-width: 980px) {
  .hero,
  .features,
  .pipeline {
    grid-template-columns: 1fr 1fr;
  }

  .hero-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .product-menu-panel {
    left: 0;
    right: auto;
    grid-template-columns: 1fr;
  }

  .hero,
  .features,
  .pipeline,
  .preview-grid,
  .mock-grid,
  .section-head {
    grid-template-columns: 1fr;
  }

  .section-head {
    display: grid;
  }

  .preview-side {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .preview-side div {
    min-width: max-content;
  }
}
