*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: 'Google Sans Flex Local';
  src: url('../GoogleSansFlex.ttf') format('truetype');
  font-weight: 100 1000;
}

:root {
  --wght: 400;
  --wdth: 100;
  --opsz: 14;
  --GRAD: 0;
  --slnt: 0;
  --ROND: 0;
}

* {
  font-variation-settings:
    "wght" var(--wght),
    "wdth" var(--wdth),
    "opsz" var(--opsz),
    "GRAD" var(--GRAD),
    "slnt" var(--slnt),
    "ROND" var(--ROND);
}

html, body {
  font-family: "Google Sans Flex Local", -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #1c1e24;
}

body {
  margin: 0;
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.card-label {
  padding-top: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #94a3b8;
  opacity: 0.7;
}

.card-label.right {
  align-self: flex-end;
  text-align: right;
}

.hero-card {
  width: 100%;
  height: 100dvh;
  background: #000;
  position: relative;
  overflow: hidden;
}

.hero-card .card-image {
  width: 60%;
  align-items: center;
}

.hero-card .card-image img {
  height: auto;
  max-height: 100%;
}

.network-card {
  width: 100%;
  height: 750px;
  background: #efefef;
  position: relative;
  overflow: hidden;
}

.outcome-card {
  width: 100%;
  height: 750px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.network-card .card-label,
.outcome-card .card-label {
  color: #1c1e24;
  opacity: 0.5;
}

.network-card .card-hero-text,
.outcome-card .card-hero-text {
  color: #1c1e24;
}

.card-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  background: inherit;
  display: flex;
  justify-content: center;
}

.card-image.right {
  left: auto;
  right: 0;
}

.card-image img {
  display: block;
  width: auto;
  height: 100%;
  will-change: transform;
  transform-origin: top center;
}



.card-hero-text {
  max-width: 520px;
  font-size: 44px;
  line-height: 1.1;
  font-weight: 700;
  color: #f1f5f9;
  font-family: "Google Sans Flex Local", sans-serif;
  margin-top: auto;
  margin-bottom: 24px;
}

.card-hero-text.left {
  align-self: flex-start;
}

.card-hero-text.right {
  align-self: flex-end;
  text-align: right;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 0;
  margin-bottom: auto;
}

.pill-group.right {
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 100px;
  padding: 8px 18px 8px 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1c1e24;
  white-space: nowrap;
}

.pill.pop {
  animation: pill-pop 0.85s ease-in-out;
}

@keyframes pill-pop {
  0%   { padding: 8px 18px 8px 8px; }
  40%  { padding: 8px 28px 8px 18px; }
  100% { padding: 8px 18px 8px 8px; }
}

.pill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1c1e24;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  line-height: 1;
}

@media (max-width: 767px) {
  .content-container {
    padding: 0 16px;
  }
}
