/* ===============================
   GLOBAL BACKGROUND
================================ */

html {
    min-height: 100%;
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at 72% 18%, rgba(18, 58, 140, 0.32) 0%, rgba(18, 58, 140, 0.16) 20%, rgba(18, 58, 140, 0.06) 32%, rgba(0, 0, 0, 0) 48%),
        radial-gradient(circle at 18% 50%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.16) 26%, rgba(0, 0, 0, 0) 52%),
        linear-gradient(90deg, #01040d 0%, #031022 42%, #071a38 72%, #0b2148 100%);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

body {
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: transparent;
    color: #e9f0ff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}


/* ===============================
   PAGE WRAPPER
================================ */

.sp-home {
    position: relative;
}

.sp-home-inner {
    max-width: 1300px;
    margin: auto;
    padding: 60px 20px;
}


/* ===============================
   HERO SECTION
================================ */

.sp-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 120px;
}

.sp-hero-left {
    flex: 1;
    min-width: 0;
}

.sp-hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 0;
}

.sp-hero-logo-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.sp-hero-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}


/* HERO TOP BAR */

.sp-hero-topbar {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.sp-hero-badge {
    background: rgba(255, 255, 255, 0.06);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    white-space: nowrap;
}

.sp-hero-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    white-space: nowrap;
}

.sp-status-dot {
    width: 8px;
    height: 8px;
    background: #38ff91;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(56, 255, 145, 0.75);
    flex-shrink: 0;
}


/* HERO TEXT */

.sp-hero-title {
    font-size: 70px;
    line-height: 1.02;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.sp-line {
    display: block;
}

.sp-line-white {
    color: #ffffff;
}

.sp-line-accent {
    color: #ffb000;
}


/* HERO DESCRIPTION */

.sp-hero-description {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 30px;
}


/* HERO BUTTONS */

.sp-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.sp-btn-primary {
    background: #ffb000;
    color: #111111;
    box-shadow: 0 10px 24px rgba(255, 176, 0, 0.18);
}

.sp-btn-primary:hover {
    transform: translateY(-2px);
    background: #ffbe2e;
}

.sp-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.sp-btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}


/* ===============================
   SERVICES SECTION
================================ */

.sp-services {
    margin-top: 80px;
    margin-bottom: 40px;
}

.sp-services-heading {
    text-align: center;
    margin-bottom: 50px;
}

.sp-services-heading h2 {
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 10px;
    color: #ffffff;
}

.sp-services-heading p {
    opacity: 0.8;
    max-width: 600px;
    margin: auto;
    line-height: 1.7;
}


/* SERVICES GRID */

.sp-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}


/* SERVICE CARD */

.sp-service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 30px;
    border-radius: 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.sp-service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ffffff;
}

.sp-service-card p {
    opacity: 0.9;
    margin-bottom: 15px;
    line-height: 1.7;
}

.sp-service-actions {
    margin-top: 20px;
}


/* LIST */

.sp-service-list {
    margin: 0 0 20px 0;
    padding-left: 18px;
}

.sp-service-list li {
    margin-bottom: 8px;
    opacity: 0.9;
    line-height: 1.6;
}


/* ===============================
   MOBILE
================================ */

@media (max-width: 900px) {
    html {
        background:
            radial-gradient(circle at 70% 16%, rgba(18, 58, 140, 0.24) 0%, rgba(18, 58, 140, 0.10) 26%, rgba(0, 0, 0, 0) 48%),
            linear-gradient(180deg, #01040d 0%, #031022 50%, #071a38 100%);
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }

    .sp-home-inner {
        padding: 40px 18px;
    }

    .sp-hero {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        margin-bottom: 80px;
    }

    .sp-hero-topbar {
        justify-content: center;
    }

    .sp-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .sp-hero-actions {
        justify-content: center;
    }

    .sp-service-grid {
        grid-template-columns: 1fr;
    }

    .sp-hero-title {
        font-size: 48px;
    }

    .sp-services-heading h2 {
        font-size: 34px;
    }

    .sp-hero-logo {
        max-width: 220px;
    }
}

@media (max-width: 600px) {
    .sp-home-inner {
        padding: 32px 14px;
    }

    .sp-hero-title {
        font-size: 38px;
    }

    .sp-hero-description {
        font-size: 16px;
    }

    .sp-btn {
        width: 100%;
    }

    .sp-hero-actions {
        flex-direction: column;
    }

    .sp-service-card {
        padding: 24px 20px;
    }

    .sp-services-heading h2 {
        font-size: 30px;
    }
}

/* ===============================
   STEELPOINT FOOTER
================================ */

.sp-footer {
  margin-top: 120px;
  padding: 40px 20px;
}

.sp-footer-inner {
  max-width: 1200px;
  margin: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* top row */

.sp-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* brand */

.sp-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sp-footer-logo {
  width: 40px;
}

.sp-footer-brand h3 {
  margin: 0;
  font-size: 16px;
}

.sp-footer-brand p {
  margin: 0;
  font-size: 13px;
  opacity: 0.7;
}

/* nav links */

.sp-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.sp-footer-links a {
  color: #c9d4ff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.sp-footer-links a:hover {
  color: white;
}

/* bottom bar */

.sp-footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);

  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.6;
}