:root {
  --orange: #f97316;
  --orange-2: #fb923c;
  --cream: #fff7ed;
  --navy: #1a1a2e;
  --ink: #12121f;
  --muted: #666171;
  --line: #e8ded4;
  --white: #fff;
  --green: #52c77b;
  --shadow: 0 18px 45px rgba(42, 24, 9, 0.12);
  --radius: 14px;
  --container: 1180px;
}
img {
  height: auto;
}
.brand {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open {
  overflow: hidden;
}
::selection {
  background: var(--orange);
  color: #fff;
}
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-track {
  background: var(--navy);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border: 3px solid var(--navy);
  border-radius: 99px;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
img {
  max-width: 100%;
  display: block;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange-2);
  outline-offset: 4px;
}
.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}
.section {
  padding: 112px 0;
}
.section-dark {
  background: var(--navy);
  color: var(--cream);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: #fff;
  transform: translateY(-150%);
  border-radius: 8px;
}
.skip-link:focus {
  transform: none;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition:
    background 0.25s,
    box-shadow 0.25s;
}
.site-header.scrolled {
  background: rgba(255, 247, 237, 0.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(21, 15, 10, 0.08);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img {
  width: 190px;
  height: auto;
}
.hero:not(:target) ~ * {
}
.site-header:not(.scrolled) .brand img {
  filter: brightness(0) invert(1);
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav > a:not(.button) {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.site-header:not(.scrolled) .site-nav > a:not(.button) {
  color: var(--cream);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 48px;
  height: 48px;
  padding: 12px;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
}
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 11px 22px;
  border-radius: 10px;
  text-decoration: none;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  border: 1px solid transparent;
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.22);
  transition:
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.22s,
    background 0.22s;
}
.button:hover {
  transform: translateY(-3px) scale(1.015);
  background: #e9620b;
  box-shadow: 0 15px 32px rgba(249, 115, 22, 0.33);
}
.button-small {
  min-height: 42px;
  padding: 9px 18px;
}
.button-large {
  min-height: 56px;
  padding: 15px 26px;
}
.button-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 247, 237, 0.42);
  box-shadow: none;
}
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}
.hero {
  position: relative;
  min-height: 850px;
  padding: 172px 0 126px;
  overflow: hidden;
  background-color: var(--navy);
  background-image:
    url("assets/hero-bg-pattern.svg"),
    radial-gradient(
      circle at 75% 22%,
      rgba(249, 115, 22, 0.15),
      transparent 32%
    );
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  gap: 58px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.status-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(251, 146, 60, 0.28);
  padding: 7px 12px;
  border-radius: 999px;
  color: #ffdec4;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(82, 199, 123, 0.12);
}
h1,
h2 {
  font-family: Fraunces, Georgia, serif;
  letter-spacing: -0.035em;
  line-height: 0.99;
  margin: 0;
}
h1 {
  font-size: clamp(3.4rem, 6vw, 5.8rem);
  max-width: 10ch;
  margin-top: 26px;
}
h1 span {
  color: var(--orange-2);
}
.hero-lead {
  font-size: 1.15rem;
  color: #d9d3db;
  max-width: 57ch;
  margin: 30px 0;
}
.button-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-note {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #bdb7c1;
  font-size: 0.82rem;
  margin-top: 24px;
}
.hero-note svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}
.hero-note span {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
  margin: 0 4px;
}
.hero-visual {
  position: relative;
  min-width: 0;
}
.dashboard {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 38px 70px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(251, 146, 60, 0.35);
  transform: rotate(1deg);
  animation: dashboard-in 1s 0.2s both cubic-bezier(0.22, 1, 0.36, 1);
}
.flight-tag {
  position: absolute;
  right: -18px;
  top: -24px;
  z-index: 3;
  background: var(--orange);
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transform: rotate(3deg);
}
.flight-tag b,
.flight-tag span {
  display: block;
}
.flight-tag b {
  font-size: 1.1rem;
}
.flight-tag span {
  font-size: 0.65rem;
  letter-spacing: 0.13em;
}
.agent-mark {
  position: absolute;
  width: 135px;
  right: -40px;
  bottom: -52px;
  background: var(--cream);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.25);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.4;
  animation: drift 36s infinite alternate ease-in-out;
}
.orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, var(--orange), transparent 68%);
  right: -180px;
  top: -120px;
}
.orb-b {
  width: 260px;
  height: 260px;
  border: 1px solid var(--orange);
  left: -80px;
  bottom: 50px;
}
.route-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
}
.route-line path {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
  stroke-dasharray: 8 12;
  opacity: 0.55;
}
.route-line circle {
  fill: var(--orange);
}
.stats {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--muted);
}
.stat:last-child {
  border-right: 0;
}
.stat strong {
  display: block;
  font-size: 1rem;
  color: var(--ink);
}
.stat-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
}
.stat-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
}
.route-section {
  background: #fff;
  position: relative;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 58px;
}
.section-heading h2,
.pricing h2,
.audiences h2,
.faq h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}
.section-heading em {
  color: var(--orange);
  font-style: normal;
}
.section-heading p {
  max-width: 54ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}
