:root {
  --navy: #102846;
  --navy-2: #17375a;
  --navy-3: #0b1b30;
  --orange: #f28a2e;
  --orange-2: #cf6814;
  --accent-text: #934100;
  --paper: #f7f8f6;
  --surface: #ffffff;
  --tint: #eef3f7;
  --line: #d9e1e7;
  --ink: #121820;
  --muted: #5e6873;
  --soft: #f3eee8;
  --max: 1040px;
  --hero-max: 1040px;
  --wide: 1360px;
  --radius: 6px;
  --shadow: 0 16px 42px rgba(16, 40, 70, 0.14);
  --subpage-max: calc(var(--max) - 40px);
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("/fonts/PlusJakartaSans%5Bwght%5D.woff2") format("woff2");
  font-weight: 300 800;
  font-style: normal;
  font-display: fallback;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Plus Jakarta Sans", "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 34px;
  align-items: center;
  max-width: var(--wide);
  margin: 0 auto;
  padding: 11px 20px;
  background: rgba(247, 248, 246, 0.96);
  border-bottom: 2px solid var(--line);
  transition: background-color 180ms ease, border-color 180ms ease, gap 180ms ease, padding 180ms ease;
}

.header.is-scrolled {
  gap: 28px;
  padding-top: 7px;
  padding-bottom: 7px;
  background: rgba(212, 218, 226, 0.98);
  border-bottom-color: #fff;
}

.brand img {
  width: 146px;
  height: auto;
  transition: width 180ms ease;
}

.header.is-scrolled .brand img {
  width: 132px;
}

.menu-toggle {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
  color: #314052;
  font-size: 14px;
  font-weight: 750;
}

.nav-item {
  position: relative;
}

.nav a,
.nav-parent {
  position: relative;
  display: block;
  padding: 13px 0 12px;
  transition: color 160ms ease, padding 180ms ease;
}

