* {
  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: #0f172a;
  background: #ffffff;
}

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

.container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo span:last-child {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.logo-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 16px;
  background: #020617;
  color: #ffffff;
  font-size: 14px;
}

.logo-mark::after {
  content: "";
  position: absolute;
  top: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #2563eb;
}

.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
  color: #334155;
}

.nav-links a:hover {
  color: #1d4ed8;
}

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

.link-button {
  font-weight: 700;
  font-size: 14px;
  color: #334155;
}

.dark-button,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  background: #020617;
  color: #ffffff;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
}

.dark-button:hover {
  background: #1d4ed8;
}

.primary-button {
  background: #1d4ed8;
  box-shadow: 0 18px 40px rgba(29, 78, 216, 0.18);
}

.primary-button:hover {
  background: #1e40af;
}

.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #bfdbfe;
  background: #ffffff;
  color: #1d4ed8;
  border-radius: 14px;
  padding: 14px 20px;
  font-weight: 800;
  font-size: 14px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #eff6ff 58%, #f1f5f9 100%);
}

.hero-glow {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(37, 99, 235, 0.16), transparent 60%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 88px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dbeafe;
  background: #ffffff;
  color: #1d4ed8;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
}

h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  margin: 24px 0 0;
  font-weight: 950;
}

h2 {
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 10px 0 0;
  font-weight: 950;
}

.hero-text,
.section-text {
  font-size: 18px;
  line-height: 1.75;
  color: #475569;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.portrait-card {
  overflow: hidden;
  border-radius: 32px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.2);
}

.portrait-bg {
  position: relative;
  aspect-ratio: 4 / 3;
  background-image: url("images/strt.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.portrait-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 23, 42, 0.15),
    rgba(15, 23, 42, 0.55)
  );
}

.portrait-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(2, 6, 23, 0.5), transparent);
}

.insight-card {
  position: absolute;
  right: -24px;
  bottom: 32px;
  max-width: 320px;
  border-radius: 28px;
  background: #020617;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.28);
}

.insight-card h3 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 20px;
}

.insight-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
}

.insight-row span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #2563eb;
  font-weight: 900;
}

.insight-row p {
  margin: 0;
  color: #f1f5f9;
  font-size: 14px;
  font-weight: 700;
}

.platform {
  background: rgba(239, 246, 255, 0.55);
  padding: 84px 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1d4ed8;
  margin: 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 36px;
}

.feature-card,
.stakeholder-grid article {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.feature-icon,
.stakeholder-grid article span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 950;
  margin-bottom: 18px;
}

.step {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #94a3b8;
  font-weight: 900;
  margin: 0;
}

.feature-card h3,
.stakeholder-grid h3,
.ethics-cards h3 {
  margin: 8px 0;
  font-size: 18px;
}

.feature-card p,
.stakeholder-grid p,
.ethics-cards p {
  color: #475569;
  line-height: 1.65;
  font-size: 14px;
}

.dashboard {
  display: flex;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  background: #f8fafc;
  padding: 12px;
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.14);
}

.dashboard-sidebar {
  width: 80px;
  background: #020617;
  color: #ffffff;
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.dashboard-sidebar span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 900;
}

.dashboard-sidebar .sidebar-logo,
.dashboard-sidebar span:first-child {
  background: #2563eb;
}