.section-heading.light p {
  color: #c7c0c9;
}
.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.difference-card {
  position: relative;
  padding: 30px;
  background: var(--cream);
  border: 1px solid #ead8ca;
  border-radius: var(--radius);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.difference-card:hover {
  transform: translateY(-7px);
  border-color: var(--orange);
  box-shadow: var(--shadow);
}
.difference-wide {
  grid-column: span 3;
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  gap: 28px;
}
.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.card-top img {
  width: 44px;
  height: 44px;
}
.card-top span {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: #9a3412;
  font-weight: 800;
}
.difference-card h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  margin: 0 0 12px;
}
.difference-card p {
  color: var(--muted);
  margin: 0;
}
.versus {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #ead8ca;
  font-size: 0.75rem;
}
.versus b {
  color: var(--orange);
}
.versus span {
  color: #88818a;
  text-decoration: line-through;
}
.features {
  position: relative;
  background: var(--navy);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(251, 146, 60, 0.22);
  border-left: 1px solid rgba(251, 146, 60, 0.22);
}
.feature-grid article {
  padding: 32px 26px;
  min-height: 220px;
  border-right: 1px solid rgba(251, 146, 60, 0.22);
  border-bottom: 1px solid rgba(251, 146, 60, 0.22);
  transition:
    background 0.25s,
    transform 0.25s;
}
.feature-grid article:hover {
  background: rgba(249, 115, 22, 0.09);
  transform: translateY(-4px);
}
.feature-grid img {
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  transition: transform 0.4s;
}
.feature-grid article:hover img {
  transform: rotate(8deg) scale(1.1);
}
.feature-grid h3 {
  font-size: 1.05rem;
  margin: 0 0 9px;
}
.feature-grid p {
  color: #bdb7c1;
  font-size: 0.85rem;
  margin: 0;
}
.audiences {
  background: var(--cream);
}
.audience-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 75px;
  align-items: center;
}
.audiences h2 {
  max-width: 12ch;
  margin-bottom: 42px;
}
.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.pill-cloud span {
  padding: 11px 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #ead8ca;
  font-weight: 700;
  font-size: 0.9rem;
}
.pill-cloud span:nth-child(2n) {
  background: #ffe5cf;
  border-color: #ffc18f;
}
.not-for {
  background: #e7e2de;
  color: #665f64;
  border-radius: var(--radius);
  padding: 36px;
}
.not-for h3 {
  color: var(--ink);
  margin-top: 0;
}
.not-for p {
  margin-bottom: 0;
}
.pricing {
  background: #fff;
}
.pricing-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}
.pricing-head p {
  color: var(--muted);
}
.billing-toggle {
  display: flex;
  background: var(--cream);
  padding: 4px;
  border-radius: 12px;
  border: 1px solid #ead8ca;
}
.billing-toggle button {
  min-height: 44px;
  border: 0;
  background: transparent;
  border-radius: 9px;
  padding: 8px 16px;
  font-weight: 800;
  color: var(--muted);
  cursor: pointer;
}
.billing-toggle button.active {
  background: var(--navy);
  color: #fff;
}
.pricing-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 24px 0;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.plan {
  position: relative;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid #ead8ca;
  overflow: hidden;
}
.plan.best {
  background: var(--navy);
  color: #fff;
  border-color: var(--orange);
  box-shadow: var(--shadow);
}
.plan-badge {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: #9a3412;
  font-weight: 800;
}
.best .plan-badge {
  color: var(--orange-2);
}
.plan h3 {
  font-size: 1.15rem;
  margin: 13px 0 18px;
}
.price {
  font-size: 2.8rem;
  line-height: 1;
  color: var(--orange);
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.price small {
  font-size: 0.8rem;
  letter-spacing: 0;
  color: inherit;
}
.plan ul {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.plan li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(122, 93, 72, 0.14);
}
.plan li::before {
  content: "✓";
  color: var(--orange);
  margin-right: 9px;
  font-weight: 800;
}
.plan .button {
  width: 100%;
}
.best-ribbon {
  position: absolute;
  right: 0;
  top: 18px;
  width: 118px;
}
.orbit-label {
  position: absolute;
  background: var(--cream);
  color: var(--navy);
  border-radius: 7px;
  padding: 7px 10px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}
.orbit-label.one {
  left: 0;
  top: 20%;
}
.orbit-label.two {
  right: -10px;
  bottom: 20%;
}
.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 26px;
  list-style: none;
  padding: 0;
  margin-top: 38px;
}
.check-grid li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(251, 146, 60, 0.16);
}
.check-grid li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  margin-right: 11px;
  background: rgba(249, 115, 22, 0.14);
  color: var(--orange-2);
  border-radius: 50%;
  font-weight: 800;
}
.proof {
  background: var(--cream);
}
.proof-notice {
  padding: 12px 16px;
  background: #ffedd5;
  color: #9a3412;
  border-radius: 8px;
  margin: -25px 0 30px;
  font-size: 0.8rem;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.testimonial-grid article {
  background: #fff;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 14px 34px rgba(54, 34, 18, 0.07);
}
.testimonial-grid header {
  display: flex;
  gap: 13px;
  align-items: center;
}
.testimonial-grid header img {
  width: 48px;
  height: 48px;
}
.testimonial-grid h3 {
  font-size: 0.95rem;
  margin: 0;
}
.testimonial-grid header span,
.testimonial-grid small {
  font-size: 0.72rem;
  color: var(--muted);
}
.stars {
  color: var(--orange);
  letter-spacing: 0.1em;
  margin: 19px 0 5px;
}
.testimonial-grid blockquote {
  margin: 0;
  color: #9a3412;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
}
.testimonial-grid small {
  display: block;
  margin-top: 14px;
}
.faq {
  background: #fff;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
}
.faq-grid > div:first-child > p {
  color: var(--muted);
  max-width: 33ch;
}
.accordion details {
  border-top: 1px solid var(--line);
}
.accordion details:last-child {
  border-bottom: 1px solid var(--line);
}
.accordion summary {
  min-height: 70px;
  padding: 20px 48px 20px 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary span::before,
.accordion summary span::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--orange);
  transition: transform 0.25s;
}
.accordion summary span::after {
  transform: rotate(90deg);
}
.accordion details[open] summary {
  color: var(--orange);
}
.accordion details[open] summary span::after {
  transform: rotate(0);
}
.accordion details p {
  margin: 0;
  padding: 0 45px 24px 0;
  color: var(--muted);
  max-width: 70ch;
}
.final-cta {
  position: relative;
  text-align: center;
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at center,
      rgba(249, 115, 22, 0.23),
      transparent 46%
    ),
    var(--navy);
}
.final-cta img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 520px;
  opacity: 0.07;
}
.final-cta h2 {
  font-size: clamp(3rem, 6vw, 5.5rem);
  position: relative;
}
.final-cta p {
  color: #d9d3db;
  font-size: 1.08rem;
  position: relative;
}
.final-cta .button {
  position: relative;
  margin-top: 20px;
}
.final-cta small {
  display: block;
  color: #968e99;
  margin-top: 18px;
  position: relative;
}
.pulse {
  animation: pulse 2.6s infinite;
}
footer {
  background: #10101c;
  color: #bdb7c1;
  padding: 28px 0;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
footer img {
  filter: brightness(0) invert(1);
}
footer p {
  font-size: 0.8rem;
}
footer a {
  font-size: 0.8rem;
  color: var(--orange-2);
}
.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
@keyframes dashboard-in {
  from {
    opacity: 0;
    transform: translateY(30px) rotate(2deg);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: rotate(1deg);
    filter: blur(0);
  }
}
@keyframes drift {
  to {
    transform: translate(90px, 45px) scale(1.18);
  }
}
@keyframes pulse {
  50% {
    box-shadow: 0 10px 38px rgba(249, 115, 22, 0.58);
  }
}
@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }
  .hero-grid,
  .section-heading,
  .audience-layout,
  .faq-grid {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    gap: 65px;
  }
  .hero-copy {
    max-width: 760px;
  }
  .agent-mark {
    right: 0;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stat:nth-child(2) {
    border-right: 0;
  }
  .difference-grid {
    grid-template-columns: 1fr 1fr;
  }
  .difference-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .plan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .faq-grid {
    gap: 35px;
  }
  .section-heading {
    gap: 20px;
  }
  .section-heading p {
    margin-top: 5px;
  }
}
@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .section {
    padding: 80px 0;
  }
  .site-header {
    background: rgba(255, 247, 237, 0.96);
    backdrop-filter: blur(12px);
  }
  .site-header:not(.scrolled) .brand img {
    filter: none;
  }
  .menu-toggle {
    display: block;
    color: var(--navy);
  }
  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-radius: 14px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav > a:not(.button),
  .site-header:not(.scrolled) .site-nav > a:not(.button) {
    color: var(--ink);
    padding: 13px;
  }
  .site-nav .button {
    margin-top: 8px;
  }
  .hero {
    padding: 142px 0 105px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }
  .hero-visual {
    margin-top: 8px;
  }
  .flight-tag {
    right: 0;
  }
  .agent-mark {
    width: 88px;
    bottom: -35px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .difference-grid,
  .feature-grid,
  .plan-grid,
  .testimonial-grid,
  .check-grid {
    grid-template-columns: 1fr;
  }
  .difference-wide {
    grid-column: auto;
  }
  .pricing-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .plan-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 3px 24px;
  }
  .plan {
    min-width: 84vw;
    scroll-snap-align: center;
  }
  .audiences h2 {
    max-width: none;
  }
  .testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 18px;
  }
  .testimonial-grid article {
    min-width: 84vw;
    scroll-snap-align: center;
  }
  .faq-grid {
    gap: 28px;
  }
  footer .container {
    flex-direction: column;
    text-align: center;
  }
  .section-heading h2,
  .pricing h2,
  .audiences h2,
  .faq h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }
}
@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;
  }
}

