:root {
  --ink: #141414;
  --paper: #f7f4ed;
  --white: #fffef9;
  --blue: #4664ff;
  --coral: #ff765f;
  --lime: #c9f457;
  --yellow: #ffe24a;
  --lavender: #bba5ff;
  --cyan: #7ed9ea;
  --line: 1.5px solid var(--ink);
  --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

.mikata-site {
  min-height: 100vh;
  overflow: clip;
}

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

.mikata-skip-link {
  position: fixed;
  z-index: 99999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

body.admin-bar .site-header { top: 32px; }

.quick-themes a {
  padding: 8px 12px;
  border: 1px solid rgba(20,20,20,.28);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  font-size: 10px;
  font-weight: 760;
  transition: background-color 220ms ease, transform 300ms var(--ease-out);
}

.quick-themes a:hover { background: var(--lime); transform: translateY(-2px); }

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

button,
input,
select {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 86px;
  display: grid;
  grid-template-columns: 310px 1fr auto;
  align-items: stretch;
  border-bottom: var(--line);
  background: rgba(255, 254, 249, 0.94);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 28px;
  border-right: var(--line);
}

.brand-main {
  font-size: 31px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.09em;
}

.brand-main::after {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 7px;
  content: "";
  background: var(--coral);
  border: 1px solid var(--ink);
  border-radius: 50%;
}

.brand-sub {
  margin-top: 7px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 52px);
  padding: 0 24px;
}

.desktop-nav a {
  position: relative;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 500ms var(--ease-out);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border-left: var(--line);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 48px;
  padding: 0 7px 0 21px;
  color: white;
  background: var(--ink);
  border: var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  transition: transform 400ms var(--ease-out), box-shadow 400ms var(--ease-out);
}

.header-search:hover {
  box-shadow: 4px 4px 0 var(--blue);
  transform: translate(-2px, -2px);
}

.round-arrow {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  place-items: center;
  font-size: 18px;
}

.menu-button {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  background: var(--white);
  border: var(--line);
  border-radius: 50%;
  place-items: center;
}

.menu-button span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 400ms var(--ease-out);
}

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

.mobile-menu {
  position: fixed;
  inset: 86px 0 0;
  z-index: 90;
  padding: 50px clamp(24px, 7vw, 100px);
  visibility: hidden;
  background: var(--blue);
  clip-path: inset(0 0 100% 0);
  transition: visibility 0s 700ms, clip-path 700ms var(--ease-out);
}

.mobile-menu.is-open {
  visibility: visible;
  clip-path: inset(0);
  transition: visibility 0s, clip-path 700ms var(--ease-out);
}

.menu-kicker,
.section-number,
.eyebrow,
.issue {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.mobile-menu nav {
  margin-top: 32px;
  border-top: var(--line);
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 50px 1fr 50px;
  align-items: center;
  min-height: 90px;
  border-bottom: var(--line);
}

.mobile-menu nav a span {
  font-size: 12px;
  font-weight: 800;
}

.mobile-menu nav a strong {
  font-size: clamp(26px, 4vw, 54px);
  letter-spacing: -0.05em;
}

.mobile-menu nav a i {
  font-size: 26px;
  font-style: normal;
  text-align: right;
}

.menu-note {
  margin: 34px 0 0;
  font-size: 13px;
  font-weight: 700;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  min-height: min(900px, 100svh);
  padding-top: 86px;
  border-bottom: var(--line);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(64px, 7vw, 110px) clamp(28px, 5vw, 76px) 88px;
  background: var(--paper);
  border-right: var(--line);
}

.hero-kicker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 35px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.eyebrow span {
  width: 10px;
  height: 10px;
  background: var(--blue);
  border: 1px solid var(--ink);
  border-radius: 50%;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

.issue { margin: 0; opacity: 0.52; }

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(50px, 6vw, 94px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.075em;
  text-wrap: balance;
}

.marker-word {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.marker-word::before {
  position: absolute;
  right: -0.08em;
  bottom: 0.05em;
  left: -0.04em;
  z-index: -1;
  height: 0.42em;
  content: "";
  background: var(--yellow);
  border: 1px solid var(--ink);
  transform: scaleX(0) rotate(-1.5deg);
  transform-origin: left;
  animation: marker-in 900ms 500ms var(--ease-out) forwards;
}

.hero-lead {
  max-width: 720px;
  margin: 30px 0 0;
  font-size: clamp(14px, 1.15vw, 17px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.02em;
}

.portal-search {
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) minmax(170px, 0.8fr) auto;
  margin-top: 38px;
  overflow: hidden;
  background: var(--white);
  border: var(--line);
  border-radius: 20px;
  box-shadow: 8px 8px 0 var(--ink);
}

.portal-search label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  min-width: 0;
  min-height: 76px;
  padding: 13px 20px;
  border-right: var(--line);
}

.portal-search label > span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.2em;
  opacity: 0.48;
}

.portal-search input,
.portal-search select {
  width: 100%;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
  font-weight: 700;
}

.portal-search button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-width: 200px;
  padding: 10px 11px 10px 20px;
  color: white;
  background: var(--blue);
  border: 0;
  font-size: 12px;
  font-weight: 850;
}

.portal-search button i {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--lime);
  border: 1px solid var(--ink);
  border-radius: 50%;
  place-items: center;
  font-size: 21px;
  font-style: normal;
  transition: transform 500ms var(--ease-out);
}

.portal-search button:hover i { transform: rotate(45deg); }

.quick-themes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
}

.quick-label {
  margin-right: 3px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.quick-themes button {
  padding: 7px 11px;
  background: transparent;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 750;
  transition: background 200ms ease, transform 400ms var(--ease-out);
}

.quick-themes button:hover,
.quick-themes button:focus-visible {
  background: var(--yellow);
  transform: translateY(-3px);
}

.hero-visual {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--coral);
}

.visual-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(100% 0 0);
  animation: image-reveal 1.2s 150ms var(--ease-out) forwards;
}

.visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 66% center;
  transform: scale(1.09);
  animation: image-settle 1.8s 120ms var(--ease-out) forwards;
}

.visual-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(25, 22, 17, 0.22));
  mix-blend-mode: multiply;
}

.visual-index {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  display: grid;
  width: 58px;
  height: 58px;
  background: var(--yellow);
  border: var(--line);
  border-radius: 50%;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
}

.visual-caption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  background: rgba(255, 254, 249, 0.92);
  border: var(--line);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.visual-caption span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.visual-caption strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.float-card {
  position: absolute;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 14px 17px;
  border: var(--line);
  border-radius: 14px;
  box-shadow: 4px 4px 0 var(--ink);
  animation: float-card 5s ease-in-out infinite;
}

.float-card span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.float-card strong { font-size: 12px; }
.card-one { top: 26%; left: 4%; background: var(--lime); transform: rotate(-3deg); }
.card-two { top: 46%; right: -13px; background: var(--lavender); transform: rotate(4deg); animation-delay: -2s; }

.spark {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 54px;
  height: 54px;
  background: var(--blue);
  border: var(--line);
  border-radius: 50%;
  place-items: center;
  font-size: 20px;
  animation: spin-slow 12s linear infinite;
}

.spark-one { top: 12%; left: 9%; }
.spark-two { right: 8%; bottom: 15%; width: 38px; height: 38px; background: var(--coral); font-size: 14px; animation-direction: reverse; }

.scroll-cue {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  height: 42px;
  padding: 0 14px;
  color: white;
  background: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.scroll-cue i { color: var(--lime); font-size: 15px; font-style: normal; }

.moving-belt {
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: var(--line);
}

.moving-belt > div {
  display: flex;
  align-items: center;
  gap: 25px;
  width: max-content;
  min-height: 54px;
  animation: belt 28s linear infinite;
}

.moving-belt span {
  font-size: 18px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.moving-belt i { color: var(--blue); font-size: 11px; font-style: normal; }

.first-gateway {
  padding: 90px clamp(24px, 5vw, 76px) 110px;
  background: var(--white);
}

.section-number { margin: 0 0 25px; color: var(--blue); }

.first-gateway h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 5vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.gateway-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: var(--line);
  border-left: var(--line);
}

.gateway-preview a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 130px;
  padding: 24px;
  border-right: var(--line);
  border-bottom: var(--line);
  transition: background 300ms ease, transform 500ms var(--ease-out);
}

.gateway-preview a:nth-child(1) { background: var(--coral); }
.gateway-preview a:nth-child(2) { background: var(--cyan); }
.gateway-preview a:nth-child(3) { background: var(--lavender); }
.gateway-preview a:hover { transform: translateY(-8px); }
.gateway-preview span { font-size: 10px; font-weight: 900; }
.gateway-preview strong { font-size: clamp(18px, 2vw, 28px); letter-spacing: -0.04em; }
.gateway-preview i { font-size: 24px; font-style: normal; }

