:root {
  --red: #e71d2b;
  --red-dark: #bd111c;
  --ink: #1c1d22;
  --ink-soft: #303139;
  --paper: #ffffff;
  --soft: #f5f5f4;
  --line: #dedede;
  --muted: #626570;
  --blue: #bcdcff;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
  --shadow: 0 18px 60px rgba(24, 25, 29, .1);
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  left: 18px;
  top: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  display: none;
}

.site-header {
  position: relative;
  z-index: 1000;
  height: 96px;
  border-bottom: 1px solid #ececec;
  background: rgba(255, 255, 255, .97);
  transition: box-shadow .25s ease, height .25s ease;
}

.site-header.is-scrolled {
  position: sticky;
  top: 0;
  height: 82px;
  box-shadow: 0 12px 30px rgba(15, 15, 18, .08);
}

.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  flex: 0 0 222px;
  align-items: center;
}

.site-master-logo {
  display: block;
  width: 220px;
  height: auto;
}

.site-master-logo[hidden],
.footer-master-logo[hidden],
.opportunity-desk-brand img[hidden] {
  display: none !important;
}

.brand.logo-missing::before,
.footer-master-logo-link.logo-missing::before {
  content: "impro";
  color: #b20c1b;
  font-family: Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1;
}

.brand.logo-missing::after,
.footer-master-logo-link.logo-missing::after {
  content: "solutions";
  align-self: flex-end;
  margin: 0 0 3px 5px;
  color: #111;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 29px;
  white-space: nowrap;
}

.main-nav > a,
.nav-dropdown-trigger,
.has-drop > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: #212126;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
}

.main-nav > a::after,
.nav-dropdown-trigger::after,
.has-drop > a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 3px;
  height: 3px;
  border-radius: 3px;
  background: var(--red);
  transition: right .22s ease;
}

.main-nav > a:hover::after,
.main-nav > a:focus-visible::after,
.nav-dropdown-trigger:hover::after,
.nav-dropdown-trigger:focus-visible::after,
.has-drop > a:hover::after,
.has-drop > a:focus-visible::after {
  right: 0;
}

.has-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.drop {
  position: absolute;
  z-index: 10;
  top: calc(100% + 10px);
  left: -20px;
  min-width: 250px;
  padding: 10px;
  border: 1px solid #ededed;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 21, 25, .14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.drop a {
  display: block;
  padding: 10px 12px;
  border-radius: 9px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
}

.drop a:hover,
.drop a:focus-visible {
  background: #f7f7f7;
  color: var(--red);
}

.has-drop:hover .drop,
.has-drop:focus-within .drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.cta {
  flex: 0 0 auto;
  min-height: 52px;
  padding-inline: 23px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  box-shadow: 0 12px 28px rgba(231, 29, 43, .23);
}

.cta:hover,
.cta:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-2px);
  background: var(--red-dark);
  box-shadow: 0 14px 30px rgba(231, 29, 43, .3);
}

.hamburger {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--ink);
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 4px;
  background: #fff;
}

.mobile-overlay {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: none;
  background: rgba(19, 19, 22, .7);
  backdrop-filter: blur(6px);
}

.mobile-overlay.is-open {
  display: block;
}

.mobile-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: min(390px, 88vw);
  min-height: 100%;
  padding: 86px 32px 36px;
  background: #fff;
  box-shadow: -20px 0 50px rgba(0, 0, 0, .17);
  animation: menu-in .25s ease both;
}

@keyframes menu-in {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}

.close-menu {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav-links {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.mobile-nav-link {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid #ededed;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus-visible {
  color: var(--red);
}

.mobile-btn .btn {
  width: 100%;
}

.btn-primary {
  background: var(--red);
  color: #fff;
}

.btn-secondary {
  border-color: #cfcfd2;
  background: #fff;
  color: var(--ink);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, .45);
  background: transparent;
  color: #fff;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 78px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.97) 0 56%, rgba(245,245,244,.88) 56%),
    radial-gradient(circle at 85% 15%, rgba(231,29,43,.11), transparent 35%);
}

.blog-hero::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -190px;
  width: 510px;
  height: 510px;
  border: 1px solid rgba(231, 29, 43, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(231,29,43,.035), 0 0 0 180px rgba(28,29,34,.025);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(350px, .65fr);
  gap: 80px;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 36px;
  color: #73757d;
  font-size: 13px;
  font-weight: 600;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--red);
}

.hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(43px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: #555861;
  font-size: 18px;
  line-height: 1.75;
}

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

.search-station {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(28,29,34,.12);
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: #fff;
  box-shadow: 0 28px 70px rgba(19, 20, 23, .18);
}

.search-station::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
  height: 120px;
  border-radius: 100% 0 var(--radius-lg) 0;
  background: linear-gradient(135deg, transparent 30%, rgba(231,29,43,.45));
  pointer-events: none;
}

.search-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: #cfd0d5;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.search-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(231,29,43,.14);
}

.search-station h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: -.03em;
  line-height: 1.22;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 17px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  transition: box-shadow .2s ease, border-color .2s ease;
}

.search-box:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(231,29,43,.19);
}

.search-box svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
}

.search-box input::placeholder {
  color: #8a8c92;
}

.popular-searches {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.popular-searches button {
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.popular-searches button:hover,
.popular-searches button:focus-visible {
  border-color: var(--red);
  background: var(--red);
}

.search-note {
  position: relative;
  z-index: 1;
  margin: 19px 0 0;
  color: #c9cbd0;
  font-size: 12px;
}

.search-note strong {
  color: #fff;
}

.feature-section,
.topic-section,
.article-section,
.editorial-section,
.faq-section,
.final-cta {
  padding: 96px 0;
}

.section-heading {
  margin-bottom: 38px;
}

.section-heading h2,
.article-toolbar h2,
.editorial-copy h2,
.faq-layout h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.08;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 54px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.16fr .92fr .92fr;
  gap: 18px;
}

.feature-card {
  position: relative;
  min-height: 405px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -130px auto;
  width: 280px;
  height: 280px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: .13;
  box-shadow: 0 0 0 45px currentColor, 0 0 0 90px rgba(255,255,255,.07);
}

.feature-dark {
  background: var(--ink);
  color: #fff;
}

.feature-red {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.feature-light {
  background: #f0f0ef;
  color: var(--ink);
}

.feature-link {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 405px;
  flex-direction: column;
  padding: 30px;
}

.feature-index {
  align-self: flex-end;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  opacity: .6;
}

.article-type {
  display: inline-block;
  margin-top: auto;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.feature-dark .article-type,
.feature-red .article-type {
  color: #fff;
  opacity: .72;
}

.feature-card h3 {
  margin: 14px 0 12px;
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: -.035em;
  line-height: 1.14;
}

.feature-grid .feature-card:first-child h3 {
  max-width: 430px;
  font-size: 33px;
}

.feature-card p {
  max-width: 470px;
  margin: 0 0 23px;
  color: currentColor;
  font-size: 14px;
  line-height: 1.65;
  opacity: .76;
}

.read-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.feature-dark .read-link,
.feature-red .read-link {
  color: #fff;
}

.read-link b {
  font-size: 17px;
  font-weight: 500;
  transition: transform .2s ease;
}

a:hover .read-link b,
.read-link:hover b,
.read-link:focus-visible b {
  transform: translate(3px, -2px);
}

.topic-section {
  background: var(--soft);
}

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

.topic-card {
  position: relative;
  grid-column: span 3;
  min-height: 265px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 20px;
  background: #222;
  color: #fff;
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  transition: transform .25s ease, box-shadow .25s ease;
}

.topic-card:nth-child(1),
.topic-card:nth-child(2),
.topic-card:nth-child(3) {
  grid-column: span 4;
}

.topic-card:hover,
.topic-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(25, 26, 31, .18);
  outline: 0;
}

.topic-card:focus-visible {
  box-shadow: 0 0 0 4px rgba(231,29,43,.27), 0 18px 42px rgba(25, 26, 31, .18);
}

.topic-card img {
  position: absolute;
  z-index: -3;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}

.topic-card img[hidden] {
  display: none !important;
}

.topic-card:hover img,
.topic-card:focus-visible img {
  transform: scale(1.05);
}

.topic-shade {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,17,20,.06) 0, rgba(16,17,20,.55) 48%, rgba(16,17,20,.96) 100%);
}

