/* Editorial advertorial LP — intentional departure from the brand home look.
   Cool paper, ink type, coral highlight, teal CTA. Built for cold Discover/Search traffic. */

.adv-body {
  margin: 0;
  background: #f7f8f6;
}

.adv-page {
  --adv-ink: #1c2421;
  --adv-muted: #5a6660;
  --adv-paper: #f7f8f6;
  --adv-white: #ffffff;
  --adv-line: #d8dde0;
  --adv-coral: #c45c3e;
  --adv-coral-soft: #f3e0d8;
  --adv-teal: #2f6f5e;
  --adv-teal-deep: #245748;
  --adv-callout: #fff6df;
  --adv-callout-edge: #edd9a8;
  --adv-max: 42rem;
  --adv-wide: 52rem;

  margin: 0;
  min-height: 100vh;
  background: var(--adv-paper);
  color: var(--adv-ink);
  font-family: "Figtree", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.adv-page *,
.adv-page *::before,
.adv-page *::after {
  box-sizing: border-box;
}

.adv-page a {
  color: var(--adv-teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

.adv-page a:hover {
  color: var(--adv-teal-deep);
}

.adv-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

.adv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--adv-wide);
  margin: 0 auto;
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid #e4e8e5;
  background: rgba(247, 248, 246, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.adv-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--adv-ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.adv-brand img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.4rem;
}

.adv-topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: var(--adv-teal);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 160ms ease, transform 160ms ease;
}

.adv-topbar-cta:hover {
  background: var(--adv-teal-deep);
  color: #fff !important;
  transform: translateY(-1px);
}

.adv-main {
  max-width: var(--adv-wide);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 4.5rem;
}

.adv-article {
  max-width: var(--adv-max);
  margin: 0 auto;
}

.adv-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--adv-teal);
}

.adv-headline {
  margin: 0;
  font-family: "Literata", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.2vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--adv-ink);
}

.adv-headline em {
  font-style: normal;
  color: var(--adv-coral);
}

.adv-dek {
  margin: 1rem 0 0;
  font-size: 1.125rem;
  color: var(--adv-muted);
  line-height: 1.5;
}

.adv-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 1.1rem 0 1.5rem;
  font-size: 0.875rem;
  color: var(--adv-muted);
}

.adv-hero {
  margin: 0 0 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #e8ece9;
  box-shadow: 0 18px 40px rgba(28, 36, 33, 0.08);
}

.adv-hero img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.adv-caption {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  color: var(--adv-muted);
}

.adv-callout {
  margin: 1.5rem 0 1.75rem;
  padding: 1.15rem 1.2rem;
  background: var(--adv-callout);
  border: 1px solid var(--adv-callout-edge);
  border-radius: 0.85rem;
  font-size: 1.05rem;
  line-height: 1.55;
}

.adv-callout strong {
  color: var(--adv-ink);
}

.adv-prose p {
  margin: 0 0 1.15rem;
}

.adv-prose h2 {
  margin: 2.4rem 0 0.85rem;
  font-family: "Literata", Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.adv-prose h3 {
  margin: 1.75rem 0 0.55rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.adv-figure {
  margin: 1.75rem 0;
}

.adv-figure img {
  width: 100%;
  border-radius: 0.9rem;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #e8ece9;
}

.adv-figure.square img {
  aspect-ratio: 1 / 1;
  max-width: 22rem;
  margin: 0 auto;
}

.adv-compare {
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.adv-compare li {
  padding: 0.95rem 1rem;
  background: var(--adv-white);
  border: 1px solid #e4e8e5;
  border-radius: 0.75rem;
}

.adv-compare .label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--adv-muted);
}

.adv-compare .win .label {
  color: var(--adv-teal);
}

.adv-steps {
  counter-reset: adv-step;
  list-style: none;
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.adv-steps li {
  position: relative;
  padding: 1rem 1rem 1rem 3.4rem;
  background: var(--adv-white);
  border: 1px solid #e4e8e5;
  border-radius: 0.75rem;
}

.adv-steps li::before {
  counter-increment: adv-step;
  content: counter(adv-step);
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: var(--adv-coral-soft);
  color: var(--adv-coral);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.adv-proof {
  margin: 1.5rem 0;
  padding: 1.2rem 1.25rem;
  background: var(--adv-white);
  border-left: 3px solid var(--adv-teal);
  border-radius: 0 0.75rem 0.75rem 0;
}

.adv-proof p {
  margin: 0 0 0.55rem;
}

.adv-proof cite {
  display: block;
  font-style: normal;
  font-size: 0.85rem;
  color: var(--adv-muted);
}

.adv-cta-block {
  margin: 2.25rem 0;
  padding: 1.6rem 1.35rem;
  background:
    radial-gradient(circle at 90% 10%, rgba(47, 111, 94, 0.12), transparent 40%),
    linear-gradient(160deg, #eef5f2 0%, #ffffff 55%);
  border: 1px solid #d5e4de;
  border-radius: 1rem;
  text-align: center;
}

.adv-cta-block h2 {
  margin: 0 0 0.5rem;
  font-family: "Literata", Georgia, serif;
  font-size: clamp(1.4rem, 3vw, 1.7rem);
  letter-spacing: -0.02em;
}

.adv-cta-block p {
  margin: 0 auto 1.15rem;
  max-width: 28rem;
  color: var(--adv-muted);
}

.adv-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  background: var(--adv-teal);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 800;
  letter-spacing: -0.01em;
  box-shadow: 0 10px 24px rgba(47, 111, 94, 0.22);
  transition: background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.adv-button:hover {
  background: var(--adv-teal-deep);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(47, 111, 94, 0.28);
}

.adv-button:focus-visible {
  outline: 3px solid rgba(47, 111, 94, 0.35);
  outline-offset: 3px;
}

.adv-assurance {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: var(--adv-muted);
}

.adv-faq {
  margin-top: 2.5rem;
}

.adv-faq h2 {
  margin-bottom: 1rem;
}

.adv-faq details {
  margin: 0 0 0.65rem;
  padding: 0.9rem 1rem;
  background: var(--adv-white);
  border: 1px solid #e4e8e5;
  border-radius: 0.7rem;
}

.adv-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.adv-faq summary::-webkit-details-marker {
  display: none;
}

.adv-faq summary::after {
  content: "+";
  float: right;
  color: var(--adv-muted);
  font-weight: 500;
}

.adv-faq details[open] summary::after {
  content: "–";
}

.adv-faq details p {
  margin: 0.7rem 0 0;
  color: var(--adv-muted);
}

.adv-footer {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid #e4e8e5;
  font-size: 0.85rem;
  color: var(--adv-muted);
}

.adv-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin-bottom: 0.75rem;
}

.adv-footer a {
  color: var(--adv-muted);
  text-decoration: none;
}

.adv-footer a:hover {
  color: var(--adv-teal);
}

.adv-sticky-mobile {
  display: none;
}

@media (max-width: 720px) {
  .adv-topbar-cta {
    display: none;
  }

  .adv-sticky-mobile {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
    background: rgba(247, 248, 246, 0.94);
    border-top: 1px solid #e4e8e5;
    backdrop-filter: blur(10px);
  }

  .adv-sticky-mobile .adv-button {
    width: 100%;
  }

  .adv-main {
    padding-bottom: 6.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .adv-button,
  .adv-topbar-cta {
    transition: none;
  }

  .adv-button:hover,
  .adv-topbar-cta:hover {
    transform: none;
  }
}