.nav-parent {
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.header.is-scrolled .nav a,
.header.is-scrolled .nav-parent {
  padding-top: 9px;
  padding-bottom: 8px;
}

.nav a::before,
.nav-parent::before {
  position: absolute;
  top: -8px;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.35);
  transform-origin: center;
  transition: opacity 160ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav-item:focus-within > .nav-parent,
.nav-item:hover > .nav-parent {
  color: var(--ink);
}

.nav a:hover::before,
.nav a:focus-visible::before,
.nav-item:focus-within > .nav-parent::before,
.nav-item:hover > .nav-parent::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav .client-login {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-left: -8px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.header.is-scrolled .nav .client-login {
  padding-top: 6px;
  padding-bottom: 6px;
}

.nav .client-login::before {
  display: none;
}

.client-login svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.nav .client-login:hover,
.nav .client-login:focus-visible {
  border-color: rgba(242, 138, 46, 0.55);
  color: var(--ink);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: -10px;
  z-index: 30;
  display: grid;
  min-width: 218px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(16, 40, 70, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 150ms ease, transform 170ms ease;
}

.dropdown::before {
  position: absolute;
  top: -9px;
  right: 0;
  left: 0;
  height: 9px;
  content: "";
}

.dropdown a {
  padding: 9px 10px;
  border-radius: 4px;
  color: #314052;
  font-size: 13px;
  font-weight: 750;
  white-space: nowrap;
}

.dropdown a::before {
  display: none;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: #f6eadf;
  color: var(--ink);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.hero {
  position: relative;
  overflow: hidden;
  background: #06142c;
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero::before {
  background:
    radial-gradient(circle at 79% 44%, rgba(242, 138, 46, 0.22), transparent 21%),
    radial-gradient(circle at 18% 6%, rgba(29, 71, 150, 0.12), transparent 28%),
    linear-gradient(126deg, rgba(255, 255, 255, 0.025) 0%, transparent 28%),
    linear-gradient(180deg, #030b1c 0%, #061a3c 24%, #092654 54%, #06142c 80%, #030815 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.7fr);
  gap: 42px;
  align-items: center;
  max-width: var(--hero-max);
  margin: 0 auto;
  padding: 64px 20px 44px;
}

.hero-copy {
  padding: 18px 0 22px;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(36px, 3.8vw, 50px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translate(-46px, 12px);
  }

  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.hero h1,
.hero .price-line,
.hero .lead,
.hero .hero-actions {
  opacity: 0;
}

.hero.is-animated h1 {
  animation: hero-title-in 1100ms cubic-bezier(0.18, 0.76, 0.18, 1) both;
}

.hero.is-animated .price-line,
.hero.is-animated .lead,
.hero.is-animated .hero-actions {
  animation: hero-copy-in 880ms cubic-bezier(0.18, 0.76, 0.18, 1) both;
}

.hero.is-animated .price-line {
  animation-delay: 220ms;
}

.hero.is-animated .lead {
  animation-delay: 420ms;
}

.hero.is-animated .hero-actions {
  animation-delay: 620ms;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.price-line {
  margin-bottom: 20px;
  color: var(--orange);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  line-height: 1.08;
}

.lead {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 17px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 15px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.btn.orange {
  background: var(--orange);
  color: #131922;
}

.btn.outline {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.release-visual {
  position: relative;
  min-height: 292px;
  perspective: 900px;
}

.release-visual::before {
  position: absolute;
  inset: -34px -34px -28px -26px;
  z-index: 0;
  background: radial-gradient(circle at 56% 45%, rgba(242, 138, 46, 0.28), transparent 54%);
  border-radius: 50%;
  content: "";
  opacity: 0.72;
}

.release-visual::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  z-index: 0;
  width: 92%;
  height: 88%;
  background: #c6ced9;
  border-radius: 8px;
  content: "";
  opacity: 0.85;
  transform: rotate(1.5deg) translate(18px, 18px);
}

.release-sheet {
  position: relative;
  z-index: 1;
  min-height: 288px;
  padding: 28px 30px 24px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(4, 16, 31, 0.28);
  color: var(--navy);
  transform: rotate(-1.6deg);
}

.release-visual {
  max-width: 390px;
  justify-self: end;
}

.release-kicker {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-bottom: 15px;
  color: var(--navy-3);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.release-kicker span {
  width: 10px;
  height: 10px;
  background: var(--orange);
}

.release-rule {
  height: 3px;
  margin-bottom: 19px;
  background: var(--navy-3);
}

.release-title,
.release-title.short,
.release-lines span {
  display: block;
  border-radius: 4px;
}

.release-title {
  width: 86%;
  height: 13px;
  margin-bottom: 10px;
  background: #26364f;
}

.release-title.short {
  width: 66%;
  margin-bottom: 19px;
}

.release-lines {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.release-lines span {
  height: 8px;
  background: #dfe4eb;
}

.release-lines span:nth-child(2) {
  width: 95%;
}

.release-lines span:nth-child(3) {
  width: 82%;
}

.release-lines span:nth-child(4) {
  width: 98%;
}

.release-lines span:nth-child(5) {
  width: 74%;
}

.release-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px 24px;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #e5e9ef;
}

.release-tags img {
  width: 100%;
  max-width: 215px;
  height: 42px;
  opacity: 0.92;
  object-fit: contain;
  object-position: left center;
}

.release-tags .yahoo-logo {
  height: 48px;
}

.release-tag-note {
  display: inline-flex;
  align-items: flex-start;
  max-width: 215px;
}

.release-tag-note img {
  min-width: 0;
}

.release-tag-note sup {
  margin-left: 2px;
  color: #314052;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.release-footnote {
  margin: 10px 0 0;
  color: #5a6573;
  font-size: 10px;
  font-weight: 650;
  line-height: 1.3;
}

.pricing-hero {
  background: #f4f6f7;
  color: var(--ink);
  border-bottom: 1px solid #e1e6eb;
}

.page-hero.pricing-title h1 {
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(34px, 2.8vw, 40px);
}

.pricing-title {
  padding-right: max(20px, calc((100vw - 800px) / 2));
  padding-left: max(20px, calc((100vw - 800px) / 2));
}

@media (min-width: 1000px) {
  .page-hero.pricing-title h1 {
    white-space: nowrap;
  }
}

.pricing-hero-inner {
  display: grid;
  max-width: 800px;
  margin: 0 auto;
  padding: 17px 20px 16px;
}

.pricing-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  align-items: center;
  justify-content: space-between;
}

.pricing-partners img {
  width: auto;
  height: 35px;
  max-width: 200px;
  opacity: 1;
  object-fit: contain;
}

.pricing-partners .proof-yahoo {
  height: 42px;
}

.pricing-partners .proof-access {
  height: 37px;
}

.pricing-partners .proof-google {
  height: 52px;
}

.pricing-partners .proof-digital {
  height: 58px;
}

.pricing-section {
  max-width: none;
  margin: 0;
  padding: 38px max(20px, calc((100vw - 800px) / 2)) 10px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 100%;
  padding: 20px;
  background: #fff;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 12px 28px rgba(16, 40, 70, 0.07);
}

.pricing-card.all-inclusive {
  box-shadow: 0 12px 28px rgba(16, 40, 70, 0.07);
}

.plan-art-band {
  position: relative;
  display: flex;
  min-height: 76px;
  margin: -20px -20px 18px;
  padding: 15px 20px;
  align-items: center;
  background: linear-gradient(118deg, #12223d 0%, #1c355d 58%, #142943 100%);
  border-radius: 0;
}

.pricing-card.distribution .plan-art-band {
  background: linear-gradient(118deg, #12223d 0%, #1c355d 58%, #142943 100%);
}

.pricing-card.all-inclusive .plan-art-band {
  background: linear-gradient(118deg, #12223d 0%, #1c355d 58%, #142943 100%);
}

.plan-art-band svg {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 25px;
  height: 25px;
  fill: none;
  stroke: #f3a13e;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transform: translateY(-50%);
}

.plan-art-band h2 {
  margin: 0 0 0 28px;
  color: #fff;
  font-size: 25px;
  font-weight: 850;
  line-height: 1.1;
}

.plan-intro {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  min-height: 56px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e5eaf0;
}

.plan-intro span {
  position: relative;
  width: 18px;
  height: 22px;
  margin-top: 2px;
}

.plan-intro.included span::before,
.plan-features li::before {
  --check-icon: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2024%2024'%20fill='none'%20stroke='%23000'%20stroke-width='3.2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M5%2012.5%20L9.5%2017%20L19%206.5'/%3E%3C/svg%3E");
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: currentColor;
  -webkit-mask: var(--check-icon) center / contain no-repeat;
  mask: var(--check-icon) center / contain no-repeat;
}

.plan-intro.excluded span::before,
.plan-intro.excluded span::after {
  position: absolute;
  top: 10px;
  left: 1px;
  width: 15px;
  height: 2.5px;
  background: #c94035;
  border-radius: 999px;
  content: "";
}

.plan-intro.excluded span::before {
  transform: rotate(45deg);
}

.plan-intro.excluded span::after {
  transform: rotate(-45deg);
}

.plan-intro.included span,
.pricing-card.all-inclusive .plan-features li::before {
  color: #319765;
}

.plan-intro.included span::before {
  top: 1px;
  left: 0;
}

.plan-intro strong {
  display: block;
  margin-bottom: 2px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.plan-intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.plan-features {
  display: grid;
  gap: 12px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #354253;
  font-size: 14.5px;
  font-weight: 700;
}

.plan-features li::before {
  position: relative;
  top: 2px;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  color: #319765;
}

.plan-image {
  display: none;
}

.plan-features sup {
  margin-left: 1px;
  color: #314052;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.pricing-disclaimer {
  max-width: 800px;
  margin: 12px auto 0;
  color: #5a6573;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
}

.plan-price {
  text-align: center;
}

.plan-purchase {
  margin: 0 -20px -20px;
  padding: 20px;
  background: linear-gradient(145deg, #fff8eb 0%, #f8efe0 100%);
  border-top: 1px solid #ead8bc;
  border-radius: 0 0 var(--radius) var(--radius);
}

.plan-price strong {
  display: block;
  color: var(--ink);
  font-size: clamp(38px, 4.6vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: 100%;
  min-height: 54px;
  gap: 8px;
  margin-top: 18px;
  padding: 14px 16px;
  background: linear-gradient(105deg, #d98218 0%, #f1a52d 45%, #d96f16 100%);
  background-size: 180% 100%;
  border-radius: var(--radius);
  color: #13233c;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(194, 106, 15, 0.2);
  transition: background-position 220ms ease, box-shadow 160ms ease;
}

.plan-button span {
  font-size: 17px;
  line-height: 1;
}

.plan-button:hover,
.plan-button:focus-visible {
  background-position: 100% 0;
  box-shadow: 0 10px 22px rgba(194, 106, 15, 0.3);
}

.pricing-card.all-inclusive .plan-button,
.pricing-card.all-inclusive .plan-button:hover,
.pricing-card.all-inclusive .plan-button:focus-visible {
  background: linear-gradient(105deg, #d98218 0%, #f1a52d 45%, #d96f16 100%);
  background-size: 180% 100%;
  color: #13233c;
}

.pricing-card.all-inclusive .plan-button:hover,
.pricing-card.all-inclusive .plan-button:focus-visible {
  background-position: 100% 0;
}

.bulk-pricing {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
  padding: 26px 30px 26px 116px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(16, 40, 70, 0.06);
}

.bulk-icon {
  position: absolute;
  top: 50%;
  left: -42px;
  display: block;
  width: 132px;
  height: auto;
  transform: translateY(-52%);
}

.bulk-icon img {
  width: 100%;
  height: auto;
}

.bulk-pricing h2 {
  max-width: none;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 24px;
}

.bulk-pricing p {
  max-width: 650px;
  margin-bottom: 0;
  color: var(--muted);
}

.page-hero {
  max-width: none;
  margin: 0;
  padding: 54px max(20px, calc((100vw - var(--subpage-max)) / 2)) 46px;
}

.page-hero h1 {
  max-width: 1040px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(34px, 3.2vw, 44px);
}

.page-hero .lead {
  max-width: 760px;
  color: var(--muted);
}

.page-hero .eyebrow {
  margin-bottom: 12px;
  color: var(--orange);
}

.about-hero {
  position: relative;
  overflow: hidden;
  display: block;
  background:
    linear-gradient(90deg, rgba(3, 11, 28, 0.96), rgba(9, 38, 84, 0.94) 64%, rgba(11, 27, 48, 0.98)),
    var(--navy-3);
  color: #fff;
  isolation: isolate;
}

.about-hero h1 {
  color: #fff;
}

.about-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.team-section {
  padding-top: 44px;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.team-member {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  align-items: start;
  min-height: 100%;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.team-media {
  display: grid;
  gap: 10px;
}

.team-media img,
.team-initial {
  width: 100%;
  height: auto;
  aspect-ratio: 1.04 / 1;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center top;
}

.team-initial {
  display: grid;
  place-items: center;
  background: #eaf0f5;
  border: 1px solid #cdd8e2;
  color: var(--navy);
  font-size: 58px;
  font-weight: 850;
}

.team-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}

.team-link {
  display: block;
  flex: 0 0 auto;
  margin: 4px 0 0;
  color: var(--orange-2);
}

.team-link img {
  width: 74px;
  height: auto;
}

.team-copy h2 {
  max-width: none;
  margin-bottom: 6px;
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.04;
}

.team-role {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 15px;
  font-weight: 850;
}

.team-copy p:not(.team-kicker):not(.team-role) {
  max-width: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.56;
}

.team-copy p:last-child {
  margin-bottom: 0;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(3, 11, 28, 0.96), rgba(9, 38, 84, 0.94) 70%, rgba(11, 27, 48, 0.98)),
    var(--navy-3);
  color: #fff;
}

.contact-hero h1 {
  color: #fff;
}

.contact-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.testimonial-hero {
  background:
    linear-gradient(90deg, rgba(3, 11, 28, 0.96), rgba(9, 38, 84, 0.94) 70%, rgba(11, 27, 48, 0.98)),
    var(--navy-3);
  color: #fff;
}

.testimonial-hero h1 {
  color: #fff;
}

.testimonial-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.faq-hero {
  background:
    linear-gradient(90deg, rgba(3, 11, 28, 0.96), rgba(9, 38, 84, 0.94) 70%, rgba(11, 27, 48, 0.98)),
    var(--navy-3);
  color: #fff;
}

.faq-hero h1 {
  color: #fff;
}

.faq-hero .lead {
  color: rgba(255, 255, 255, 0.8);
}

.editorial-hero {
  background:
    linear-gradient(90deg, rgba(3, 11, 28, 0.96), rgba(9, 38, 84, 0.94) 70%, rgba(11, 27, 48, 0.98)),
    var(--navy-3);
  color: #fff;
}

.editorial-hero h1 {
  margin-bottom: 16px;
  color: #fff;
}

.editorial-hero .lead {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.8);
}

.legal-hero {
  background:
    linear-gradient(90deg, rgba(3, 11, 28, 0.96), rgba(9, 38, 84, 0.94) 70%, rgba(11, 27, 48, 0.98)),
    var(--navy-3);
  color: #fff;
}

.legal-hero h1 {
  color: #fff;
}

.legal-hero .lead {
  max-width: 900px;
  color: rgba(255, 255, 255, 0.8);
}

.section.contact-section {
  max-width: var(--subpage-max);
  padding-top: 44px;
  padding-right: 0;
  padding-left: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: start;
}

.contact-form,
.contact-direct {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

.field label span {
  color: var(--muted);
  font-weight: 750;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 13px;
  background: #fff;
  border: 1px solid #cdd8e2;
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 170px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(242, 138, 46, 0.72);
  box-shadow: 0 0 0 3px rgba(242, 138, 46, 0.16);
}

.field-error {
  margin-bottom: 0;
  color: #a0331c;
  font-size: 13px;
  font-weight: 750;
}

.form-alert {
  padding: 12px 13px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 750;
}

.form-alert.success {
  background: #eaf6ef;
  border: 1px solid #b9dfc7;
  color: #137047;
}

.form-alert.error {
  background: #fff0ea;
  border: 1px solid #efb7a5;
  color: #8e2f1b;
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form .btn {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.contact-direct {
  display: grid;
  gap: 6px;
  padding: 24px;
}

.contact-direct h2 {
  margin-bottom: 2px;
  font-size: 20px;
  line-height: 1.18;
}

.contact-direct a {
  color: var(--orange-2);
  font-size: 19px;
  font-weight: 850;
  overflow-wrap: anywhere;
}

.contact-or {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.section.faq-section {
  max-width: var(--subpage-max);
  padding-top: 44px;
  padding-right: 0;
  padding-left: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 880px;
}

.faq-controls {
  display: flex;
  justify-content: flex-end;
  max-width: 880px;
  margin-bottom: 14px;
}

.faq-toggle-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 36px;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #314052;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 850;
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease;
}

.faq-toggle-icon {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.faq-toggle-icon::before,
.faq-toggle-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2.5px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transform-origin: center;
  transition: transform 190ms ease, opacity 150ms ease;
}

.faq-toggle-icon::before {
  transform: translate(-50%, -50%);
}

.faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-toggle-all[data-faq-expanded="true"] .faq-toggle-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-toggle-all[data-faq-expanded="true"] .faq-toggle-icon::after {
  transform: translate(-50%, -50%) rotate(135deg);
}

.faq-toggle-label {
  display: block;
  line-height: 1;
}

.faq-toggle-all:hover,
.faq-toggle-all:focus-visible {
  background: #f6eadf;
  border-color: rgba(242, 138, 46, 0.55);
  color: var(--ink);
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 40, 70, 0.04);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 18px 54px 18px 18px;
  color: var(--ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 850;
  line-height: 1.28;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--orange-2);
  border-bottom: 2px solid var(--orange-2);
  content: "";
  transform: translateY(-66%) rotate(45deg);
  transition: transform 160ms ease;
}

.faq-item[open] summary::after {
  transform: translateY(-30%) rotate(225deg);
}

.faq-item p {
  max-width: 760px;
  margin: -4px 54px 18px 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.faq-item a {
  color: var(--orange-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section.editorial-intro,
.section.editorial-section {
  max-width: none;
  padding-right: max(20px, calc((100vw - var(--subpage-max)) / 2));
  padding-left: max(20px, calc((100vw - var(--subpage-max)) / 2));
}

.editorial-intro {
  padding-top: 38px;
  padding-bottom: 12px;
}

.editorial-section {
  padding-top: 34px;
}

.editorial-hero + .editorial-section {
  padding-top: 44px;
}

.editorial-note {
  max-width: 880px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.editorial-note h2 {
  max-width: 680px;
  margin-bottom: 8px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.06;
}

.editorial-note p {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.editorial-section .section-heading {
  display: block;
  max-width: 880px;
  margin-bottom: 18px;
}

.editorial-section .section-heading h2 {
  max-width: 760px;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.05;
}

.editorial-section .eyebrow {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  color: var(--orange-2);
  font-size: 15px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.editorial-section .eyebrow::after {
  display: block;
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.section-lead {
  max-width: 760px;
  margin: -6px 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 900px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 40, 70, 0.04);
}

.editorial-card {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
  min-height: 100%;
  padding: 20px 22px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.editorial-card:last-child {
  border-bottom: 0;
}

.editorial-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.editorial-card-good .editorial-mark {
  background: #eaf6ef;
  color: #177047;
}

.editorial-card-bad .editorial-mark {
  background: #fff0ea;
  color: #a24024;
}

.editorial-card-good .editorial-mark::before {
  width: 13px;
  height: 7px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  content: "";
  transform: translateY(-1px) rotate(-45deg);
}

.editorial-card-bad .editorial-mark::before,
.editorial-card-bad .editorial-mark::after {
  position: absolute;
  width: 15px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.editorial-card-bad .editorial-mark::before {
  transform: rotate(45deg);
}

.editorial-card-bad .editorial-mark::after {
  transform: rotate(-45deg);
}

.editorial-card h3 {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.18;
}

.editorial-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.editorial-rejected {
  padding-top: 46px;
}

.editorial-compact {
  padding-top: 36px;
}

.editorial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  max-width: 900px;
  margin: 18px 0 0;
  padding: 20px 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 40, 70, 0.04);
  list-style: none;
}

.editorial-note .editorial-list {
  margin-top: 18px;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  list-style: none;
}

.editorial-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.editorial-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--orange-2);
  border-radius: 50%;
  content: "";
}

.editorial-cta p {
  max-width: 760px;
}

.section.legal-section {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  max-width: var(--subpage-max);
  padding-top: 44px;
  padding-right: 0;
  padding-left: 0;
}

.legal-toc {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 2px;
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 40, 70, 0.04);
}

.legal-toc a {
  padding: 8px 9px;
  border-radius: 4px;
  color: #425166;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  transition: background-color 160ms ease, color 160ms ease;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  background: #f6eadf;
  color: var(--navy);
}

.legal-document {
  display: grid;
  gap: 18px;
}

.legal-block {
  padding: 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 40, 70, 0.04);
  scroll-margin-top: 92px;
}

.legal-block h2 {
  max-width: none;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(24px, 2.8vw, 34px);
}

.legal-clause {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #edf1f4;
}

.legal-clause:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-clause span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: #eaf0f5;
  border-radius: 50%;
  color: var(--navy);
  font-size: 12px;
  font-weight: 900;
}

.legal-clause p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-section-simple .legal-block {
  padding: 24px 26px;
}

.legal-section-simple .legal-block p {
  max-width: 760px;
  margin-bottom: 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-section-simple .legal-block p:last-child {
  margin-bottom: 0;
}

.legal-section-simple .legal-block a {
  color: var(--orange-2);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 20px;
}

.section-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.why .section-heading {
  display: block;
  max-width: var(--max);
  margin-bottom: 24px;
  margin-right: auto;
  margin-left: auto;
  text-align: left;
}

.why .section-heading::after {
  display: none;
}

.why .eyebrow {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--accent-text);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.why .eyebrow::after {
  display: block;
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.why h2 {
  max-width: 760px;
  margin-right: 0;
  margin-left: 0;
}

.eyebrow {
  margin-bottom: 0;
  color: var(--accent-text);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(27px, 3.1vw, 38px);
  font-weight: 850;
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 7px;
  font-size: 17px;
  font-weight: 850;
  line-height: 1.22;
}

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.reason-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px 17px;
  align-items: start;
  align-content: start;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reason-grid article h3,
.reason-grid article p {
  grid-column: 2;
}

.reason-grid article h3 {
  margin-top: 4px;
}

.reason-grid article.wide {
  grid-column: auto;
}

.reason-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  grid-row: 1 / span 2;
  margin-bottom: 0;
  place-items: center;
  background: #eaf6ef;
  border: 1px solid #b9dfc7;
  border-radius: var(--radius);
  color: #137047;
}

.reason-icon svg {
  display: none;
}

.reason-icon::before {
  content: "";
  width: 18px;
  height: 10px;
  border-bottom: 3px solid currentColor;
  border-left: 3px solid currentColor;
  transform: translateY(-2px) rotate(-45deg);
}

.reason-grid p,
.testimonial p,
.footer,
.footer-bottom {
  color: var(--muted);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: none;
  margin: 0;
  padding: 34px max(20px, calc((100vw - var(--max)) / 2));
  background: linear-gradient(90deg, #06142c 0%, #092654 58%, #071c42 100%);
}

.metrics div {
  padding: 22px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
  opacity: 0.72;
  transform: translateY(12px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.metrics.is-visible div {
  opacity: 1;
  transform: translateY(0);
}

.metrics.is-visible div:nth-child(2) {
  transition-delay: 80ms;
}

.metrics.is-visible div:nth-child(3) {
  transition-delay: 160ms;
}

.metrics.is-visible div:nth-child(4) {
  transition-delay: 240ms;
}

.metrics strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: transform 180ms ease;
}

.metrics strong.is-rolling {
  transform: translateY(-2px);
}

.metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.pricing-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100vw;
  max-width: none;
  margin: 44px 0 0 calc(50% - 50vw);
  padding: 34px max(20px, calc((100vw - 800px) / 2));
  border-radius: 0;
}

.pricing-metrics div {
  padding: 20px 16px;
  border-radius: 4px;
}

.pricing-metrics div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.testimonials {
  max-width: none;
  padding-top: 52px;
  padding-left: 32px;
  padding-right: 32px;
}

.testimonial-page-list {
  padding-top: 44px;
}

.testimonial-page-list .testimonial-list {
  max-width: var(--subpage-max);
}

.testimonials .section-heading {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
  text-align: left;
}

.testimonials .section-heading::after {
  display: block;
  height: 1px;
  flex: 1;
  background: var(--line);
  content: "";
}

.testimonials .eyebrow {
  display: block;
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: var(--accent-text);
  font-size: 16px;
  letter-spacing: 0;
  text-transform: none;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
  max-width: 1540px;
  margin: 0 auto;
}

.testimonial-list {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 16px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.testimonial {
  position: relative;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.testimonial-list .testimonial {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(16, 40, 70, 0.05);
}

.testimonial-list .testimonial:first-child {
  grid-row: span 3;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 20px;
}

.testimonial-list .testimonial:not(:first-child) {
  grid-template-columns: 140px minmax(0, 1fr);
  padding: 20px;
}

.testimonial-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-media {
  display: grid;
  gap: 10px;
  justify-items: center;
  align-content: start;
}

.testimonial-list .testimonial:first-child .testimonial-photo {
  width: 132px;
  height: 132px;
}

.testimonial-list .testimonial:not(:first-child) .testimonial-photo {
  width: 132px;
  height: 132px;
}

.testimonial-body {
  position: relative;
  min-height: 132px;
  padding-right: 18px;
}

.testimonial-list .testimonial:first-child .testimonial-body {
  min-height: 132px;
}

.testimonial-body h3 {
  margin-bottom: 3px;
  color: var(--ink);
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.08;
}

.role {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.role a {
  color: #4267e8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonial-body > p:not(.role):not(.stars) {
  max-width: none;
  margin-bottom: 12px;
  color: #556174;
  font-size: 15px;
  line-height: 1.52;
}


.testimonial.featured {
  box-shadow: var(--shadow);
}

.testimonial-stack {
  display: contents;
}

.person {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 15px;
  align-items: start;
  margin-bottom: 16px;
  padding-right: 26px;
}

.featured .person {
  grid-template-columns: 88px minmax(0, 1fr);
}

.person > img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
}

.featured .person > img {
  width: 88px;
  height: 88px;
}

.person h3 {
  margin-bottom: 2px;
}

.person span {
  display: block;
  font-size: 13px;
}

.linkedin-link {
  display: inline-flex;
  width: 64px;
  height: 24px;
  margin: 0;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 0;
}

.linkedin-link img {
  width: 64px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
}

.testimonial .stars {
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 16px;
  letter-spacing: 0;
}

.closing {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  max-width: var(--subpage-max);
  margin: 28px auto 0;
  padding: 30px 20px;
  background: var(--navy-3);
  border-radius: var(--radius);
  color: #fff;
}

.closing h2 {
  font-size: clamp(22px, 2.4vw, 30px);
}

.closing p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.newsroom-hero .lead {
  max-width: 620px;
}

.newsroom-page .newsroom-hero,
.category-page .newsroom-hero,
.drafts-page .newsroom-hero {
  padding-right: max(20px, calc((100vw - var(--subpage-max)) / 2 + 20px));
  padding-left: max(20px, calc((100vw - var(--subpage-max)) / 2 + 20px));
}

.newsroom-section,
.category-section {
  max-width: var(--subpage-max);
}

.newsroom-feed {
  display: grid;
  gap: 12px;
}

.newsroom-card {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(16, 40, 70, 0.06);
}

.newsroom-card-media {
  align-self: center;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #e7edf3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: var(--radius);
}

.newsroom-card-media-empty {
  background:
    linear-gradient(135deg, rgba(16, 40, 70, 0.08), rgba(242, 138, 46, 0.11)),
    #edf2f6;
}

.newsroom-card-copy {
  display: grid;
  align-content: center;
  min-width: 0;
  padding: 6px 6px 6px 0;
}

.newsroom-card-title {
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.18;
}

.newsroom-card-excerpt {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.newsroom-empty {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-weight: 750;
}

.newsroom-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
}

.pagination-btn,
.post-back {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 13px;
  font-weight: 850;
}

.pagination-btn:hover,
.post-back:hover {
  border-color: rgba(242, 138, 46, 0.6);
  color: var(--ink);
}

.pagination-info {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.post-hero-band {
  background:
    linear-gradient(90deg, rgba(3, 11, 28, 0.97), rgba(9, 38, 84, 0.95) 64%, rgba(11, 27, 48, 0.98)),
    var(--navy-3);
}

.post-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 0;
}

.post-back-on-dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.9);
}

.post-back-on-dark:hover {
  border-color: rgba(242, 138, 46, 0.7);
  color: #fff;
}

.post-shell {
  max-width: var(--subpage-max);
  margin: 0 auto;
  padding: 28px 20px 0;
}

.post-back-row {
  margin-bottom: 14px;
}

.post-card {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(16, 40, 70, 0.08);
}

.post-card h1 {
  max-width: none;
  margin-bottom: 20px;
  color: var(--ink);
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.08;
}

.post-hero-img {
  width: 100%;
  max-height: 480px;
  margin: 0 0 26px;
  border-radius: var(--radius);
  object-fit: cover;
}

.post-content {
  color: #202832;
  font-size: 16px;
  line-height: 1.78;
}

.post-content > *:first-child {
  margin-top: 0;
}

.post-content > *:last-child {
  margin-bottom: 0;
}

.post-content p,
.post-content ul,
.post-content ol {
  margin: 0 0 18px;
}

.post-content h2,
.post-content h3 {
  max-width: none;
  margin: 30px 0 12px;
  color: var(--ink);
}

.post-content h2 {
  font-size: 26px;
  line-height: 1.18;
}

.post-content h3 {
  font-size: 20px;
}

.post-content a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.post-content img {
  height: auto;
  margin: 24px 0;
  border-radius: var(--radius);
}

.related-posts {
  max-width: 860px;
  margin: 38px auto 0;
}

.related-posts h2 {
  max-width: none;
  margin-bottom: 18px;
  font-size: clamp(24px, 2.6vw, 32px);
}

.related-posts h2 a {
  color: var(--orange-2);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.newsroom-card.compact {
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
}

.newsroom-card.compact .newsroom-card-title {
  font-size: 15px;
}

.post-cta {
  max-width: 860px;
  margin-top: 42px;
}

.company-list {
  display: grid;
  gap: 9px;
}

.company-card {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 17px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.company-card-name {
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
}

.company-card-count {
  flex: 0 0 auto;
  color: var(--orange-2);
  font-size: 13px;
  font-weight: 850;
}

.category-section > .post-back {
  margin-bottom: 16px;
}

.draft-banner {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 860px;
  margin: 0 auto 14px;
  padding: 12px 14px;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  color: #7c2d12;
}

.draft-banner.inline {
  justify-content: center;
  max-width: none;
  margin-bottom: 22px;
  background: #f97316;
  border-color: #f97316;
  color: #fff;
  text-align: center;
}

.draft-banner.inline strong,
.draft-banner.inline span {
  color: #fff;
}

.draft-post-notice {
  max-width: 860px;
  margin-bottom: 14px;
  background: #f97316;
  border-color: #f97316;
  color: #fff;
}

.draft-post-notice strong,
.draft-post-notice span {
  color: #fff;
}

.draft-banner strong {
  color: #9a3412;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #fff;
}

.footer {
  max-width: none;
  margin: 54px 0 0;
  padding: 42px max(20px, calc((100vw - var(--max)) / 2)) 30px;
  background: #29313b;
  color: #c7ced6;
}

.footer-top,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.footer-bottom {
  color: #87929e;
}

.footer-logo img {
  width: 122px;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-top a:not(.footer-logo),
.footer a {
  color: #d8dde3;
  font-size: 13px;
  font-weight: 750;
  transition: color 160ms ease;
}

.footer-top a:not(.footer-logo) {
  color: #fff;
}

.footer a:hover,
.footer a:focus-visible {
  color: #f3a13e;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr repeat(3, minmax(150px, 0.8fr));
  gap: 22px;
  margin: 30px 0 24px;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-columns h3 {
  margin-bottom: 11px;
  color: #fff;
  font-size: 14px;
}

.footer-columns nav {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-bottom p {
  margin-bottom: 0;
  color: #aeb7c1;
}

.payments {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.payments img {
  width: auto;
  height: 22px;
  padding: 3px 5px;
  background: #fff;
  border-radius: 3px;
}

.payments span {
  color: #d8dde3;
  font-size: 12px;
  font-weight: 850;
}

.footer-bottom nav {
  display: flex;
  gap: 8px;
  align-items: center;
}

@media (max-width: 900px) {
  .header {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px 20px 10px;
  }

  .hero-inner,
  .section-heading,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .nav {
    justify-content: flex-start;
    gap: 22px;
    font-size: 13.5px;
  }

  .nav a {
    padding: 8px 0 10px;
  }

  .nav a::before {
    top: -5px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
    padding-top: 48px;
  }

  .hero-copy {
    max-width: 720px;
    padding: 0;
  }

  .metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-list {
    grid-template-columns: 1fr;
    max-width: 720px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .pricing-hero-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 42px;
  }

  .pricing-partners {
    justify-content: flex-start;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin: 0 auto;
  }

  .section.legal-section {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 760px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .legal-toc {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .editorial-list {
    grid-template-columns: 1fr;
  }

  .team-member {
    grid-template-columns: 150px minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 22px;
    padding: 20px;
  }

  .team-media img,
  .team-initial {
    width: 150px;
    height: 150px;
    aspect-ratio: auto;
  }

  .testimonial-list {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .testimonial-list .testimonial:first-child {
    grid-row: auto;
  }

  .release-visual {
    width: min(100%, 430px);
    min-height: 260px;
    justify-self: start;
  }

  .release-sheet {
    min-height: 252px;
    transform: rotate(-0.8deg);
  }

  .testimonial-list .testimonial {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 20px;
    padding: 22px;
  }

  .testimonial-photo {
    width: 132px;
    height: 132px;
  }

  .testimonial-list .testimonial:not(:first-child) .testimonial-photo,
  .testimonial-list .testimonial:first-child .testimonial-photo {
    width: 132px;
    height: 132px;
  }

  .testimonial-body {
    min-height: 132px;
  }

  .testimonial-body > p:not(.role):not(.stars) {
    font-size: 15.5px;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero h1,
  .hero .price-line,
  .hero .lead,
  .hero .hero-actions {
    animation: none;
  }
}

@media (max-width: 620px) {
  .header {
    position: sticky;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 12px 16px;
    overflow: visible;
  }

  .header.is-scrolled {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand img {
    width: 138px;
  }

  .header.is-scrolled .brand img {
    width: 128px;
  }

  .menu-toggle {
    display: inline-grid;
    width: 42px;
    height: 38px;
    padding: 0;
    place-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    grid-area: 1 / 1;
    background: var(--navy);
    border-radius: 2px;
    transition: opacity 160ms ease, transform 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    transform: translateY(-6px);
  }

  .menu-toggle span:nth-child(3) {
    transform: translateY(6px);
  }

  .menu-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .menu-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .nav {
    display: none;
    grid-column: 1 / -1;
    gap: 0;
    margin: 2px 0 0;
    padding: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 14px 34px rgba(16, 40, 70, 0.12);
    color: #26384d;
    font-size: 14px;
  }

  .menu-open .nav {
    display: grid;
  }

  .nav-item {
    display: grid;
  }

  .nav a,
  .nav-parent {
    padding: 11px 10px;
    border-radius: 4px;
  }

  .nav-parent {
    width: 100%;
    text-align: left;
  }

  .nav-item + a,
  .nav a + a {
    border-top: 1px solid #edf1f4;
  }

  .nav-parent {
    border-bottom: 1px solid #edf1f4;
  }

  .nav a::before,
  .nav-parent::before {
    display: none;
  }

  .nav a:hover,
  .nav a:focus-visible,
  .nav-parent:hover,
  .nav-parent:focus-visible {
    background: #f6eadf;
    color: var(--navy);
  }

  .dropdown {
    position: static;
    display: grid;
    min-width: 0;
    padding: 4px 0 6px 14px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .dropdown::before {
    display: none;
  }

  .dropdown a {
    padding: 8px 10px;
    color: #526173;
    font-size: 13px;
    white-space: normal;
  }

  .nav .client-login {
    margin-left: 0;
    padding: 11px 10px;
    background: transparent;
    border: 0;
    border-top: 1px solid #edf1f4;
    border-radius: 4px;
  }

  .hero-inner,
  .page-hero,
  .section,
  .metrics,
  .testimonials,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-inner {
    gap: 28px;
    padding-top: 34px;
    padding-bottom: 34px;
  }

  h1 {
    max-width: 460px;
    font-size: clamp(34px, 10.2vw, 44px);
    line-height: 1.03;
  }

  .price-line {
    font-size: clamp(23px, 7vw, 29px);
  }

  .lead {
    font-size: 16px;
    line-height: 1.5;
  }

  .page-hero {
    padding-top: 38px;
    padding-bottom: 24px;
  }

  .about-hero {
    gap: 0;
  }

  .team-member {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    gap: 18px;
    padding: 18px;
  }

  .team-media img,
  .team-initial {
    width: 112px;
    height: 112px;
  }

  .team-initial {
    font-size: 40px;
  }

  .team-link {
    margin-top: 3px;
  }

  .team-link img {
    width: 64px;
    height: auto;
  }

  .contact-form,
  .contact-direct {
    padding: 18px;
  }

  .pricing-hero-inner,
  .pricing-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pricing-hero-inner {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .pricing-partners {
    gap: 16px 24px;
    padding: 0;
  }

  .pricing-partners img {
    height: 30px;
    max-width: 150px;
  }

  .pricing-partners .proof-yahoo {
    height: 36px;
  }

  .pricing-partners .proof-access {
    height: 31px;
  }

  .pricing-partners .proof-google {
    height: 42px;
  }

  .pricing-partners .proof-digital {
    height: 46px;
  }

  .pricing-section {
    padding-top: 30px;
  }

  .pricing-card {
    padding: 18px;
  }

  .plan-art-band {
    min-height: 68px;
    margin: -18px -18px 16px;
    padding: 13px 22px 12px;
  }

  .plan-art-band h2 {
    margin-left: 24px;
  }

  .plan-purchase {
    margin: 0 -18px -18px;
  }

  .plan-image {
    max-width: 300px;
    height: 40px;
  }

  .bulk-pricing {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    margin-top: 42px;
    padding: 22px 18px 22px 104px;
  }

  .bulk-icon {
    left: -24px;
    width: 108px;
  }

  .bulk-pricing .btn {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .section.contact-section,
  .section.faq-section,
  .section.editorial-intro,
  .section.editorial-section,
  .section.legal-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .editorial-note,
  .editorial-card {
    padding: 18px;
  }

  .editorial-note {
    padding: 0;
  }

  .editorial-card {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 12px;
  }

  .editorial-mark {
    width: 28px;
    height: 28px;
  }

  .legal-toc {
    grid-template-columns: 1fr;
    padding: 10px;
  }

  .legal-block {
    padding: 18px;
  }

  .legal-clause {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .release-visual {
    width: min(100%, 296px);
    min-height: 212px;
    justify-self: center;
  }

  .release-sheet {
    min-height: 212px;
    padding: 19px 16px 18px;
  }

  .release-visual::after {
    transform: rotate(1.2deg) translate(10px, 13px);
  }

  .release-kicker {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 10px;
  }

  .release-title {
    height: 11px;
    margin-bottom: 8px;
  }

  .release-title.short {
    margin-bottom: 15px;
  }

  .release-lines {
    gap: 6px;
    margin-bottom: 10px;
  }

  .release-lines span {
    height: 6px;
  }

  .release-tags {
    gap: 7px 8px;
    padding-top: 10px;
  }

  .release-tags img {
    height: 36px;
  }

  .release-tags .yahoo-logo {
    height: 42px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .reason-grid,
  .metrics,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .metrics {
    gap: 10px;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .metrics div {
    padding: 18px;
  }

  .metrics strong {
    font-size: 30px;
  }

  .section {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .section-heading,
  .why .section-heading {
    margin-bottom: 20px;
  }

  .why .eyebrow,
  .testimonials .eyebrow {
    font-size: 15px;
  }

  h2 {
    font-size: clamp(26px, 8vw, 34px);
    line-height: 1.08;
  }

  .reason-grid article {
    padding: 17px;
  }

  .testimonials {
    padding-top: 38px;
  }

  .testimonials .section-heading {
    margin-bottom: 18px;
  }

  .testimonial-list .testimonial {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .testimonial-list .testimonial:first-child,
  .testimonial-list .testimonial:not(:first-child) {
    grid-template-columns: 1fr;
  }

  .testimonial-media {
    justify-items: start;
  }

  .testimonial-photo {
    width: 132px;
    height: 132px;
  }

  .testimonial-list .testimonial:first-child .testimonial-photo,
  .testimonial-list .testimonial:not(:first-child) .testimonial-photo {
    width: 132px;
    height: 132px;
  }

  .testimonial-body {
    min-height: 0;
    padding-right: 0;
  }

  .testimonial-body h3 {
    padding-right: 0;
    font-size: 24px;
  }

  .testimonial-body > p:not(.role):not(.stars) {
    font-size: 15px;
  }

  .reason-grid article.wide {
    grid-column: auto;
  }

  .person,
  .featured .person {
    grid-template-columns: 1fr;
  }

  .closing {
    display: grid;
    margin-left: 16px;
    margin-right: 16px;
    padding: 26px 20px;
  }

  .newsroom-section,
  .category-section,
  .post-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .newsroom-card,
  .newsroom-card.compact {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 12px;
    padding: 10px;
  }

  .newsroom-card-copy {
    padding: 2px 2px 2px 0;
  }

  .newsroom-card-title {
    font-size: 15px;
    line-height: 1.22;
  }

  .newsroom-card-excerpt {
    margin-top: 6px;
    font-size: 13px;
    line-height: 1.42;
  }

  .post-hero-inner {
    padding: 18px 16px;
  }

  .post-shell {
    padding-top: 20px;
  }

  .post-card {
    padding: 20px;
  }

  .post-card h1 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .post-content {
    font-size: 15px;
    line-height: 1.72;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .post-cta {
    margin-top: 34px;
  }

  .company-card {
    display: grid;
    gap: 5px;
    align-items: start;
    padding: 14px;
  }

  .company-card-count {
    font-size: 12px;
  }

  .draft-banner {
    align-items: flex-start;
  }

  .footer {
    margin-top: 42px;
    padding-top: 34px;
    padding-bottom: 28px;
  }

  .footer-top,
  .footer-bottom {
    align-items: flex-start;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 24px 0 22px;
    padding: 24px 0;
  }

  .footer-bottom {
    display: grid;
  }
}
