:root {
  --ink: #1c1917;
  --muted: #6f665f;
  --line: #e7ded6;
  --paper: #fffaf5;
  --white: #ffffff;
  --sun: #d8743f;
  --sun-dark: #9e4a24;
  --sage: #5d7662;
  --rose: #c56364;
  --shadow: 0 18px 55px rgba(66, 42, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.brand-text-link {
  color: var(--sun-dark);
  font-weight: 850;
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(181, 83, 43, 0.55);
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.brand-text-link:hover,
.brand-text-link:focus-visible {
  color: var(--sun);
  text-decoration-color: currentColor;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(231, 222, 214, 0.82);
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: default;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 42px;
  border: 1px solid rgba(216, 116, 63, 0.32);
  border-radius: 50%;
  background: #fff6ee;
  box-shadow: inset 0 0 0 7px #fffaf5, 0 8px 22px rgba(66, 42, 25, 0.1);
}

.brand-mark::before {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  content: "";
  background: conic-gradient(from 0deg, var(--sun), #f2bd75, var(--sage), var(--sun));
}

.brand-mark::after {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: "";
  background: #fffaf5;
}

.brand-mark span {
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: var(--ink);
  transform: rotate(38deg);
}

.brand-text {
  display: grid;
  gap: 1px;
  color: var(--ink);
}

.brand-text strong {
  font-size: 17px;
  line-height: 1;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(12px, 3vw, 28px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.site-header nav {
  flex-wrap: wrap;
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  isolation: isolate;
}

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

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

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(28, 25, 23, 0.84), rgba(28, 25, 23, 0.52) 50%, rgba(28, 25, 23, 0.22)),
    linear-gradient(0deg, rgba(28, 25, 23, 0.46), rgba(28, 25, 23, 0.12) 46%);
}

.hero-content {
  display: flex;
  min-height: 660px;
  max-width: 880px;
  flex-direction: column;
  justify-content: center;
  padding: 72px clamp(20px, 6vw, 72px) 104px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd8b8;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(48px, 8vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

h4 {
  margin: 0 0 10px;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(18px, 2vw, 24px);
}

.author-card {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  border-radius: 0;
  padding: 0;
  background: transparent;
  color: #fff;
}

.author-card img {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 50%;
  object-fit: cover;
  object-position: 54% 34%;
  opacity: 0.86;
}

.author-card span {
  display: block;
  font-weight: 850;
  font-size: 14px;
  line-height: 1.1;
}

.author-card p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.25;
}

.hero-actions,
.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.hero-copy {
  max-width: 720px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--sun);
  box-shadow: 0 12px 28px rgba(216, 116, 63, 0.28);
}

.button.primary:hover {
  background: var(--sun-dark);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.54);
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
  padding-top: 86px;
  padding-bottom: 86px;
}

.landing-summary {
  align-items: stretch;
}

.intro-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, #fffdf9, #fff8f2);
  box-shadow: 0 10px 34px rgba(66, 42, 25, 0.06);
}

.intro-card h3 {
  margin-bottom: 12px;
}

.intro-card ul {
  margin: 0 0 20px;
  padding-left: 18px;
}

.copy p,
.method p,
.quick-card p {
  max-width: 740px;
  color: var(--muted);
  font-size: 18px;
}

.copy p + p {
  margin-top: 14px;
}

.problem-solution {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.problem-solution div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(66, 42, 25, 0.06);
}

.problem-solution span {
  display: block;
  margin-bottom: 8px;
  color: var(--sun-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.problem-solution strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.problem-solution p {
  margin: 10px 0 0;
  font-size: 15px;
}

.quick-card,
.review-card,
.criteria-grid div,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(66, 42, 25, 0.07);
}

.quick-card {
  padding: 26px;
}

.quick-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.quick-card p {
  margin-top: 0;
  font-size: 15px;
}

.quick-card .text-link {
  margin-top: 20px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

li + li {
  margin-top: 8px;
}

.section-heading {
  margin-bottom: 30px;
}

.ranking {
  padding-bottom: 130px;
}

.ranking .review-card:last-child {
  margin-bottom: 0;
}

.review-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(230px, 300px) minmax(0, 1fr);
  gap: 24px;
  margin-bottom: 18px;
  padding: 24px;
}

.review-card.featured {
  border: 2px solid rgba(216, 116, 63, 0.48);
  box-shadow: var(--shadow);
}

.rank {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.review-image {
  display: flex;
  min-height: 0;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  align-self: start;
  border-radius: 8px;
  padding: 16px;
  border: 1px solid #eadfd6;
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.88), rgba(248, 241, 234, 0.96)),
    #fffaf5;
  overflow: hidden;
}

.review-image img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.image-link {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.image-link:hover,
.image-link:focus-visible {
  border-color: rgba(216, 116, 63, 0.5);
  box-shadow: 0 16px 34px rgba(102, 62, 34, 0.12);
  transform: translateY(-1px);
}

.review-card.featured .review-image img {
  transform: scale(1.04);
}

.single-product-page .hero-subtitle {
  max-width: 760px;
}

.single-product-page .mechanism-hero {
  display: grid;
  width: min(1160px, calc(100% - 40px));
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  min-height: 0;
  overflow: visible;
  margin: 28px auto 64px;
  border: 1px solid rgba(231, 222, 214, 0.92);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 82% 18%, rgba(216, 116, 63, 0.14), transparent 34%),
    linear-gradient(135deg, #fffaf5 0%, #fff5ed 100%);
  box-shadow: 0 24px 70px rgba(66, 42, 25, 0.14);
}

.single-product-page .mechanism-hero::after {
  display: none;
}

.single-product-page .mechanism-hero .hero-media {
  position: relative;
  order: 2;
  z-index: 0;
  display: block;
  height: auto;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(231, 222, 214, 0.92);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 44px rgba(66, 42, 25, 0.12);
  cursor: pointer;
}

.single-product-page .mechanism-hero .hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.single-product-page .mechanism-hero .hero-media::after {
  display: none;
}

.single-product-page .mechanism-hero .hero-content {
  order: 1;
  width: 100%;
  min-height: 0;
  max-width: none;
  margin: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.single-product-page .mechanism-hero .eyebrow {
  color: var(--sun-dark);
}

.single-product-page .mechanism-hero h1 {
  color: var(--ink);
  font-size: clamp(40px, 5vw, 62px);
}

.single-product-page .mechanism-hero .hero-subtitle {
  color: var(--muted);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-trust-row span {
  border: 1px solid rgba(231, 222, 214, 0.9);
  border-radius: 14px;
  background: rgba(255, 250, 245, 0.88);
}

.hero-trust-row span {
  padding: 10px 14px;
  color: var(--ink);
  border-color: rgba(93, 118, 98, 0.24);
  background: rgba(93, 118, 98, 0.1);
  font-weight: 800;
}

.single-product-page .mechanism-hero .button.secondary {
  border-color: rgba(28, 25, 23, 0.22);
  color: var(--ink);
}

.single-product-page .mechanism-hero .disclosure {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  border-color: rgba(231, 222, 214, 0.9);
  background: rgba(255, 250, 245, 0.88);
  font-size: 13px;
}

.mechanism-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 46px;
  align-items: start;
}

.section-heading.centered {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.mechanism-visual {
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid rgba(231, 222, 214, 0.92);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mechanism-visual img {
  width: 100%;
  height: auto;
}

.step-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(66, 42, 25, 0.08);
}

.step-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--sun);
  font-weight: 900;
}

.step-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.step-grid p {
  margin: 0;
  color: var(--muted);
}

.showdown-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.showdown-row {
  display: grid;
  grid-template-columns: 0.75fr 1fr 1fr;
}

.showdown-row > div {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.showdown-row > div + div {
  border-left: 1px solid var(--line);
}

.showdown-row:last-child > div {
  border-bottom: 0;
}

.showdown-head {
  color: #fffaf5;
  background: var(--ink);
  font-weight: 900;
}

.showdown-head > div {
  border-color: rgba(255, 250, 245, 0.14);
}

.showdown-row .positive {
  color: #355e42;
  background: rgba(93, 118, 98, 0.1);
  font-weight: 800;
}

.showdown-row .negative {
  color: #8e3b31;
  background: rgba(197, 99, 100, 0.08);
}

.mobile-cell-label {
  display: none;
}

.trust-calibration {
  padding-top: 24px;
}

.calibration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.calibration-grid article {
  display: grid;
  justify-items: center;
  text-align: center;
  row-gap: 8px;
  padding: 24px;
  border: 1px solid rgba(231, 222, 214, 0.94);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(66, 42, 25, 0.08);
}

.calibration-grid span {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--leaf);
  font-weight: 900;
}

.calibration-grid h3 {
  margin: 0;
  font-size: 21px;
}

.calibration-grid p {
  margin: 0;
  color: var(--muted);
}

.result-clarity {
  padding-top: 24px;
}

.answer-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 16px;
}

.answer-strip > div {
  padding: 18px;
  border: 1px solid rgba(93, 118, 98, 0.22);
  border-radius: 16px;
  background: rgba(93, 118, 98, 0.08);
}

.answer-strip span {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.answer-strip strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.18;
}

.answer-strip p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.skin-tone-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 18px;
  border: 1px solid rgba(231, 222, 214, 0.94);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(66, 42, 25, 0.06);
}

.skin-tone-note strong {
  flex: 0 0 auto;
  color: var(--ink);
}

.skin-tone-note span {
  color: var(--muted);
}

.proof-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
  padding-top: 24px;
}