.topic-count {
  position: absolute;
  top: 20px;
  right: 20px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(22,23,26,.35);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(6px);
}

.topic-title {
  position: absolute;
  right: 22px;
  bottom: 48px;
  left: 22px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.16;
}

.topic-action {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 700;
}

.article-section {
  background: #fff;
}

.article-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.clear-filter {
  padding: 10px 15px;
  border: 1px solid #d9d9dc;
  border-radius: 11px;
  background: #fff;
  color: #44464d;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.clear-filter:hover,
.clear-filter:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}

.filter-btn {
  min-height: 39px;
  padding: 0 14px;
  border: 1px solid #dcdcdf;
  border-radius: 999px;
  background: #fff;
  color: #55575e;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.filter-btn:hover,
.filter-btn:focus-visible,
.filter-btn.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.results-status {
  margin: 19px 0 22px;
  color: #71737b;
  font-size: 12px;
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}

.article-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  min-height: 260px;
  overflow: hidden;
  border: 1px solid #e0e0e2;
  border-radius: 18px;
  background: #fff;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.article-card:hover {
  border-color: #c2c3c7;
  transform: translateY(-4px);
  box-shadow: 0 15px 38px rgba(25, 26, 31, .09);
}

.article-card[hidden] {
  display: none;
}

.card-signal {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px 8px;
  background: var(--ink);
  color: #fff;
}

.card-signal::before,
.card-signal::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
}

.card-signal::before {
  top: 28px;
  left: 18px;
  width: 48px;
  height: 48px;
  box-shadow: 0 0 0 13px rgba(255,255,255,.06), 0 0 0 27px rgba(255,255,255,.035);
}

.card-signal::after {
  top: 67px;
  left: 41px;
  width: 2px;
  height: 102px;
  border-radius: 0;
  border-width: 0 0 0 1px;
}

.card-signal span {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .09em;
}

