:root {
  --page-bg: #ffffff;
  --surface: #f5f5f5;
  --shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  --text: #161616;
  --muted: #bfc3c8;
  --blue: #008ce1;
  --red: #e04c3f;
  --line: #d3d7db;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Arimo", sans-serif;
}

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

p {
  margin: 0;
}

.page-shell {
  margin: 0 auto;
  max-width: 1600px;
  padding: 340px 100px 140px;
}

.section-block {
  margin-bottom: 36px;
}

.section-heading-wrap {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.section-heading-wrap.compact {
  margin-bottom: 18px;
}

.section-heading {
  margin: 0;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.4;
  text-transform: uppercase;
}

.section-heading span {
  color: var(--red);
}

.section-rule {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--line);
}

.section-rule::before,
.section-rule::after {
  position: absolute;
  top: -1px;
  left: 0;
  height: 3px;
  content: "";
}

.section-rule::before {
  width: 52px;
  background: var(--red);
}

.section-rule::after {
  left: 56px;
  width: 10px;
  background: var(--blue);
}

.insights-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 446px;
  align-items: start;
  gap: 30px;
}

.insights-quote {
  margin-bottom: 22px;
  color: var(--red);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.4;
  text-align: center;
}

.copy-stack {
  display: grid;
  gap: 22px;
}

.copy-stack p,
.panel-copy p,
.value-card p,
.advantages-intro,
.advantage-item {
  font-size: 16px;
  letter-spacing: 0.16px;
  line-height: 1.75;
}

.copy-stack p {
  text-align: justify;
}

.insights-media {
  align-self: start;
  min-height: 480px;
}

.insights-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.split-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 31px;
  margin-bottom: 30px;
}

.info-panel,
.value-card {
  background: var(--surface);
  box-shadow: var(--shadow);
}

.info-panel {
  padding: 30px 30px 34px;
  min-height: 300px;
}

.panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 26px;
  align-items: start;
}

.panel-copy {
  display: grid;
  gap: 28px;
}

.panel-illustration {
  position: relative;
  min-height: 170px;
  margin-top: 2px;
  overflow: hidden;
}

.panel-illustration::before,
.panel-illustration::after {
  position: absolute;
  content: "";
  background: #111;
  opacity: 0.18;
}

.panel-illustration::before {
  top: 22px;
  left: 12px;
  width: 144px;
  height: 1px;
  box-shadow: 18px 24px 0 rgba(17, 17, 17, 0.18), 36px 58px 0 rgba(17, 17, 17, 0.18),
    0 104px 0 rgba(17, 17, 17, 0.18), 62px 126px 0 rgba(17, 17, 17, 0.18);
}

.panel-illustration::after {
  right: 10px;
  bottom: 28px;
  width: 86px;
  height: 1px;
  box-shadow: -30px -64px 0 rgba(17, 17, 17, 0.18), -66px -22px 0 rgba(17, 17, 17, 0.18);
}

.vision-illustration .orb,
.vision-illustration .ring,
.mission-illustration .target,
.mission-illustration .arrow,
.mission-illustration .accent {
  position: absolute;
  display: block;
}

.vision-illustration .orb-lg {
  top: 18px;
  right: 84px;
  width: 68px;
  height: 68px;
  border: 3px solid var(--blue);
  border-radius: 999px;
}

.vision-illustration .orb-lg::before {
  position: absolute;
  inset: 14px;
  border: 3px solid #111;
  border-radius: 999px;
  content: "";
}

.vision-illustration .orb-sm {
  right: 32px;
  top: 74px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: -44px -20px 0 var(--red), 38px -18px 0 #ffffff, 38px -18px 0 2px #111;
}

.vision-illustration .ring {
  right: 106px;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background:
    conic-gradient(var(--blue) 0 36%, transparent 36% 50%, var(--red) 50% 72%, transparent 72% 100%),
    #fff;
  border: 2px solid #111;
}

.vision-illustration .bar {
  height: 2px;
  background: #111;
}

.vision-illustration .bar-a {
  top: 58px;
  right: 0;
  width: 94px;
}

.vision-illustration .bar-b {
  right: 16px;
  bottom: 18px;
  width: 112px;
}

.mission-illustration .target {
  top: 12px;
  right: 58px;
  width: 86px;
  height: 86px;
  border: 6px solid var(--blue);
  border-radius: 999px;
}

.mission-illustration .target-mid {
  top: 24px;
  right: 70px;
  width: 62px;
  height: 62px;
  border-width: 6px;
  border-color: var(--red);
}

.mission-illustration .target-core {
  top: 42px;
  right: 88px;
  width: 26px;
  height: 26px;
  border: 0;
  background: var(--red);
}

.mission-illustration .arrow {
  top: 52px;
  right: 32px;
  width: 96px;
  height: 6px;
  background: var(--red);
  transform: rotate(-2deg);
}

.mission-illustration .arrow::before,
.mission-illustration .arrow::after {
  position: absolute;
  top: -6px;
  right: -4px;
  width: 0;
  height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid var(--red);
  content: "";
}

.mission-illustration .accent {
  border-radius: 999px;
}

.mission-illustration .accent-a {
  right: 12px;
  bottom: 18px;
  width: 24px;
  height: 24px;
  background: var(--blue);
  box-shadow: -50px 0 0 0 #fff, -50px 0 0 2px #111;
}

.mission-illustration .accent-b {
  top: 22px;
  left: 22px;
  width: 14px;
  height: 14px;
  background: var(--blue);
  box-shadow: 112px 82px 0 0 var(--red), 145px 18px 0 0 #fff, 145px 18px 0 2px #111;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 53px;
}

.value-card {
  min-height: 250px;
  padding: 30px;
}

.card-title {
  margin-bottom: 10px;
}

.compact-rule {
  margin-bottom: 26px;
}

.wide-rule {
  max-width: 835px;
}

.advantages-intro {
  margin-bottom: 30px;
  max-width: 1396px;
  text-align: justify;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px 64px;
  max-width: 935px;
}

.advantage-item {
  position: relative;
  padding-left: 28px;
}

.advantage-item::before {
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), #25c6ff);
  box-shadow: inset 0 0 0 3px #ffffff;
  content: "";
}

.sr-only-heading {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1280px) {
  .page-shell {
    padding: 180px 32px 96px;
  }

  .insights-grid,
  .split-panels,
  .values-grid,
  .advantages-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-media {
    min-height: auto;
  }

  .advantages-list {
    max-width: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    padding: 96px 20px 72px;
  }

  .insights-grid,
  .split-panels,
  .values-grid,
  .advantages-list,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .insights-quote {
    text-align: left;
  }

  .panel-illustration {
    min-height: 140px;
  }

  .value-card,
  .info-panel {
    padding: 24px;
  }
}