.proof-score-card {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.proof-score-card > div {
  padding: 18px;
  border: 1px solid rgba(93, 118, 98, 0.22);
  border-radius: 16px;
  background: rgba(93, 118, 98, 0.08);
}

.proof-score-card strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.proof-score-card p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.stars {
  display: block;
  margin-bottom: 6px;
  color: #d8743f;
  font-size: 18px;
  letter-spacing: 0.08em;
}

.proof-visuals {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 16px;
  align-items: center;
}

.proof-visuals figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 222, 214, 0.94);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(66, 42, 25, 0.08);
}

.proof-visuals img {
  display: block;
  width: 100%;
  height: auto;
}

.proof-visuals figcaption {
  padding: 12px 14px;
  color: var(--muted);
  border-top: 1px solid rgba(231, 222, 214, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.product-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 26px;
  border: 1px solid rgba(216, 116, 63, 0.32);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-panel .review-image {
  width: 100%;
  margin: 0;
}

.compact-pros {
  margin: 24px 0;
}

.decision-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 22px;
}

.decision-stack div {
  border: 1px solid rgba(93, 118, 98, 0.2);
  border-radius: 14px;
  padding: 16px;
  background: rgba(93, 118, 98, 0.08);
}

.decision-stack span {
  display: block;
  margin-bottom: 6px;
  color: var(--sun-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-stack strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.cta-note {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.context-link-note {
  max-width: 680px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.inline-text-link {
  display: inline;
  margin: 0;
}

.objection-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.objection-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(66, 42, 25, 0.07);
}

.objection-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.objection-grid p {
  margin: 0;
  color: var(--muted);
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.use-case-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(66, 42, 25, 0.07);
}

.use-case-grid span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--sun-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.use-case-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.use-case-grid p {
  margin: 0;
  color: var(--muted);
}

.review-notes {
  padding-top: 24px;
}

.review-note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.review-note-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(231, 222, 214, 0.94);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 245, 0.92));
  box-shadow: 0 16px 42px rgba(66, 42, 25, 0.08);
}

.review-note-grid article::before {
  position: absolute;
  top: 18px;
  right: 22px;
  color: rgba(216, 116, 63, 0.16);
  content: "”";
  font-family: Georgia, serif;
  font-size: 88px;
  line-height: 1;
}

.review-note-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--sun-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-note-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.review-note-grid p {
  position: relative;
  margin: 0;
  color: var(--muted);
}

.deep-dive-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.deep-dive-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(66, 42, 25, 0.07);
}