.mikata-js .reveal {
  opacity: 0;
  transform: translateY(45px);
  transition: opacity 900ms var(--ease-out), transform 900ms var(--ease-out);
}

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

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(35px, 8vw, 130px);
}

.section-heading-row h2,
.featured-services h2,
.test-section h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 84px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.07em;
}

.section-intro {
  max-width: 540px;
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 650;
  line-height: 2;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 62px;
  border-top: var(--line);
  border-left: var(--line);
}

.gateway-card {
  display: flex;
  flex-direction: column;
  min-height: 570px;
  padding: clamp(24px, 2.5vw, 40px);
  border-right: var(--line);
  border-bottom: var(--line);
}

.gateway-card:nth-child(2) { transition-delay: 90ms; }
.gateway-card:nth-child(3) { transition-delay: 180ms; }
.gateway-coral { background: var(--coral); }
.gateway-cyan { background: var(--cyan); }
.gateway-lavender { background: var(--lavender); }

.gateway-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gateway-card-head span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.17em;
}

.gateway-card-head i {
  display: grid;
  width: 48px;
  height: 48px;
  background: var(--white);
  border: var(--line);
  border-radius: 50%;
  place-items: center;
  font-size: 22px;
  font-style: normal;
  transition: transform 500ms var(--ease-out);
}

.gateway-card:hover .gateway-card-head i { transform: rotate(45deg); }

.gateway-card h3 {
  margin: 48px 0 12px;
  font-size: clamp(28px, 3vw, 47px);
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.gateway-card > p {
  min-height: 52px;
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.8;
}

.gateway-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 8px;
  margin-top: 34px;
}

.gateway-tags a {
  padding: 10px 13px;
  background: rgba(255, 254, 249, 0.72);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  transition: background 220ms ease, transform 350ms var(--ease-out);
}

.gateway-tags a:hover { background: var(--white); transform: translateY(-3px); }

.gateway-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  margin-top: auto;
  padding: 0 4px 0 18px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 850;
}

.gateway-more span {
  display: grid;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--white);
  border-radius: 50%;
  place-items: center;
  font-size: 18px;
}

.featured-services {
  padding: 110px clamp(24px, 5vw, 76px) 130px;
  border-top: var(--line);
  background: var(--paper);
}

.service-editorial-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
  margin-top: 70px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: var(--line);
  border-radius: 25px;
  box-shadow: 7px 7px 0 var(--ink);
  transition: transform 600ms var(--ease-out), box-shadow 600ms var(--ease-out);
}

.service-card:hover {
  box-shadow: 3px 3px 0 var(--ink);
  transform: translate(4px, 4px);
}

.service-card > a { display: block; height: 100%; }

.service-photo-card {
  grid-column: span 4;
  min-height: 680px;
  background: var(--white);
}

.service-photo {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-bottom: var(--line);
}

.service-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}

.service-card:hover .service-photo img { transform: scale(1.05); }

