:root {
  --paper: #fbfcfd;
  --white: #ffffff;
  --ink: #082347;
  --ink-soft: #25415f;
  --navy: #062d5b;
  --navy-2: #0b3b76;
  --orange: #ff6b1a;
  --orange-2: #f39b3d;
  --line: #dbe4ee;
  --mist: #eef4f9;
  --shadow: 0 24px 80px rgba(6, 45, 91, 0.14);
  --shadow-soft: 0 12px 32px rgba(6, 45, 91, 0.1);
  --radius: 8px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 24px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

main {
  display: flex;
  flex-direction: column;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 700;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.85rem, 4vw, 4.25rem);
  letter-spacing: 0;
}

h1 span {
  display: block;
}

.accent-line {
  color: var(--orange);
}

h2 {
  font-size: clamp(2.1rem, 4.6vw, 4.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.skip-link {
  position: absolute;
  top: 0;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(calc(-100% - 16px));
}

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

.site-header {
  position: relative;
  top: 0;
  z-index: 80;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  min-height: 76px;
  padding: 10px clamp(18px, 3.4vw, 52px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 228, 238, 0.86);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 36px rgba(6, 45, 91, 0.08);
}

.brand {
  display: inline-grid;
  gap: 2px;
}

.brand-main {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 1.8vw, 1.95rem);
  color: var(--ink);
  white-space: nowrap;
}

.brand-main span {
  color: var(--orange);
}

.brand-sub {
  font-size: 0.76rem;
  color: var(--ink-soft);
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 1.65vw, 28px);
  font-size: clamp(0.75rem, 0.9vw, 0.86rem);
  font-weight: 700;
  color: var(--ink-soft);
}

.site-nav a {
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}

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

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 24px rgba(255, 107, 26, 0.22);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--ink);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.button-primary:hover {
  background: #e95d10;
  box-shadow: 0 16px 34px rgba(255, 107, 26, 0.28);
}

.button-secondary:hover {
  background: var(--mist);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  order: 1;
  min-height: 448px;
  align-items: center;
  overflow: hidden;
  background: var(--white);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 76px;
  content: "";
  pointer-events: none;
  background: linear-gradient(0deg, var(--paper), rgba(251, 252, 253, 0));
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.99) 0%, rgba(255, 255, 255, 0.94) 39%, rgba(255, 255, 255, 0.46) 62%, rgba(255, 255, 255, 0.04) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.01) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 850px;
  min-width: 0;
  padding: clamp(34px, 4.2vw, 58px) clamp(20px, 5vw, 72px);
}

.hero-lead {
  max-width: 640px;
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1.35vw, 1.1rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 770px;
  margin-top: 28px;
}

.proof-strip div {
  min-height: 68px;
  padding: 10px 14px 10px 46px;
  background: rgba(255, 255, 255, 0.58);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
}

.proof-strip div::before {
  position: absolute;
  left: 4px;
  top: 18px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 50%;
  content: "✓";
  font-size: 0.85rem;
  font-weight: 900;
}

.proof-strip strong {
  display: block;
  color: var(--navy);
  font-size: 0.94rem;
}

