:root {
  --ink: #17182b;
  --muted: #585b70;
  --brand: #4f46e5;
  --brand-dark: #3730a3;
  --line: #e3e4ed;
  --paper: #f7f8fc;
  --tint: #eeedff;
  --green: #167355;
  --radius: 18px;
  --max: 1184px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
img,
svg {
  max-width: 100%;
}
img {
  display: block;
}
svg {
  width: 22px;
  height: 22px;
  flex: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.65rem, 4.9vw, 4.45rem);
  font-weight: 750;
}
h2 {
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 700;
}
h3 {
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}
p {
  color: var(--muted);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 5px;
  border-radius: 4px;
}
.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 28px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 1.12rem;
  font-weight: 750;
  letter-spacing: -0.035em;
  white-space: nowrap;
}
.brand em {
  font-style: normal;
  color: var(--brand);
}
.brand-mark {
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 9px;
}
.brand-mark svg {
  width: 20px;
  height: 20px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links > a {
  font-size: 0.875rem;
  font-weight: 600;
}
.nav-links > a:hover,
.nav-links > a[aria-current="page"] {
  color: var(--brand);
}
.nav-links > .button:hover {
  color: #fff;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 13px 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: var(--brand);
  color: #fff;
  font-size: 0.9375rem;
  font-weight: 650;
  line-height: 1.45;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
}
.button.small {
  min-height: 44px;
  padding: 10px 17px;
}
.button.secondary {
  background: #fff;
  border-color: #d6d7e2;
  color: var(--ink);
}
.button.secondary:hover {
  border-color: var(--brand);
  background: #f7f7ff;
}
.button.light {
  background: #fff;
  color: var(--brand-dark);
}
.button.light:hover {
  background: var(--tint);
}
.button.ghost {
  background: transparent;
  border-color: #7776a4;
  color: #fff;
}
.button.ghost:hover {
  background: #303051;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-weight: 650;
  font-size: 0.9375rem;
}
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.mobile-nav {
  display: none;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--brand);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 19px;
}
.eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
}
.hero {
  padding: 78px 0 66px;
  background: linear-gradient(180deg, #fff 60%, #fafaff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  align-items: center;
  gap: 65px;
}
.hero h1 em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: -0.055em;
}
.hero-copy > p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 550px;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.hero-notes {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 21px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.hero-notes span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-notes svg {
  width: 16px;
  height: 16px;
  color: var(--green);
}
.hero .breadcrumb {
  font-size: 0.8125rem;
  margin-bottom: 25px;
  color: var(--muted);
}
.breadcrumb a:hover {
  color: var(--brand);
}
/* A schematic of the actual marketplace flow, with no invented performance data. */
.market-visual {
  margin: 0;
  background: var(--tint);
  border: 1px solid #dcdaf7;
  border-radius: 24px;
  padding: 29px;
  position: relative;
}
.visual-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #5b56a2;
  margin-bottom: 23px;
}
.visual-heading svg {
  width: 20px;
  height: 20px;
}
.newsletter-preview {
  border: 1px solid #d5d4e8;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px #24214b0a;
  overflow: hidden;
}
.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #f9f9fc;
  border-bottom: 1px solid var(--line);
  padding: 12px 17px;
}
.preview-toolbar i {
  width: 6px;
  height: 6px;
  background: #d5d4e3;
  border-radius: 50%;
}
.preview-toolbar span {
  font-size: 0.6875rem;
  color: #76768a;
  margin-left: auto;
  letter-spacing: 0.01em;
}
.newsletter-content {
  padding: 23px 26px 25px;
}
.newsletter-masthead {
  font-family: Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.055em;
  margin-bottom: 8px;
}
.newsletter-kicker {
  font-size: 0.75rem;
  color: #6b6b7e;
  margin-bottom: 20px;
}
.preview-rule {
  height: 1px;
  background: var(--line);
  margin-bottom: 20px;
}
.sponsor-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.625rem;
  color: #66677b;
  margin-bottom: 9px;
}
.offer-preview {
  border: 1px solid #dcdaf0;
  border-radius: 8px;
  padding: 17px;
  background: #fafaff;
}
.offer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.offer-top strong {
  font-size: 0.875rem;
}
.status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  padding: 3px 7px;
  background: #e8f5ef;
  color: #166344;
  font-size: 0.625rem;
  font-weight: 650;
  letter-spacing: 0.01em;
}
.offer-preview .offer-headline {
  color: var(--ink);
  font-weight: 700;
  font-family: Georgia, serif;
  letter-spacing: -0.035em;
  font-size: 1.4rem;
  line-height: 1.15;
  margin-bottom: 9px;
}
.offer-preview p {
  font-size: 0.8125rem;
  line-height: 1.65;
}
.example-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 14px;
}
.example-link svg {
  width: 14px;
  height: 14px;
}
.flow-connector {
  display: flex;
  justify-content: center;
  height: 36px;
  align-items: center;
  color: #8882c3;
}
.flow-connector svg {
  width: 20px;
  height: 20px;
}
.flow-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.flow-outcomes > div {
  background: #fff;
  border: 1px solid #dcdaf0;
  padding: 15px;
  border-radius: 10px;
}
.flow-outcomes span {
  display: block;
  font-size: 0.6875rem;
  color: #66637e;
  margin-bottom: 4px;
}
.flow-outcomes strong {
  font-size: 0.875rem;
  letter-spacing: -0.02em;
  line-height: 1.4;
  display: block;
}
.market-visual figcaption {
  font-size: 0.6875rem;
  text-align: center;
  color: #69658d;
  margin-top: 16px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 50px;
  padding-top: 24px;
  gap: 20px;
}
.hero-stats strong {
  font-size: 1.25rem;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.hero-stats p {
  font-size: 0.8125rem;
  margin-top: 3px;
}
.partner-logos {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0 30px;
}
.partner-logos p {
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 650;
  color: #676a7e;
  margin-bottom: 22px;
}
.logo-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: center;
  gap: 26px;
}
.logo-grid img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.73;
}
.section {
  padding: 88px 0;
}
.section.tinted {
  background: var(--paper);
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 35px;
  margin-bottom: 38px;
}
.section-heading h2 {
  max-width: 650px;
}
.section-heading > p {
  max-width: 350px;
  font-size: 1rem;
}
.section-heading.center {
  display: block;
  text-align: center;
}
.section-heading.center .eyebrow {
  justify-content: center;
}
.section-heading.center h2,
.section-heading.center > p {
  margin-inline: auto;
}
.section-heading.center > p {
  max-width: 650px;
  margin-top: 18px;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.audience-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  background: #fff;
}
.audience-card.dark {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.card-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 650;
  margin-bottom: 37px;
  color: var(--brand);
}
.dark .card-label {
  color: #bdb9ff;
}
.card-label svg {
  width: 27px;
  height: 27px;
}
.audience-card h3 {
  font-size: 2rem;
  max-width: 340px;
  line-height: 1.16;
  margin-bottom: 16px;
}
.audience-card > p {
  max-width: 440px;
}
.dark p {
  color: #c3c4d4;
}
.feature-list {
  list-style: none;
  margin: 26px 0 28px;
  padding: 0;
  display: grid;
  gap: 10px;
}
.feature-list li {
  display: flex;
  align-items: start;
  gap: 10px;
  font-size: 0.9375rem;
}
.feature-list svg {
  width: 18px;
  height: 18px;
  color: var(--brand);
  margin-top: 4px;
}
.dark .feature-list svg {
  color: #bdb9ff;
}
.card-footnote {
  display: block;
  font-size: 0.75rem;
  color: #666879;
  margin-top: 15px;
}
.dark .card-footnote {
  color: #b8b8cc;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  counter-reset: steps;
}
.step {
  border-top: 1px solid #cdccdf;
  padding-top: 22px;
}
.step-number {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 30px;
  font-weight: 700;
}
.step h3 {
  margin-bottom: 13px;
}
.step p {
  font-size: 0.9375rem;
}
.quote-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.5fr;
  gap: 65px;
  align-items: start;
}
.quote-mark {
  font-family: Georgia, serif;
  color: var(--brand);
  font-size: 6rem;
  line-height: 0.8;
  display: block;
  margin-bottom: 13px;
}
.quote-grid blockquote {
  margin: 0;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.55;
  letter-spacing: -0.025em;
  font-weight: 500;
}
.quote-credit {
  margin-top: 25px;
  font-size: 0.875rem;
}
.quote-credit strong {
  color: var(--ink);
}
.quote-grid .text-link {
  margin-top: 30px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.detail-grid p.intro {
  font-size: 1.05rem;
  margin-top: 22px;
}
.detail-list {
  display: grid;
  gap: 28px;
}
.detail-item {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}
.detail-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.detail-item h3 {
  margin-bottom: 10px;
}
.detail-item p {
  font-size: 0.9375rem;
}
.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.fact {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.fact strong {
  font-size: 1.35rem;
  display: block;
  margin-bottom: 4px;
  letter-spacing: -0.035em;
}
.fact p {
  font-size: 0.8125rem;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.3fr;
  gap: 80px;
}
.faq-intro p {
  margin-top: 22px;
}
.faq-intro a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 650;
  line-height: 1.5;
  font-size: 1rem;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand);
  font-weight: 400;
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details > p {
  padding: 0 26px 24px 0;
  font-size: 0.9375rem;
}
.faq-list a {
  color: var(--brand);
  text-decoration: underline;
}
.cta-section {
  padding: 0 0 80px;
}
.cta-panel {
  background: var(--brand);
  border-radius: 22px;
  padding: 51px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  color: #fff;
}
.cta-panel h2 {
  max-width: 590px;
}
.cta-panel p {
  color: #e4e1ff;
  margin-top: 16px;
  max-width: 630px;
}
.cta-panel .hero-actions {
  margin-top: 0;
  flex: none;
}
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper);
  padding: 47px 0 22px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-description {
  max-width: 300px;
  font-size: 0.8125rem;
  margin-top: 14px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 20px 28px;
  max-width: 535px;
  font-size: 0.875rem;
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--brand);
}
.footer-bottom {
  margin-top: 35px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.75rem;
  color: #64687a;
}
.partner-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid #c8c3ff;
  background: var(--tint);
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 25px;
}
.partner-message {
  color: var(--brand-dark);
  font-size: 0.875rem;
  font-weight: 600;
}
.partner-message .promo-spots {
  color: #625b90;
  font-size: 0.75rem;
  margin-top: 5px;
  font-weight: 400;
}
.partner-dismiss {
  border: 0;
  background: none;
  font-size: 1.5rem;
  line-height: 1;
  padding: 8px;
  color: var(--brand-dark);
  min-width: 40px;
  min-height: 40px;
}
.previous-minimum {
  opacity: 0.7;
  margin-right: 6px;
  font-weight: 400;
}
.previous-minimum.stat {
  font-size: 1rem;
}
.error-content {
  text-align: center;
  padding: 100px 0;
}
.error-content p {
  max-width: 480px;
  margin: 22px auto;
}
.error-content .hero-actions {
  justify-content: center;
}
@media (min-width: 1500px) {
  .hero {
    padding-top: 90px;
    padding-bottom: 80px;
  }
  .hero-grid {
    gap: 80px;
  }
}
@media (max-width: 1050px) {
  .nav-links {
    gap: 17px;
  }
  .nav-links .nav-how {
    display: none;
  }
  .hero-grid {
    gap: 35px;
  }
  .market-visual {
    padding: 22px;
  }
  .newsletter-content {
    padding: 20px;
  }
  .hero-actions .button {
    padding: 13px 17px;
  }
  .logo-grid {
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
  }
  .logo-grid img {
    height: 35px;
  }
  .faq-layout {
    gap: 45px;
  }
  .cta-panel {
    padding: 40px;
    display: block;
  }
  .cta-panel .hero-actions {
    margin-top: 26px;
  }
  .quote-grid {
    gap: 35px;
  }
  .detail-grid {
    gap: 40px;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 88px;
  }
  .container {
    padding-inline: 22px;
  }
  .nav-inner {
    min-height: 72px;
  }
  .brand {
    font-size: 1.02rem;
  }
  .brand-mark {
    width: 30px;
    height: 30px;
  }
  .nav-links {
    display: none;
  }
  .mobile-nav {
    display: block;
  }
  .mobile-nav summary {
    padding: 8px 12px;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 650;
    list-style: none;
    border: 1px solid var(--line);
    border-radius: 7px;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav summary::after {
    content: " +";
    color: var(--brand);
  }
  .mobile-nav[open] summary::after {
    content: " −";
  }
  .mobile-nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 20px #17182b0a;
    padding: 17px 22px;
    display: grid;
    gap: 5px;
  }
  .mobile-nav-panel a {
    padding: 11px 8px;
    font-size: 0.9375rem;
  }
  .mobile-nav-panel .button {
    margin-top: 6px;
  }
  .hero {
    padding: 45px 0;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 37px;
  }
  .hero h1 {
    max-width: 630px;
    font-size: clamp(2.75rem, 8.5vw, 4rem);
  }
  .hero-copy > p {
    font-size: 1.05rem;
    margin-top: 22px;
    max-width: 620px;
  }
  .hero .breadcrumb {
    margin-bottom: 18px;
  }
  .market-visual {
    max-width: 560px;
    width: 100%;
    margin-inline: auto;
  }
  .hero-stats {
    margin-top: 30px;
    padding-top: 20px;
    gap: 15px;
  }
  .hero-stats strong {
    font-size: 1.1rem;
  }
  .hero-stats p {
    font-size: 0.75rem;
  }
  .hero-notes {
    gap: 12px;
  }
  .logo-grid {
    gap: 20px;
  }
  .partner-logos {
    padding: 25px 0;
  }
  .partner-logos p {
    font-size: 0.6875rem;
  }
  .section {
    padding: 60px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    margin-top: 18px;
    max-width: 550px;
  }
  .audience-grid {
    grid-template-columns: 1fr;
  }
  .audience-card {
    padding: 28px;
  }
  .card-label {
    margin-bottom: 24px;
  }
  .audience-card h3 {
    font-size: 1.85rem;
    max-width: none;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .step-number {
    margin-bottom: 13px;
  }
  .step p {
    max-width: 550px;
  }
  .quote-grid,
  .detail-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .quote-mark {
    font-size: 4rem;
    margin-bottom: 0;
  }
  .quote-grid .eyebrow {
    margin-bottom: 4px;
  }
  .quote-grid blockquote {
    font-size: 1.4rem;
  }
  .facts {
    gap: 14px;
  }
  .fact strong {
    font-size: 1.1rem;
  }
  .faq-intro p {
    margin-top: 16px;
  }
  .faq-list summary {
    padding: 21px 0;
  }
  .cta-section {
    padding-bottom: 52px;
  }
  .cta-panel {
    padding: 30px 26px;
    border-radius: 16px;
  }
  .cta-panel h2 {
    font-size: 2rem;
  }
  .cta-panel .hero-actions {
    flex-wrap: wrap;
  }
  .footer-top {
    display: block;
  }
  .footer-links {
    margin-top: 28px;
    gap: 14px 24px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 28px;
  }
  .section-heading.center {
    text-align: left;
  }
  .section-heading.center .eyebrow {
    justify-content: start;
  }
}
@media (max-width: 380px) {
  .container {
    padding-inline: 17px;
  }
  .brand {
    font-size: 0.91rem;
    gap: 7px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .button {
    width: 100%;
  }
  .market-visual {
    padding: 17px;
  }
  .flow-outcomes {
    gap: 8px;
  }
  .flow-outcomes > div {
    padding: 11px;
  }
  .facts {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 9px;
  }
  .hero-stats strong {
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .cta-section,
  .partner-logos,
  .market-visual {
    display: none;
  }
  .hero,
  .section {
    padding: 20px 0;
  }
  .hero-grid,
  .faq-layout,
  .detail-grid,
  .quote-grid {
    display: block;
  }
  .faq-list details > p {
    display: block;
  }
  .faq-list details {
    break-inside: avoid;
  }
  .container {
    max-width: none;
  }
}
