:root {
  --ink: #111820;
  --muted: #4b5f6d;
  --line: rgba(17, 24, 32, 0.14);
  --panel: rgba(255, 255, 255, 0.86);
  --soft: #edf5f3;
  --blue: #176b89;
  --mint: #77c7b2;
  --rose: #f3d5ec;
  --shadow: 0 18px 45px rgba(17, 24, 32, 0.14);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  background:
    linear-gradient(rgba(246, 251, 250, 0.91), rgba(246, 251, 250, 0.94)),
    url("/assets/moonlions-ai-media-hero.png") center top / cover fixed;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.74), rgba(248, 255, 250, 0.72)),
    url("/assets/moonlions-ai-media-header-strip.png") center / cover;
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-orb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 999px;
  overflow: hidden;
  background: #0e1822;
  box-shadow: 0 0 0 1px rgba(17, 24, 32, 0.16), 0 12px 26px rgba(17, 24, 32, 0.16);
}

.brand-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: grid;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-text strong {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 950;
}

.brand-text em {
  color: var(--blue);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue);
}

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

.hero {
  min-height: 720px;
  padding: 92px 0 70px;
  display: grid;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 54px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 22px;
  font-size: clamp(2.65rem, 5vw, 5.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  line-height: 1.25;
}

.lead {
  max-width: 740px;
  color: #253746;
  font-size: 1.22rem;
}

.hero-card {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 130px;
  margin-bottom: 22px;
}

.trust {
  margin-top: 20px;
  color: var(--blue);
  font-weight: 900;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid #0e1822;
  border-radius: 4px;
  background: #0e1822;
  color: #fff;
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.78);
  color: #0e1822;
}

.button.text {
  border-color: transparent;
  background: transparent;
  color: var(--blue);
}

.section {
  padding: 78px 0;
  border-top: 1px solid var(--line);
}

.section.soft {
  background: rgba(255, 255, 255, 0.48);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

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

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

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

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

.card {
  min-height: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(17, 24, 32, 0.06);
}

.card .tag {
  display: block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.price {
  margin: 16px 0 14px;
  font-size: 2.15rem;
  font-weight: 950;
  letter-spacing: 0;
}

.list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: #314755;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.proof-strip div {
  padding: 22px;
  border-right: 1px solid var(--line);
  font-weight: 900;
}

.proof-strip div:last-child {
  border-right: 0;
}

.cta-band {
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(239, 250, 246, 0.82)),
    url("/assets/moonlions-ai-media-banner.png") center / cover;
  text-align: center;
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 92px 0 68px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.38);
}

.site-footer {
  padding: 34px 0;
  background: #0f1820;
  color: #fff;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.82rem;
}

.footer-links a {
  text-decoration: none;
}

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

  .hero-grid,
  .grid.four,
  .grid.three,
  .grid.two,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 620px) {
  .container,
  .nav {
    width: min(100% - 28px, var(--max));
  }

  .nav-links {
    gap: 12px;
    font-size: 0.7rem;
  }

  .brand-orb {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .brand-text strong {
    font-size: 0.78rem;
  }

  .brand-text em {
    font-size: 0.64rem;
  }

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

  .button {
    width: 100%;
  }

  .cta-band {
    padding: 30px 20px;
  }
}