.proof-strip span {
  display: block;
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.metric-band {
  position: relative;
  z-index: 3;
  order: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: linear-gradient(90deg, #052a55, #0b3d78);
  color: var(--white);
}

.metric {
  min-height: 108px;
  padding: clamp(18px, 2.1vw, 26px);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.metric span {
  display: block;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  line-height: 1;
}

.metric strong {
  display: block;
  margin-top: 8px;
  font-size: 0.9rem;
}

.metric p {
  display: none;
}

.section {
  padding: clamp(70px, 8vw, 124px) clamp(20px, 5vw, 72px);
}

.section-heading {
  max-width: 1040px;
  margin: 0 auto clamp(42px, 5vw, 70px);
  text-align: center;
}

.section-heading p,
.longform-header p {
  max-width: 860px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.section-link-button {
  margin-top: 24px;
}

.intro-grid {
  order: 9;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
}

.section-copy p + p,
.knowledge-article p + p,
.network-copy p + p {
  margin-top: 18px;
}

.section-copy p,
.knowledge-article p,
.network-copy p,
.service-duo p,
.audience-card p,
.article-card p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.section-copy p:first-of-type,
.network-copy p:first-of-type,
.impact-section .section-copy p:first-of-type,
.longform-header p,
.knowledge-article p:first-of-type {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.25vw, 1.16rem);
  font-weight: 650;
  line-height: 1.62;
}

.section-copy h2 {
  margin-bottom: 24px;
}

.agency-board {
  min-height: 610px;
  padding: 28px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 45, 91, 0.97), rgba(7, 66, 120, 0.94)),
    radial-gradient(circle at 70% 12%, rgba(255, 107, 26, 0.3), transparent 34%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.board-title {
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.orbit-graphic {
  position: relative;
  height: 320px;
  margin: 32px 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
}

.orbit-graphic::before,
.orbit-graphic::after {
  position: absolute;
  inset: 42px;
  content: "";
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 50%;
}

.orbit-graphic::after {
  inset: 92px;
  border-style: solid;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(255, 107, 26, 0.16);
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 1.45rem;
}

.orbit-dot {
  position: absolute;
  display: grid;
  min-width: 88px;
  min-height: 44px;
  place-items: center;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.dot-a {
  top: 24px;
  left: 54%;
}

.dot-b {
  top: 46%;
  right: 16px;
}

.dot-c {
  bottom: 28px;
  left: 42%;
}

.dot-d {
  top: 40%;
  left: 8px;
}

.board-notes {
  display: grid;
  gap: 12px;
}

.board-notes p {
  padding: 18px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  line-height: 1.45;
}

.board-notes strong {
  display: block;
  color: var(--white);
}

.product-section {
  order: 3;
  padding-top: clamp(38px, 4.5vw, 70px);
  padding-bottom: clamp(46px, 5vw, 82px);
  background:
    linear-gradient(180deg, var(--paper), #ffffff 18%, #ffffff 72%, var(--paper));
}

.product-section .section-heading {
  margin-bottom: 28px;
}

.product-section .section-heading h2 {
  font-size: clamp(1.75rem, 2.35vw, 2.25rem);
}

.product-section .section-heading p {
  max-width: 720px;
  font-size: 0.98rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 1220px;
  margin: 0 auto;
  background: var(--white);
}

.price-card,
.quality-card,
.audience-card,
.article-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.price-card {
  display: grid;
  min-height: 370px;
  align-content: start;
  padding: 20px 36px;
  border: 0;
  border-left: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.price-card:first-child {
  border-left: 0;
}

.price-card-featured {
  border-color: var(--line);
  box-shadow: none;
}

.price-ribbon {
  display: none;
}

.price-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border: 2px solid var(--navy);
  background:
    linear-gradient(var(--orange), var(--orange)) 16px 36px / 24px 3px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 16px 24px / 24px 3px no-repeat;
}

.document-icon {
  border-radius: 2px 12px 2px 2px;
}

.stack-icon {
  border: 0;
  background:
    linear-gradient(145deg, var(--navy), var(--navy-2)) 7px 11px / 42px 9px no-repeat,
    linear-gradient(145deg, var(--navy), var(--navy-2)) 7px 24px / 42px 9px no-repeat,
    linear-gradient(145deg, var(--orange), var(--orange-2)) 7px 37px / 42px 9px no-repeat;
}

.tower-icon {
  border-radius: 4px;
  background:
    linear-gradient(var(--navy), var(--navy)) 10px 12px / 8px 8px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 25px 12px / 8px 8px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 40px 12px / 8px 8px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 10px 30px / 8px 8px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 25px 30px / 8px 8px no-repeat,
    linear-gradient(var(--navy), var(--navy)) 40px 30px / 8px 8px no-repeat;
}

.price-card h3 {
  margin-bottom: 9px;
  font-size: 1.1rem;
  font-family: var(--sans);
  color: var(--navy);
}

.price-use {
  min-height: 42px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 16px;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.42;
}

.price-card li::before,
.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 2px 0 14px;
  color: var(--ink);
}

.price-tag strong {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1;
}

.price-tag span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.price-card .button {
  margin-top: auto;
  justify-self: start;
  min-width: 184px;
  min-height: 40px;
  padding: 10px 18px;
}

.service-duo {
  display: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1220px;
  margin: 28px auto 0;
}

.package-note {
  max-width: 960px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  text-align: center;
}

.package-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.service-duo div {
  padding: 34px;
  background: linear-gradient(135deg, #ffffff, #f5f9fc);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.service-duo h3 {
  margin-bottom: 14px;
}

.package-page main {
  display: block;
}

.package-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.6fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(54px, 8vw, 112px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.08), transparent 36%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.package-hero-copy {
  max-width: 860px;
}

.package-hero-copy h1 {
  max-width: 860px;
  margin-top: 12px;
  font-size: clamp(3rem, 7vw, 6rem);
}

.package-hero-copy p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.04rem, 1.4vw, 1.22rem);
}

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

.package-hero-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.package-hero-panel div {
  padding: 18px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.package-hero-panel strong {
  display: block;
  color: var(--navy);
  font-size: 1.2rem;
}

.package-hero-panel span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.all-packages-section {
  padding-top: clamp(48px, 7vw, 92px);
  background: var(--white);
}

.all-package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.package-card-featured {
  border-color: rgba(255, 107, 26, 0.7);
  box-shadow: 0 24px 70px rgba(255, 107, 26, 0.18);
}

.package-ribbon {
  align-self: flex-start;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  background: var(--orange);
  border-radius: 999px;
}

.package-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 1.25rem;
}

.package-card p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.package-price {
  margin: 20px 0 16px;
}

.package-price strong {
  display: block;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 2.65rem);
  line-height: 1;
}

.package-price span {
  display: block;
  margin-top: 8px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
}

.package-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--orange);
  content: "✓";
  font-weight: 900;
}

.package-card .button {
  width: 100%;
  margin-top: auto;
}

.package-info-section {
  background: var(--paper);
}

.package-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.package-info-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.package-info-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.2rem;
}

