@import url("vendor/magic-unicorn-ui/magic-unicorn.css");

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(3.8rem, 9vw, 7.9rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero__lede {
  max-width: 680px;
  margin: 1.5rem 0 0;
  color: var(--mu-color-muted);
  font-size: clamp(1.12rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero__visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--mu-color-border);
  border-radius: var(--mu-radius-lg);
  background:
    radial-gradient(circle at center, rgba(182, 110, 255, 0.23), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.16), transparent 24%),
    rgba(255, 255, 255, 0.035);
  overflow: hidden;
  box-shadow: var(--mu-shadow-glow);
}

.hero__visual::before,
.hero__visual::after {
  position: absolute;
  inset: 17%;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero__visual::after {
  inset: 29%;
  border-color: rgba(0, 212, 255, 0.22);
}

.core {
  position: absolute;
  inset: 50% auto auto 50%;
  display: grid;
  width: 180px;
  min-height: 150px;
  place-items: center;
  padding: 1rem;
  border: 1px solid var(--mu-color-border-strong);
  border-radius: var(--mu-radius-md);
  background: rgba(7, 5, 11, 0.86);
  text-align: center;
  transform: translate(-50%, -50%);
}

.core strong {
  margin-top: 0.6rem;
}

.core span:last-child {
  color: var(--mu-color-muted);
  font-size: 0.88rem;
}

.orbit {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--mu-color-border);
  border-radius: var(--mu-radius-sm);
  background: rgba(16, 11, 24, 0.9);
  color: var(--mu-color-text);
  font-weight: 900;
}

.orbit--platform {
  top: 13%;
  left: 12%;
}

.orbit--ops {
  top: 19%;
  right: 12%;
}

.orbit--creative {
  bottom: 17%;
  left: 16%;
}

.orbit--discovery {
  right: 13%;
  bottom: 14%;
}

.mu-throughlines {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.mu-card h3,
.steps h3 {
  margin: 1rem 0 0.6rem;
  font-size: 1.35rem;
}

.mu-card p,
.steps p,
.faq p,
.footer-grid p {
  color: var(--mu-color-muted);
  line-height: 1.62;
}

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

.pillar-card {
  display: flex;
  flex-direction: column;
}

.text-link {
  margin-top: auto;
  color: var(--mu-color-accent);
  font-weight: 900;
  text-decoration: none;
}

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

.steps article {
  padding: 1.2rem 0;
  border-top: 1px solid var(--mu-color-border-strong);
}

.steps span {
  color: var(--mu-color-accent);
  font-family: var(--mu-font-mono);
  font-weight: 900;
}

.ops-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.ops-list a {
  min-height: 42px;
  padding: 0.72rem 0.9rem;
  border: 1px solid var(--mu-color-border);
  border-radius: var(--mu-radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--mu-color-muted);
  font-weight: 800;
  text-decoration: none;
}

.ops-list a:hover {
  border-color: var(--mu-color-border-strong);
  color: var(--mu-color-text);
}

.faq details {
  padding: 1.1rem 0;
  border-top: 1px solid var(--mu-color-border);
}

.faq summary {
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 900;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  gap: 2rem;
}

.footer-grid div {
  display: grid;
  align-content: start;
  gap: 0.65rem;
}

.footer-grid strong {
  color: var(--mu-color-text);
}

@media (max-width: 1040px) {
  .hero__grid,
  .pillar-grid,
  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero__visual {
    min-height: 440px;
  }
}

@media (max-width: 620px) {
  html,
  body {
    overflow-x: hidden;
  }

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

  .mu-nav__links a {
    min-width: 0;
  }

  .mu-nav__links .mu-button {
    grid-column: span 2;
    width: 100%;
  }

  .hero h1 {
    font-size: 3.3rem;
  }

  .hero__visual {
    min-height: 500px;
  }

  .orbit {
    max-width: 145px;
    text-align: center;
  }

  .orbit--platform,
  .orbit--creative {
    left: 7%;
  }

  .orbit--ops,
  .orbit--discovery {
    right: 7%;
  }
}

/* v2 (2026-07-09): product catalog cards, badges, shipping log, real mark */
img.mu-mark { width: 28px; height: 28px; border-radius: 8px; object-fit: contain; display: inline-block; }

.pillar-label {
  margin: 2.2rem 0 0.9rem;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mu-color-muted, #b3b3b3);
}

.product-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 0.95rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--mu-color-border, rgba(255,255,255,0.12));
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
  transition: border-color 160ms ease, transform 160ms ease, background 160ms ease;
}
.product-card:hover {
  border-color: rgba(182, 110, 255, 0.65);
  background: rgba(182, 110, 255, 0.06);
  transform: translateY(-2px);
}
.product-card__top { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; }
.product-card h3 { margin: 0; font-size: 1.06rem; }
.product-card p { margin: 0; color: var(--mu-color-muted, #b3b3b3); font-size: 0.9rem; line-height: 1.45; }
.product-card__cta { margin-top: auto; font-size: 0.85rem; font-weight: 800; color: #b66eff; }

.badge {
  flex-shrink: 0;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  border: 1px solid var(--mu-color-border, rgba(255,255,255,0.16));
}
.badge--live { border-color: rgba(74, 222, 128, 0.6); color: #4ade80; background: rgba(74, 222, 128, 0.08); }
.badge--dogfood { border-color: rgba(182, 110, 255, 0.55); color: #d3b1ff; background: rgba(182, 110, 255, 0.08); }
.badge--staging { border-color: rgba(0, 212, 255, 0.5); color: #7fe7ff; background: rgba(0, 212, 255, 0.07); }
.badge--build { border-color: rgba(250, 204, 21, 0.5); color: #fde68a; background: rgba(250, 204, 21, 0.06); }
.badge--planned { border-color: rgba(255, 255, 255, 0.2); color: #b3b3b3; background: rgba(255, 255, 255, 0.03); }

.whats-new { margin: 0; padding: 0; list-style: none; display: grid; gap: 0.6rem; }
.whats-new li {
  padding: 0.75rem 1rem;
  border: 1px solid var(--mu-color-border, rgba(255,255,255,0.12));
  border-left: 3px solid #b66eff;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

html { scroll-behavior: smooth; }

.mu-nav--active {
  color: var(--mu-color-text, #fff) !important;
  border-bottom-color: var(--mu-color-accent, #b66eff) !important;
}

.mu-nav--active[href] {
  text-shadow: 0 0 12px rgba(182, 110, 255, 0.5);
}
