:root {
  --bg: #f3f5f8;
  --surface: #ffffff;
  --ink: #0e1726;
  --muted: #4a5568;
  --line: #d5dde8;
  --navy: #0b1f3a;
  --navy-2: #143456;
  --accent: #0d6e8c;
  --accent-soft: #e7f3f7;
  --font: "Schibsted Grotesk", "Segoe UI", sans-serif;
  --display: "Source Serif 4", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  font-size: 1.02rem;
  line-height: 1.55;
  background: var(--bg);
  min-height: 100vh;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.25rem, 4vw, 3rem);
  background: var(--navy);
  color: #e8eef6;
  position: sticky;
  top: 0;
  z-index: 20;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  justify-content: flex-end;
}
nav a {
  color: rgba(232, 238, 246, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
nav a:hover { color: #fff; }

.hero {
  background:
    linear-gradient(135deg, rgba(13, 110, 140, 0.18), transparent 42%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #eef3f8;
  padding: clamp(3.5rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}

.hero-inner {
  max-width: 52rem;
  margin: 0 auto;
}

h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
}

.tagline {
  margin: 1.2rem 0 0;
  max-width: 38rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  color: rgba(232, 238, 246, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  min-height: 2.85rem;
  padding: 0 1.2rem;
  background: #fff;
  color: var(--navy);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  border-radius: 2px;
}
.btn:hover { background: #e8eef6; }

.text-link {
  color: rgba(232, 238, 246, 0.9);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(232, 238, 246, 0.35);
}
.text-link:hover { color: #fff; }

.strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  max-width: 68rem;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 0;
  transform: translateY(-1.1rem);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.06);
}
.strip p {
  margin: 0;
  padding: 1rem 0.85rem;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--navy);
  border-right: 1px solid var(--line);
}
.strip p:last-child { border-right: 0; }

.block {
  max-width: 68rem;
  margin: 0 auto;
  padding: clamp(2.75rem, 6vw, 4.25rem) clamp(1.25rem, 4vw, 3rem);
}

.block.tint {
  background: var(--surface);
  border-block: 1px solid var(--line);
  max-width: none;
  padding-inline: max(clamp(1.25rem, 4vw, 3rem), calc((100% - 68rem) / 2 + clamp(1.25rem, 4vw, 3rem)));
}

.block-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

h2 {
  margin: 0 0 0.7rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.block-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.platform-grid article {
  background: var(--surface);
  padding: 1.45rem 1.35rem 1.55rem;
}

.platform-grid h3 {
  margin: 0 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
}

.platform-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.solution-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
}

.solution-list li {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}
.solution-list li:last-child { border-bottom: 1px solid var(--line); }
.solution-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.facts {
  width: 100%;
  max-width: 44rem;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.facts th,
.facts td {
  text-align: left;
  vertical-align: top;
  padding: 0.85rem 0.8rem 0.85rem 0;
  border-top: 1px solid var(--line);
}
.facts th {
  width: 10rem;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.9rem;
}
.facts td { font-weight: 600; }

.due-diligence {
  margin: 1.5rem 0 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}
.due-diligence a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.due-diligence a:hover { text-decoration: underline; }

.contact .mail {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 600;
  text-decoration: none;
}
.contact .mail:hover { color: var(--accent); }

.addr {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

footer {
  background: var(--navy);
  color: rgba(232, 238, 246, 0.7);
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem);
  font-size: 0.88rem;
}
.footer-inner {
  max-width: 68rem;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.footer-inner span:first-child {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.03em;
}

@media (max-width: 900px) {
  .strip {
    grid-template-columns: 1fr 1fr;
    transform: none;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }
  .strip p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    padding-inline: 1.1rem;
  }
  .platform-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .strip { grid-template-columns: 1fr; }
  .facts th { width: 7.5rem; }
  nav { gap: 0.75rem; }
}
