:root {
  --ink: #111827;
  --ink-soft: #4b5563;
  --paper: #f8fafc;
  --white: #ffffff;
  --line: #dbe2ea;
  --line-dark: #334155;
  --blue: #2563eb;
  --blue-dark: #1746b0;
  --orange: #f97316;
  --mint: #18b981;
  --dark: #151923;
  --dark-2: #202634;
  --container: 1180px;
  --header-h: 76px;
  --radius: 6px;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

button {
  font: inherit;
}

img,
svg {
  display: block;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
  transform: translateY(-150%);
}

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

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

.section-pad {
  padding: 112px 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 40;
  height: var(--header-h);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 205px;
  min-height: 48px;
}

.brand img {
  width: 198px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-left: 30px;
  padding: 0 18px;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 4px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: #db5c0a;
  border-color: #db5c0a;
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 780px;
  color: var(--white);
  background-color: #1a202b;
  background-image: url("assets/hero-operations.png");
  background-position: center;
  background-size: cover;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(10, 14, 24, 0.62);
  content: "";
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(12, 17, 28, 0.15);
  content: "";
}

.hero-inner {
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  padding-bottom: 152px;
}

.hero-copy {
  width: min(720px, 70%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.eyebrow span {
  width: 34px;
  height: 3px;
  background: var(--orange);
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6.4vw, 6.4rem);
  font-weight: 700;
  line-height: 0.96;
}

.hero-lede {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button svg,
.contact-details svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #db5c0a;
  border-color: #db5c0a;
  transform: translateY(-2px);
}

.button-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.42);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--white);
}

.hero-metrics {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 17, 28, 0.88);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics-grid div {
  display: flex;
  min-height: 116px;
  padding: 24px 30px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  flex-direction: column;
  justify-content: center;
}

.metrics-grid div:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.metrics-grid strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.metrics-grid span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

.company-intro {
  background: var(--white);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
  align-items: start;
}

.section-heading h2,
.contact-copy h2,
.advantage-statement h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 4vw, 4.25rem);
  line-height: 1.04;
}

.intro-copy {
  padding-top: 4px;
  border-top: 3px solid var(--orange);
}

.intro-copy p {
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.formats {
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 70px;
  align-items: end;
}

.section-heading-row > p {
  margin: 0;
  color: var(--ink-soft);
}

.formats-tool {
  margin-top: 58px;
  border: 1px solid var(--line);
  background: var(--white);
}

.tab-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.tab-btn {
  display: flex;
  min-width: 0;
  min-height: 90px;
  padding: 14px 10px;
  color: #596579;
  background: var(--white);
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 180ms ease, background 180ms ease;
}

.tab-btn:last-child {
  border-right: 0;
}

.tab-btn svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tab-btn span {
  max-width: 100%;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.tab-btn:hover,
.tab-btn:focus-visible {
  color: var(--blue);
  background: #f2f6ff;
  outline: none;
}

.tab-btn.is-active {
  color: var(--white);
  background: var(--blue);
}

.tab-panel {
  display: none;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: 510px;
}

.tab-panel.is-active {
  display: grid;
}

.format-preview {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 58px;
  overflow: hidden;
  background: #e9eef6;
  align-items: center;
  justify-content: center;
}

.panel-text {
  display: flex;
  padding: 56px 52px;
  border-left: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
}

.panel-number {
  margin: 0 0 18px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
}

.panel-text h3 {
  margin-bottom: 18px;
  font-size: 2.45rem;
  line-height: 1.05;
}

.panel-text > p:not(.panel-number) {
  margin: 0;
  color: var(--ink-soft);
}

.panel-text ul {
  display: grid;
  gap: 9px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.panel-text li {
  position: relative;
  padding-left: 20px;
  color: #354155;
  font-size: 0.88rem;
  font-weight: 600;
}

.panel-text li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--orange);
  content: "";
}

.panel-text a,
.text-link {
  width: fit-content;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.panel-text a:hover,
.panel-text a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--orange);
}

.browser-chrome {
  display: flex;
  height: 42px;
  padding: 0 17px;
  background: #111827;
  align-items: center;
  gap: 7px;
}

.browser-chrome i {
  width: 7px;
  height: 7px;
  background: #657087;
  border-radius: 50%;
}

.preview-banner {
  background: #dce7f6;
}

.preview-banner > div:first-child,
.preview-banner .preview-body {
  width: min(100%, 530px);
}

.preview-banner .browser-chrome {
  position: absolute;
  top: calc(50% - 184px);
  width: min(calc(100% - 116px), 530px);
}

