:root {
  --ink: #111820;
  --muted: #4b5f6d;
  --line: rgba(17, 24, 32, 0.11);
  --panel: rgba(255, 255, 255, 0.92);
  --soft: #eef6f4;
  --blue: #176b89;
  --mint: #77c7b2;
  --rose: #f3d5ec;
  --deep: #0b1219;
  --shadow: 0 24px 70px rgba(17, 24, 32, 0.12);
  --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:
    radial-gradient(circle at 82% 12%, rgba(119, 199, 178, 0.14), transparent 34%),
    radial-gradient(circle at 16% 72%, rgba(243, 213, 236, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbfa 0%, #eef6f4 100%);
}

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: rgba(248, 252, 251, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 70px;
  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: 18px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  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: 620px;
  padding: 76px 0 62px;
  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: 20px;
  font-size: clamp(2.25rem, 4.6vw, 4.7rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.25vw, 2.15rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.lead {
  max-width: 740px;
  color: #253746;
  font-size: clamp(1rem, 1.22vw, 1.12rem);
}

.hero-refined {
  min-height: auto;
  padding: clamp(54px, 8vw, 96px) 0 clamp(48px, 7vw, 84px);
  background: linear-gradient(180deg, rgba(248, 252, 251, 0.96), rgba(239, 247, 246, 0.86));
}

.hero-refined-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1 {
  max-width: 640px;
}

.hero-copy .lead {
  max-width: 600px;
}

.hero-brand-panel {
  position: relative;
  margin: 0;
  border: 1px solid rgba(17, 24, 32, 0.12);
  background: #fff;
  box-shadow: 0 26px 80px rgba(17, 24, 32, 0.13);
  overflow: hidden;
}

.hero-brand-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  pointer-events: none;
}

.hero-brand-panel img {
  width: 100%;
  aspect-ratio: 2.42 / 1;
  object-fit: cover;
}

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

.hero-card img {
  width: 112px;
  margin-bottom: 22px;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(17, 24, 32, 0.14), 0 12px 28px rgba(17, 24, 32, 0.16);
}

.hero-card h2,
.card h2 {
  font-size: clamp(1.12rem, 1.55vw, 1.42rem);
  line-height: 1.16;
}

.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: clamp(58px, 7vw, 88px) 0;
  border-top: 1px solid var(--line);
}

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

.service-menu-section {
  background: rgba(255, 255, 255, 0.68);
}

.section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 34px;
}

.section-split h2 {
  max-width: 620px;
  margin-bottom: 0;
}

.section-split > p {
  margin: 0;
  color: #314755;
}

.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);
}

.service-list {
  display: grid;
  border-top: 1px solid rgba(17, 24, 32, 0.16);
}

.service-row {
  display: grid;
  grid-template-columns: 64px minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid rgba(17, 24, 32, 0.12);
  text-decoration: none;
}

.service-row span {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.service-row strong {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.2;
}

.service-row p {
  margin: 0;
  color: #405666;
}

.service-row:hover strong {
  color: var(--blue);
}

.accent-row {
  padding-inline: 18px;
  background: linear-gradient(90deg, rgba(23, 107, 137, 0.08), rgba(119, 199, 178, 0.1));
}

.process-band {
  background: #0d171f;
  color: #f5fbfa;
}

.process-band .eyebrow {
  color: #8fd6f0;
}

.process-band .section-split > p,
.process-band p {
  color: rgba(245, 251, 250, 0.76);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.process-steps article {
  min-height: 220px;
  padding: 28px;
  background: #101d26;
}

.process-steps span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  border: 1px solid rgba(143, 214, 240, 0.42);
  color: #8fd6f0;
  font-weight: 950;
}

.process-steps h3 {
  color: #fff;
}

.audio-bridge {
  background: rgba(255, 255, 255, 0.74);
}

.audio-bridge-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.audio-bridge h2 {
  max-width: 560px;
}

.audio-bridge p {
  max-width: 720px;
  color: #314755;
}

.final-start {
  background:
    linear-gradient(90deg, rgba(11, 18, 25, 0.86), rgba(11, 18, 25, 0.44)),
    url("/assets/moonlions-ai-media-banner-branded.jpg") center / cover;
}

.final-panel {
  max-width: 690px;
  color: #fff;
}

.final-panel h2 {
  font-size: clamp(2rem, 3.6vw, 3.45rem);
}

.final-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.final-panel .button.secondary {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.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: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 950;
  letter-spacing: 0;
}

.price.note-price {
  max-width: 15rem;
  color: #173247;
  font-size: clamp(1.18rem, 1.55vw, 1.42rem);
  line-height: 1.2;
}

.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.jpg") center / cover;
  text-align: center;
  box-shadow: var(--shadow);
}

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

.page-hero h1 {
  font-size: clamp(1.85rem, 2.85vw, 2.85rem);
  line-height: 1.06;
}

.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,
  .hero-refined-grid,
  .grid.four,
  .grid.three,
  .grid.two,
  .proof-strip,
  .section-split,
  .process-steps,
  .audio-bridge-inner {
    grid-template-columns: 1fr;
  }

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

  .hero-refined {
    padding-top: 38px;
  }

  .hero-brand-panel {
    order: -1;
  }

  .service-row {
    grid-template-columns: 42px 1fr;
    gap: 12px 18px;
  }

  .service-row p {
    grid-column: 2;
  }

  .audio-bridge-inner .actions {
    align-items: stretch;
  }

  .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.68rem;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3.05rem);
    line-height: 1.02;
  }

  .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;
  }

  .service-row {
    padding: 20px 0;
  }

  .process-steps article {
    min-height: auto;
  }
}