.package-info-grid p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.portal-page main {
  display: block;
}

.portal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  padding: clamp(56px, 8vw, 118px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, var(--paper));
}

.portal-hero-copy {
  max-width: 860px;
}

.portal-hero-copy h1 {
  font-size: clamp(3.2rem, 8vw, 6.6rem);
}

.portal-hero-copy p {
  max-width: 760px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

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

.portal-signal-panel {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portal-signal-panel div {
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(10, 49, 95, 0.04), transparent 68%),
    #f7fafc;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.portal-signal-panel strong {
  display: block;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3vw, 2.7rem);
  line-height: 1;
}

.portal-signal-panel span {
  display: block;
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.portal-quality-section,
.portal-overview-section {
  background: var(--white);
}

.portal-cluster-section,
.portal-newsflow-section {
  background: var(--paper);
}

.portal-quality-grid,
.portal-cluster-grid {
  display: grid;
  gap: 18px;
  max-width: 1220px;
  margin: 0 auto;
}

.portal-quality-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.portal-quality-grid article,
.portal-cluster-grid article {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.portal-cluster-grid article {
  min-height: 220px;
}

.portal-cluster-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-weight: 900;
}

.portal-quality-grid h3,
.portal-cluster-grid h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.18rem;
}

.portal-quality-grid p,
.portal-cluster-grid p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.portal-table-wrap {
  max-width: 1220px;
  margin: 0 auto;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.portal-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  background: var(--white);
}

.portal-table th,
.portal-table td {
  padding: 17px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.portal-table th {
  color: var(--white);
  background: var(--navy);
}

.portal-table th:first-child,
.portal-table td:first-child {
  width: 26%;
  color: var(--navy);
  font-weight: 900;
}

.portal-table td:first-child a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: rgba(255, 107, 26, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.portal-table td:first-child a:hover {
  color: var(--orange);
  text-decoration-color: currentColor;
}

.portal-table th:last-child,
.portal-table td:last-child {
  border-right: 0;
}

.portal-table tr:last-child td {
  border-bottom: 0;
}

.portal-newsflow-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.26), transparent 48%),
    var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portal-newsflow-card h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.portal-newsflow-card p {
  max-width: 720px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
}

.photo-band,
.photo-cta {
  position: relative;
  display: grid;
  min-height: 520px;
  align-items: center;
  overflow: hidden;
}

.photo-band img,
.photo-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-band::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 42%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0));
}

.photo-band-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: clamp(42px, 6vw, 80px) clamp(20px, 5vw, 72px);
}

.photo-band-copy p,
.photo-cta-copy p {
  margin-top: 20px;
  color: var(--ink-soft);
  font-size: 1.14rem;
}

.photo-band {
  display: none;
}