.preview-body {
  min-height: 326px;
  padding: 78px 38px 32px;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(19, 35, 61, 0.17);
}

.content-line {
  display: block;
  width: 58%;
  height: 9px;
  margin-bottom: 12px;
  background: #d7dee9;
}

.content-line.wide {
  width: 78%;
}

.ad-unit {
  display: flex;
  min-height: 150px;
  margin-top: 38px;
  padding: 28px;
  color: var(--white);
  background: var(--blue);
  flex-direction: column;
  justify-content: center;
}

.ad-unit b {
  font-size: 0.65rem;
}

.ad-unit em {
  max-width: 320px;
  margin: 7px 0 16px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.12;
}

.ad-unit span {
  width: fit-content;
  padding: 5px 9px;
  color: var(--ink);
  background: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
}

.preview-pop {
  background: #e8e3dc;
}

.window-back,
.window-front {
  position: absolute;
  width: min(68%, 410px);
  min-height: 270px;
  border: 1px solid #ccd3dd;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(20, 28, 45, 0.15);
}

.window-back {
  top: 74px;
  right: 62px;
  display: flex;
  padding: 42px;
  color: var(--white);
  background: var(--orange);
  flex-direction: column;
  justify-content: flex-end;
}

.window-back b {
  font-size: 0.67rem;
}

.window-back span {
  max-width: 240px;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.1;
}

.window-front {
  bottom: 70px;
  left: 62px;
  padding: 65px 35px 30px;
}

.window-front .browser-chrome {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
}

.window-front > span {
  display: block;
  height: 13px;
  margin-bottom: 14px;
  background: #dce3ec;
}

.window-front > span:nth-child(3) {
  width: 75%;
}

.window-front > span:nth-child(4) {
  width: 58%;
}

.preview-push,
.preview-message {
  background: #dfe8f4;
}

.phone-frame {
  position: relative;
  width: 230px;
  height: 390px;
  padding: 28px 16px 18px;
  background: var(--white);
  border: 9px solid var(--ink);
  border-radius: 30px;
  box-shadow: 0 25px 50px rgba(21, 31, 47, 0.22);
}

.phone-top {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 62px;
  height: 5px;
  background: #374151;
  border-radius: 5px;
  transform: translateX(-50%);
}

.push-content {
  display: flex;
  height: 100%;
  padding-top: 14px;
  background: #f5f7fa;
  flex-direction: column;
}

.push-content > i {
  width: 76%;
  height: 8px;
  margin: 0 14px 12px;
  background: #d9e0ea;
}

.push-content > i:nth-child(2) {
  width: 55%;
}

.push-note {
  display: flex;
  margin: auto 10px 18px;
  padding: 15px;
  color: var(--white);
  background: var(--blue);
  flex-direction: column;
}

.push-note b {
  color: #b9d0ff;
  font-size: 0.62rem;
}

.push-note span {
  margin-top: 5px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.3;
}

.message-stack {
  display: flex;
  height: 100%;
  padding: 30px 8px 14px;
  background: #f7f8fa;
  flex-direction: column;
  gap: 13px;
}

.message-stack > i {
  display: block;
  width: 70%;
  height: 8px;
  background: #d9e0ea;
}

.message-stack div {
  padding: 14px;
  background: var(--white);
  border-left: 3px solid var(--orange);
  box-shadow: 0 8px 20px rgba(30, 41, 59, 0.08);
}

.message-stack div:nth-child(3) {
  border-left-color: var(--blue);
}

.message-stack b,
.message-stack span {
  display: block;
}

.message-stack b {
  margin-bottom: 5px;
  font-size: 0.72rem;
}

.message-stack span {
  color: #6b7280;
  font-size: 0.6rem;
  line-height: 1.4;
}

.preview-video {
  background: #141924;
}

