/* MolinaVerse Corporate Landing v0.2 */
/* Enterprise Light · Control · Growth · Operational Systems */

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --surface-blue: #eef6ff;

  --text: #0f172a;
  --text-strong: #07111f;
  --muted: #475569;
  --muted-light: #64748b;

  --primary: #0f4c81;
  --primary-bright: #2563eb;
  --primary-deep: #0b355c;
  --primary-soft: #dbeafe;

  --accent: #f97316;
  --accent-soft: #ffedd5;

  --success: #16a34a;
  --success-soft: #dcfce7;

  --border: #e2e8f0;
  --border-strong: #cbd5e1;
  --shadow: rgba(15, 23, 42, 0.10);
  --shadow-strong: rgba(15, 23, 42, 0.18);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.10), transparent 32rem),
    radial-gradient(circle at 90% 10%, rgba(249, 115, 22, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #ffffff 100%);
  line-height: 1.6;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.section {
  padding: 92px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.86);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.06em;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-bright));
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 1.06rem;
  letter-spacing: -0.03em;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.76rem;
  margin-top: 3px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.main-nav a {
  color: var(--muted);
  font-weight: 750;
  font-size: 0.92rem;
  padding: 10px 13px;
  border-radius: 999px;
  transition: 180ms ease;
}

.main-nav a:hover {
  color: var(--primary-deep);
  background: var(--primary-soft);
}

.main-nav .nav-cta {
  color: #ffffff;
  background: var(--primary-deep);
  box-shadow: 0 14px 30px rgba(15, 76, 129, 0.20);
}

.main-nav .nav-cta:hover {
  color: #ffffff;
  background: var(--primary-bright);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.hero {
  padding: 104px 0 72px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(15, 76, 129, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 129, 0.055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, black 0%, transparent 74%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 64px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--primary-deep);
  font-weight: 950;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pulse-dot {
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.12);
}

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

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--text-strong);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: -0.08em;
}

.hero-lead {
  max-width: 710px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 42px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 900;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-bright));
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.24);
}

.btn-secondary {
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--border-strong);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 680px;
}

.hero-proof div {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.hero-proof strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text);
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
}

.grid-lines {
  position: absolute;
  inset: 28px;
  border-radius: 40px;
  background:
    linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: rotate(-4deg);
  z-index: 0;
  mask-image: radial-gradient(circle, black 26%, transparent 72%);
}

.orbit-card {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  padding: 26px;
  border: 1px solid rgba(203, 213, 225, 0.88);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
  box-shadow:
    0 34px 80px rgba(15, 23, 42, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.system-topline {
  display: flex;
  gap: 7px;
  margin-bottom: 24px;
}

.system-topline span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: var(--border-strong);
}

.system-topline span:nth-child(1) {
  background: var(--accent);
}

.system-topline span:nth-child(2) {
  background: var(--primary-bright);
}

.system-topline span:nth-child(3) {
  background: var(--success);
}

.orbit-card h2 {
  margin-bottom: 6px;
  color: var(--text-strong);
  font-size: 2rem;
  letter-spacing: -0.055em;
}

.orbit-card p {
  color: var(--muted);
  margin-bottom: 24px;
}

.metric-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.metric-grid div {
  padding: 18px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.metric-grid small {
  display: block;
  color: var(--muted-light);
  font-weight: 800;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.metric-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--primary-deep);
  font-size: 1.18rem;
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  border: 1px solid rgba(203, 213, 225, 0.9);
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.11);
  font-weight: 900;
}

.chip-1 { top: 68px; left: 10px; }
.chip-2 { top: 132px; right: 0; }
.chip-3 { bottom: 112px; left: 0; }
.chip-4 { right: 28px; bottom: 46px; }

.intro-band {
  padding: 54px 0;
}

.band-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 32px;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #ffffff, #eef6ff);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.08);
}

.band-grid h2 {
  margin: 8px 0 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.band-grid p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 0;
}

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

.section-heading.narrow {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.why-copy h2,
.founder-card h2,
.contact-grid h2,
.solutions-grid h2 {
  margin: 8px 0 14px;
  color: var(--text-strong);
  font-size: clamp(2.1rem, 4.8vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.section-heading p,
.why-copy p,
.founder-card p,
.contact-grid p,
.solutions-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.division-card,
.product-card,
.problem-card,
.capability-panel,
.contact-card,
.growth-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.07);
}

.division-card {
  padding: 22px;
  min-height: 256px;
  transition: 180ms ease;
}

.division-card:hover,
.product-card:hover,
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.11);
}

.card-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 15px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.division-card h3,
.product-card h3,
.problem-card h3,
.capability-panel h3,
.contact-card h3,
.growth-panel h3 {
  color: var(--text-strong);
  font-size: 1.24rem;
  line-height: 1.12;
  letter-spacing: -0.045em;
  margin-bottom: 10px;
}