.comparison-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 92px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.quality-section {
  order: 4;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.9fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
}

.quality-section .section-heading {
  max-width: 430px;
  margin: 0;
  text-align: left;
}

.quality-section .section-heading h2 {
  font-size: clamp(2rem, 2.85vw, 3rem);
}

.quality-section .section-heading p {
  margin: 16px 0 0;
  font-size: 0.98rem;
}

.quality-section .comparison-layout {
  grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr);
  gap: 16px;
  max-width: none;
  margin: 0;
}

.quality-section .quality-card {
  min-height: 300px;
  padding: 26px;
}

.quality-section .quality-card h3 {
  margin-bottom: 16px;
  font-size: 1.45rem;
}

.quality-section .check-list,
.quality-section .cross-list {
  gap: 9px;
}

.quality-section .check-list li,
.quality-section .cross-list li {
  font-size: 0.9rem;
  line-height: 1.38;
}

.quality-section .versus {
  width: 74px;
  height: 74px;
  font-size: 1.6rem;
}

.quality-card {
  min-height: 430px;
  padding: 34px;
}

.quality-card h3 {
  margin-bottom: 22px;
}

.quality-card.muted {
  opacity: 0.86;
}

.check-list,
.cross-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink-soft);
}

.cross-list li::before {
  position: absolute;
  left: 0;
  color: #8a97a7;
  content: "×";
  font-weight: 900;
}

.versus {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
  box-shadow: var(--shadow-soft);
}

.editorial-graphic {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 34px;
  max-width: 1120px;
  margin: 42px auto 0;
  align-items: center;
}