.video-frame {
  position: relative;
  display: flex;
  width: min(100%, 530px);
  aspect-ratio: 16 / 9;
  background-color: #263044;
  background-image: url("assets/hero-operations.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.32);
  align-items: center;
  justify-content: center;
}

.video-frame::before {
  position: absolute;
  inset: 0;
  background: rgba(11, 18, 30, 0.45);
  content: "";
}

.play-button {
  position: relative;
  z-index: 1;
  width: 62px;
  height: 62px;
  background: var(--orange);
  border-radius: 50%;
}

.play-button::after {
  position: absolute;
  top: 50%;
  left: 52%;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 13px solid var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.video-progress {
  position: absolute;
  right: 18px;
  bottom: 17px;
  left: 18px;
  z-index: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.42);
}

.video-progress::before {
  display: block;
  width: 36%;
  height: 100%;
  background: var(--orange);
  content: "";
}

.video-frame small {
  position: absolute;
  right: 18px;
  bottom: 23px;
  z-index: 1;
  color: var(--white);
  font-size: 0.6rem;
}

.preview-skim {
  background: #efece6;
}

.article-sheet {
  width: min(100%, 480px);
  padding: 52px;
  background: var(--white);
  border-top: 5px solid var(--blue);
  box-shadow: 0 24px 55px rgba(31, 41, 55, 0.14);
}

.article-sheet > span {
  display: block;
  width: 100%;
  height: 8px;
  margin-bottom: 12px;
  background: #dce2e8;
}

.article-sheet > span:nth-child(2),
.article-sheet > span:last-child {
  width: 72%;
}

.article-sheet p {
  margin: 30px 0;
  color: #5b6472;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-sheet b {
  color: var(--blue);
  border-bottom: 2px solid var(--orange);
}

.targeting {
  color: var(--white);
  background: var(--dark);
}

.targeting-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 90px;
}

.targeting-heading .section-kicker {
  color: #7fa8ff;
}

.targeting-heading h2 {
  margin-bottom: 26px;
}

.targeting-heading > p:last-child {
  max-width: 470px;
  margin: 0;
  color: #aeb8c7;
}

.targeting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.targeting-grid article {
  position: relative;
  min-height: 240px;
  padding: 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.targeting-grid article > span {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #69758a;
  font-family: var(--font-display);
  font-size: 0.72rem;
}

.targeting-grid svg {
  width: 35px;
  height: 35px;
  margin-bottom: 42px;
  fill: none;
  stroke: var(--orange);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.targeting-grid h3 {
  margin-bottom: 9px;
  font-size: 1.25rem;
}

.targeting-grid p {
  margin: 0;
  color: #9faabb;
  font-size: 0.86rem;
  line-height: 1.55;
}

.advantages {
  background: var(--white);
}

.advantage-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
}

.advantage-statement {
  position: sticky;
  top: 38px;
  height: fit-content;
}

.advantage-statement > p:not(.section-kicker) {
  max-width: 510px;
  margin: 28px 0;
  color: var(--ink-soft);
}

.advantage-list {
  border-top: 1px solid var(--ink);
}

.advantage-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.advantage-list strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 0.78rem;
}

.advantage-list h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.advantage-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.verticals {
  background: #edf2f8;
  border-top: 1px solid var(--line);
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 58px;
  border-top: 1px solid #bdc8d6;
  border-left: 1px solid #bdc8d6;
}

.verticals-grid article {
  display: flex;
  min-height: 330px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.35);
  border-right: 1px solid #bdc8d6;
  border-bottom: 1px solid #bdc8d6;
  flex-direction: column;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

.verticals-grid article:hover {
  color: var(--white);
  background: var(--blue);
  transform: translateY(-4px);
}

