:root {
  --bg: #f4f1ed;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #163767;
  --text-dark: #1b1b1b;
  --muted: #6f7785;
  --line: rgba(22, 55, 103, 0.12);
  --blue: #2d64b3;
  --blue-2: #4b7eaf;
  --orange: #ea9730;
  --gradient: linear-gradient(90deg, #ea9730 0%, #4b7eaf 100%);
  --shadow-soft: 0 10px 30px rgba(44, 56, 80, 0.08);
  --shadow-card: 0 22px 60px rgba(36, 45, 66, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 10% 15%, rgba(234, 151, 48, 0.10), transparent 22%),
    radial-gradient(circle at 85% 18%, rgba(75, 126, 175, 0.12), transparent 24%),
    radial-gradient(circle at 50% 75%, rgba(45, 100, 179, 0.05), transparent 28%),
    var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(244, 241, 237, 0.75);
  border-bottom: 1px solid rgba(22, 55, 103, 0.08);
}

.site-header__inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand__mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.72));
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  padding: 6px;
  object-fit: contain;
}

.brand__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue);
}

.brand__subtitle {
  font-size: 13px;
  color: var(--blue);
  opacity: 0.92;
}

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

.nav a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.nav a:hover {
  opacity: 0.82;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

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

.btn--primary {
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 14px 34px rgba(66, 96, 144, 0.20);
}

.btn--secondary {
  background: rgba(255,255,255,0.72);
  border-color: rgba(22, 55, 103, 0.12);
  color: var(--text);
}

.btn--light {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.3);
}

.hero {
  position: relative;
  padding: 58px 0 34px;
}

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

.hero__content {
  max-width: 620px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(22, 55, 103, 0.08);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 20px;
}

.hero h1 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 620px;
}

.hero p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(22, 55, 103, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.hero-card {
  position: relative;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.75);
  box-shadow: var(--shadow-card);
  border-radius: 32px;
  padding: 24px;
  overflow: hidden;
  backdrop-filter: blur(18px);
  min-height: 0;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(75, 126, 175, 0.28), transparent 68%);
  pointer-events: none;
}

.hero-card::after {
  content: "";
  position: absolute;
  bottom: -90px;
  left: -70px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(234, 151, 48, 0.24), transparent 68%);
  pointer-events: none;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.8;
  animation: float 8s ease-in-out infinite;
}

.floating-orb--1 {
  width: 74px;
  height: 74px;
  top: 60px;
  right: 36px;
  background: rgba(75, 126, 175, 0.22);
}

.floating-orb--2 {
  width: 58px;
  height: 58px;
  bottom: 90px;
  right: 60px;
  background: rgba(234, 151, 48, 0.24);
  animation-delay: 1.2s;
}

.floating-orb--3 {
  width: 34px;
  height: 34px;
  top: 160px;
  left: 26px;
  background: rgba(45, 100, 179, 0.18);
  animation-delay: 2.4s;
}

.dashboard {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(22, 55, 103, 0.08);
}

.dashboard__title {
  font-weight: 700;
  color: var(--text);
  font-size: 15px;
}

.dashboard__subtitle {
  font-size: 13px;
  color: var(--muted);
}

.dashboard__status {
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(234,151,48,0.14), rgba(75,126,175,0.14));
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.dashboard__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 14px;
  align-items: stretch;
}

.glass-card {
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(22, 55, 103, 0.08);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
}

.glass-card h3,
.glass-card h4 {
  margin: 0 0 8px;
  color: var(--text);
}

.glass-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.glass-card--wide {
  grid-column: 1 / 2;
}

.dashboard__grid > .glass-card:nth-child(4) {
  grid-column: 2 / 3;
}

.metric {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.metric__value {
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.metric__label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}

.mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 74px;
}

.mini-bars span {
  width: 10px;
  border-radius: 999px;
  background: var(--gradient);
  animation: pulseBars 2.6s ease-in-out infinite;
  transform-origin: bottom center;
}

.mini-bars span:nth-child(1) { height: 26px; animation-delay: 0s; }
.mini-bars span:nth-child(2) { height: 48px; animation-delay: 0.2s; }
.mini-bars span:nth-child(3) { height: 34px; animation-delay: 0.4s; }
.mini-bars span:nth-child(4) { height: 58px; animation-delay: 0.6s; }
.mini-bars span:nth-child(5) { height: 40px; animation-delay: 0.8s; }

.activity-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.activity-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  background: rgba(244, 241, 237, 0.8);
  border-radius: 16px;
  min-height: 118px;
}

.activity-item strong {
  display: block;
  font-size: 13px;
  color: var(--text);
}

.activity-item span {
  font-size: 11px;
  color: var(--muted);
}

.pill {
  min-width: 64px;
  text-align: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: rgba(75, 126, 175, 0.12);
  color: var(--blue);
}

.section {
  padding: 42px 0;
}

.section__head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section__head h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}

.section__head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.info-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(22, 55, 103, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 126, 175, 0.12), transparent 68%);
  pointer-events: none;
}

.info-card__icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(234,151,48,0.16), rgba(75,126,175,0.16));
  color: var(--blue);
  font-size: 24px;
  margin-bottom: 18px;
}

.info-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.15;
  color: var(--text);
}

.info-card p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 15px;
}

.info-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}

.info-card li + li {
  margin-top: 8px;
}

.showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.showcase-panel,
.showcase-list {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(22, 55, 103, 0.08);
  border-radius: 30px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.showcase-panel h3,
.showcase-list h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 26px;
}

.showcase-panel p,
.showcase-list p {
  margin: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.timeline__dot {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #fff;
  background: var(--gradient);
  box-shadow: 0 10px 20px rgba(66,96,144,0.18);
}

.timeline__content {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(244, 241, 237, 0.76);
}

.timeline__content strong {
  display: block;
  color: var(--text);
  margin-bottom: 4px;
}

.timeline__content span {
  color: var(--muted);
  font-size: 14px;
}

.cta-band {
  padding: 46px 0 30px;
}

.cta-band__box {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 34px;
  background: linear-gradient(135deg, #1f4f92, #2c6cbc 55%, #d8943e 140%);
  color: #fff;
  box-shadow: 0 26px 70px rgba(36, 52, 80, 0.18);
}

.cta-band__box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -80px;
  top: -90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

.cta-band__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.cta-band h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.cta-band p {
  margin: 0;
  max-width: 720px;
  color: rgba(255,255,255,0.84);
}

.contact-details {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

.contact-details a {
  color: inherit;
  text-decoration: underline;
}

.footer {
  padding: 40px 0 60px;
}

.footer__box {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(22, 55, 103, 0.08);
  color: var(--muted);
  font-size: 14px;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

@keyframes pulseBars {
  0%, 100% { transform: scaleY(1); opacity: 0.95; }
  50% { transform: scaleY(1.18); opacity: 1; }
}

@media (max-width: 1180px) {
  .activity-list {
    grid-template-columns: 1fr;
  }

  .activity-item {
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  .hero__grid,
  .showcase,
  .cta-band__grid,
  .cards-3 {
    grid-template-columns: 1fr;
  }

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

  .glass-card--wide,
  .dashboard__grid > .glass-card:nth-child(4) {
    grid-column: auto;
  }

  .hero-card {
    min-height: auto;
  }

  .activity-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .site-header__inner {
    min-height: 76px;
  }

  .hero-card,
  .info-card,
  .showcase-panel,
  .showcase-list,
  .cta-band__box {
    padding: 22px;
  }

  .activity-list {
    grid-template-columns: 1fr;
  }
}