.signal-grid { background: #243c67; }
.signal-power { background: #7b2630; }
.signal-oil { background: #4a3228; }
.signal-water { background: #185c70; }
.signal-predictive { background: #423459; }
.signal-cyber { background: #183b38; }
.signal-sensor { background: #5a4b19; }
.signal-warning { background: #8b3a20; }
.signal-safety { background: #96313a; }
.signal-instrument { background: #344559; }
.signal-maritime { background: #19445d; }

.card-body {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 22px;
}

.card-body .article-type {
  margin-top: 0;
}

.card-body h3 {
  margin: 10px 0 11px;
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: -.025em;
  line-height: 1.25;
}

.card-body h3 a {
  transition: color .2s ease;
}

.card-body h3 a:hover,
.card-body h3 a:focus-visible {
  color: var(--red);
}

.card-body p {
  margin: 0 0 20px;
  color: #6a6c74;
  font-size: 12.5px;
  line-height: 1.6;
}

.card-body .read-link {
  margin-top: auto;
  font-size: 12px;
}

.route-card {
  border-style: dashed;
  background: #fafafa;
}

.no-results {
  padding: 65px 30px;
  border: 1px dashed #cfd0d4;
  border-radius: 20px;
  background: #fafafa;
  text-align: center;
}

.no-results span {
  display: block;
  color: var(--red);
  font-size: 42px;
}

.no-results h3 {
  margin: 5px 0 4px;
  font-family: var(--font-display);
  font-size: 24px;
}

.no-results p {
  margin: 0 0 17px;
  color: var(--muted);
}

.no-results button {
  padding: 10px 16px;
  border: 0;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.editorial-section {
  background: var(--ink);
  color: #fff;
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 90px;
  align-items: start;
}

.editorial-copy {
  position: sticky;
  top: 120px;
}

.editorial-copy h2 {
  font-size: clamp(40px, 5vw, 64px);
}

.editorial-copy > p:not(.eyebrow) {
  margin: 25px 0 27px;
  color: #c7c9ce;
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  color: var(--red);
}

.editorial-steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.editorial-steps li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 25px;
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.editorial-steps li:last-child {
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.editorial-steps > li > span {
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
}

.editorial-steps h3 {
  margin: 0 0 7px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -.025em;
}

.editorial-steps p {
  margin: 0;
  color: #bfc1c7;
  font-size: 14px;
  line-height: 1.7;
}

.faq-section {
  background: #f6f6f5;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(0, 1.3fr);
  gap: 90px;
}

.faq-layout > div:first-child > p:not(.eyebrow) {
  max-width: 410px;
  margin-top: 22px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid #d8d8da;
}

.faq-list details {
  border-bottom: 1px solid #d8d8da;
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 0;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  transition: transform .2s ease, background .2s ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
  background: var(--red);
}

.faq-list details p {
  max-width: 690px;
  margin: -3px 52px 23px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.final-cta {
  padding-top: 84px;
  padding-bottom: 84px;
}

.final-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, .55fr);
  gap: 45px;
  align-items: center;
  padding: 46px 44px;
  border-radius: 0 0 30px 30px;
  background: linear-gradient(115deg, #1a1b1f 0%, #20242d 63%, #3a2430 100%);
  color: #fff;
  box-shadow: 0 24px 65px rgba(25,26,31,.16);
}

.final-card::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255,255,255,.025);
}

.final-card > div {
  position: relative;
  z-index: 1;
}

.final-card span {
  color: #ff7180;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.final-card h2 {
  max-width: 720px;
  margin: 8px 0 9px;
  font-family: var(--font-display);
  font-size: clamp(31px, 4vw, 45px);
  letter-spacing: -.05em;
  line-height: 1.08;
}

.final-card p {
  margin: 0;
  color: #cfd1d6;
}

.final-card .buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 11px;
}

.final-card .btn {
  min-height: 50px;
  padding-inline: 19px;
  border-radius: 999px;
  font-size: 13px;
}

.footer {
  padding: 62px 0 0;
  background: #181819;
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr .7fr .88fr 1.05fr;
  gap: 38px;
}

.footer-grid > div {
  min-width: 0;
}

.footer-master-logo-link {
  display: flex;
  width: 300px;
  max-width: 100%;
  min-height: 98px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff;
}

.footer-master-logo {
  display: block;
  width: 270px;
  height: auto;
}

.footer-grid p {
  margin: 19px 0 0;
  color: #cbd8eb;
  font-size: 14px;
  line-height: 1.65;
}

.footer-grid h4 {
  margin: 3px 0 16px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -.02em;
}

.footer-grid > div > a:not(.footer-master-logo-link):not(.opportunity-desk-brand):not(.desk-link) {
  display: block;
  margin: 0 0 7px;
  color: #eef3ff;
  font-size: 15px;
  line-height: 1.45;
}

.footer-grid > div > a:hover,
.footer-grid > div > a:focus-visible,
.footer-grid a[aria-current="page"] {
  color: #ff6976 !important;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 19px;
}

.footer-social a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  background: #0d0d0e;
  color: #d5e0f4;
  font-size: 13px;
  font-weight: 800;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  background: var(--red);
  color: #fff !important;
}

.opportunity-desk-brand {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #fff;
}

.opportunity-desk-brand img {
  display: block;
  width: 222px;
  height: auto;
}

.opportunity-desk-brand.logo-missing::before {
  content: "impro";
  color: #b20c1b;
  font-family: Georgia, serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.opportunity-desk-brand.logo-missing::after {
  content: "Opportunity Intelligence";
  margin-left: 8px;
  color: #7d7d82;
  font-size: 10px;
  font-weight: 700;
}

.desk-link {
  display: block;
  margin-top: 17px;
  padding: 12px 14px;
  border-radius: 11px;
  background: #fff;
  color: #dce3ef;
  font-size: 14px;
  font-weight: 800;
}

.footer .copy {
  margin-top: 54px;
  padding: 22px 0 25px;
  border-top: 1px solid rgba(255,255,255,.13);
  color: #b9c7dc;
  font-size: 13px;
}

:focus-visible {
  outline: 3px solid rgba(231, 29, 43, .45);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .container {
    width: min(100% - 36px, 1080px);
  }

  .main-nav {
    gap: 19px;
  }

  .main-nav > a,
  .nav-dropdown-trigger,
  .has-drop > a {
    font-size: 13px;
  }

  .brand {
    flex-basis: 190px;
  }

  .site-master-logo {
    width: 188px;
  }

  .cta {
    padding-inline: 18px;
  }

  .hero-layout {
    gap: 45px;
  }

  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr .65fr .9fr .95fr;
    gap: 27px;
  }
}

@media (max-width: 950px) {
  .site-header {
    height: 82px;
  }

  .main-nav,
  .cta {
    display: none;
  }

  .brand {
    flex-basis: auto;
  }

  .site-master-logo {
    width: 190px;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .blog-hero {
    background: linear-gradient(180deg, #fff 0 59%, #f4f4f3 59%);
  }

  .search-station {
    width: min(100%, 620px);
  }

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

  .feature-grid .feature-card:first-child {
    grid-column: 1 / -1;
  }

  .topic-card,
  .topic-card:nth-child(1),
  .topic-card:nth-child(2),
  .topic-card:nth-child(3) {
    grid-column: span 6;
  }

  .topic-card:last-child {
    grid-column: 4 / span 6;
  }

  .editorial-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .editorial-copy {
    position: static;
  }

  .final-card {
    grid-template-columns: 1fr;
  }

  .final-card .buttons {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px 42px;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 90px;
  }

  .container {
    width: min(100% - 28px, 640px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 76px;
  }

  .site-master-logo {
    width: 172px;
  }

  .hamburger {
    width: 44px;
    height: 44px;
  }

  .mobile-menu-container {
    padding-inline: 26px;
  }

  .blog-hero {
    padding: 48px 0 55px;
  }

  .breadcrumb {
    margin-bottom: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

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

  .search-station {
    padding: 26px 21px;
    border-radius: 23px;
  }

  .search-station h2 {
    font-size: 24px;
  }

  .feature-section,
  .topic-section,
  .article-section,
  .editorial-section,
  .faq-section,
  .final-cta {
    padding: 70px 0;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .split-heading > p {
    font-size: 14px;
  }

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

  .feature-grid .feature-card:first-child {
    grid-column: auto;
  }

  .feature-card,
  .feature-link {
    min-height: 340px;
  }

  .feature-card h3,
  .feature-grid .feature-card:first-child h3 {
    font-size: 26px;
  }

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

  .topic-card,
  .topic-card:nth-child(1),
  .topic-card:nth-child(2),
  .topic-card:nth-child(3),
  .topic-card:last-child {
    grid-column: auto;
    min-height: 230px;
  }

  .article-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-right: -14px;
    padding: 2px 14px 8px 0;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

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

  .article-card {
    min-height: 235px;
  }

  .editorial-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 17px;
  }

  .editorial-steps > li > span {
    width: 40px;
    height: 40px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .final-card {
    width: 100%;
    padding: 34px 24px;
    border-radius: 0 0 24px 24px;
  }

  .final-card .buttons {
    display: grid;
  }

  .final-card .btn {
    width: 100%;
  }

  .footer {
    padding-top: 48px;
  }

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

  .footer-master-logo-link {
    width: 300px;
  }

  .footer .copy {
    margin-top: 42px;
  }
}

@media (max-width: 430px) {
  .article-card {
    grid-template-columns: 68px minmax(0, 1fr);
  }

  .card-body {
    padding: 21px 17px 19px;
  }

  .card-body h3 {
    font-size: 17px;
  }

  .card-signal::before {
    left: 10px;
  }

  .card-signal::after {
    left: 33px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header,
  .mobile-overlay,
  .hero-actions,
  .search-station,
  .filter-row,
  .clear-filter,
  .final-cta,
  .footer {
    display: none !important;
  }

  .blog-hero,
  .feature-section,
  .topic-section,
  .article-section,
  .editorial-section,
  .faq-section {
    padding: 28px 0;
    background: #fff !important;
    color: #000 !important;
  }

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