.article-sheet {
  min-height: 430px;
  padding: 38px;
  background:
    linear-gradient(90deg, rgba(255, 107, 26, 0.08), transparent 32%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.sheet-kicker {
  display: block;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-sheet h3 {
  max-width: 560px;
  margin-top: 16px;
}

.sheet-line {
  width: 70%;
  height: 9px;
  margin-top: 18px;
  background: var(--mist);
  border-radius: 999px;
}

.sheet-line.wide {
  width: 88%;
  margin-top: 28px;
}

.sheet-line.short {
  width: 42%;
}

.quote-block {
  margin-top: 30px;
  padding: 24px;
  color: var(--navy);
  background: #f4f8fb;
  border-left: 4px solid var(--orange);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.sheet-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.sheet-columns span {
  height: 56px;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  border-radius: 4px;
}

.annotation-list {
  display: grid;
  gap: 14px;
}

.annotation-list p {
  padding: 20px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process-section {
  order: 5;
  background: var(--white);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1320px;
  margin: 0 auto;
}

.timeline-step {
  position: relative;
  min-height: 300px;
  padding: 28px 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.timeline-step::after {
  position: absolute;
  top: 41px;
  right: -17px;
  z-index: 2;
  width: 20px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.timeline-step:last-child::after {
  display: none;
}

.timeline-step span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 50%;
  font-weight: 900;
}

.timeline-step p {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.52;
}

.workflow-map {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr 42px 1fr 42px 1fr;
  gap: 12px;
  align-items: center;
  max-width: 1120px;
  margin: 42px auto 0;
}

.map-node {
  display: grid;
  min-height: 92px;
  place-items: center;
  padding: 16px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.map-node.active {
  color: var(--white);
  background: var(--navy);
}

.map-line {
  height: 2px;
  background: var(--orange);
}

.network-section {
  order: 6;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  padding: clamp(80px, 9vw, 140px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    radial-gradient(circle at 65% 34%, rgba(255, 107, 26, 0.22), transparent 28%),
    linear-gradient(135deg, #05274f, #0a3b73);
}

.network-copy h2 {
  color: var(--white);
}

.network-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.network-visual {
  min-height: 560px;
}

.map-grid {
  position: relative;
  height: 390px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px) 0 0 / 34px 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.map-grid::before {
  position: absolute;
  inset: 46px 28%;
  content: "";
  background:
    radial-gradient(circle at 45% 15%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 28%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 38% 41%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 55% 58%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px),
    radial-gradient(circle at 43% 78%, rgba(255, 255, 255, 0.9) 0 2px, transparent 3px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 48% 44% 50% 42%;
  transform: rotate(4deg);
}

.map-grid span {
  position: absolute;
  top: var(--y);
  left: var(--x);
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 12px rgba(255, 107, 26, 0.2), 0 0 32px rgba(255, 107, 26, 0.8);
}

.network-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.network-categories span {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  font-weight: 800;
}

.audience-grid,
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1220px;
  margin: 0 auto;
}

.audience-section {
  order: 10;
}

.audience-card {
  overflow: hidden;
}

.audience-art {
  height: 220px;
  background:
    linear-gradient(135deg, rgba(6, 45, 91, 0.82), rgba(6, 45, 91, 0.3)),
    radial-gradient(circle at 72% 35%, rgba(255, 107, 26, 0.82), transparent 18%),
    linear-gradient(135deg, #f3f8fc, #dce8f2);
}

.founder-art {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.1), rgba(6, 45, 91, 0.9)),
    url("assets/strategy-meeting.png") center / cover;
}

.coach-art {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.18), rgba(6, 45, 91, 0.88)),
    radial-gradient(circle at 58% 36%, rgba(255, 107, 26, 0.42), transparent 28%),
    linear-gradient(135deg, #f8fbfd, #d7e4ef);
}

.agency-art {
  background:
    linear-gradient(130deg, rgba(255, 255, 255, 0.12), rgba(6, 45, 91, 0.86)),
    url("assets/hero-newsroom.png") center / cover;
}

.audience-card h3,
.audience-card p {
  padding-right: 26px;
  padding-left: 26px;
}

.audience-card h3 {
  padding-top: 28px;
}

.audience-card p {
  padding-top: 14px;
  padding-bottom: 30px;
}

.impact-section {
  order: 11;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: center;
  background: var(--white);
}

.impact-dashboard {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 22px;
  background: #f7fbfe;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-chart,
.dashboard-note,
.donut {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.mini-chart strong {
  display: block;
  margin-bottom: 14px;
}

.mini-chart svg {
  width: 100%;
  height: 100px;
}

.mini-chart path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 5;
  stroke-linecap: round;
}

.mini-chart circle {
  fill: var(--navy);
}

.bar-chart {
  display: flex;
  height: 120px;
  align-items: end;
  gap: 12px;
}

.bar-chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--orange), var(--navy));
  border-radius: 4px 4px 0 0;
}

.donut {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, var(--white) 0 46%, transparent 47%),
    conic-gradient(var(--orange) 0 86deg, var(--navy) 86deg 275deg, #dce7f1 275deg 360deg);
}

.donut span {
  display: grid;
  width: 106px;
  height: 106px;
  place-items: center;
  background: var(--white);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--navy);
}

.dashboard-note {
  grid-column: span 2;
}

.dashboard-note p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.longform-section {
  order: 13;
  background:
    linear-gradient(180deg, var(--paper), #ffffff 12%, #ffffff 88%, var(--paper));
}

.longform-header {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.reading-guide {
  display: grid;
  grid-template-columns: minmax(240px, 0.45fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
  max-width: 1080px;
  margin: 0 auto 34px;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.08), transparent 42%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.reading-guide h3 {
  font-size: clamp(1.6rem, 2.2vw, 2.15rem);
}

.reading-guide ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reading-guide li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.reading-guide li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.reading-guide strong,
.knowledge-article strong,
.section-copy strong,
.network-copy strong {
  color: var(--navy);
  font-weight: 900;
}

.knowledge-article {
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.knowledge-article h3 {
  position: relative;
  margin-bottom: 18px;
  padding-left: 18px;
}

.knowledge-article h3::before {
  position: absolute;
  top: 0.12em;
  bottom: 0.1em;
  left: 0;
  width: 4px;
  content: "";
  background: var(--orange);
  border-radius: 999px;
}

.insight-strip,
.matrix {
  max-width: 1080px;
  margin: 18px auto 40px;
}

.insight-strip {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 34px;
  align-items: center;
  padding: 32px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #0a447f);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.insight-strip h3 {
  color: var(--white);
}

.insight-strip p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.flywheel {
  position: relative;
  height: 260px;
  border: 1px dashed rgba(255, 255, 255, 0.32);
  border-radius: 50%;
}

.flywheel span {
  position: absolute;
  display: grid;
  min-width: 84px;
  min-height: 42px;
  place-items: center;
  background: var(--white);
  color: var(--navy);
  border-radius: 999px;
  font-weight: 900;
}

.flywheel span:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.flywheel span:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.flywheel span:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.flywheel span:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.matrix {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.matrix div {
  min-height: 76px;
  padding: 18px;
  background: var(--white);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.matrix .matrix-head {
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--navy);
  font-family: var(--serif);
  font-size: 1.65rem;
}

.comparison-table {
  max-width: 1120px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.comparison-table [role="row"] {
  display: grid;
  grid-template-columns: 0.78fr 1fr 1fr;
}

.comparison-table [role="cell"],
.comparison-table [role="columnheader"] {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-table [role="columnheader"] {
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.comparison-table [role="row"] div:last-child {
  border-right: 0;
}

.comparison-table-section {
  order: 7;
}

.photo-cta {
  order: 15;
  min-height: 560px;
}

.photo-cta::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(6, 45, 91, 0.94) 0%, rgba(6, 45, 91, 0.78) 45%, rgba(6, 45, 91, 0.08) 100%),
    linear-gradient(0deg, rgba(6, 45, 91, 0.38), rgba(6, 45, 91, 0.08));
}

.photo-cta-copy {
  position: relative;
  z-index: 1;
  max-width: 730px;
  padding: clamp(52px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.photo-cta-copy h2,
.photo-cta-copy p {
  color: var(--white);
}

.photo-cta-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.photo-cta-copy .button {
  margin-top: 28px;
}

.knowledge-hub {
  order: 12;
  background: var(--white);
}

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

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
}

.article-card span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.article-card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.article-card h3 a {
  color: inherit;
}

.article-card h3 a:hover {
  color: var(--orange);
}

.article-link {
  display: inline-flex;
  margin-top: auto;
  color: var(--orange);
  font-weight: 900;
}

.article-link:hover {
  color: var(--navy);
}

.faq-list {
  max-width: 1080px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq-section {
  order: 14;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  font: 800 1.08rem / 1.3 var(--sans);
  text-align: left;
  cursor: pointer;
}

.faq-item button span {
  position: relative;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
}

.faq-item button span::before,
.faq-item button span::after {
  position: absolute;
  top: 10px;
  left: 0;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--orange);
}

.faq-item button span::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.faq-item.is-open button span::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  overflow: hidden;
  color: var(--ink-soft);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding-bottom: 24px;
}

.legal-page main {
  display: block;
}

.legal-main {
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.legal-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.legal-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.legal-hero p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.legal-card {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.legal-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.legal-card p,
.legal-list dd {
  color: var(--ink-soft);
}

.legal-list {
  display: grid;
  gap: 16px;
  margin: 0;
}

.legal-list div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.legal-list div:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-list dt {
  color: var(--ink);
  font-weight: 900;
}

.legal-list dd {
  margin: 0;
}

.blog-page main {
  display: block;
}

.blog-main,
.blog-article-main {
  padding: clamp(48px, 7vw, 94px) clamp(20px, 5vw, 72px);
}

.blog-list-hero {
  max-width: 980px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.blog-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-list-hero h1 {
  margin: 0 auto;
  font-size: clamp(2.5rem, 5vw, 4.6rem);
}

.blog-list-hero p {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1280px;
  margin: 0 auto;
}

.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.blog-card a {
  display: grid;
  height: 100%;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.blog-card span,
.blog-card h2,
.blog-card p {
  margin-right: 24px;
  margin-left: 24px;
}

.blog-card span {
  margin-top: 22px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin-top: 10px;
  font-size: 1.45rem;
}

.blog-card p {
  margin-top: 14px;
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.blog-article {
  max-width: 1120px;
  margin: 0 auto;
}

.blog-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange);
  font-weight: 900;
}

.blog-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  margin-bottom: 36px;
}

.blog-article-hero h1 {
  font-size: clamp(2.4rem, 4.7vw, 4.35rem);
}

.blog-article-hero p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.blog-article-hero img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.blog-summary-box,
.blog-cta-panel {
  margin: 30px 0;
  padding: clamp(24px, 4vw, 38px);
  background:
    linear-gradient(135deg, rgba(255, 107, 26, 0.08), transparent 38%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.blog-summary-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.blog-summary-box p,
.blog-cta-panel p,
.blog-article-section p {
  color: var(--ink-soft);
}

.blog-context-links {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 22px;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 14px;
}

.blog-context-links strong {
  color: var(--navy);
}

.blog-context-links a {
  color: var(--orange);
  font-weight: 800;
}

.blog-context-links a:hover {
  color: var(--navy);
}

.blog-article-section {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.blog-article-section h2,
.blog-cta-panel h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.blog-article-section p + p {
  margin-top: 18px;
}

.blog-table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.blog-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--white);
}

.blog-table th,
.blog-table td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.blog-table th {
  color: var(--white);
  background: var(--navy);
}

.blog-table th:last-child,
.blog-table td:last-child {
  border-right: 0;
}

.blog-table tr:last-child td {
  border-bottom: 0;
}

.blog-cta-panel {
  text-align: center;
}

.blog-cta-panel p {
  max-width: 760px;
  margin: 0 auto;
}

.blog-cta-panel .button {
  margin-top: 24px;
}

.blog-related {
  padding: 42px 0 8px;
  border-top: 1px solid var(--line);
}

.blog-related-heading {
  margin-bottom: 24px;
  text-align: center;
}

.blog-related-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

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

.blog-related-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.blog-related-card a {
  display: grid;
  height: 100%;
}

.blog-related-card img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.blog-related-card span,
.blog-related-card h3 {
  margin-right: 20px;
  margin-left: 20px;
}

.blog-related-card span {
  margin-top: 18px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-related-card h3 {
  margin-top: 10px;
  margin-bottom: 22px;
  font-size: 1.18rem;
}

.site-footer {
  order: 17;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  padding: 34px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: #041f3f;
}

.footer-brand .brand-main,
.footer-brand .brand-sub {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--white);
  font-weight: 800;
}

.site-footer > * {
  min-width: 0;
}

.site-footer p {
  justify-self: end;
  max-width: 430px;
  text-align: right;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 640ms ease,
    transform 640ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

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

  .site-header.nav-open .site-nav {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.nav-open .site-nav a {
    padding: 16px;
    border-bottom: 1px solid var(--line);
  }

  .site-header.nav-open .site-nav a:last-child {
    border-bottom: 0;
  }

  .proof-strip,
  .metric-band,
  .pricing-grid,
  .all-package-grid,
  .package-info-grid,
  .portal-quality-grid,
  .portal-cluster-grid,
  .timeline,
  .audience-grid,
  .article-grid,
  .blog-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .impact-section,
  .network-section,
  .package-hero,
  .portal-hero,
  .portal-newsflow-card {
    grid-template-columns: 1fr;
  }

  .timeline-step::after {
    display: none;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(2.55rem, 11vw, 3.5rem);
    overflow-wrap: normal;
  }

  .site-header {
    padding: 14px 16px;
  }

  .brand-sub {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.86)),
      linear-gradient(0deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.22));
  }

  .hero-content {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .hero-actions,
  .package-hero-actions,
  .portal-hero-actions,
  .button {
    width: 100%;
  }

  .proof-strip,
  .metric-band,
  .pricing-grid,
  .blog-card-grid,
  .reading-guide,
  .service-duo,
  .quality-section,
  .comparison-layout,
  .editorial-graphic,
  .timeline,
  .workflow-map,
  .audience-grid,
  .impact-dashboard,
  .insight-strip,
  .matrix,
  .article-grid,
  .blog-related-grid,
  .all-package-grid,
  .package-info-grid,
  .portal-quality-grid,
  .portal-cluster-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metric {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .price-card,
  .quality-card,
  .audience-card,
  .article-card,
  .blog-card,
  .blog-related-card,
  .package-card {
    min-height: auto;
  }

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

  .versus {
    margin: 0 auto;
  }

  .quality-section .comparison-layout {
    grid-template-columns: 1fr;
  }

  .quality-section .section-heading {
    max-width: none;
  }

  .quality-section .quality-card {
    min-height: auto;
  }

  .map-line {
    width: 2px;
    height: 34px;
    justify-self: center;
  }

  .network-categories,
  .comparison-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .dashboard-note {
    grid-column: auto;
  }

  .legal-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .photo-band::after {
    background: rgba(255, 255, 255, 0.9);
  }

  .photo-cta::after {
    background: rgba(6, 45, 91, 0.88);
  }

  .site-footer,
  .site-footer p {
    text-align: left;
  }

  .site-footer p {
    justify-self: start;
  }
}
