

.Page-container {
  width: min(90%, var(--shell-width));
  margin: 0 auto;
}

.Page-shell {
  position: relative;
}

.Page-main {
  display: block;
}


.Header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--edge-hairline);
  --mm-bg: #ffffff;
  --mm-text: #0f172a;
  --mm-primary: #2563eb;
  --mm-overlay-bg: rgba(11, 18, 32, 0.55);
}

.Header-bar {
  width: min(90%, var(--shell-width));
  margin: 0 auto;
  height: var(--bar-height);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.Header-brand {
  display: flex;
  align-items: center;
  gap: 0.618rem;
  color: var(--content-strong);
  font-family: var(--type-display);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
}

.Header-brand:hover {
  text-decoration: none;
}

.Header-mark {
  width: 2rem;
  height: 2rem;
}

.Header-nav {
  margin-left: auto;
  font-size: 0.9375rem;
  font-weight: 700;
}

.Header-navList {
  display: flex;
  align-items: center;
}

.Header-navLink {
  color: var(--content-muted);
  letter-spacing: -0.01em;
}

.Header-navLink:hover {
  color: var(--action-primary);
  text-decoration: none;
}

.Header-phone {
  font-family: var(--type-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--content-strong);
  white-space: nowrap;
}

.Header-toggle {
  margin-left: auto;
}

.Header-toggle span {
  border-radius: var(--radius-pill);
}


.Hero {
  padding: 3rem 1rem;
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-image: url('/images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-color: var(--surface-sunken);
}

.Hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 18, 32, 0.72) 0%, rgba(11, 18, 32, 0.28) 52%, rgba(56, 189, 248, 0.16) 100%);
}

.Hero-box {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  background: var(--surface-base);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  padding: 4rem;
}

.Hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: max(1.618rem, 2vw);
  align-items: start;
}

.Hero-copy {
  max-width: 600px;
}

.Hero-kicker {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--action-primary);
  margin-bottom: var(--space-1);
}

.Hero-lede {
  font-size: 1.1875rem;
  color: var(--content-muted);
}

.Hero-shot {
  margin: var(--space-2) 0;
  aspect-ratio: 1 / 1;
  max-width: 21rem;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--surface-sunken);
}

.Hero-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.Section {
  background: var(--surface-base);
}

.Section--tinted {
  background: var(--surface-raised);
}

.Section--sunken {
  background: var(--surface-sunken);
}

.Section-head {
  max-width: 46rem;
  margin-bottom: var(--space-4);
}

.Section-eyebrow {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--action-primary);
  margin-bottom: var(--space-1);
}

.Section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.Section-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}

.Section-media {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-box);
  overflow: hidden;
  background: var(--surface-base);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
}

.Section-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.Section--solutions,
.Section--commonInquiries {
  background: var(--surface-base);
}

.Section--investment {
  background: var(--surface-raised);
}

.Section--inquiries {
  background: var(--surface-sunken);
}


.Divider {
  line-height: 0;
}

.Divider svg {
  display: block;
  width: 100%;
  height: 80px;
  fill: var(--surface-raised);
}

.Divider--toBase svg {
  fill: var(--surface-base);
}

.Divider--toSunken svg {
  fill: var(--surface-sunken);
}


.Footer {
  background: var(--surface-raised);
  color: var(--content-muted);
  padding: 3rem 1rem 1.5rem;
  border-top: 1px solid var(--edge-hairline);
}

.Footer-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  width: min(90%, var(--shell-width));
  margin: 0 auto;
}

.Footer-column h4 {
  color: var(--content-strong);
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.Footer-list li {
  font-size: 0.9375rem;
  padding: 0.22rem 0;
}

.Footer-link {
  color: var(--content-muted);
}

.Footer-link:hover {
  color: var(--action-primary);
}

.Footer-brand {
  grid-column: span 2;
}

.Footer-mark {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.618rem;
}

.Footer-note {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--content-faint);
}

.Footer-base {
  width: min(90%, var(--shell-width));
  margin: var(--space-3) auto 0;
  padding-top: var(--space-2);
  border-top: 1px solid var(--edge-hairline);
  display: flex;
  flex-wrap: wrap;
  gap: 0.618rem;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--content-faint);
}

.Footer-disclaimer {
  width: min(90%, var(--shell-width));
  margin: var(--space-2) auto 0;
  font-size: 0.8125rem;
  line-height: 1.7;
  color: var(--content-faint);
}


.BottomNav {
  display: none;
}

.Header-close {
  font-size: 1.7rem;
  line-height: 1;
  color: var(--content-muted);
}

.Header-close:hover {
  color: var(--action-primary);
}