.deep-dive-grid strong {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--sage);
  font-size: 13px;
}

.deep-dive-grid h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.deep-dive-grid p {
  margin: 0;
  color: var(--muted);
}

.timeline-card {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 40px;
  align-items: start;
  border: 1px solid rgba(216, 116, 63, 0.26);
  border-radius: 22px;
  padding: clamp(26px, 4vw, 44px);
  background: linear-gradient(180deg, #fffdf9, #fff7ef);
  box-shadow: var(--shadow);
}

.timeline-card h2 {
  margin-bottom: 14px;
}

.timeline-card p {
  color: var(--muted);
}

.timeline-steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: #fff;
}

.timeline-steps span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  grid-row: span 2;
  border-radius: 50%;
  color: #fff;
  background: var(--sun);
  font-weight: 900;
}

.timeline-steps strong {
  font-size: 17px;
}

.timeline-steps p {
  margin: 4px 0 0;
}

.single-product-page .open-faq {
  display: grid;
  gap: 18px;
}

.single-product-page .open-faq .faq-card {
  border-radius: 14px;
  box-shadow: 0 14px 38px rgba(66, 42, 25, 0.07);
}

.single-product-page .open-faq .faq-card summary {
  min-height: 76px;
  padding: 24px 26px;
}

.single-product-page .open-faq .faq-card p {
  margin-right: 26px;
  margin-left: 26px;
}