/* Focused launch pricing */
.section-heading h2,
.pricing h2,
.hosting-benefits h2,
.audiences h2,
.faq h2 {
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}
.hosting-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}
.hosting-art {
  position: relative;
}
.hosting-art > img {
  width: 100%;
  filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.3));
}
.hosting-benefits .lead {
  color: #c7c0c9;
  max-width: 54ch;
}
.launch-pricing {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 72px;
  align-items: center;
}
.launch-pricing-copy h2 {
  max-width: 10ch;
}
.launch-pricing-copy > p {
  max-width: 48ch;
  color: var(--muted);
  font-size: 1.04rem;
  margin: 28px 0 34px;
}
.launch-window {
  display: grid;
  grid-template-columns: 12px 1fr;
  column-gap: 12px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.launch-window > span {
  grid-row: span 2;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.12);
}
.launch-window strong {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a3412;
}
.launch-window p {
  margin: 1px 0 0;
  color: var(--muted);
  font-size: 0.83rem;
}
.launch-offer {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  box-shadow: 0 28px 65px rgba(26, 26, 46, 0.2);
}
.launch-offer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg-pattern.svg") center/cover;
  opacity: 0.22;
  pointer-events: none;
}
.offer-route {
  position: absolute;
  left: 50%;
  top: 92px;
  bottom: 125px;
  width: 1px;
  background: rgba(251, 146, 60, 0.32);
}
.offer-route span {
  position: absolute;
  left: 50%;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 7px rgba(249, 115, 22, 0.14);
}
.offer-route span:first-child {
  top: 0;
}
.offer-route span:last-child {
  bottom: 0;
}
.offer-route i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cream);
  transform: translate(-50%, -50%);
}
.agent-rate {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
  padding: 42px 46px;
}
.agent-rate + .agent-rate {
  border-top: 1px solid rgba(251, 146, 60, 0.18);
}
.agent-rate > div {
  max-width: 38ch;
}
.rate-label {
  display: block;
  color: var(--orange-2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.agent-rate h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.75rem;
  line-height: 1.1;
  margin: 8px 0;
}
.agent-rate > div p {
  color: #c8c2ca;
  font-size: 0.87rem;
  margin: 0;
}
.launch-price {
  margin: 0;
  min-width: 148px;
  color: var(--orange-2);
  font-size: 5rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.launch-price sup {
  font-size: 1.15rem;
  letter-spacing: 0;
  vertical-align: top;
  position: relative;
  top: 0.4em;
  margin-right: 2px;
}
.add-on-rate {
  background: rgba(249, 115, 22, 0.07);
}
.launch-offer-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 28px 34px;
  background: var(--cream);
  color: var(--ink);
}
.launch-offer-footer p {
  margin: 0;
}
.launch-offer-footer strong,
.launch-offer-footer span {
  display: block;
}
.launch-offer-footer strong {
  font-size: 0.9rem;
}
.launch-offer-footer span {
  color: var(--muted);
  font-size: 0.74rem;
  margin-top: 3px;
}
.launch-offer-footer .button {
  flex: 0 0 auto;
}
@media (max-width: 980px) {
  .hosting-grid {
    grid-template-columns: 1fr;
  }
  .hosting-art {
    max-width: 420px;
    margin: auto;
  }
  .launch-pricing {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .launch-pricing-copy h2 {
    max-width: 14ch;
  }
}
@media (max-width: 760px) {
  .hosting-art {
    max-width: 300px;
  }
  .section-heading h2,
  .pricing h2,
  .hosting-benefits h2,
  .audiences h2,
  .faq h2 {
    font-size: clamp(2.5rem, 12vw, 3.7rem);
  }
  .launch-pricing {
    gap: 34px;
  }
  .launch-pricing-copy > p {
    margin: 22px 0 28px;
  }
  .agent-rate {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 34px 26px;
  }
  .offer-route {
    display: none;
  }
  .launch-price {
    text-align: left;
    font-size: 4.5rem;
  }
  .launch-offer-footer {
    align-items: stretch;
    flex-direction: column;
    padding: 26px;
  }
  .launch-offer-footer .button {
    width: 100%;
  }
}

/* Resource hub and long-form pages */
.home-resources {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.home-resources::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg-pattern.svg") center/cover;
  opacity: 0.12;
  pointer-events: none;
}
.home-resources .container {
  position: relative;
  z-index: 1;
}
.resource-feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.825fr 0.825fr;
  border-top: 1px solid rgba(251, 146, 60, 0.25);
  border-left: 1px solid rgba(251, 146, 60, 0.25);
}
.resource-feature {
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(251, 146, 60, 0.25);
  border-bottom: 1px solid rgba(251, 146, 60, 0.25);
}
.resource-feature.lead-story {
  min-height: 420px;
}
.resource-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--orange-2);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.resource-feature h3 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.08;
  margin: 34px 0 16px;
}
.lead-story h3 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  max-width: 13ch;
}
.resource-feature p {
  color: #c7c0c9;
  margin: 0;
  max-width: 48ch;
}
.resource-feature a {
  color: var(--orange-2);
  font-weight: 800;
  margin-top: auto;
  text-decoration: none;
  padding-top: 28px;
}
.resource-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.resource-actions > a:not(.button) {
  color: var(--orange-2);
  font-weight: 800;
}
.footer-expanded nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-expanded nav a {
  color: #d2cbd4;
  text-decoration: none;
}
.inner-page {
  background: #fff;
}
.inner-page .site-header {
  background: rgba(255, 247, 237, 0.96);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(21, 15, 10, 0.08);
}
.inner-page .site-nav > a:not(.button) {
  color: var(--ink);
}
.inner-page .brand img {
  filter: none;
}
.inner-page main {
  padding-top: 76px;
}
.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--cream);
  padding: 104px 0 86px;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/hero-bg-pattern.svg") center/cover;
  opacity: 0.2;
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 6rem);
  max-width: 14ch;
  margin: 0;
}
.page-hero p {
  max-width: 66ch;
  color: #d4ced7;
  font-size: 1.08rem;
  margin: 26px 0 0;
}
.page-hero .page-path {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--orange-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.page-section {
  padding: 90px 0;
}
.page-section.tint {
  background: var(--cream);
}
.hub-intro {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.hub-intro h2 {
  font-size: clamp(2.4rem, 4vw, 4rem);
}
.hub-intro > p {
  margin: 0;
  color: var(--muted);
  max-width: 65ch;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 35px 0;
}
.filter-bar button {
  min-height: 44px;
  padding: 9px 15px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
}
.filter-bar button.active {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.article-index {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.article-card {
  min-height: 300px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.article-card:nth-child(3n + 1) {
  background: var(--cream);
}
.article-card .resource-meta {
  color: #9a3412;
}
.article-card h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 32px 0 14px;
}
.article-card p {
  color: var(--muted);
  margin: 0;
  max-width: 55ch;
}
.article-card > a {
  margin-top: auto;
  padding-top: 26px;
  color: #9a3412;
  font-weight: 800;
  text-decoration: none;
}
.empty-result {
  padding: 50px;
  border: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
}
.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 80px;
  align-items: start;
}
.article-main {
  min-width: 0;
}
.article-header {
  padding: 88px 0 58px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.article-header h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.98;
  max-width: 16ch;
  margin: 24px 0;
}
.article-deck {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 68ch;
}
.article-hook {
  max-width: 62ch;
  margin: 30px 0 0;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.38rem;
  line-height: 1.45;
}
.article-byline {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.82rem;
}
.article-byline span + span::before {
  content: "•";
  color: var(--orange);
  margin-right: 16px;
}
.article-cover {
  margin: 46px 0 0;
}
.article-cover img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(42, 24, 9, 0.14);
}
.article-cover figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.76rem;
}
.article-body {
  padding: 70px 0;
}
.article-body section[id] {
  scroll-margin-top: 100px;
}
.article-brief {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 62px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.article-brief > div {
  padding: 24px;
}
.article-brief > div + div {
  border-left: 1px solid var(--line);
}
.article-brief span,
.number-grid span {
  display: block;
  margin-bottom: 8px;
  color: #9a3412;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.article-brief p {
  margin: 0;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.4;
}
.article-body h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 2.35rem;
  line-height: 1.08;
  margin: 62px 0 18px;
}
.article-body h2:first-child {
  margin-top: 0;
}
.article-body h3 {
  font-size: 1.2rem;
  margin: 38px 0 12px;
}
.article-body p,
.article-body li {
  max-width: 72ch;
  color: #3f3a43;
  font-size: 1.02rem;
}
.article-body ul,
.article-body ol {
  padding-left: 1.25rem;
}
.article-body li {
  margin: 8px 0;
}
.article-body blockquote {
  margin: 42px 0;
  padding: 28px 32px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.25;
}
.worked-example {
  margin: 58px 0;
  padding: 38px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--cream);
}
.worked-example h2 {
  margin-top: 0;
  color: var(--cream);
}
.worked-example p {
  color: #f3e8dc;
}
.worked-example p:last-child {
  margin-bottom: 0;
}
.numbers-section {
  margin: 58px 0;
}
.numbers-section > h2 {
  margin-bottom: 10px;
}
.numbers-note {
  margin: 0 0 24px;
  color: var(--muted) !important;
  font-size: 0.88rem !important;
}
.number-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.number-grid > div {
  padding: 28px 22px;
}
.number-grid > div + div {
  border-left: 1px solid var(--line);
}
.number-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-family: Fraunces, Georgia, serif;
  font-size: 2.15rem;
  line-height: 1;
}
.number-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}
.action-plan {
  margin-top: 62px;
  padding: 34px 38px;
  border: 1px solid var(--line);
  background: var(--cream);
}
.action-plan h2 {
  margin-top: 0;
}
.action-plan ol {
  margin-bottom: 0;
  padding-left: 1.45rem;
}
.action-plan li {
  padding-left: 8px;
}
.article-sources {
  margin-top: 62px;
  padding-top: 4px;
  border-top: 1px solid var(--line);
}
.article-sources > h2 {
  margin-bottom: 10px;
}
.article-sources > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
}
.source-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.source-list a {
  display: flex;
  min-width: 0;
  padding: 26px 24px;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  transition: background-color 160ms ease-out, color 160ms ease-out;
}
.source-list a + a {
  border-left: 1px solid var(--line);
}
.source-list a:hover {
  background: var(--cream);
}
.source-list span {
  margin-bottom: 9px;
  color: #9a3412;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.source-list strong {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 160ms ease-out;
}
.source-list a:hover strong {
  text-decoration-color: var(--orange);
}
.source-list p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}
.article-aside {
  position: sticky;
  top: 110px;
  margin-top: 70px;
  padding: 26px;
  background: var(--cream);
  border-radius: var(--radius);
}
.article-aside h2 {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
}
.article-aside a {
  display: block;
  padding: 9px 0;
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
}
.article-aside a:hover {
  color: var(--orange);
}
.article-cta {
  padding: 38px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
  margin-top: 58px;
}
.article-cta h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}
.article-cta p {
  color: #cbc4ce;
}
.article-cta .button {
  margin-top: 10px;
}
.docs-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}
.docs-sidebar {
  position: sticky;
  top: 110px;
}
.docs-sidebar h2 {
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.docs-sidebar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  color: var(--muted);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.86rem;
}
.docs-sidebar a small {
  flex: none;
  color: #9a3412;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.docs-sidebar a:hover,
.docs-sidebar a.active {
  background: var(--cream);
  color: #9a3412;
}
.docs-content {
  min-width: 0;
}
.docs-content > h1 {
  font-family: Fraunces, Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  margin: 0 0 22px;
}
.docs-content > .lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 68ch;
}
.guide-heading {
  margin-bottom: 18px;
}
.guide-status {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.guide-status.coming-soon {
  background: #ffedd5;
  color: #9a3412;
}
.availability-banner {
  margin: 34px 0 10px;
  padding: 22px 24px;
  background: var(--cream);
  border: 1px solid #ead8ca;
  border-radius: 14px;
}
.availability-banner strong {
  display: block;
  margin-bottom: 6px;
  font-family: Fraunces, Georgia, serif;
  font-size: 1.18rem;
}
.availability-banner p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}
.docs-block {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.docs-block:first-of-type {
  margin-top: 44px;
}
.docs-block h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 2rem;
  margin: 0 0 14px;
}
.docs-block p,
.docs-block li {
  max-width: 72ch;
  color: #49434c;
}
.code-block {
  overflow-x: auto;
  background: var(--navy);
  color: #ffe2cc;
  border-radius: 12px;
  padding: 22px;
  font:
    500 0.84rem/1.7 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
}
.callout {
  padding: 20px 22px;
  background: #ffedd5;
  color: #7c2d12;
  border-radius: 12px;
  margin: 24px 0;
}
.doc-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 38px;
}
.doc-card {
  padding: 25px;
  background: var(--cream);
  border-radius: var(--radius);
  text-decoration: none;
}
.doc-card h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  margin: 0 0 8px;
}
.doc-card p {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0;
}
.doc-card span {
  display: block;
  color: #9a3412;
  font-weight: 800;
  font-size: 0.76rem;
  margin-top: 18px;
}
.news-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}
.press-panel {
  padding: 38px;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--radius);
}
.press-panel h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 2.3rem;
  margin: 0 0 14px;
}
.press-panel p {
  color: #c9c2cc;
}
.press-panel .button {
  margin-top: 20px;
}
.news-list {
  border-top: 1px solid var(--line);
}
.news-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.news-item time {
  display: block;
  color: #9a3412;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.news-item h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.6rem;
  margin: 8px 0;
}
.news-item p {
  color: var(--muted);
  margin: 0;
}
.timeline {
  border-top: 1px solid var(--line);
}
.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.timeline-item time {
  color: #9a3412;
  font-weight: 800;
}
.timeline-item h2 {
  font-size: 1.2rem;
  margin: 0 0 7px;
}
.timeline-item p {
  color: var(--muted);
  margin: 0;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.about-value {
  padding: 30px;
  background: var(--cream);
  border-radius: var(--radius);
}
.about-value h2 {
  font-family: Fraunces, Georgia, serif;
  font-size: 1.7rem;
  margin: 0 0 12px;
}
.about-value p {
  color: var(--muted);
  margin: 0;
}
@media (max-width: 980px) {
  .resource-feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .resource-feature.lead-story {
    grid-column: span 2;
  }
  .hub-intro,
  .article-shell,
  .docs-layout,
  .news-grid {
    grid-template-columns: 1fr;
  }
  .article-aside,
  .docs-sidebar {
    position: static;
    margin-top: 0;
  }
  .docs-sidebar {
    display: flex;
    overflow-x: auto;
    gap: 6px;
  }
  .docs-sidebar h2 {
    display: none;
  }
  .docs-sidebar a {
    white-space: nowrap;
  }
  .about-values {
    grid-template-columns: 1fr;
  }
  .footer-expanded {
    flex-wrap: wrap;
  }
}
@media (max-width: 760px) {
  .resource-feature-grid,
  .article-index,
  .doc-cards {
    grid-template-columns: 1fr;
  }
  .resource-feature.lead-story {
    grid-column: auto;
  }
  .resource-feature,
  .resource-feature.lead-story {
    min-height: 300px;
  }
  .resource-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .page-hero {
    padding: 78px 0 64px;
  }
  .page-hero h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }
  .article-header {
    padding: 65px 0 45px;
  }
  .article-body {
    padding: 48px 0;
  }
  .article-body h2 {
    font-size: 1.9rem;
  }
  .article-body blockquote {
    padding: 24px;
    font-size: 1.3rem;
  }
  .article-hook {
    font-size: 1.22rem;
  }
  .article-brief,
  .number-grid {
    grid-template-columns: 1fr;
  }
  .article-brief > div + div,
  .number-grid > div + div {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .worked-example,
  .action-plan {
    padding: 27px 24px;
  }
  .source-list {
    grid-template-columns: 1fr;
  }
  .source-list a + a {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .footer-expanded nav {
    justify-content: center;
  }
  .inner-page main {
    padding-top: 76px;
  }
}
.article-aside a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.page-path a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
}

/* Inner pages keep a paper navigation bar even before the scroll state is set. */
.inner-page .site-header:not(.scrolled) .site-nav > a:not(.button) {
  color: var(--ink);
}
.inner-page .site-header:not(.scrolled) .brand img {
  filter: none;
}

.resource-search {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(300px, 1fr);
  align-items: center;
  gap: 28px;
  margin: 46px 0 18px;
  padding: 24px 28px;
  background: var(--navy);
  border-radius: 14px;
}
.resource-search label {
  color: var(--cream);
  font-family: Fraunces, Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.15;
}
.resource-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 247, 237, 0.28);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.resource-search input::placeholder {
  color: #6b6570;
}
.resource-result-count {
  margin: -12px 0 18px;
  color: var(--muted);
  font-size: 0.86rem;
}
.resource-load-more {
  display: block;
  margin: 32px auto 0;
}
.resource-load-more[hidden] {
  display: none;
}
.article-body table {
  display: block;
  width: 100%;
  margin: 24px 0;
  overflow-x: auto;
  border-collapse: collapse;
  color: #3f3a43;
}
.article-body thead,
.article-body tbody {
  display: table;
  width: 100%;
  min-width: 560px;
  table-layout: fixed;
}
.article-body th,
.article-body td {
  padding: 13px 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.article-body th {
  background: var(--cream);
  color: var(--ink);
}
@media (max-width: 760px) {
  .resource-search {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px;
  }
  .resource-search label {
    font-size: 1.3rem;
  }
  .article-cover {
    margin-top: 34px;
  }
  .article-cover img {
    min-height: 240px;
  }
}
