
:root {
  --navy: #07182f;
  --navy-2: #0b2447;
  --blue: #087cff;
  --blue-2: #22a6ff;
  --silver: #d9e2ec;
  --ink: #142033;
  --muted: #607086;
  --surface: #ffffff;
  --surface-2: #f4f8fc;
  --line: #dbe5ef;
  --success: #15a36d;
  --shadow: 0 18px 45px rgba(7, 24, 47, .12);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 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(--ink);
  background: var(--surface);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(219,229,239,.8);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  display: grid;
  place-items: center;
  color: white;
  font-size: .85rem;
  box-shadow: 0 10px 26px rgba(8,124,255,.25);
}
.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 21px;
  height: 2px;
  background: var(--navy);
  display: block;
  position: relative;
  transition: .25s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

.site-nav {
  position: fixed;
  inset: 74px 16px auto 16px;
  padding: 18px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  display: none;
}
.site-nav.open { display: block; }
.site-nav a {
  display: block;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 650;
}
.site-nav a:hover,
.site-nav a.active {
  background: var(--surface-2);
  color: var(--blue);
}
.nav-cta {
  margin-top: 8px;
  text-align: center;
  background: var(--blue) !important;
  color: #fff !important;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 12%, rgba(34,166,255,.28), transparent 30%),
    linear-gradient(145deg, var(--navy), #0b2f62 68%, #0f4d89);
  color: white;
  padding: 78px 0 66px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -150px;
  bottom: -190px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255,255,255,.04), 0 0 0 96px rgba(255,255,255,.025);
}
.hero-grid {
  display: grid;
  gap: 38px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.17);
}
.hero h1, .page-hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.35rem, 8vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.hero p {
  margin: 0;
  max-width: 650px;
  color: #d8e6f5;
  font-size: 1.05rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.btn {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 750;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: white;
  box-shadow: 0 12px 28px rgba(8,124,255,.28);
}
.btn-light {
  color: white;
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.07);
}
.btn-outline {
  border-color: var(--line);
  background: white;
  color: var(--navy);
}
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 26px;
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 22px 80px rgba(0,0,0,.22);
}
.dashboard-preview {
  background: white;
  color: var(--ink);
  border-radius: 18px;
  overflow: hidden;
}
.preview-top {
  padding: 16px;
  background: #f8fbff;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.preview-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
.preview-body { padding: 18px; }
.metric-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.metric {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px;
}
.metric strong { display: block; font-size: 1.35rem; color: var(--navy); }
.metric small { color: var(--muted); }
.chart-bars {
  height: 120px;
  display: flex;
  align-items: end;
  gap: 8px;
  margin-top: 18px;
  padding: 0 4px;
}
.chart-bars span {
  flex: 1;
  min-width: 10px;
  border-radius: 7px 7px 2px 2px;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
}

.section { padding: 76px 0; }
.section-muted { background: var(--surface-2); }
.section-dark { background: var(--navy); color: white; }
.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}
.kicker {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.section h2 {
  margin: 8px 0 10px;
  font-size: clamp(1.9rem, 5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.section-head p { margin: 0; color: var(--muted); }
.section-dark .section-head p { color: #bdcce0; }

.grid-3, .grid-2, .stats-grid, .feature-grid, .contact-grid {
  display: grid;
  gap: 18px;
}
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 35px rgba(7,24,47,.05);
}
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eaf5ff, #dceeff);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 16px;
}
.card h3 { margin: 0 0 8px; color: var(--navy); }
.card p { margin: 0; color: var(--muted); }
.stat {
  padding: 22px;
  border-radius: 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}
.stat strong { display: block; font-size: 2rem; }
.stat span { color: #b9cbe0; }

.split {
  display: grid;
  gap: 30px;
  align-items: center;
}
.image-panel {
  min-height: 360px;
  border-radius: 26px;
  background:
    linear-gradient(rgba(7,24,47,.16), rgba(7,24,47,.55)),
    url("../images/ultra-magnus-logo-board.png") center/cover no-repeat;
  box-shadow: var(--shadow);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 13px;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7f8f1;
  color: var(--success);
  font-weight: 900;
}

.page-hero {
  background:
    radial-gradient(circle at 88% 15%, rgba(34,166,255,.24), transparent 27%),
    linear-gradient(145deg, var(--navy), #0a376c);
  color: white;
  padding: 68px 0 54px;
}
.page-hero p { max-width: 720px; color: #cfdef0; font-size: 1.05rem; }

.timeline {
  display: grid;
  gap: 18px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
}
.timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--blue), var(--navy));
  font-weight: 800;
}
.timeline-item h3 { margin: 0 0 5px; }
.timeline-item p { margin: 0; color: var(--muted); }

.service-band {
  display: grid;
  gap: 14px;
}
.service-row {
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.service-row h3 { margin: 0 0 6px; }
.service-row p { margin: 0; color: var(--muted); }

.form-card {
  background: white;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 16px; }
label { font-weight: 700; font-size: .9rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  margin-top: 7px;
  background: #fbfdff;
  color: var(--ink);
}
textarea { min-height: 140px; resize: vertical; }

.contact-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: white;
}
.contact-card strong { display: block; margin-bottom: 4px; color: var(--navy); }
.contact-card span { color: var(--muted); }

.cta {
  background:
    radial-gradient(circle at 85% 20%, rgba(34,166,255,.22), transparent 30%),
    linear-gradient(145deg, var(--navy), #0b3566);
  color: white;
  border-radius: 28px;
  padding: 34px 24px;
  display: grid;
  gap: 22px;
  align-items: center;
}
.cta h2 { margin: 0; }
.cta p { margin: 8px 0 0; color: #c6d7ea; }

.site-footer {
  background: #041020;
  color: #c2cfdd;
  padding: 56px 0 24px;
}
.footer-grid { display: grid; gap: 28px; }
.footer-title { color: white; font-weight: 800; margin-bottom: 12px; }
.footer-links a { display: block; margin-bottom: 8px; }
.footer-bottom {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .9rem;
  color: #8293a8;
}

@media (min-width: 760px) {
  .container { width: min(100% - 48px, var(--container)); }
  .hero { padding: 100px 0 88px; }
  .hero-grid { grid-template-columns: 1.08fr .92fr; }
  .grid-2, .split, .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 1fr); }
  .cta { grid-template-columns: 1fr auto; padding: 42px; }
  .metric-row { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    inset: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 4px;
    background: transparent;
  }
  .site-nav a { padding: 10px 12px; }
  .nav-cta { margin: 0 0 0 8px; padding-inline: 17px !important; }
}
/*==========================================================
    ULTRA MAGNUS FOOTER
==========================================================*/

.site-footer {
    background: linear-gradient(180deg,#07182f 0%,#041020 100%);
    color: #d9e2ec;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    gap: 40px;
}

.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    color: rgba(255,255,255,.70);
    margin-bottom: 10px;
    transition: .3s;
}

    .footer-links a:hover {
        color: #22a6ff;
        padding-left: 6px;
    }

.site-footer p {
    color: rgba(255,255,255,.72);
    line-height: 1.8;
}

/*----------------------------------
    Copyright
-----------------------------------*/

.footer-copyright {
    margin-top: 50px;
    background: #03101d;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-copyright-inner {
    width: min(calc(100% - 60px),1180px);
    margin: auto;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.copyright-text {
    color: rgba(255,255,255,.60);
    font-size: .9rem;
    margin: 0;
}

/*----------------------------------
    Social Icons
-----------------------------------*/

.copyright-social-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .copyright-social-icons a {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(34,166,255,.20);
        color: #22a6ff;
        font-size: 17px;
        transition: .35s;
    }

        .copyright-social-icons a:hover {
            background: linear-gradient(135deg,#087cff,#22a6ff);
            border-color: #22a6ff;
            color: #ffffff;
            transform: translateY(-4px);
            box-shadow: 0 10px 25px rgba(8,124,255,.35);
        }

/*----------------------------------
    Mobile
-----------------------------------*/

@media(max-width:768px) {

    .footer-copyright-inner {
        flex-direction: column;
        justify-content: center;
        padding: 25px 0;
        text-align: center;
    }

    .copyright-social-icons {
        justify-content: center;
    }
}