.review-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.badge {
  display: inline-flex;
  margin: 0 0 10px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: var(--sage);
  font-size: 13px;
  font-weight: 800;
}

.badge.muted {
  color: var(--ink);
  background: #efe7df;
}

.score {
  min-width: 84px;
  text-align: right;
}

.score strong {
  color: var(--sun-dark);
  font-size: 38px;
  line-height: 1;
}

.score span {
  color: var(--muted);
  font-weight: 800;
}

.review-body > p {
  color: var(--muted);
  font-size: 17px;
}

.pros-cons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.pros-cons > div {
  border-radius: 8px;
  padding: 18px;
  background: #f8f1ea;
}

.pros-cons > div:first-child h4 {
  color: var(--sage);
}

.pros-cons > div:last-child h4 {
  color: var(--rose);
}

.cta-strip {
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.cta-strip p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.compact .review-title-row {
  align-items: center;
}

.secondary-image {
  min-height: 0;
}

.secondary-image img {
  width: 100%;
  max-height: none;
  object-fit: contain;
}

.placeholder-image {
  min-height: 0;
}

.placeholder-product {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  border: 1px dashed #cdbfb4;
  border-radius: 8px;
  padding: 22px;
  color: var(--muted);
  background:
    linear-gradient(135deg, rgba(216, 116, 63, 0.11), rgba(93, 118, 98, 0.12)),
    #fffaf5;
  text-align: center;
}

.placeholder-product span {
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.placeholder-product strong {
  max-width: 150px;
  font-size: 18px;
  line-height: 1.15;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--sun-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.text-link.subdued-link {
  display: none;
}

.attention-underline {
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: linear-gradient(transparent 58%, rgba(197, 123, 102, 0.36) 58%);
  color: var(--ink);
  font-weight: 850;
}

.format-showdown .section-heading p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.format-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  -webkit-overflow-scrolling: touch;
}

.format-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.format-table th,
.format-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 14px;
  text-align: center;
  vertical-align: middle;
}

.format-table th:first-child,
.format-table td:first-child {
  text-align: left;
}

.format-table thead th {
  color: var(--ink);
  background: #fff8f2;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.format-table tbody th {
  color: var(--ink);
  font-size: 16px;
}

.format-table tbody td {
  color: var(--muted);
  font-weight: 760;
}

.format-table tbody tr:last-child th,
.format-table tbody tr:last-child td {
  border-bottom: 0;
}

.format-table .is-winner th,
.format-table .is-winner td {
  background: #fff3eb;
}

.format-table-link {
  color: var(--ink);
  text-decoration: none;
}

.status-icon {
  position: relative;
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  vertical-align: middle;
}

.status-yes {
  background: rgba(93, 118, 98, 0.16);
}

.status-yes::before {
  width: 7px;
  height: 13px;
  border-right: 3px solid #436a4b;
  border-bottom: 3px solid #436a4b;
  content: "";
  transform: rotate(45deg) translate(-1px, -1px);
}

.status-no {
  background: rgba(196, 79, 75, 0.14);
}

.status-no::before,
.status-no::after {
  position: absolute;
  width: 14px;
  height: 3px;
  border-radius: 999px;
  background: #a5423f;
  content: "";
}

.status-no::before {
  transform: rotate(45deg);
}

.status-no::after {
  transform: rotate(-45deg);
}

.table-swipe-hint {
  display: none;
  margin: -12px 0 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 860px) {
  .table-swipe-hint {
    display: block;
  }

  .format-table-wrap {
    overflow-x: auto;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 8px;
  }

  .format-table {
    min-width: 720px;
  }

  .format-table th,
  .format-table td {
    padding: 13px 12px;
  }

  .format-table th:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    min-width: 154px;
    box-shadow: 8px 0 16px rgba(66, 42, 25, 0.08);
  }

  .format-table thead th:first-child {
    z-index: 3;
    background: #fff8f2;
  }

  .format-table tbody th:first-child {
    background: #fff;
  }

  .format-table .is-winner th:first-child {
    background: #fff3eb;
  }
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.mini-list li {
  margin: 0;
  border-left: 4px solid var(--line);
  padding-left: 12px;
  color: var(--muted);
}

.method {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 40px;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.criteria-grid div {
  padding: 22px;
}

.criteria-grid strong,
.criteria-grid span {
  display: block;
}

.criteria-grid span {
  margin-top: 8px;
  color: var(--muted);
}

.faq {
  padding-bottom: 130px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: #fff;
  box-shadow: 0 10px 34px rgba(66, 42, 25, 0.05);
  overflow: hidden;
}

.faq-card summary {
  position: relative;
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  color: var(--ink);
  font-size: 18px;
  font-weight: 850;
  list-style: none;
}

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

.faq-card summary::after {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  flex: 0 0 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--sun-dark);
  content: "+";
  font-size: 19px;
  line-height: 1;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card[open] summary {
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf9, #fff8f2);
}

.faq-card p {
  margin: 18px 24px 0;
  color: var(--muted);
}

.faq-card p + p {
  margin-top: 12px;
}

.faq-card ul {
  margin: 16px 24px 0;
  padding-left: 20px;
}

.faq-card li {
  color: var(--muted);
}

.faq-card li + li {
  margin-top: 10px;
}

.faq-card strong {
  color: var(--ink);
}

.faq-card:first-child,
.faq-card:nth-child(2),
.faq-card:nth-child(3) {
  border-color: rgba(216, 116, 63, 0.28);
}

.faq-card p:last-child,
.faq-card ul:last-child,
.faq-card .comparison-split:last-child {
  margin-bottom: 24px;
}

.comparison-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 24px 0;
}

.comparison-split > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.88);
}