.division-card p,
.product-card p,
.problem-card p,
.contact-card p,
.growth-panel p {
  color: var(--muted);
  margin-bottom: 0;
}

.featured-card {
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
}

.problems-section {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.75), rgba(255, 255, 255, 0.60));
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.problem-card {
  padding: 28px;
  transition: 180ms ease;
}

.problem-tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: #9a3412;
  background: var(--accent-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 950;
}

.problem-card h3 {
  font-size: 1.62rem;
  margin-bottom: 14px;
}

.solution-box {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: 20px;
  background: linear-gradient(135deg, #ffffff, #eef6ff);
}

.solution-box strong {
  display: block;
  color: var(--primary-deep);
  margin-bottom: 5px;
}

.solution-box span {
  display: block;
  color: var(--muted);
}

.solutions-section {
  background: #ffffff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.check-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 999px;
  color: #166534;
  background: var(--success-soft);
  border: 1px solid rgba(22, 163, 74, 0.18);
  font-weight: 850;
  font-size: 0.93rem;
}

.growth-panel {
  padding: 32px;
  background: linear-gradient(135deg, #0f4c81 0%, #2563eb 58%, #60a5fa 100%);
  color: #ffffff;
  box-shadow: 0 34px 80px rgba(37, 99, 235, 0.22);
}

.growth-panel h3 {
  color: #ffffff;
  font-size: 2rem;
}

.growth-panel p {
  color: rgba(255, 255, 255, 0.86);
}

.growth-points {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.growth-points div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.growth-points strong {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  color: var(--primary-deep);
  background: #ffffff;
  font-weight: 950;
}

.growth-points span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.products-section {
  background: linear-gradient(180deg, rgba(241, 245, 249, 0.65), rgba(255, 255, 255, 0.55));
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.product-card {
  grid-column: span 2;
  padding: 28px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
  transition: 180ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -72px;
  top: -72px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.08);
}

.product-primary,
.product-future {
  grid-column: span 3;
}

.product-primary {
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 100%);
  border-color: rgba(37, 99, 235, 0.22);
}

.product-future {
  background: linear-gradient(135deg, #ffffff 0%, #fff7ed 100%);
  border-color: rgba(249, 115, 22, 0.22);
}

.product-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--primary-soft);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 950;
}

.product-future .product-label {
  color: #9a3412;
  background: var(--accent-soft);
}

.product-card h3 {
  font-size: 1.8rem;
}

.product-card ul {
  padding-left: 18px;
  margin: 22px 0 0;
  color: var(--muted);
}

.product-card li {
  margin: 7px 0;
}

.why-section {
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.capability-panel {
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.capability-panel h3 {
  margin-bottom: 18px;
  font-size: 1.7rem;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.capability-list span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--primary-deep);
  background: #ffffff;
  font-weight: 850;
  font-size: 0.93rem;
}

.founder-section {
  padding-top: 56px;
}

.founder-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 28px;
  padding: 42px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #0f4c81 0%, #2563eb 52%, #60a5fa 100%);
  color: #ffffff;
  box-shadow: 0 34px 80px rgba(37, 99, 235, 0.22);
}

.founder-card .section-kicker,
.founder-card h2,
.founder-card p {
  color: #ffffff;
}

.founder-card p {
  color: rgba(255, 255, 255, 0.86);
}

.founder-mark {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 950;
  font-size: 1.6rem;
  letter-spacing: -0.08em;
}

.founder-name {
  margin: 26px 0 0;
}

.contact-section {
  padding-bottom: 76px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 430px;
  gap: 34px;
  align-items: start;
}

.contact-card {
  padding: 30px;
}

.contact-card h3 {
  font-size: 1.9rem;
  margin-bottom: 4px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin: 24px 0;
}

.contact-lines a {
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: 15px;
  color: var(--primary-deep);
  background: var(--surface-soft);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.full-btn {
  width: 100%;
}

.site-footer {
  padding: 44px 0 22px;
  color: #ffffff;
  background: #0f172a;
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.site-footer strong {
  font-size: 1.12rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.68);
  margin: 8px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  padding: 7px 0;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 1080px) {
  .hero-grid,
  .band-grid,
  .why-grid,
  .contact-grid,
  .solutions-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 500px;
  }

  .ecosystem-grid,
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card,
  .product-primary,
  .product-future {
    grid-column: span 3;
  }
}

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

  .section {
    padding: 68px 0;
  }

  .header-inner {
    height: 72px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 14px;
  }

  .hero {
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 460px;
  }

  .floating-chip {
    font-size: 0.86rem;
  }

  .ecosystem-grid,
  .problem-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card,
  .product-primary,
  .product-future {
    grid-column: span 1;
  }

  .founder-card {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .footer-grid {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-text small {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .chip-1 { left: 0; }
  .chip-2 { right: 0; }
  .chip-3 { left: 0; }
  .chip-4 { right: 0; }

  .band-grid {
    padding: 24px;
  }
}