.verticals-grid span {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.verticals-grid article:hover span,
.verticals-grid article:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.verticals-grid h3 {
  margin: auto 0 14px;
  font-size: 1.75rem;
  line-height: 1.1;
}

.verticals-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.contact {
  color: var(--white);
  background: var(--blue);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 110px;
}

.contact-copy .section-kicker {
  color: #c6d8ff;
}

.contact-copy p:last-child {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-details {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.contact-details > a,
.contact-details > div {
  position: relative;
  display: flex;
  min-width: 0;
  padding: 24px 54px 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  flex-direction: column;
}

.contact-details > a {
  transition: background 180ms ease, padding 180ms ease;
}

.contact-details > a:hover,
.contact-details > a:focus-visible {
  padding-left: 14px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-details span {
  margin-bottom: 7px;
  color: #c6d8ff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details strong {
  max-width: 100%;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.contact-details svg {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}

.site-footer {
  color: #aab3c2;
  background: #0c111c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 108px;
  align-items: center;
  gap: 30px;
}

.footer-inner img {
  width: 178px;
  height: auto;
}

.footer-inner p,
.footer-inner a {
  font-size: 0.75rem;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner a {
  justify-self: end;
  color: var(--white);
  font-weight: 700;
}

:focus-visible {
  outline: 3px solid #ffb37b;
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .section-pad {
    padding: 90px 0;
  }

  .site-nav {
    gap: 20px;
  }

  .site-nav a {
    font-size: 0.8rem;
  }

  .header-cta {
    margin-left: 20px;
  }

  .hero-copy {
    width: min(720px, 82%);
  }

  .intro-layout,
  .advantage-layout,
  .contact-layout {
    gap: 70px;
  }

  .targeting-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .targeting-heading {
    max-width: 740px;
  }

  .tab-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tab-btn:nth-child(3) {
    border-right: 0;
  }

  .tab-btn:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .tab-panel {
    grid-template-columns: 1fr 0.86fr;
  }

  .format-preview {
    padding: 44px;
  }

  .panel-text {
    padding: 44px 34px;
  }

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

@media (max-width: 800px) {
  :root {
    --header-h: 68px;
  }

  .container {
    width: min(calc(100% - 34px), var(--container));
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .brand {
    width: 180px;
  }

  .brand img {
    width: 176px;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 4px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle.is-open span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-open span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    top: calc(var(--header-h) - 1px);
    right: 17px;
    left: 17px;
    display: none;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(10, 20, 40, 0.2);
  }

  .mobile-menu.is-open {
    display: grid;
  }

  .mobile-menu a {
    display: flex;
    min-height: 48px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    align-items: center;
  }

  .mobile-menu a:last-child {
    color: var(--white);
    background: var(--orange);
    border-bottom: 0;
  }

  .hero {
    min-height: 760px;
    background-position: 62% center;
  }

  .hero::before {
    background: rgba(10, 14, 24, 0.7);
  }

  .hero-inner {
    align-items: flex-start;
    padding-top: 150px;
    padding-bottom: 164px;
  }

  .hero-copy {
    width: 100%;
  }

  h1 {
    font-size: clamp(3rem, 12vw, 4.5rem);
  }

  .metrics-grid div {
    min-height: 100px;
    padding: 18px;
  }

  .metrics-grid strong {
    font-size: 1.65rem;
  }

  .intro-layout,
  .advantage-layout,
  .contact-layout,
  .section-heading-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading-row > p {
    max-width: 620px;
  }

  .tab-panel {
    grid-template-columns: 1fr;
  }

  .format-preview {
    min-height: 450px;
  }

  .panel-text {
    min-height: 400px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .advantage-statement {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    padding: 26px 0;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero {
    min-height: 790px;
  }

  .hero-inner {
    padding-top: 132px;
    padding-bottom: 225px;
  }

  h1 {
    font-size: clamp(2.75rem, 14vw, 3.75rem);
  }

  .hero-lede {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .metrics-grid div {
    min-height: 96px;
    padding: 15px 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .metrics-grid div:first-child,
  .metrics-grid div:nth-child(2) {
    border-top: 0;
  }

  .metrics-grid div:nth-child(odd) {
    border-left: 0;
  }

  .metrics-grid div:last-child {
    border-right: 0;
  }

  .metrics-grid strong {
    font-size: 1.45rem;
  }

  .metrics-grid span {
    font-size: 0.7rem;
  }

  .section-heading h2,
  .contact-copy h2,
  .advantage-statement h2 {
    font-size: 2.45rem;
  }

  .formats-tool {
    margin-right: -1px;
    margin-left: -1px;
  }

  .tab-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-btn {
    min-height: 82px;
  }

  .tab-btn:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .tab-btn:nth-child(even) {
    border-right: 0;
  }

  .tab-btn:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .format-preview {
    min-height: 390px;
    padding: 28px;
  }

  .panel-text {
    min-height: 0;
    padding: 40px 28px;
  }

  .preview-banner .browser-chrome {
    top: calc(50% - 145px);
    width: calc(100% - 56px);
  }

  .preview-body {
    min-height: 290px;
    padding: 68px 24px 22px;
  }

  .ad-unit {
    min-height: 140px;
    margin-top: 30px;
    padding: 22px;
  }

  .window-back,
  .window-front {
    width: 72%;
    min-height: 220px;
  }

  .window-back {
    top: 45px;
    right: 28px;
    padding: 26px;
  }

  .window-front {
    bottom: 45px;
    left: 28px;
    padding: 58px 25px 25px;
  }

  .phone-frame {
    width: 205px;
    height: 345px;
  }

  .article-sheet {
    padding: 34px;
  }

  .targeting-grid,
  .verticals-grid {
    grid-template-columns: 1fr;
  }

  .targeting-grid article {
    min-height: 210px;
  }

  .verticals-grid article {
    min-height: 250px;
  }

  .advantage-list article {
    grid-template-columns: 42px 1fr;
    gap: 16px;
  }

  .contact-details strong {
    font-size: 0.9rem;
  }

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

  .footer-inner a {
    justify-self: start;
  }

  .footer-inner p {
    grid-column: auto;
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