.comparison-split h4 {
  margin-bottom: 12px;
  font-size: 18px;
}

.comparison-split > div:first-child h4 {
  color: #7a4d35;
}

.comparison-split > div:last-child {
  border-color: rgba(216, 116, 63, 0.35);
  background: linear-gradient(180deg, #fffaf5, #fff);
}

.comparison-split > div:last-child h4 {
  color: var(--sun-dark);
}

.comparison-split ul {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.comparison-split li {
  position: relative;
  padding-left: 28px;
}

.comparison-split li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.comparison-split .is-negative::before {
  color: #8e302d;
  content: "×";
  background: rgba(196, 79, 75, 0.12);
}

.comparison-split .is-positive::before {
  color: #436a4b;
  content: "✓";
  background: rgba(93, 118, 98, 0.16);
}

.faq-card p,
.format-guide p {
  color: var(--muted);
}

.faq-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.faq-proof-strip span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(93, 118, 98, 0.22);
  border-radius: 8px;
  padding: 9px 14px;
  color: var(--ink);
  background: #fff;
  font-size: 14px;
  font-weight: 800;
}

.faq-proof-strip strong {
  color: var(--sage);
}

.format-guide {
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, #fffdf9, #fff8f2);
  box-shadow: 0 10px 34px rgba(66, 42, 25, 0.06);
}

.format-guide h3 {
  margin-bottom: 18px;
  font-size: clamp(24px, 3vw, 30px);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.format-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #fff;
}

.format-grid div:last-child {
  border-color: rgba(197, 123, 102, 0.42);
  background: linear-gradient(180deg, #fffdf9, #fff2ea);
}

.format-grid strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.format-choice-link {
  color: var(--ink);
  text-decoration: none;
}

.format-grid p {
  margin: 0;
  color: var(--muted);
}

.footer {
  padding: 32px clamp(20px, 4vw, 56px) 112px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 13px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 22px;
  max-width: 980px;
  margin: 0 auto 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.footer p {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.legal-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 120px;
}

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

.legal-hero h1 {
  color: var(--ink);
  font-size: clamp(42px, 7vw, 72px);
}

.legal-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.legal-section {
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.legal-section h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 38px);
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 16px;
}

.contact-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(66, 42, 25, 0.07);
}

.contact-panel a {
  color: var(--sun-dark);
  font-weight: 850;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 30;
  display: flex;
  max-width: 860px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 8px;
  padding: 12px 12px 12px 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.single-product-page {
  padding-bottom: 136px;
}

.single-product-page .sticky-cta.persistent-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta-copy {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 760;
}

.sticky-cta-thumb {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-radius: 12px;
  background: #fff;
  object-fit: cover;
}

@media (max-width: 980px) {
  .showdown-table {
    display: grid;
    gap: 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .showdown-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
  }

  .showdown-row > div,
  .showdown-row > div + div {
    border-left: 0;
  }

  .showdown-row > div:first-child {
    padding: 14px 16px;
    color: var(--ink);
    background: #fffaf5;
    font-size: 18px;
    font-weight: 900;
  }

  .showdown-row > div:not(:first-child) {
    display: grid;
    gap: 7px;
    padding: 14px 16px 16px;
  }

  .mobile-cell-label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .showdown-head {
    display: none;
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .single-product-page .site-header,
  .listicle-page .site-header {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    gap: 14px;
  }

  .single-product-page .site-header nav,
  .listicle-page .site-header nav {
    width: auto;
    flex: 1 1 auto;
    align-items: baseline;
    justify-content: flex-end;
    gap: clamp(12px, 3vw, 22px);
    margin-left: auto;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }

  .single-product-page .brand,
  .listicle-page .brand {
    flex: 0 1 auto;
    min-width: 0;
  }

  .hero,
  .hero-content {
    min-height: 620px;
  }

  .single-product-page .mechanism-hero {
    width: min(100% - 28px, 620px);
    grid-template-columns: 1fr;
    gap: 22px;
    margin: 18px auto 48px;
    padding: 16px;
  }

  .single-product-page .mechanism-hero .hero-media {
    order: 1;
    width: 100%;
  }

  .single-product-page .mechanism-hero .hero-content {
    order: 2;
    min-height: 0;
    padding: 8px 4px 4px;
  }

  .skin-tone-note {
    display: grid;
    gap: 6px;
  }

  .intro,
  .review-card,
  .method,
  .mechanism-intro,
  .step-grid,
  .calibration-grid,
  .answer-strip,
  .proof-gallery,
  .proof-visuals,
  .product-panel,
  .use-case-grid,
  .review-note-grid,
  .deep-dive-grid,
  .timeline-card,
  .decision-stack,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .rank {
    width: 52px;
    height: 52px;
  }

  .pros-cons,
  .problem-solution,
  .comparison-split,
  .criteria-grid,
  .format-grid,
  .mini-list {
    grid-template-columns: 1fr;
  }

  .review-title-row {
    align-items: stretch;
    flex-direction: column;
  }

  .showdown-table {
    display: grid;
    gap: 14px;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .showdown-row {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
  }

  .showdown-row > div,
  .showdown-row > div + div {
    border-left: 0;
  }

  .showdown-row > div:first-child {
    padding: 14px 16px;
    color: var(--ink);
    background: #fffaf5;
    font-size: 18px;
    font-weight: 900;
  }

  .showdown-row > div:not(:first-child) {
    display: grid;
    gap: 7px;
    padding: 14px 16px 16px;
  }

  .mobile-cell-label {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
  }

  .showdown-head {
    display: none;
  }

  .score {
    text-align: left;
  }

  .sticky-cta .button {
    flex: 0 0 auto;
  }
}

@media (max-width: 520px) {
  nav {
    width: 100%;
    justify-content: space-between;
  }

  .single-product-page .site-header,
  .listicle-page .site-header {
    padding: 12px 14px;
  }

  .single-product-page .brand,
  .listicle-page .brand {
    gap: 8px;
  }

  .single-product-page .brand-mark,
  .listicle-page .brand-mark {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  .single-product-page .brand-text strong,
  .listicle-page .brand-text strong {
    font-size: 14px;
  }

  .single-product-page .brand-text small,
  .listicle-page .brand-text small {
    font-size: 9px;
    letter-spacing: 0.06em;
  }

  .single-product-page .site-header nav,
  .listicle-page .site-header nav {
    width: auto;
    justify-content: flex-end;
    gap: 10px;
    font-size: 12px;
  }

  h1 {
    font-size: 44px;
  }

  .section {
    width: min(100% - 28px, 1120px);
    padding: 52px 0;
  }

  .hero-content {
    padding-inline: 18px;
  }

  .author-card {
    align-items: flex-start;
  }

  .review-card {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .review-image {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .product-panel {
    padding: 18px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 10px;
  }

  .sticky-cta:has(.sticky-cta-copy) {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 10px;
  }

  .sticky-cta:not(:has(.sticky-cta-copy)) > span {
    display: none;
  }

  .sticky-cta-copy {
    gap: 0;
  }

  .sticky-cta-thumb {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 10px;
  }

  .sticky-cta-copy span {
    display: none;
  }

  .sticky-cta .button {
    width: 100%;
    min-height: 44px;
    padding: 12px 14px;
  }
}

@media (max-width: 980px) {
  .single-product-page .comparison-showdown .showdown-table {
    display: block;
    overflow-x: auto;
    overflow-y: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--shadow);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .single-product-page .comparison-showdown .showdown-row {
    display: grid;
    grid-template-columns: 160px 250px 250px;
    min-width: 660px;
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .single-product-page .comparison-showdown .showdown-row > div,
  .single-product-page .comparison-showdown .showdown-row > div + div {
    display: block;
    padding: 14px 16px;
    border-bottom: 1px solid var(--line);
  }

  .single-product-page .comparison-showdown .showdown-row > div + div {
    border-left: 1px solid var(--line);
  }

  .single-product-page .comparison-showdown .showdown-row:last-child > div {
    border-bottom: 0;
  }

  .single-product-page .comparison-showdown .showdown-row > div:first-child {
    color: var(--ink);
    background: #fffaf5;
    font-size: 15px;
    font-weight: 900;
  }

  .single-product-page .comparison-showdown .showdown-head {
    display: grid;
    color: #fffaf5;
    background: var(--ink);
  }

  .single-product-page .comparison-showdown .showdown-head > div,
  .single-product-page .comparison-showdown .showdown-head > div:first-child {
    color: #fffaf5;
    background: transparent;
    border-color: rgba(255, 250, 245, 0.14);
    font-size: 14px;
  }

  .single-product-page .comparison-showdown .mobile-cell-label {
    display: none;
  }
}