.dashboard-main {
  flex: 1;
  padding: 16px;
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dashboard-top p {
  margin: 0;
  color: #2563eb;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  font-weight: 800;
}

.dashboard-top h3 {
  margin: 4px 0 0;
}

.dashboard-top > span {
  background: #ffffff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  color: #64748b;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.stat-grid div,
.panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.stat-grid strong {
  display: block;
  font-size: 21px;
}

.stat-grid span {
  font-size: 12px;
  color: #64748b;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 16px;
  margin-top: 16px;
}

.map-panel {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  background: #ffffff;
}

.map-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.8;
  background:
    linear-gradient(12deg, transparent 48%, #e2e8f0 49%, #e2e8f0 50%, transparent 51%),
    linear-gradient(-8deg, transparent 50%, #e2e8f0 51%, transparent 52%);
}

.pin {
  position: absolute;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.18);
  border: 8px solid rgba(255, 255, 255, 0.75);
}

.pin-1 {
  left: 18%;
  top: 32%;
  background: #fee2e2;
  color: #b91c1c;
}

.pin-2 {
  left: 43%;
  top: 58%;
  background: #dbeafe;
  color: #1d4ed8;
}

.pin-3 {
  left: 65%;
  top: 35%;
  background: #d1fae5;
  color: #047857;
}

.pin-4 {
  left: 77%;
  top: 68%;
  background: #fef3c7;
  color: #b45309;
}

.priority-box {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(2, 6, 23, 0.92);
  color: #ffffff;
  padding: 14px;
  border-radius: 18px;
}

.priority-box small {
  display: block;
  color: #cbd5e1;
}

.side-panels {
  display: grid;
  gap: 16px;
}

.panel h4 {
  margin: 0 0 12px;
}

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

.bars i {
  flex: 1;
  border-radius: 999px;
  background: #3b82f6;
}

.panel label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
  margin: 10px 0 3px;
}

progress {
  width: 100%;
  height: 8px;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
}

progress::-webkit-progress-bar {
  background: #f1f5f9;
}

progress::-webkit-progress-value {
  background: #2563eb;
}

.serve {
  padding: 84px 0;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 38px;
}

.stakeholder-grid article {
  transition: 0.2s;
}

.stakeholder-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(30, 64, 175, 0.1);
}

.stakeholder-grid a {
  display: inline-flex;
  margin-top: 14px;
  color: #1d4ed8;
  font-size: 14px;
  font-weight: 900;
}

.ethics {
  background: #020617;
  color: #ffffff;
  padding: 84px 0;
}

.ethics-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.6fr;
  gap: 50px;
}

.eyebrow.light {
  color: #93c5fd;
}

.ethics p {
  color: #cbd5e1;
  line-height: 1.75;
}

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

.ethics-cards article {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  padding: 24px;
}

.ethics-cards span {
  color: #bfdbfe;
  font-weight: 950;
  font-size: 22px;
}

.partner {
  background: linear-gradient(135deg, #ffffff, #eff6ff);
  padding: 84px 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.partner p {
  font-size: 18px;
  line-height: 1.75;
  color: #475569;
}

.commitments {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  padding: 32px;
  box-shadow: 0 26px 60px rgba(30, 64, 175, 0.1);
}

.commitments > p {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
  color: #64748b;
  margin: 0 0 20px;
}

.commitments div {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: calc(50% - 8px);
  margin: 4px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
  font-weight: 800;
}

.commitments span {
  color: #1d4ed8;
}

footer {
  background: #020617;
  color: #ffffff;
  padding: 52px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1fr;
  gap: 40px;
}

.footer-logo .logo-mark {
  background: #ffffff;
  color: #020617;
}

footer p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

footer h3 {
  margin-top: 0;
}

footer form {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 4px;
}

footer input {
  min-width: 0;
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  color: #ffffff;
  padding: 0 12px;
}

footer button {
  border: 0;
  border-radius: 10px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 900;
  padding: 10px 14px;
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .hero-grid,
  .platform-grid,
  .partner-grid,
  .ethics-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-content {
    grid-template-columns: 1fr;
  }

  .stakeholder-grid,
  .ethics-cards {
    grid-template-columns: 1fr 1fr;
  }

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

  .insight-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: -20px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .hero-grid,
  .platform {
    padding: 56px 0;
  }

  .workflow-grid,
  .stakeholder-grid,
  .ethics-cards,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .commitments div {
    width: 100%;
  }

  h1 {
    font-size: 42px;
  }

  .hero-actions a {
    width: 100%;
  }
}