.service-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 8px 11px;
  background: var(--yellow);
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.service-card-body { padding: 29px 28px 26px; }
.service-card-body > p,
.service-overline {
  margin: 0;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.service-card h3 {
  margin: 18px 0 23px;
  font-size: clamp(29px, 3vw, 46px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.service-tags span {
  padding: 6px 9px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
}

.service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-link i { font-size: 20px; font-style: normal; }

.service-text-card {
  grid-column: span 4;
  min-height: 680px;
  padding: 34px;
  background: var(--lavender);
}

.service-text-card h3 { margin-top: 42px; }

.service-description {
  max-width: 410px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.9;
}

.quote-orbit {
  position: relative;
  display: grid;
  width: 210px;
  height: 210px;
  margin: 0 auto 30px;
  background: var(--coral);
  border: var(--line);
  border-radius: 50%;
  place-items: center;
}

.quote-orbit::before,
.quote-orbit::after {
  position: absolute;
  inset: -12px;
  content: "";
  border: 1px solid var(--ink);
  border-radius: 48% 52% 44% 56%;
  animation: orbit-turn 14s linear infinite;
}

.quote-orbit::after { inset: 12px; animation-direction: reverse; }
.quote-orbit span { font-family: Georgia, serif; font-size: 130px; line-height: 0.7; }
.quote-orbit i { position: absolute; right: -20px; bottom: 28px; padding: 7px 10px; background: var(--lime); border: var(--line); border-radius: 999px; font-size: 8px; font-style: normal; font-weight: 900; }

.service-online-card {
  grid-column: span 12;
  min-height: 410px;
  padding: clamp(35px, 5vw, 72px);
  color: white;
  background: var(--blue);
}

.service-online-card > a {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-content: center;
  min-height: 275px;
}

.service-online-card h3 {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: clamp(50px, 7vw, 110px);
}

.service-online-card h3 em {
  color: var(--lime);
  font-family: Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.service-online-card > a > p:not(.service-overline) {
  align-self: end;
  max-width: 420px;
  margin: 0 0 55px auto;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
}

.service-online-card .service-link {
  grid-column: 2;
  width: 100%;
  margin: auto 0 0 auto;
  border-color: rgba(255,255,255,.65);
}

.online-rings {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 260px;
  height: 260px;
  opacity: .32;
  transform: translateY(-50%);
}

.online-rings span {
  position: absolute;
  inset: 0;
  border: 1px solid white;
  border-radius: 50%;
  animation: ring-pulse 4s ease-in-out infinite;
}

.online-rings span:nth-child(2) { inset: 45px; animation-delay: -1.3s; }
.online-rings span:nth-child(3) { inset: 90px; animation-delay: -2.6s; }

.story-section {
  padding: 120px clamp(24px, 5vw, 76px) 130px;
  color: white;
  background: var(--ink);
  border-top: var(--line);
}

.story-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .8fr);
  gap: 40px 90px;
  align-items: end;
}

.story-heading .section-number { grid-column: 1 / -1; color: var(--lime); }

.story-heading h2 {
  margin: 0;
  font-size: clamp(58px, 8vw, 125px);
  line-height: .95;
  letter-spacing: -0.075em;
}

.story-heading > p:last-child {
  max-width: 540px;
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 650;
  line-height: 2.1;
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 22px;
  margin-top: 80px;
}

.lead-story {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 760px;
  overflow: hidden;
  color: var(--ink);
  background: var(--coral);
  border: 1px solid white;
  border-radius: 25px;
}

.lead-story-art {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-bottom: var(--line);
}

.lead-story-art::before,
.lead-story-art::after {
  position: absolute;
  width: 280px;
  height: 380px;
  content: "";
  border: 2px solid var(--ink);
  border-radius: 50% 50% 42% 42%;
  transform: rotate(-9deg);
}

.lead-story-art::before { top: 55px; left: 12%; background: var(--yellow); }
.lead-story-art::after { right: 11%; bottom: -100px; background: var(--blue); transform: rotate(12deg); }
.face-line { position: absolute; z-index: 2; font-size: clamp(54px, 7vw, 100px); font-weight: 950; line-height: .9; letter-spacing: -.08em; }
.face-one { top: 110px; left: 8%; transform: rotate(-6deg); }
.face-two { right: 7%; bottom: 60px; color: white; transform: rotate(5deg); }
.lead-story-art > i { position: absolute; top: 24px; right: 24px; z-index: 3; display: grid; width: 55px; height: 55px; background: var(--lime); border: var(--line); border-radius: 50%; place-items: center; font-size: 13px; font-style: normal; font-weight: 900; }

.lead-story-copy { padding: 34px 36px 38px; }
.lead-story-copy > p { margin: 0; font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.lead-story-copy > p span { padding: 6px 9px; background: var(--white); border: 1px solid var(--ink); border-radius: 999px; }
.lead-story-copy h3 { margin: 28px 0 34px; font-size: clamp(26px, 3.2vw, 48px); line-height: 1.18; letter-spacing: -.055em; }
.lead-story-copy > div { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: var(--line); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.lead-story-copy > div i { font-size: 21px; font-style: normal; }

.article-list {
  border-top: 1px solid white;
}

.article-list > a:not(.all-articles) {
  display: grid;
  grid-template-columns: 55px 1fr 30px;
  align-items: center;
  gap: 20px;
  min-height: 145px;
  border-bottom: 1px solid rgba(255,255,255,.7);
  transition: color 220ms ease, padding 500ms var(--ease-out);
}

.article-list > a:not(.all-articles):hover { padding-left: 16px; color: var(--lime); }
.article-list > a > span { color: var(--lime); font-size: 11px; font-weight: 900; }
.article-list > a > div p { margin: 0 0 12px; font-size: 8px; font-weight: 900; letter-spacing: .14em; opacity: .65; }
.article-list > a > div h3 { margin: 0; font-size: clamp(17px, 1.8vw, 27px); letter-spacing: -.035em; }
.article-list > a > i { font-size: 22px; font-style: normal; }
.all-articles { display: flex; align-items: center; justify-content: space-between; min-height: 80px; padding: 0 22px; color: var(--ink); background: var(--lime); border-radius: 999px; margin-top: 30px; font-size: 12px; font-weight: 900; }
.all-articles span { color: var(--ink) !important; font-size: 9px !important; letter-spacing: .15em; }

.journey-band {
  padding: 70px clamp(24px, 5vw, 76px);
  color: white;
  background: var(--blue);
  border-bottom: var(--line);
}

.journey-band > p { margin: 0 0 40px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.journey-steps { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 25px; }
.journey-steps div { position: relative; padding: 28px; border: 1px solid white; border-radius: 18px; }
.journey-steps span { position: absolute; top: 12px; right: 14px; font-size: 9px; font-weight: 900; opacity: .65; }
.journey-steps strong { display: block; color: var(--lime); font-family: Georgia, serif; font-size: clamp(32px, 4vw, 58px); font-style: italic; font-weight: 400; }
.journey-steps p { margin: 11px 0 0; font-size: 12px; font-weight: 750; }
.journey-steps > i { font-size: 29px; font-style: normal; }

.test-section {
  padding: 115px clamp(24px, 5vw, 76px) 130px;
  background: var(--white);
  border-bottom: var(--line);
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 70px;
}

.test-card {
  position: relative;
  min-height: 650px;
  padding: clamp(28px, 4vw, 55px);
  overflow: hidden;
  border: var(--line);
  border-radius: 28px;
  box-shadow: 7px 7px 0 var(--ink);
}

.test-yellow { background: var(--yellow); }
.test-purple { background: var(--lavender); transition-delay: 120ms; }
.test-top { display: flex; justify-content: space-between; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.test-top i { padding: 7px 10px; background: var(--white); border: var(--line); border-radius: 999px; font-style: normal; letter-spacing: 0; }
.test-card h3 { position: relative; z-index: 2; margin: 70px 0 20px; font-size: clamp(44px, 4.5vw, 68px); line-height: 1.03; letter-spacing: -.075em; }
.test-card > p { position: relative; z-index: 2; max-width: 480px; font-size: 13px; font-weight: 650; line-height: 1.9; }
.test-card > a { position: absolute; right: 30px; bottom: 30px; left: 30px; z-index: 3; display: flex; align-items: center; justify-content: space-between; min-height: 64px; padding: 0 8px 0 23px; color: white; background: var(--ink); border-radius: 999px; font-size: 12px; font-weight: 850; }
.test-card > a span { display: grid; width: 50px; height: 50px; color: var(--ink); background: var(--lime); border-radius: 50%; place-items: center; font-size: 21px; }
.test-symbol { position: absolute; top: 75px; right: 5%; display: flex; align-items: center; }
.test-symbol span { display: grid; width: 95px; height: 95px; margin-left: -15px; border: var(--line); border-radius: 50%; place-items: center; font-family: Georgia, serif; font-size: 50px; font-style: italic; }
.test-symbol span:nth-child(1) { background: var(--coral); transform: rotate(-13deg); }
.test-symbol span:nth-child(2) { background: var(--blue); color: white; transform: rotate(8deg); }
.test-symbol span:nth-child(3) { background: var(--lime); transform: rotate(-2deg); }
.heart-lines { position: absolute; top: 80px; right: 8%; width: 190px; height: 160px; transform: rotate(8deg); }
.heart-lines::before,
.heart-lines::after { position: absolute; width: 110px; height: 160px; content: ""; background: var(--coral); border: var(--line); border-radius: 100px 100px 0 0; transform: rotate(-45deg); transform-origin: 0 100%; }
.heart-lines::after { left: -110px; transform: rotate(45deg); transform-origin: 100% 100%; }

.promise-section {
  display: grid;
  grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  border-bottom: var(--line);
  background: var(--paper);
}

.promise-copy { padding: 110px clamp(28px, 5vw, 76px); border-right: var(--line); }
.promise-copy h2 { margin: 0; font-size: clamp(48px, 5.8vw, 88px); line-height: 1.04; letter-spacing: -.07em; }
.promise-copy > p:last-child { max-width: 570px; margin: 34px 0 0; font-size: 14px; font-weight: 650; line-height: 2.1; }
.promise-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.promise-list article { min-height: 300px; padding: 42px; border-right: var(--line); border-bottom: var(--line); }
.promise-list article:nth-child(2n) { border-right: 0; }
.promise-list article:nth-last-child(-n+2) { border-bottom: 0; }
.promise-list span { display: grid; width: 42px; height: 42px; background: var(--blue); color: white; border: var(--line); border-radius: 50%; place-items: center; font-size: 10px; font-weight: 900; }
.promise-list h3 { margin: 45px 0 14px; font-size: clamp(22px, 2vw, 31px); letter-spacing: -.045em; }
.promise-list p { margin: 0; font-size: 12px; font-weight: 600; line-height: 1.9; }

.business-section {
  padding: 120px clamp(24px, 5vw, 76px) 0;
  color: white;
  background: var(--ink);
}

.business-hero { position: relative; padding: 0 0 110px; overflow: hidden; }
.business-hero::after { position: absolute; top: 20px; right: 3%; width: 270px; height: 270px; content: ""; background: var(--blue); border: 1px solid white; border-radius: 50%; box-shadow: 45px 45px 0 var(--coral), 90px 90px 0 var(--lime); opacity: .9; }
.business-hero .section-number { color: var(--lime); }
.business-hero h2 { position: relative; z-index: 2; max-width: 1050px; margin: 35px 0 0; font-size: clamp(58px, 8vw, 124px); line-height: .98; letter-spacing: -.08em; }
.business-hero h2 span { color: var(--lime); font-family: Georgia, serif; font-style: italic; font-weight: 400; }
.business-hero > p:not(.section-number) { position: relative; z-index: 2; max-width: 760px; margin: 42px 0 0; font-size: 14px; font-weight: 650; line-height: 2.1; }
.business-actions { position: relative; z-index: 2; display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.business-actions a { display: flex; align-items: center; justify-content: space-between; gap: 28px; min-width: 260px; min-height: 62px; padding: 0 8px 0 22px; border: 1px solid white; border-radius: 999px; font-size: 11px; font-weight: 850; }
.business-actions a:first-child { color: var(--ink); background: var(--lime); border-color: var(--ink); }
.business-actions a i { display: grid; width: 48px; height: 48px; color: var(--ink); background: white; border-radius: 50%; place-items: center; font-size: 19px; font-style: normal; }

.business-menu { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid white; border-left: 1px solid white; }
.business-menu article { display: flex; flex-direction: column; min-height: 400px; padding: 40px; border-right: 1px solid white; border-bottom: 1px solid white; }
.business-menu article:nth-child(1) { background: #222; }
.business-menu article:nth-child(2) { background: var(--blue); }
.business-menu article:nth-child(3) { color: var(--ink); background: var(--coral); }
.business-menu article > span { font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.business-menu h3 { margin: 70px 0 17px; font-size: clamp(28px, 3vw, 45px); line-height: 1.05; letter-spacing: -.055em; }
.business-menu p { margin: 0; font-size: 12px; font-weight: 650; line-height: 1.9; }
.business-menu a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 18px; border-top: 1px solid currentColor; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.business-menu a i { font-size: 19px; font-style: normal; }

.support-belt { padding: 70px 0 90px; }
.support-belt > p:first-child { margin: 0 0 24px; color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.support-belt > div { display: flex; flex-wrap: wrap; gap: 9px; }
.support-belt span { padding: 13px 17px; color: var(--ink); background: var(--white); border-radius: 999px; font-size: 11px; font-weight: 800; }
.support-note { margin: 30px 0 0; font-size: 13px; font-weight: 700; }

.newsletter-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, .9fr);
  align-items: center;
  gap: 80px;
  padding: 90px clamp(24px, 5vw, 76px);
  background: var(--yellow);
  border-bottom: var(--line);
}

.newsletter-section > div > p { margin: 0 0 20px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.newsletter-section h2 { margin: 0; font-size: clamp(38px, 5vw, 72px); line-height: 1.08; letter-spacing: -.065em; }
.newsletter-section form { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
.newsletter-section label { display: flex; flex-direction: column; gap: 8px; min-height: 76px; padding: 15px 20px; background: var(--white); border: var(--line); border-radius: 15px; }
.newsletter-section label span { font-size: 8px; font-weight: 900; letter-spacing: .17em; }
.newsletter-section input { min-width: 0; padding: 0; background: transparent; border: 0; outline: 0; font-size: 13px; font-weight: 700; }
.newsletter-section button { min-width: 140px; padding: 0 9px 0 19px; color: white; background: var(--ink); border: 0; border-radius: 15px; font-size: 11px; font-weight: 850; }
.newsletter-section button span { display: inline-grid; width: 43px; height: 43px; margin-left: 12px; color: var(--ink); background: var(--lime); border-radius: 50%; place-items: center; font-size: 18px; }
.newsletter-section small { grid-column: 1 / -1; font-size: 9px; font-weight: 650; }

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

.preview-toast {
  position: fixed;
  z-index: 120;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(520px, calc(100vw - 32px));
  padding: 18px 18px 18px 22px;
  border: 1px solid var(--ink);
  border-radius: 18px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 7px 7px 0 var(--coral);
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px) scale(.98);
  transition: opacity 360ms var(--ease-out), transform 560ms var(--ease-out);
}

.preview-toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.preview-toast span {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.7;
}

.preview-toast button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 19px;
  transition: background-color 220ms ease, color 220ms ease;
}

.preview-toast button:hover {
  background: var(--white);
  color: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 70px clamp(24px, 5vw, 76px);
  border-bottom: 1px solid white;
}

.footer-brand .brand { padding: 0; border: 0; }
.footer-brand .brand-main { font-size: clamp(70px, 11vw, 170px); line-height: .78; }
.footer-brand .brand-main::after { width: 20px; height: 20px; background: var(--lime); }
.footer-brand .brand-sub { margin-top: 20px; font-size: 11px; }
.footer-brand > p { max-width: 360px; margin: 0; font-size: 16px; font-weight: 750; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid white; }
.footer-links > div { display: flex; flex-direction: column; gap: 14px; min-height: 280px; padding: 42px clamp(25px, 4vw, 65px); border-right: 1px solid white; }
.footer-links > div:last-child { border-right: 0; }
.footer-links p { margin: 0 0 18px; color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.footer-links a { width: fit-content; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; min-height: 70px; padding: 0 clamp(24px, 5vw, 76px); font-size: 9px; font-weight: 800; letter-spacing: .1em; }

@keyframes orbit-turn { to { transform: rotate(360deg); } }
@keyframes ring-pulse { 50% { transform: scale(.82); opacity: .35; } }

@keyframes marker-in { to { transform: scaleX(1) rotate(-1.5deg); } }
@keyframes image-reveal { to { clip-path: inset(0); } }
@keyframes image-settle { to { transform: scale(1); } }
@keyframes pulse-dot { 50% { box-shadow: 0 0 0 7px rgba(70, 100, 255, 0.16); } }
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes float-card { 50% { translate: 0 -9px; } }
@keyframes belt { to { transform: translateX(-50%); } }

@media (max-width: 1080px) {
  .site-header { grid-template-columns: 250px 1fr auto; }
  .desktop-nav { display: none; }
  .header-actions { border-left: 0; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { min-height: 760px; border-right: 0; border-bottom: var(--line); }
  .hero-visual { min-height: 680px; }
  .section-heading-row,
  .story-heading { grid-template-columns: 1fr; }
  .section-intro,
  .story-heading > p:last-child { max-width: 680px; }
  .gateway-grid { grid-template-columns: 1fr; }
  .gateway-card { min-height: 460px; }
  .service-photo-card { grid-column: span 6; }
  .service-text-card { grid-column: span 12; min-height: 560px; }
  .service-text-card .quote-orbit { float: right; margin: 0 4% 20px 40px; }
  .story-layout { grid-template-columns: 1fr; }
  .article-list > a:not(.all-articles) { min-height: 120px; }
  .promise-section { grid-template-columns: 1fr; }
  .promise-copy { border-right: 0; border-bottom: var(--line); }
  .business-menu { grid-template-columns: 1fr; }
  .business-menu article { min-height: 310px; }
  .business-menu h3 { margin-top: 42px; }
  .newsletter-section { grid-template-columns: 1fr; gap: 45px; }
}

@media (max-width: 720px) {
  .site-header { height: 70px; grid-template-columns: 1fr auto; }
  .brand { padding: 0 18px; border-right: 0; }
  .brand-main { font-size: 26px; }
  .brand-sub { font-size: 6.5px; }
  .header-actions { padding: 0 10px; }
  .header-search { display: none; }
  .menu-button { width: 44px; height: 44px; }
  .mobile-menu { inset: 70px 0 0; padding: 36px 20px; }
  .mobile-menu nav a { min-height: 74px; grid-template-columns: 35px 1fr 35px; }
  .hero { padding-top: 70px; }
  .hero-copy { min-height: 690px; padding: 50px 20px 72px; }
  .hero-kicker-row { margin-bottom: 27px; }
  .issue { display: none; }
  .hero h1 { font-size: clamp(45px, 14vw, 67px); line-height: 1.08; }
  .hero-lead { margin-top: 22px; font-size: 13px; line-height: 1.8; }
  .hero-lead br { display: none; }
  .portal-search { grid-template-columns: 1fr; margin-top: 26px; border-radius: 16px; box-shadow: 5px 5px 0 var(--ink); }
  .portal-search label { min-height: 63px; border-right: 0; border-bottom: var(--line); }
  .portal-search .select-field { display: none; }
  .portal-search button { min-width: 0; min-height: 62px; }
  .portal-search button i { width: 42px; height: 42px; }
  .quick-themes { margin-top: 21px; }
  .hero-visual { min-height: 540px; }
  .float-card { padding: 12px 14px; }
  .card-one { top: 24%; }
  .card-two { top: 48%; }
  .visual-caption { right: 12px; bottom: 12px; left: 12px; padding: 14px; }
  .visual-caption strong { font-size: 12px; }
  .visual-index { top: 13px; right: 13px; width: 48px; height: 48px; }
  .moving-belt > div { min-height: 45px; }
  .moving-belt span { font-size: 14px; }
  .first-gateway { padding: 68px 20px 80px; }
  .gateway-preview { grid-template-columns: 1fr; margin-top: 36px; }
  .gateway-preview a { min-height: 96px; }
  .section-heading-row h2,
  .featured-services h2,
  .test-section h2 { font-size: 43px; }
  .section-intro { font-size: 12px; line-height: 1.9; }
  .gateway-grid { margin-top: 38px; }
  .gateway-card { min-height: 485px; padding: 25px 20px; }
  .gateway-card h3 { margin-top: 38px; font-size: 33px; }
  .gateway-tags { margin-top: 27px; }
  .featured-services,
  .story-section,
  .test-section { padding: 78px 20px 90px; }
  .service-editorial-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 44px; }
  .service-photo-card,
  .service-text-card,
  .service-online-card { grid-column: auto; min-height: 0; }
  .service-photo { height: 340px; }
  .service-text-card { padding: 25px; }
  .service-text-card .quote-orbit { float: none; width: 165px; height: 165px; margin: 15px auto 30px; }
  .quote-orbit span { font-size: 100px; }
  .service-online-card { padding: 35px 24px; }
  .service-online-card > a { grid-template-columns: 1fr; min-height: 420px; }
  .service-online-card h3 { font-size: 56px; }
  .service-online-card > a > p:not(.service-overline) { margin: 30px 0 0; }
  .service-online-card .service-link { grid-column: 1; }
  .online-rings { width: 180px; height: 180px; right: -20px; opacity: .22; }
  .story-heading h2 { font-size: 67px; }
  .story-layout { margin-top: 50px; }
  .lead-story { min-height: 660px; }
  .lead-story-art { min-height: 350px; }
  .lead-story-art::before,
  .lead-story-art::after { width: 190px; height: 290px; }
  .face-line { font-size: 55px; }
  .lead-story-copy { padding: 27px 22px 30px; }
  .article-list > a:not(.all-articles) { grid-template-columns: 35px 1fr 22px; gap: 12px; min-height: 110px; }
  .journey-band { padding: 60px 20px; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-steps > i { transform: rotate(90deg); text-align: center; }
  .test-grid { grid-template-columns: 1fr; gap: 15px; margin-top: 45px; }
  .test-card { min-height: 570px; padding: 27px 22px; }
  .test-card h3 { margin-top: 115px; font-size: 55px; }
  .test-symbol { top: 65px; right: 0; opacity: .85; }
  .test-symbol span { width: 68px; height: 68px; font-size: 38px; }
  .heart-lines { top: 70px; right: 0; transform: scale(.7) rotate(8deg); }
  .promise-copy { padding: 78px 20px; }
  .promise-copy h2 { font-size: 53px; }
  .promise-list { grid-template-columns: 1fr; }
  .promise-list article,
  .promise-list article:nth-child(2n),
  .promise-list article:nth-last-child(-n+2) { min-height: 235px; padding: 28px 22px; border-right: 0; border-bottom: var(--line); }
  .promise-list article:last-child { border-bottom: 0; }
  .promise-list h3 { margin-top: 30px; }
  .business-section { padding: 80px 20px 0; }
  .business-hero { padding-bottom: 80px; }
  .business-hero h2 { font-size: 62px; }
  .business-hero::after { top: 100px; right: -95px; width: 170px; height: 170px; opacity: .32; }
  .business-actions { flex-direction: column; }
  .business-actions a { min-width: 0; width: 100%; }
  .business-menu article { min-height: 300px; padding: 30px 22px; }
  .support-belt { padding: 60px 0 75px; }
  .newsletter-section { padding: 70px 20px; }
  .newsletter-section form { grid-template-columns: 1fr; }
  .newsletter-section button { min-height: 62px; }
  .newsletter-section small { grid-column: 1; }
  .footer-brand { flex-direction: column; align-items: flex-start; gap: 40px; padding: 62px 20px; }
  .footer-brand .brand-main { font-size: 90px; }
  .footer-brand .brand-main::after { width: 13px; height: 13px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-links > div { min-height: 0; padding: 35px 20px; border-right: 0; border-bottom: 1px solid white; }
  .footer-links > div:last-child { border-bottom: 0; }
  .footer-bottom { flex-wrap: wrap; gap: 15px; min-height: 95px; padding: 20px; }
}

@media (max-width: 720px) {
  .preview-toast {
    right: 16px;
    bottom: 16px;
    padding: 15px 14px 15px 17px;
    box-shadow: 5px 5px 0 var(--coral);
  }
}

/* WordPress portal extensions */
.gateway-yellow { background: var(--yellow); }
.gateway-lime { background: var(--lime); }

.media-category-section {
  padding: 110px clamp(24px, 5vw, 76px) 130px;
  border-bottom: var(--line);
  background: var(--white);
}

.media-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 70px;
  border: var(--line);
}

.media-category-card {
  position: relative;
  min-height: 330px;
  padding: 26px 24px;
  border-right: var(--line);
  transition: filter 250ms ease, transform 550ms var(--ease-out);
}

.media-category-card:last-child { border-right: 0; }
.media-category-card:hover { z-index: 2; filter: saturate(1.08); transform: translateY(-10px); }
.media-category-card > span { font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.media-category-card h3 { margin: 45px 0 0; font-size: clamp(25px, 2.15vw, 36px); line-height: 1.1; letter-spacing: -.045em; }
.media-category-card p { margin: 55px 0 0; font-size: 12px; font-weight: 700; line-height: 1.7; }
.media-category-card > i { position: absolute; right: 22px; bottom: 20px; display: grid; width: 45px; height: 45px; place-items: center; border: var(--line); border-radius: 50%; background: var(--white); font-style: normal; }

.newsletter-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: center;
}

.newsletter-actions > p { grid-column: 1 / -1; margin: 0 0 8px; font-size: 13px; font-weight: 700; line-height: 1.8; }
.newsletter-actions > a { display: flex; min-height: 68px; padding: 0 10px 0 22px; align-items: center; justify-content: space-between; color: var(--white); background: var(--ink); border-radius: 15px; font-size: 12px; font-weight: 850; }
.newsletter-actions > a span { display: grid; width: 44px; height: 44px; margin-left: 20px; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-size: 19px; }
.newsletter-actions small { font-size: 9px; font-weight: 700; }

.subpage-hero {
  min-height: 650px;
  padding: 170px clamp(24px, 6vw, 92px) 75px;
  border-bottom: var(--line);
  background: var(--coral);
}

.subpage-hero > p,
.quiz-hero > p,
.business-page-hero > p {
  margin: 0 0 35px;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
}

.subpage-hero h1,
.quiz-hero h1,
.business-page-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(66px, 9vw, 142px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.085em;
}

.subpage-hero > div,
.quiz-hero > div,
.business-page-hero > div {
  display: grid;
  grid-template-columns: minmax(0, 660px) auto;
  gap: 50px;
  align-items: end;
  justify-content: space-between;
  margin-top: 70px;
}

.subpage-hero > div p,
.quiz-hero > div p,
.business-page-hero > div p { margin: 0; font-size: 14px; font-weight: 650; line-height: 1.9; }
.subpage-hero > div span,
.quiz-hero > div span { font-size: 10px; font-weight: 900; letter-spacing: .18em; }
.subpage-hero--search { background: var(--cyan); }
.subpage-hero--articles { background: var(--lavender); }
.subpage-hero--tests { background: var(--yellow); }
.subpage-hero--information { background: var(--lime); }

.search-workspace {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  border-bottom: var(--line);
  background: var(--paper);
}

.search-filter-panel {
  position: sticky;
  top: 86px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: calc(100vh - 86px);
  padding: 40px 28px;
  border-right: var(--line);
  background: var(--white);
}

.search-filter-panel label { display: grid; gap: 8px; }
.search-filter-panel label > span,
.search-filter-keyword > label { font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.search-filter-panel input[type="text"],
.search-filter-panel input:not([type]),
.search-filter-panel select { width: 100%; min-height: 52px; padding: 0 14px; border: var(--line); border-radius: 10px; background: var(--paper); font-size: 12px; font-weight: 700; }
.search-filter-grid { display: grid; gap: 15px; }
.search-filter-check { display: flex !important; grid-template-columns: auto 1fr; align-items: center; font-size: 12px; font-weight: 750; }
.search-filter-check input { width: 18px; height: 18px; }
.search-filter-panel > button { min-height: 60px; padding: 0 18px; border: 0; border-radius: 12px; color: #fff; background: var(--ink); font-size: 12px; font-weight: 850; }
.search-filter-panel > button span { float: right; font-size: 18px; }
.search-filter-panel > a { text-align: center; text-decoration: underline; font-size: 10px; font-weight: 750; }

.search-results { min-width: 0; padding: 70px clamp(24px, 4vw, 64px) 100px; }
.search-results-head { display: flex; gap: 40px; align-items: end; justify-content: space-between; margin-bottom: 45px; }
.search-results-head > div > p { margin: 0 0 12px; font-size: 9px; font-weight: 900; letter-spacing: .16em; }
.search-results-head h2 { margin: 0; font-size: clamp(38px, 5vw, 72px); letter-spacing: -.065em; }
.search-results-head > p { max-width: 320px; margin: 0; font-size: 12px; font-weight: 650; line-height: 1.8; }
.search-term-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 65px; padding-bottom: 55px; border-bottom: var(--line); }
.search-term-cloud > p { width: 100%; margin: 0 0 15px; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.search-term-cloud a { display: inline-flex; gap: 15px; align-items: center; padding: 13px 15px; border: var(--line); border-radius: 999px; background: var(--white); font-size: 11px; font-weight: 750; }
.search-term-cloud a:hover { background: var(--lime); }
.search-term-cloud small { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; background: var(--ink); color: #fff; font-size: 8px; }

.provider-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.provider-card { min-width: 0; border: var(--line); border-radius: 20px; overflow: hidden; background: var(--white); transition: transform 550ms var(--ease-out), box-shadow 550ms var(--ease-out); }
.provider-card:hover { transform: translateY(-8px); box-shadow: 8px 8px 0 var(--blue); }
.provider-card > a { display: block; height: 100%; }
.provider-card__image { position: relative; height: 250px; overflow: hidden; background: var(--lavender); }
.provider-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 850ms var(--ease-out); }
.provider-card:hover .provider-card__image img { transform: scale(1.045); }
.provider-card__image > span { display: grid; height: 100%; place-items: center; font-size: 42px; font-weight: 900; letter-spacing: -.08em; }
.provider-card__image small { position: absolute; top: 12px; left: 12px; padding: 6px 9px; border: 1px solid var(--ink); border-radius: 999px; background: var(--yellow); font-size: 8px; font-weight: 900; }
.provider-card__body { padding: 24px 20px 22px; }
.provider-card__genre { margin: 0 0 12px !important; color: var(--blue); font-size: 9px !important; font-weight: 900 !important; letter-spacing: .1em; }
.provider-card__body h2 { margin: 0; font-size: 25px; line-height: 1.18; letter-spacing: -.04em; }
.provider-card__body > p { margin: 14px 0 0; font-size: 11px; line-height: 1.75; }
.provider-card__facts { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 18px; }
.provider-card__facts span { padding: 7px 9px; border-radius: 7px; background: var(--paper); font-size: 9px; font-weight: 750; }
.provider-card__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.provider-card__tags span { padding: 5px 7px; border: 1px solid rgba(20,20,20,.24); border-radius: 999px; font-size: 8px; font-weight: 700; }
.provider-card__body > strong { display: flex; justify-content: space-between; margin-top: 24px; padding-top: 17px; border-top: 1px solid rgba(20,20,20,.22); font-size: 10px; }

.empty-state { padding: 70px clamp(24px, 6vw, 90px); border: var(--line); border-radius: 25px; background: var(--yellow); text-align: center; }
.empty-state > span { font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.empty-state h2 { margin: 25px 0 18px; font-size: clamp(40px, 5vw, 76px); line-height: 1.05; letter-spacing: -.07em; }
.empty-state > p { max-width: 600px; margin: 0 auto; font-size: 13px; font-weight: 650; line-height: 1.9; }
.empty-state > div { display: flex; gap: 10px; justify-content: center; margin-top: 35px; }
.empty-state a { display: inline-flex; min-height: 52px; padding: 0 22px; align-items: center; border: var(--line); border-radius: 999px; background: var(--white); font-size: 11px; font-weight: 850; }
.mikata-pagination { margin-top: 55px; }
.mikata-pagination ul { display: flex; gap: 8px; justify-content: center; padding: 0; list-style: none; }
.mikata-pagination a, .mikata-pagination span { display: grid; width: 44px; height: 44px; place-items: center; border: var(--line); border-radius: 50%; background: var(--white); font-size: 11px; font-weight: 800; }
.mikata-pagination .current { color: #fff; background: var(--ink); }

.search-guide-section { padding: 110px clamp(24px, 6vw, 92px); border-bottom: var(--line); background: var(--blue); color: #fff; }
.search-guide-section > p, .business-value-section > p, .growth-support-section > p, .business-flow-section > p, .information-statement > p, .information-values > p, .review-method-section > p { margin: 0 0 25px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.search-guide-section > h2, .business-value-section > h2, .growth-support-section > h2, .business-flow-section > h2, .information-statement > h2, .information-values > h2, .review-method-section > h2 { max-width: 1000px; margin: 0; font-size: clamp(48px, 7vw, 100px); line-height: 1.03; letter-spacing: -.075em; }
.search-guide-section > div, .business-value-section > div, .review-method-section > div { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border: 1px solid currentColor; }
.search-guide-section article, .business-value-section article, .review-method-section article { min-height: 265px; padding: 25px 22px; border-right: 1px solid currentColor; }
.search-guide-section article:last-child, .business-value-section article:last-child, .review-method-section article:last-child { border-right: 0; }
.search-guide-section article span, .business-value-section article span, .review-method-section article span { font-size: 9px; font-weight: 900; }
.search-guide-section article h3, .business-value-section article h3, .review-method-section article h3 { margin: 70px 0 18px; font-size: 25px; }
.search-guide-section article p, .business-value-section article p, .review-method-section article p { margin: 0; font-size: 11px; line-height: 1.8; }

.article-category-nav { display: grid; grid-template-columns: repeat(6, 1fr); border-bottom: var(--line); background: var(--white); }
.article-category-nav a { display: flex; min-height: 78px; align-items: center; justify-content: center; gap: 10px; border-right: var(--line); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.article-category-nav a:last-child { border-right: 0; }
.article-category-nav a:hover, .article-category-nav a.is-current { background: var(--lime); }
.article-category-nav small { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: #fff; background: var(--ink); font-size: 8px; }
.article-archive-section { padding: 100px clamp(24px, 6vw, 92px) 130px; border-bottom: var(--line); }
.article-archive-head > p { margin: 0 0 14px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.article-archive-head h2 { margin: 0 0 55px; font-size: clamp(48px, 6vw, 88px); letter-spacing: -.07em; }
.article-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.article-archive-card { min-width: 0; border: var(--line); border-radius: 20px; overflow: hidden; background: var(--white); transition: transform 550ms var(--ease-out), box-shadow 550ms var(--ease-out); }
.article-archive-card:hover { transform: translateY(-8px); box-shadow: 8px 8px 0 var(--coral); }
.article-archive-image { height: 260px; overflow: hidden; background: var(--lavender); }
.article-archive-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 850ms var(--ease-out); }
.article-archive-card:hover img { transform: scale(1.045); }
.article-archive-image span { display: grid; height: 100%; place-items: center; font-size: 48px; font-weight: 900; letter-spacing: -.06em; }
.article-archive-copy { padding: 25px 22px 23px; }
.article-archive-copy > p { margin: 0 0 15px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .1em; }
.article-archive-copy h2 { margin: 0; font-size: 24px; line-height: 1.35; letter-spacing: -.035em; }
.article-archive-copy > div { margin-top: 16px; font-size: 11px; line-height: 1.75; }
.article-archive-copy strong { display: flex; justify-content: space-between; margin-top: 25px; padding-top: 17px; border-top: 1px solid rgba(20,20,20,.22); font-size: 9px; }
.editorial-promise { padding: 110px clamp(24px, 6vw, 92px); border-bottom: var(--line); background: var(--ink); color: #fff; }
.editorial-promise > p { margin: 0 0 25px; color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.editorial-promise h2 { margin: 0; font-size: clamp(48px, 7vw, 98px); line-height: 1.05; letter-spacing: -.075em; }
.editorial-promise > div { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 60px; }
.editorial-promise span { padding: 13px 17px; border-radius: 999px; color: var(--ink); background: var(--white); font-size: 10px; font-weight: 800; }

.test-index-section { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; padding: 1px; border-bottom: var(--line); background: var(--ink); }
.test-index-card { position: relative; min-height: 650px; padding: 55px clamp(28px, 5vw, 75px); }
.test-index-card > span { font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.test-index-card h2 { margin: 125px 0 20px; font-size: clamp(55px, 7vw, 100px); line-height: .98; letter-spacing: -.08em; }
.test-index-card > p { max-width: 500px; font-size: 13px; font-weight: 650; line-height: 1.85; }
.test-index-card strong { position: absolute; right: 45px; bottom: 45px; left: 45px; display: flex; justify-content: space-between; padding-top: 20px; border-top: var(--line); font-size: 12px; }
.test-safety-note { padding: 95px clamp(24px, 8vw, 130px); border-bottom: var(--line); background: var(--white); text-align: center; }
.test-safety-note > p:first-child { margin: 0 0 18px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.test-safety-note h2 { margin: 0; font-size: clamp(42px, 6vw, 82px); letter-spacing: -.07em; }
.test-safety-note > p:last-child { max-width: 760px; margin: 30px auto 0; font-size: 13px; line-height: 1.9; }

.quiz-hero { min-height: 650px; padding: 145px clamp(24px, 6vw, 92px) 75px; border-bottom: var(--line); }
.quiz-hero--esteem { background: var(--yellow); }
.quiz-hero--love { background: var(--lavender); }
.quiz-hero > a { display: inline-block; margin-bottom: 35px; font-size: 10px; font-weight: 800; text-decoration: underline; }
.quiz-section { padding: 90px clamp(24px, 12vw, 190px) 130px; border-bottom: var(--line); background: var(--white); }
.quiz-section form { display: grid; gap: 20px; }
.quiz-question { margin: 0; padding: 32px; border: var(--line); border-radius: 18px; background: var(--paper); }
.quiz-question legend { float: left; width: 100%; margin: 0 0 28px; font-size: clamp(20px, 2.5vw, 32px); font-weight: 850; line-height: 1.45; }
.quiz-question legend span { display: inline-grid; width: 42px; height: 42px; margin-right: 14px; place-items: center; border: var(--line); border-radius: 50%; background: var(--white); font-size: 10px; }
.quiz-question > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; clear: both; }
.quiz-question label { cursor: pointer; }
.quiz-question label input { position: absolute; opacity: 0; }
.quiz-question label span { display: grid; min-height: 58px; padding: 8px; place-items: center; border: var(--line); border-radius: 12px; background: var(--white); text-align: center; font-size: 11px; font-weight: 750; }
.quiz-question label input:checked + span { color: #fff; background: var(--blue); box-shadow: inset 0 0 0 3px #fff; }
.quiz-question label input:focus-visible + span { outline: 3px solid var(--coral); outline-offset: 2px; }
.quiz-submit { min-height: 74px; margin-top: 20px; padding: 0 28px; border: 0; border-radius: 14px; color: #fff; background: var(--ink); font-size: 14px; font-weight: 850; }
.quiz-submit span { float: right; font-size: 22px; }
.quiz-result { margin-top: 35px; padding: 55px clamp(25px, 6vw, 80px); border: var(--line); border-radius: 25px; background: var(--lime); }
.quiz-result > p { margin: 0 0 25px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.quiz-result article > span { font-size: 12px; font-weight: 900; }
.quiz-result article h2 { margin: 20px 0; font-size: clamp(44px, 6vw, 82px); line-height: 1.08; letter-spacing: -.07em; }
.quiz-result article p { max-width: 720px; font-size: 14px; line-height: 1.9; }
.quiz-result-actions { display: flex; gap: 10px; margin-top: 38px; }
.quiz-result-actions a { display: inline-flex; min-height: 54px; padding: 0 20px; align-items: center; border: var(--line); border-radius: 999px; background: var(--white); font-size: 11px; font-weight: 850; }
.quiz-result > button { margin-top: 24px; border: 0; background: transparent; text-decoration: underline; font-size: 10px; font-weight: 750; }
.quiz-result small { display: block; margin-top: 28px; font-size: 9px; line-height: 1.7; }

.business-page-hero { min-height: 780px; padding: 170px clamp(24px, 6vw, 92px) 85px; color: #fff; background: var(--ink); }
.business-page-hero h1 span { color: var(--lime); }
.business-page-hero > div a { display: inline-flex; min-height: 60px; padding: 0 12px 0 22px; align-items: center; color: var(--ink); background: var(--lime); border-radius: 999px; font-size: 11px; font-weight: 850; }
.business-page-hero > div a i { display: grid; width: 42px; height: 42px; margin-left: 22px; place-items: center; border-radius: 50%; background: var(--white); font-style: normal; }
.business-value-section { padding: 110px clamp(24px, 6vw, 92px); border-bottom: var(--line); background: var(--blue); color: #fff; }
.business-value-section > div { grid-template-columns: repeat(3, 1fr); }
.business-plans { padding: 110px clamp(24px, 6vw, 92px) 130px; border-bottom: var(--line); }
.business-plans-head > p:first-child { margin: 0 0 20px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.business-plans-head h2 { margin: 0; font-size: clamp(52px, 7vw, 100px); letter-spacing: -.075em; }
.business-plans-head > p:last-child { margin: 24px 0 0; font-size: 13px; line-height: 1.8; }
.business-plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 65px; }
.business-plan-grid article { min-height: 550px; padding: 32px 28px; border: var(--line); border-radius: 20px; background: var(--white); }
.business-plan-grid article.is-featured { color: #fff; background: var(--ink); box-shadow: 9px 9px 0 var(--lime); }
.business-plan-grid article > p { margin: 0; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.business-plan-grid h3 { margin: 55px 0 10px; font-size: 35px; }
.business-plan-grid strong { font-size: 22px; }
.business-plan-grid ul { margin: 50px 0 0; padding: 0; list-style: none; }
.business-plan-grid li { padding: 14px 0; border-bottom: 1px solid currentColor; font-size: 11px; font-weight: 700; }
.business-plan-grid a { display: flex; justify-content: space-between; margin-top: 45px; font-size: 11px; font-weight: 850; }
.growth-support-section { padding: 110px clamp(24px, 6vw, 92px); border-bottom: var(--line); background: var(--yellow); }
.growth-support-section > div { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: var(--line); border-left: var(--line); }
.growth-support-section article { display: flex; min-height: 135px; padding: 22px; align-items: end; justify-content: space-between; border-right: var(--line); border-bottom: var(--line); }
.growth-support-section article span { font-size: 9px; font-weight: 900; }
.growth-support-section article h3 { margin: 0; font-size: 20px; }
.business-flow-section { padding: 110px clamp(24px, 6vw, 92px); border-bottom: var(--line); background: var(--white); }
.business-flow-section > div { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; gap: 15px; align-items: center; margin-top: 70px; }
.business-flow-section article { min-height: 250px; padding: 25px; border: var(--line); border-radius: 18px; }
.business-flow-section article span { font-size: 9px; font-weight: 900; }
.business-flow-section article h3 { margin: 70px 0 14px; font-size: 26px; }
.business-flow-section article p { font-size: 11px; line-height: 1.8; }
.business-flow-section > div > i { font-style: normal; }
.business-contact-section { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; padding: 110px clamp(24px, 6vw, 92px); color: #fff; background: var(--blue); }
.business-contact-section > div > p:first-child { margin: 0 0 24px; color: var(--lime); font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.business-contact-section h2 { margin: 0; font-size: clamp(50px, 6vw, 88px); line-height: 1.07; letter-spacing: -.075em; }
.business-contact-section > div > p:last-child { max-width: 620px; font-size: 13px; line-height: 1.9; }
.business-contact-actions { display: grid; align-content: center; gap: 12px; }
.business-contact-actions a { display: flex; min-height: 68px; padding: 0 20px; align-items: center; justify-content: space-between; border: 1px solid #fff; border-radius: 14px; font-size: 11px; font-weight: 850; }
.business-contact-actions a:first-child { color: var(--ink); background: var(--lime); border-color: var(--ink); }
.business-contact-actions small { margin-top: 15px; font-size: 9px; line-height: 1.7; }

.provider-detail { padding-top: 86px; }
.provider-detail-hero { display: grid; grid-template-columns: .85fr 1.15fr; min-height: 710px; border-bottom: var(--line); }
.provider-detail-image { min-height: 610px; border-right: var(--line); background: var(--lavender); }
.provider-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.provider-detail-image > span { display: grid; height: 100%; place-items: center; text-align: center; font-size: clamp(50px, 7vw, 100px); font-weight: 900; line-height: .85; letter-spacing: -.08em; }
.provider-detail-copy { display: flex; flex-direction: column; justify-content: center; padding: 70px clamp(30px, 6vw, 85px); background: var(--white); }
.provider-detail-copy > p { margin: 0 0 25px; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.provider-detail-copy > p small { margin-left: 12px; padding: 5px 8px; border-radius: 999px; background: var(--yellow); color: var(--ink); }
.provider-detail-copy h1 { margin: 0; font-size: clamp(55px, 7vw, 100px); line-height: 1.02; letter-spacing: -.075em; }
.provider-detail-lead { margin-top: 28px; font-size: 14px; font-weight: 650; line-height: 1.9; }
.provider-detail-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 27px; }
.provider-detail-tags a { padding: 8px 11px; border: var(--line); border-radius: 999px; font-size: 9px; font-weight: 750; }
.provider-primary-cta { display: flex; min-height: 64px; margin-top: 35px; padding: 0 18px 0 22px; align-items: center; justify-content: space-between; border-radius: 13px; color: #fff; background: var(--ink); font-size: 12px; font-weight: 850; }
.provider-facts { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: var(--line); }
.provider-facts > div { min-height: 130px; padding: 27px clamp(20px, 4vw, 55px); border-right: var(--line); }
.provider-facts > div:last-child { border-right: 0; }
.provider-facts span { display: block; margin-bottom: 20px; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.provider-facts strong { font-size: 16px; line-height: 1.5; }
.provider-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 55px; padding: 100px clamp(24px, 7vw, 110px); border-bottom: var(--line); }
.provider-main-content { display: grid; gap: 80px; }
.provider-main-content section > p { margin: 0 0 15px; color: var(--blue); font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.provider-main-content section > h2 { margin: 0 0 30px; font-size: clamp(38px, 5vw, 66px); letter-spacing: -.06em; }
.provider-editor-content, .provider-prose { font-size: 14px; line-height: 2; }
.provider-editor-content h2, .provider-editor-content h3 { margin: 2em 0 .8em; line-height: 1.4; }
.provider-editor-content img { height: auto; border-radius: 16px; }
.provider-side-card { position: sticky; top: 115px; align-self: start; padding: 28px 25px; border: var(--line); border-radius: 18px; background: var(--yellow); }
.provider-side-card > p { margin: 0; font-size: 9px; font-weight: 900; letter-spacing: .15em; }
.provider-side-card h2 { margin: 35px 0 20px; font-size: 29px; line-height: 1.2; }
.provider-side-card ul { padding-left: 18px; font-size: 11px; line-height: 2; }
.provider-side-card a { display: flex; min-height: 55px; margin-top: 25px; padding: 0 15px; align-items: center; justify-content: space-between; border-radius: 11px; color: #fff; background: var(--ink); font-size: 10px; font-weight: 850; }
.provider-disclosure { display: grid; grid-template-columns: 230px 1fr; gap: 30px; padding: 45px clamp(24px, 7vw, 110px); border-bottom: var(--line); background: var(--paper); }
.provider-disclosure p { margin: 0; font-size: 11px; font-weight: 850; }
.provider-disclosure div { font-size: 10px; line-height: 1.8; }
.related-provider-section { padding: 100px clamp(24px, 6vw, 92px) 120px; border-bottom: var(--line); }
.related-provider-section > p { margin: 0 0 16px; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.related-provider-section > h2 { margin: 0 0 50px; font-size: clamp(45px, 6vw, 85px); letter-spacing: -.07em; }

.information-statement, .information-values, .review-method-section { padding: 110px clamp(24px, 8vw, 130px); border-bottom: var(--line); }
.information-statement { background: var(--white); }
.information-statement > p:last-child { max-width: 850px; margin: 45px 0 0 auto; font-size: 15px; line-height: 2; }
.information-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: var(--line); }
.information-grid article { min-height: 400px; padding: 35px clamp(24px, 4vw, 55px); border-right: var(--line); }
.information-grid article:last-child { border-right: 0; }
.information-grid article > span { font-size: 9px; font-weight: 900; }
.information-grid h2 { margin: 90px 0 8px; font-size: 44px; letter-spacing: -.06em; }
.information-grid h3 { margin: 0 0 25px; font-size: 24px; }
.information-grid p { font-size: 12px; line-height: 1.9; }
.information-values { color: #fff; background: var(--blue); }
.information-values > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 65px; }
.information-values span { padding: 14px 18px; border-radius: 999px; color: var(--ink); background: var(--white); font-size: 11px; font-weight: 800; }
.policy-list-section { border-bottom: var(--line); }
.policy-list-section article { display: grid; grid-template-columns: 80px minmax(250px, .65fr) 1fr; gap: 35px; padding: 48px clamp(24px, 7vw, 110px); align-items: start; border-bottom: var(--line); }
.policy-list-section article:last-child { border-bottom: 0; }
.policy-list-section article > span { display: grid; width: 48px; height: 48px; place-items: center; border: var(--line); border-radius: 50%; background: var(--yellow); font-size: 9px; font-weight: 900; }
.policy-list-section h2 { margin: 0; font-size: 28px; line-height: 1.35; }
.policy-list-section p { margin: 0; font-size: 12px; line-height: 1.9; }
.policy-note, .contact-note { display: grid; grid-template-columns: 230px 1fr; gap: 35px; padding: 55px clamp(24px, 7vw, 110px); border-bottom: var(--line); background: var(--yellow); }
.policy-note p, .contact-note p { margin: 0; font-size: 11px; font-weight: 850; }
.policy-note div { font-size: 11px; line-height: 1.9; }
.review-method-section { color: #fff; background: var(--blue); }
.review-method-section > div { grid-template-columns: repeat(3, 1fr); }
.review-empty { margin: 100px clamp(24px, 7vw, 110px); }
.contact-options-section { display: grid; grid-template-columns: repeat(3, 1fr); border-bottom: var(--line); }
.contact-options-section article { min-height: 520px; padding: 45px clamp(24px, 4vw, 55px); border-right: var(--line); background: var(--white); }
.contact-options-section article:nth-child(2) { background: var(--lavender); }
.contact-options-section article:nth-child(3) { background: var(--yellow); border-right: 0; }
.contact-options-section article > p:first-child { margin: 0; font-size: 9px; font-weight: 900; letter-spacing: .17em; }
.contact-options-section h2 { margin: 90px 0 25px; font-size: clamp(32px, 3.5vw, 48px); line-height: 1.15; letter-spacing: -.06em; }
.contact-options-section article > p:not(:first-child) { font-size: 12px; line-height: 1.9; }
.contact-options-section a { display: flex; margin-top: 55px; padding-top: 20px; justify-content: space-between; border-top: var(--line); font-size: 11px; font-weight: 850; }
.contact-note { grid-template-columns: 1fr; background: var(--paper); }

@media (max-width: 1080px) {
  .media-category-grid { grid-template-columns: repeat(2, 1fr); }
  .media-category-card { border-bottom: var(--line); }
  .media-category-card:nth-child(2n) { border-right: 0; }
  .media-category-card:last-child { grid-column: 1 / -1; }
  .search-workspace { grid-template-columns: 280px 1fr; }
  .provider-grid, .article-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .business-flow-section > div { grid-template-columns: repeat(2, 1fr); }
  .business-flow-section > div > i { display: none; }
  .growth-support-section > div { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

@media (max-width: 720px) {
  .media-category-section { padding: 75px 20px 90px; }
  .media-category-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .media-category-card, .media-category-card:nth-child(2n), .media-category-card:last-child { grid-column: auto; min-height: 250px; border-right: 0; border-bottom: var(--line); }
  .media-category-card:last-child { border-bottom: 0; }
  .newsletter-actions { grid-template-columns: 1fr; }
  .newsletter-actions > p { grid-column: 1; }
  .subpage-hero, .quiz-hero, .business-page-hero { min-height: 0; padding: 140px 20px 65px; }
  .subpage-hero h1, .quiz-hero h1, .business-page-hero h1 { font-size: 57px; }
  .subpage-hero > div, .quiz-hero > div, .business-page-hero > div { grid-template-columns: 1fr; gap: 30px; margin-top: 45px; }
  .search-workspace { display: block; }
  .search-filter-panel { position: relative; top: 0; min-height: 0; padding: 30px 20px; border-right: 0; border-bottom: var(--line); }
  .search-results { padding: 65px 20px 80px; }
  .search-results-head { display: block; }
  .search-results-head > p { margin-top: 20px; }
  .provider-grid, .article-archive-grid { grid-template-columns: 1fr; }
  .search-guide-section, .business-value-section, .growth-support-section, .business-flow-section, .information-statement, .information-values, .review-method-section { padding: 75px 20px; }
  .search-guide-section > h2, .business-value-section > h2, .growth-support-section > h2, .business-flow-section > h2, .information-statement > h2, .information-values > h2, .review-method-section > h2 { font-size: 50px; }
  .search-guide-section > div, .business-value-section > div, .review-method-section > div { grid-template-columns: 1fr; }
  .search-guide-section article, .business-value-section article, .review-method-section article { min-height: 220px; border-right: 0; border-bottom: 1px solid currentColor; }
  .search-guide-section article:last-child, .business-value-section article:last-child, .review-method-section article:last-child { border-bottom: 0; }
  .article-category-nav { grid-template-columns: repeat(3, 1fr); }
  .article-category-nav a { min-height: 62px; border-bottom: var(--line); }
  .article-archive-section { padding: 75px 20px 90px; }
  .test-index-section { grid-template-columns: 1fr; }
  .test-index-card { min-height: 530px; padding: 40px 22px; }
  .test-index-card h2 { margin-top: 90px; font-size: 59px; }
  .quiz-section { padding: 65px 20px 90px; }
  .quiz-question { padding: 25px 18px; }
  .quiz-question > div { grid-template-columns: 1fr; }
  .quiz-result-actions { flex-direction: column; }
  .business-plan-grid { grid-template-columns: 1fr; }
  .business-plans { padding: 75px 20px 90px; }
  .business-flow-section > div { grid-template-columns: 1fr; }
  .business-contact-section { grid-template-columns: 1fr; padding: 75px 20px; }
  .growth-support-section > div { grid-template-columns: 1fr; }
  .provider-detail { padding-top: 72px; }
  .provider-detail-hero { grid-template-columns: 1fr; }
  .provider-detail-image { min-height: 390px; border-right: 0; border-bottom: var(--line); }
  .provider-detail-copy { padding: 55px 20px; }
  .provider-detail-copy h1 { font-size: 55px; }
  .provider-facts { grid-template-columns: 1fr; }
  .provider-facts > div { min-height: 105px; border-right: 0; border-bottom: var(--line); }
  .provider-facts > div:last-child { border-bottom: 0; }
  .provider-detail-layout { grid-template-columns: 1fr; padding: 70px 20px; }
  .provider-side-card { position: static; }
  .provider-disclosure, .policy-note { grid-template-columns: 1fr; padding: 35px 20px; }
  .related-provider-section { padding: 75px 20px 90px; }
  .information-statement > p:last-child { margin-left: 0; }
  .information-grid, .contact-options-section { grid-template-columns: 1fr; }
  .information-grid article, .contact-options-section article { min-height: 350px; border-right: 0; border-bottom: var(--line); }
  .information-grid article:last-child, .contact-options-section article:last-child { border-bottom: 0; }
  .policy-list-section article { grid-template-columns: 55px 1fr; gap: 20px; padding: 35px 20px; }
  .policy-list-section article p { grid-column: 2; }
  .review-empty { margin: 70px 20px; }
}

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