:root {
  --sea-primary: #0b5ed7;
  --sea-primary-dark: #084298;
  --sea-primary-soft: #e8f1ff;
  --sea-navy: #071f43;
  --sea-slate: #5f6f89;
  --sea-surface: #ffffff;
  --sea-soft: #f4f8fd;
  --sea-border: #dce7f5;
  --sea-shadow: 0 18px 45px rgba(7, 31, 67, 0.12);
  --sea-radius: 22px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  color: var(--sea-navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  background: var(--sea-surface);
}

a {
  text-decoration: none;
}

.section-pad {
  padding: 100px 0;
}

.bg-soft {
  background: var(--sea-soft);
}

.bg-navy {
  background:
    radial-gradient(circle at top right, rgba(13, 110, 253, 0.35), transparent 32%),
    linear-gradient(135deg, #071f43 0%, #0a2e61 100%);
}

.text-slate {
  color: var(--sea-slate);
}

.site-navbar {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 231, 245, 0.75);
  backdrop-filter: blur(16px);
  transition: box-shadow 0.2s ease, padding 0.2s ease;
}

.site-navbar.navbar-scrolled {
  box-shadow: 0 10px 30px rgba(7, 31, 67, 0.08);
}

.navbar {
  padding: 16px 0;
}

.nav-link {
  color: #2d405f;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sea-primary);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sea-navy);
  font-weight: 800;
}

.brand:hover {
  color: var(--sea-navy);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(11, 94, 215, 0.28);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-title {
  font-size: 1.05rem;
}

.brand-subtitle {
  color: var(--sea-slate);
  font-size: 0.72rem;
  font-weight: 600;
}

.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  background:
    radial-gradient(circle at 85% 12%, rgba(13, 202, 240, 0.18), transparent 32%),
    radial-gradient(circle at 8% 22%, rgba(11, 94, 215, 0.16), transparent 30%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 78%);
}

.hero-section::after {
  position: absolute;
  right: -150px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  content: "";
  background: rgba(11, 94, 215, 0.08);
  border-radius: 50%;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sea-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow-light {
  color: #88d7ff;
}

.section-title {
  margin: 14px 0 18px;
  color: var(--sea-navy);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.section-text {
  color: var(--sea-slate);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.hero-metrics div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--sea-border);
  border-radius: 18px;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  color: var(--sea-primary);
  font-size: 1.15rem;
}

.hero-metrics span {
  color: var(--sea-slate);
  font-size: 0.9rem;
}

.dashboard-card {
  position: relative;
  z-index: 1;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--sea-border);
  border-radius: 30px;
  box-shadow: var(--sea-shadow);
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  font-weight: 800;
}

.status-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  background: #20c997;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(32, 201, 151, 0.15);
}

.mini-card {
  min-height: 210px;
  padding: 22px;
  background: #f8fbff;
  border: 1px solid var(--sea-border);
  border-radius: var(--sea-radius);
}

.mini-card i {
  color: var(--sea-primary);
  font-size: 1.65rem;
}

.mini-card h3 {
  margin: 18px 0 8px;
  color: var(--sea-navy);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.3;
}

.mini-card p {
  margin: 0;
  color: var(--sea-slate);
  font-size: 0.94rem;
  line-height: 1.6;
}

.info-panel {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 18px;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--sea-navy), var(--sea-primary));
  border-radius: var(--sea-radius);
}

.info-panel i {
  color: #7dd3fc;
  font-size: 1.45rem;
}

.info-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.feature-card {
  height: 100%;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--sea-border);
  border-radius: var(--sea-radius);
  box-shadow: 0 12px 32px rgba(7, 31, 67, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(11, 94, 215, 0.35);
  box-shadow: var(--sea-shadow);
  transform: translateY(-6px);
}

.feature-card i {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--sea-primary);
  font-size: 1.55rem;
  background: var(--sea-primary-soft);
  border-radius: 16px;
}

.feature-card h3 {
  margin: 22px 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--sea-slate);
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.role-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  color: #fff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.role-pill i {
  color: #88d7ff;
  font-size: 1.35rem;
}

.domain-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--sea-border);
  border-radius: 26px;
  box-shadow: 0 12px 36px rgba(7, 31, 67, 0.07);
}

.domain-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 150px;
  padding: 22px;
  text-align: center;
  border-right: 1px solid var(--sea-border);
}

.domain-item:last-child {
  border-right: 0;
}

.domain-item i {
  color: var(--sea-primary);
  font-size: 2rem;
}

.domain-item span {
  font-weight: 800;
}

.benefit-list {
  display: grid;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--sea-border);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(7, 31, 67, 0.05);
}

.benefit-item i {
  color: #198754;
  font-size: 1.35rem;
}

.cta-section {
  padding: 90px 0;
  background: linear-gradient(180deg, var(--sea-soft), #fff);
}

.cta-card {
  padding: clamp(40px, 7vw, 80px);
  background:
    radial-gradient(circle at 18% 16%, rgba(125, 211, 252, 0.28), transparent 28%),
    linear-gradient(135deg, var(--sea-primary-dark), var(--sea-navy));
  border-radius: 34px;
  box-shadow: var(--sea-shadow);
}

.site-footer {
  padding: 56px 0;
  background: #05152e;
}

.brand-footer,
.brand-footer:hover {
  color: #fff;
}

.brand-footer .brand-subtitle,
.footer-text {
  color: rgba(255, 255, 255, 0.65);
}

.footer-title {
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
}

.footer-link {
  color: #90d8ff;
  font-weight: 700;
}

.footer-link:hover {
  color: #fff;
}

.policy-hero {
  padding-top: 170px;
  background:
    radial-gradient(circle at 50% 10%, rgba(11, 94, 215, 0.16), transparent 34%),
    linear-gradient(180deg, #f7fbff 0%, #ffffff 90%);
}

.policy-content {
  padding-top: 0;
}

.policy-card {
  padding: clamp(28px, 5vw, 60px);
  background: #fff;
  border: 1px solid var(--sea-border);
  border-radius: 30px;
  box-shadow: var(--sea-shadow);
}

.policy-updated {
  color: var(--sea-slate);
}

.policy-section {
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--sea-border);
}

.policy-section h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 800;
}

.policy-section p {
  margin-bottom: 0;
  color: var(--sea-slate);
}

.contact-box {
  display: flex;
  gap: 16px;
  padding: 20px;
  margin-top: 18px;
  background: var(--sea-soft);
  border: 1px solid var(--sea-border);
  border-radius: 18px;
}

.contact-box i {
  color: var(--sea-primary);
  font-size: 1.6rem;
}

.contact-box span,
.contact-box strong {
  display: block;
}

@media (max-width: 1199.98px) {
  .domain-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .domain-item:nth-child(3) {
    border-right: 0;
  }

  .domain-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--sea-border);
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 78px 0;
  }

  .hero-section,
  .policy-hero {
    min-height: auto;
    padding-top: 130px;
  }

  .navbar-collapse {
    padding: 18px 0;
  }

  .role-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .brand-subtitle {
    display: none;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .domain-grid {
    grid-template-columns: 1fr;
  }

  .domain-item {
    border-right: 0;
    border-bottom: 1px solid var(--sea-border);
  }

  .domain-item:last-child {
    border-bottom: 0;
  }

  .dashboard-card {
    padding: 20px;
    border-radius: 24px;
  }

  .policy-card {
    border-radius: 24px;
  }
}

@media (max-width: 575.98px) {
  .section-pad {
    padding: 64px 0;
  }

  .hero-section,
  .policy-hero {
    padding-top: 116px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .display-4 {
    font-size: 2.45rem;
  }
}
