@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --ink: #17131f;
  --muted: #6f6a78;
  --line: #ded8d1;
  --soft: #f7f2eb;
  --paper: #fffcf7;
  --white: #ffffff;
  --teal: #0c7772;
  --teal-dark: #085956;
  --wine: #7a263c;
  --plum: #2c1934;
  --gold: #b98239;
  --blush: #f6dfd7;
  --shadow: 0 28px 70px rgba(36, 23, 28, 0.16);
  --soft-shadow: 0 12px 34px rgba(36, 23, 28, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(246, 223, 215, 0.42), transparent 36rem),
    linear-gradient(180deg, #fffcf7 0%, #fffaf2 42%, #ffffff 100%);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.72;
  text-rendering: geometricPrecision;
}

a {
  color: var(--teal-dark);
  text-decoration: none;
  text-underline-offset: 4px;
}

a:hover {
  color: var(--wine);
  text-decoration: underline;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(23, 19, 31, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 252, 247, 0.9)),
    rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 36px rgba(23, 19, 31, 0.06);
}

.nav {
  display: grid;
  grid-template-columns: minmax(230px, 0.8fr) auto minmax(170px, 0.8fr);
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px 0;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  width: fit-content;
  min-width: 0;
}

.brand:hover {
  color: var(--ink);
  text-decoration: none;
}

.brand-logo {
  width: clamp(184px, 18vw, 230px);
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
  font-weight: 800;
  font-size: 12px;
}

.nav-links a {
  color: #302b38;
}

.nav-links a:not(.nav-cta) {
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
  display: none;
}

.nav-links a:not(.nav-cta):hover {
  color: var(--ink);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23, 19, 31, 0.08);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 20px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(23, 19, 31, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav > .nav-cta {
  justify-self: end;
  min-height: 40px;
  padding: 9px 16px;
  font-size: 12px;
  white-space: nowrap;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.82);
}

.nav-cta:hover,
.button:hover {
  background: var(--wine);
  border-color: var(--wine);
  color: var(--white);
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(122, 38, 60, 0.22);
}

.hero {
  min-height: 720px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 20%, rgba(185, 130, 57, 0.34), transparent 22rem),
    linear-gradient(90deg, rgba(23, 19, 31, 0.92) 0%, rgba(44, 25, 52, 0.74) 44%, rgba(23, 19, 31, 0.22) 100%),
    url("assets/photos/hero-eyewear.jpg") center / cover;
  color: var(--white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: max(18px, calc((100vw - 1180px) / 2));
  top: 152px;
  width: min(42vw, 520px);
  aspect-ratio: 520 / 360;
  background: url("assets/graphics/hero-orbit.svg") center / contain no-repeat;
  opacity: 0.86;
  pointer-events: none;
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  gap: 52px;
  align-items: end;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: 112px 0 92px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  margin-bottom: 92px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.18), rgba(255, 252, 247, 0.08)),
    rgba(23, 19, 31, 0.28);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  display: block;
  margin-bottom: 16px;
  color: #f6dfd7;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-checks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-checks div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.hero-checks strong,
.hero-checks span {
  display: block;
}

.hero-checks strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.hero-checks span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-copy::before {
  content: "";
  display: block;
  width: 142px;
  height: 64px;
  margin-bottom: 26px;
  background: url("assets/graphics/glasses-line.svg") left center / contain no-repeat;
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 13px;
  border: 1px solid rgba(122, 38, 60, 0.22);
  border-radius: 999px;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.62);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.34);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 790px;
  color: transparent;
  background: linear-gradient(115deg, #ffffff 0%, #fff8ef 46%, #f3d2c6 74%, #d5a35c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
}

h1 {
  max-width: 920px;
  margin-top: 24px;
  font-size: clamp(48px, 6.7vw, 88px);
}

h2 {
  font-size: clamp(38px, 4.9vw, 62px);
}

h3 {
  font-size: 30px;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(19px, 2vw, 24px);
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-microbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-microbar span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 850;
}

.proof-strip {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 18px 0 34px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(255, 252, 247, 0.98));
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(23, 19, 31, 0.1);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.proof-item {
  padding: 22px;
  background: rgba(255, 252, 247, 0.96);
}

.brand-strip {
  position: relative;
  padding: 76px 0 58px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(246, 223, 215, 0.64) 42%, rgba(226, 244, 239, 0.8)),
    var(--paper);
  border-block: 1px solid rgba(23, 19, 31, 0.08);
}

.brand-strip.compact {
  padding: 58px 0;
  border-top: 0;
}

.brand-strip-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.brand-strip-head h2 {
  max-width: 680px;
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 56px);
}

.brand-strip-head p {
  max-width: 620px;
  color: var(--muted);
  font-weight: 600;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.retailer-logo {
  position: relative;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 22px 16px 18px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: var(--soft-shadow);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  overflow: hidden;
}

.retailer-logo::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--teal));
}

.retailer-logo::after {
  display: none;
}

.retailer-logo small {
  position: absolute;
  top: 14px;
  left: 14px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.actual-logo {
  display: block;
  width: min(100%, 230px);
  max-height: 72px;
  object-fit: contain;
}

.retailer-logo.specky .actual-logo {
  width: min(100%, 260px);
  max-height: 58px;
}

.retailer-logo.selectspecs .actual-logo {
  width: min(100%, 210px);
  max-height: 64px;
}

.retailer-logo.gd .actual-logo {
  width: min(100%, 230px);
  max-height: 58px;
}

.retailer-logo.specsavers .actual-logo {
  width: min(100%, 230px);
  max-height: 64px;
}

.retailer-logo.vision .actual-logo {
  width: min(100%, 230px);
  max-height: 62px;
}

.retailer-logo:hover {
  color: var(--ink);
  text-decoration: none;
  transform: translateY(-2px);
  border-color: rgba(122, 38, 60, 0.22);
  box-shadow: var(--shadow);
}

.retailer-logo span,
.retailer-logo strong {
  display: inline-block;
}

.retailer-logo.specky span {
  color: #f05a28;
}

.retailer-logo.specky strong {
  color: #17131f;
}

.retailer-logo.selectspecs {
  color: #125fa7;
}

.retailer-logo.selectspecs span {
  color: #0c7772;
}

.retailer-logo.gd {
  color: #2b2f8f;
}

.retailer-logo.gd span {
  color: #e33556;
}

.retailer-logo.specsavers {
  background: #eff9f1;
  color: #087d3f;
}

.retailer-logo.specsavers::after {
  background-image: url("assets/graphics/lens-ruler.svg");
}

.retailer-logo.vision {
  color: #202f5f;
}

.retailer-logo.vision span {
  color: #7a263c;
}

.retailer-logo.mini {
  min-height: 58px;
  width: fit-content;
  min-width: 170px;
  margin-bottom: 16px;
  padding: 12px 14px;
  box-shadow: none;
  flex-direction: row;
}

.retailer-logo.mini small,
.retailer-logo.mini::before,
.retailer-logo.mini::after {
  display: none;
}

.retailer-logo.mini .actual-logo {
  width: 145px;
  max-height: 36px;
}

.proof-item strong {
  display: block;
  color: var(--wine);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 34px;
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 239, 0.92)),
    var(--white);
  box-shadow: var(--shadow);
}

.feature-panel h2 {
  margin-top: 18px;
}

.feature-panel p {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 500;
}

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

.metric-tile {
  min-height: 128px;
  padding: 20px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.metric-tile strong {
  display: block;
  color: var(--teal-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  line-height: 0.95;
}

.metric-tile span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.notice-bar {
  margin-top: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(12, 119, 114, 0.18);
  border-radius: var(--radius);
  background: rgba(228, 243, 239, 0.72);
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 800;
}

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

.resource-card {
  padding: 24px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.resource-card::before {
  content: "";
  display: block;
  width: 62px;
  height: 48px;
  margin-bottom: 16px;
  background: url("assets/graphics/glasses-line.svg") left center / contain no-repeat;
}

.resource-card:nth-child(2)::before {
  background-image: url("assets/graphics/lens-ruler.svg");
}

.resource-card:nth-child(3)::before {
  background-image: url("assets/graphics/price-spark.svg");
}

.resource-card:nth-child(4)::before {
  background-image: url("assets/graphics/reglaze-loop.svg");
}

.resource-card:nth-child(5)::before {
  background-image: url("assets/graphics/sun-lenses.svg");
}

.resource-card:nth-child(6)::before {
  background-image: url("assets/graphics/retailer-stack.svg");
}

.resource-card h3 {
  font-size: 30px;
}

.resource-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

.resource-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--wine);
  font-weight: 900;
}

.buying-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.buying-steps article {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.buying-steps article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--teal));
}

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

.buying-steps h3 {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.buying-steps p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

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

.decision-grid article,
.route-cards a {
  padding: 20px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.decision-grid h3 {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
}

.decision-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.route-cards a {
  color: var(--ink);
}

.route-cards a:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.route-cards strong,
.route-cards span {
  display: block;
}

.route-cards strong {
  font-size: 17px;
  font-weight: 900;
}

.route-cards span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.cta-panel {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px);
  border: 1px solid rgba(12, 119, 114, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(247, 242, 235, 0.9), rgba(228, 243, 239, 0.82)),
    var(--paper);
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-panel p {
  max-width: 640px;
  margin: 16px auto 0;
  color: var(--muted);
  font-weight: 600;
}

.cta-panel .hero-actions {
  justify-content: center;
}

.section {
  padding: 92px 0;
}

.section.soft {
  background:
    linear-gradient(135deg, rgba(246, 223, 215, 0.68), rgba(247, 242, 235, 0.88) 54%, rgba(225, 242, 239, 0.72)),
    var(--soft);
  border-block: 1px solid rgba(23, 19, 31, 0.06);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 600px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.section-head h2 {
  margin-top: 18px;
}

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

.comparison-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.comparison-card {
  position: relative;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.comparison-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--teal));
}

.comparison-card::before {
  content: "";
  display: block;
  width: 56px;
  height: 44px;
  margin-bottom: 14px;
  background: url("assets/graphics/retailer-stack.svg") left center / contain no-repeat;
}

.comparison-card:nth-child(2)::before {
  background-image: url("assets/graphics/price-spark.svg");
}

.comparison-card:nth-child(3)::before {
  background-image: url("assets/graphics/glasses-line.svg");
}

.comparison-card:nth-child(4)::before {
  background-image: url("assets/graphics/lens-ruler.svg");
}

.comparison-card:nth-child(5)::before {
  background-image: url("assets/graphics/sun-lenses.svg");
}

.comparison-card h3 {
  font-size: clamp(25px, 2.5vw, 34px);
  line-height: 1.03;
}

.comparison-card p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.comparison-card a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--wine);
  font-weight: 900;
}

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

.editorial-grid {
  align-items: stretch;
}

.post-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 242, 0.94)),
    var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.post-card.featured {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(23, 19, 31, 0.08), rgba(23, 19, 31, 0.84)),
    url("assets/photos/optical-lenses.jpg") center / cover;
  color: var(--white);
}

.post-card.featured h2,
.post-card.featured p,
.post-card.featured .post-meta,
.post-card.featured a {
  color: var(--white);
}

.post-card::before {
  content: "";
  display: block;
  width: 76px;
  height: 58px;
  margin-bottom: 18px;
  background: url("assets/graphics/lens-ruler.svg") left center / contain no-repeat;
}

.post-card.featured::before {
  filter: brightness(0) invert(1);
  opacity: 0.82;
}

.blog-grid .post-card:nth-child(2)::before {
  background-image: url("assets/graphics/reglaze-loop.svg");
}

.blog-grid .post-card:nth-child(3)::before {
  background-image: url("assets/graphics/sun-lenses.svg");
}

.blog-grid .post-card:nth-child(4)::before {
  background-image: url("assets/graphics/price-spark.svg");
}

.post-card h2 {
  font-size: clamp(34px, 4vw, 54px);
}

.post-card h3 {
  font-size: 32px;
}

.post-card p {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 600;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--wine);
  font-weight: 900;
}

.post-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 760px) 220px;
  gap: 34px;
  align-items: start;
}

.post-toc,
.post-aside {
  position: sticky;
  top: 96px;
  padding: 20px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.post-toc strong,
.post-aside strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.post-toc a {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.post-body {
  padding: clamp(30px, 5vw, 54px);
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.article-page {
  background:
    radial-gradient(circle at top right, rgba(226, 244, 239, 0.72), transparent 34rem),
    linear-gradient(180deg, #fffcf7 0%, #fffaf2 46%, #ffffff 100%);
}

.article-hero {
  padding: 68px 0 44px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.94), rgba(246, 223, 215, 0.62) 48%, rgba(226, 244, 239, 0.78)),
    var(--paper);
  border-bottom: 1px solid rgba(23, 19, 31, 0.08);
}

.article-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.article-hero-copy h1 {
  max-width: 860px;
  margin-top: 18px;
  color: var(--ink);
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 900;
  line-height: 0.98;
}

.article-hero-copy p {
  max-width: 740px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.66;
}

.article-feature {
  position: relative;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.article-feature::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  pointer-events: none;
}

.article-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}

.article-section {
  padding-top: 56px;
}

.post-body.longform {
  max-width: 790px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 247, 0.96)),
    var(--white);
}

.post-body.longform h2,
.post-body.longform h3 {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.post-body.longform h2 {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 19, 31, 0.08);
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.08;
  font-weight: 900;
}

.post-body.longform h2:first-of-type {
  margin-top: 30px;
}

.post-body.longform p,
.post-body.longform li,
.post-body.longform td {
  color: #4c4654;
  font-size: 17px;
  line-height: 1.82;
}

.post-body.longform p {
  margin-top: 18px;
}

.article-summary {
  margin: 0 0 28px;
  padding: 22px 24px;
  border: 1px solid rgba(12, 119, 114, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(228, 243, 239, 0.82), rgba(255, 248, 239, 0.72));
  color: var(--teal-dark) !important;
  font-size: 18px !important;
  font-weight: 650 !important;
}

.insight-box {
  margin: 28px 0;
  padding: 22px 24px;
  border: 1px solid rgba(185, 130, 57, 0.24);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: #fff8ef;
  color: #4a3b31;
  font-weight: 650;
  line-height: 1.72;
}

.mini-table {
  width: 100%;
  margin: 28px 0;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.mini-table th,
.mini-table td {
  padding: 15px 16px;
  border-bottom: 1px solid rgba(23, 19, 31, 0.08);
  text-align: left;
  vertical-align: top;
}

.mini-table th {
  background: var(--plum);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-table tr:last-child td {
  border-bottom: 0;
}

.check-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 119, 114, 0.12);
}

.related-link {
  display: block;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

.related-link:hover {
  text-decoration: none;
  background: #fff;
}

.related-link strong,
.related-link span {
  display: block;
}

.related-link strong {
  color: var(--ink);
  font-size: 14px;
}

.related-link span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.post-body > p:first-child {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.62;
}

.post-body h2 {
  margin-top: 44px;
  font-size: clamp(34px, 4vw, 50px);
}

.post-body p,
.post-body ul,
.post-body ol {
  margin-top: 16px;
  color: var(--muted);
  font-weight: 500;
}

.post-body li {
  margin: 9px 0;
}

.pullquote {
  margin: 34px 0;
  padding: 26px;
  border-left: 6px solid var(--gold);
  background: #fff8ef;
  color: var(--plum);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.05;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.page-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.card {
  position: relative;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card-body::before {
  content: "";
  display: block;
  width: 72px;
  height: 58px;
  margin-bottom: 18px;
  background: url("assets/graphics/glasses-line.svg") center / contain no-repeat;
}

.grid .card:nth-child(2n) .card-body::before {
  background-image: url("assets/graphics/price-spark.svg");
}

.grid .card:nth-child(3n) .card-body::before {
  background-image: url("assets/graphics/lens-ruler.svg");
}

.grid .card:nth-child(4n) .card-body::before {
  background-image: url("assets/graphics/reglaze-loop.svg");
}

.grid .card:nth-child(5n) .card-body::before {
  background-image: url("assets/graphics/sun-lenses.svg");
}

.grid .card:nth-child(6n) .card-body::before {
  background-image: url("assets/graphics/retailer-stack.svg");
}

.card:has(.card-media) .card-body::before {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 66px;
  height: 54px;
  margin: 0;
  padding: 8px;
  border-radius: var(--radius);
  background-color: rgba(255, 252, 247, 0.9);
  box-shadow: 0 12px 24px rgba(23, 19, 31, 0.13);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--wine), var(--gold), var(--teal)) 1;
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(122, 38, 60, 0.26);
  box-shadow: var(--shadow);
}

.card:hover::before {
  opacity: 1;
}

.card-body {
  padding: 28px;
}

.card p,
.article p,
.legal p,
.comparison-note {
  color: var(--muted);
  font-weight: 500;
}

.comparison-table + .comparison-note {
  margin-top: 18px;
}

.card-media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  filter: saturate(0.92) contrast(1.04);
}

.article-image {
  width: 100%;
  max-height: 380px;
  margin-bottom: 30px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--soft-shadow);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid rgba(44, 25, 52, 0.1);
  border-radius: 999px;
  background: #f7efe7;
  color: var(--plum);
  font-weight: 900;
  font-size: 12px;
}

.badge.teal {
  background: #e4f3ef;
  color: var(--teal-dark);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--wine);
  font-weight: 900;
}

.link-more::after {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  transition: width 160ms ease;
}

.link-more:hover::after {
  width: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  overflow: visible;
  background: rgba(255, 255, 255, 0.48);
  box-shadow: var(--soft-shadow);
  padding: 12px;
}

.table-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 26px;
}

.table-intro h2 {
  margin-top: 16px;
  font-size: clamp(34px, 4vw, 54px);
}

.table-intro p {
  max-width: 560px;
  color: var(--muted);
  font-weight: 600;
}

.comparison-table th,
.comparison-table td {
  padding: 18px;
  border-bottom: 0;
  text-align: left;
  vertical-align: top;
}

.comparison-table td {
  color: #3e3747;
  font-size: 14px;
  font-weight: 560;
  line-height: 1.62;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(23, 19, 31, 0.08);
  border-bottom: 1px solid rgba(23, 19, 31, 0.08);
}

.comparison-table th {
  background: #27162f;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.comparison-table th:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.comparison-table th:last-child {
  border-radius: 0 var(--radius) var(--radius) 0;
}

.comparison-table tr:nth-child(even) td {
  background: rgba(255, 252, 247, 0.94);
}

.comparison-table td:first-child {
  border-left: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius) 0 0 var(--radius);
}

.comparison-table td:last-child {
  border-right: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.merchant {
  color: var(--wine);
  font-weight: 900;
}

.merchant-card {
  display: grid;
  gap: 10px;
  min-width: 150px;
}

.merchant-logo {
  width: 132px;
  max-height: 42px;
  object-fit: contain;
  object-position: left center;
}

.merchant-logo.wide {
  width: 152px;
}

.merchant-card strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.merchant-card span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.pill-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.data-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(12, 119, 114, 0.18);
  border-radius: 999px;
  background: rgba(228, 243, 239, 0.86);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
}

.data-pill.gold {
  border-color: rgba(185, 130, 57, 0.25);
  background: #fff4df;
  color: #875d1d;
}

.data-pill.wine {
  border-color: rgba(122, 38, 60, 0.22);
  background: #fae8ee;
  color: var(--wine);
}

.data-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
}

.table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff !important;
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.table-action:hover {
  background: var(--wine);
  text-decoration: none;
}

.visual-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.visual-list li {
  position: relative;
  padding-left: 22px;
}

.visual-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(12, 119, 114, 0.1);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 70px;
  background:
    linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(246, 223, 215, 0.6) 48%, rgba(226, 244, 239, 0.72)),
    var(--paper);
  border-bottom: 1px solid rgba(23, 19, 31, 0.08);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: -12px;
  width: min(34vw, 360px);
  height: 250px;
  border: 0;
  background: url("assets/graphics/cat-eye-frame.svg") center / contain no-repeat;
  opacity: 0.2;
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 780px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 20px;
  font-weight: 500;
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 36px;
  align-items: start;
}

.content-wrap > *,
.post-layout > * {
  min-width: 0;
}

.content-wrap.no-sidebar {
  grid-template-columns: minmax(0, 980px);
  justify-content: center;
}

.content-wrap.no-sidebar .article,
.content-wrap.no-sidebar .post-body {
  width: 100%;
  max-width: none;
}

.inline-cta {
  margin: 34px 0;
  padding: 24px;
  border: 1px solid rgba(12, 119, 114, 0.22);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(228, 243, 239, 0.88), rgba(255, 248, 239, 0.82)),
    var(--paper);
  box-shadow: var(--soft-shadow);
}

.inline-cta h3 {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.1;
}

.inline-cta p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
}

.inline-cta .button {
  margin-top: 18px;
}

.article,
.legal,
.sidebar-box {
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.article,
.legal {
  padding: clamp(28px, 4vw, 44px);
}

.article h2,
.legal h2 {
  margin-top: 42px;
  font-size: clamp(32px, 4vw, 46px);
}

.article h2:first-child,
.legal h2:first-child {
  margin-top: 0;
}

.article p,
.legal p,
.article ul {
  margin-top: 16px;
}

.article li {
  margin: 9px 0;
  color: var(--muted);
  font-weight: 500;
}

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

.sidebar-box {
  position: sticky;
  top: 96px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 242, 0.96)),
    var(--white);
}

.sidebar-box::before {
  content: "";
  display: block;
  width: 92px;
  height: 64px;
  margin-bottom: 14px;
  background: url("assets/graphics/cat-eye-frame.svg") left center / contain no-repeat;
}

.sidebar-box h3 {
  font-size: 28px;
}

.score {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.score div {
  padding: 15px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius);
  background: #f8f0ea;
}

.score strong {
  display: block;
  color: var(--wine);
  font-size: 13px;
  font-weight: 900;
}

.score span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.callout {
  margin: 26px 0;
  padding: 20px 22px;
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff8ef, #f9ece3);
  color: #4a3b31;
  box-shadow: 0 10px 28px rgba(185, 130, 57, 0.1);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, #17131f, #2c1934 64%, #0b4d4b);
  color: var(--white);
  padding: 54px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 30px;
}

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

.site-footer .brand-logo {
  width: 220px;
  padding: 8px;
  border-radius: var(--radius);
  background: rgba(255, 252, 247, 0.96);
}

.site-footer strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 13px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.small {
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .nav-links {
    grid-column: 1 / -1;
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: 620px;
  }

  .hero::after {
    right: -90px;
    top: 170px;
    width: 420px;
    opacity: 0.42;
  }

  .grid,
  .proof-grid,
  .logo-wall,
  .comparison-cards,
  .blog-grid,
  .buying-steps,
  .decision-grid,
  .route-cards,
  .post-layout,
  .article-hero-grid,
  .feature-panel,
  .metric-grid,
  .resource-grid,
  .content-wrap,
  .hero-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .brand-strip-head,
  .table-intro {
    align-items: start;
    flex-direction: column;
  }

  .hero-panel {
    margin: 0 0 58px;
  }

  .sidebar-box {
    position: static;
  }

  .post-toc,
  .post-aside {
    position: static;
  }

  .post-body.longform {
    max-width: none;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  .mini-table {
    display: block;
    overflow-x: auto;
  }
}

/* Editorial trust, methodology and article depth pass */
.editor-strip {
  padding: 18px 0;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.86), rgba(228, 243, 239, 0.72));
  border-block: 1px solid rgba(23, 19, 31, 0.08);
}

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

.editor-strip-grid > div {
  padding: 16px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.editor-strip strong,
.scenario-panel span,
.decision-panel span,
.freshness-note strong {
  display: block;
  color: var(--wine);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.editor-strip span {
  display: block;
  margin-top: 6px;
  color: #6f6678;
  font-size: 14px;
  line-height: 1.5;
}

.editor-strip a {
  color: var(--teal);
  font-weight: 850;
}

.freshness-note {
  margin: 22px 0;
  padding: 16px 18px;
  border: 1px solid rgba(20, 125, 122, 0.2);
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 243, 239, 0.7), rgba(255, 255, 255, 0.92));
  color: #5f5868;
  font-size: 15px;
  line-height: 1.6;
}

.scenario-panel,
.decision-panel,
.method-score-grid {
  display: grid;
  gap: 14px;
}

.scenario-panel,
.decision-panel {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 22px 0;
}

.scenario-panel > div,
.decision-panel > article,
.method-score-grid > article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(23, 19, 31, 0.07);
}

.scenario-panel > div::before,
.decision-panel > article::before,
.method-score-grid > article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--wine), #d9a84c, var(--teal));
}

.scenario-panel p,
.decision-panel p,
.method-score-grid p {
  margin: 8px 0 0;
  color: #5f5868;
  line-height: 1.58;
}

.method-score-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 26px 0;
}

.method-score-grid > article > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
}

.method-score-grid h3 {
  margin: 0;
  font-size: 22px;
}

.article-feature {
  margin: 0 0 28px;
  padding: 12px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, rgba(255, 248, 239, 0.7));
  box-shadow: var(--soft-shadow);
}

.article-feature img {
  display: block;
  width: 100%;
  max-height: 340px;
  object-fit: cover;
  border-radius: 6px;
}

.journey-panel {
  display: grid;
  grid-template-columns: 0.9fr repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
  margin: 26px 0;
  padding: 14px;
  border: 1px solid rgba(20, 125, 122, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(228, 243, 239, 0.78), rgba(255, 248, 239, 0.8));
  box-shadow: var(--soft-shadow);
}

.journey-panel > span {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
}

.journey-panel > div {
  padding: 16px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.86);
}

.journey-panel strong {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-weight: 950;
}

.journey-panel p {
  margin: 0;
  color: #5f5868;
  line-height: 1.55;
}

.footer-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-trust-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  opacity: 0.9;
}

@media (max-width: 900px) {
  .editor-strip-grid,
  .method-score-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .scenario-panel,
  .decision-panel {
    grid-template-columns: 1fr;
  }

  .journey-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .editor-strip-grid,
  .method-score-grid {
    grid-template-columns: 1fr;
  }
}

/* Visual QA tightening: bring real content higher and reduce mobile nav weight */
.page-hero {
  padding-top: 70px;
  padding-bottom: 56px;
}

.page-hero h1 {
  max-width: 940px;
}

.page-hero p {
  margin-top: 16px;
}

.editor-strip {
  padding: 14px 0;
}

.editor-strip-grid > div {
  padding: 14px 16px;
}

@media (max-width: 760px) {
  .nav {
    width: min(100% - 28px, 1240px);
    padding: 10px 0;
    gap: 8px;
  }

  .brand-logo {
    width: 174px;
  }

  .page-hero {
    padding: 64px 0 46px;
  }

  .page-hero::after {
    width: 270px;
    height: 190px;
    opacity: 0.13;
  }

  .page-hero p {
    font-size: 18px;
  }
}

@media (max-width: 560px) {
  .mega-nav.nav {
    gap: 8px;
  }

  .mega-nav .nav-links {
    gap: 2px;
    padding: 6px;
    border-radius: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mega-nav .nav-item summary {
    min-height: 38px;
    padding: 6px 10px;
    font-size: 13px;
  }

  .mega-nav .nav-item[open],
  .mega-nav .nav-item:nth-child(5) {
    grid-column: 1 / -1;
  }

  .mega-nav .mega-panel {
    margin-top: 4px;
    padding: 10px;
  }

  .mega-nav .mega-panel a {
    padding: 8px 10px;
  }

  .nav-cta {
    display: none;
  }

  .page-hero {
    padding: 52px 0 40px;
  }

  .page-hero h1 {
    font-size: clamp(44px, 14vw, 60px);
    line-height: 0.98;
  }

  .editor-strip-grid > div {
    padding: 12px;
  }
}

@media (max-width: 560px) {
  .nav,
  .hero-inner,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero::before {
    inset: 14px;
  }

  .hero::after {
    right: -132px;
    top: 190px;
    width: 300px;
  }

  .hero-copy {
    padding: 50px 0 44px;
  }

  .hero-panel {
    display: none;
  }

  .hero-copy::before {
    display: none;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 46px);
    line-height: 1.02;
  }

  .hero .lead {
    margin-top: 18px;
    font-size: 18px;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-microbar {
    margin-top: 16px;
  }

  h1 {
    font-size: clamp(40px, 13vw, 56px);
  }

  h2 {
    font-size: 38px;
  }

  .nav-links {
    gap: 14px;
    font-size: 12px;
  }

  .nav > .nav-cta {
    display: none;
  }

  .section {
    padding: 62px 0;
  }

  .card-body {
    padding: 24px;
  }

  .article,
  .legal {
    padding: 24px;
  }

  .comparison-table th,
  .comparison-table td {
    min-width: 190px;
    padding: 16px;
  }
}

/* Depth expansion: mega menu, review tiles, deep guide pages */
.mega-nav .nav-links {
  position: relative;
  overflow: visible;
}

.nav-item {
  position: relative;
}

.nav-item summary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  color: #302b38;
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.nav-item summary::-webkit-details-marker {
  display: none;
}

.nav-item summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0.6;
}

.nav-item:hover summary,
.nav-item[open] summary,
.nav-item summary:focus-visible {
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23, 19, 31, 0.08);
  outline: 0;
}

.mega-panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 40;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 8px 10px;
  width: min(520px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: 12px;
  background: rgba(255, 252, 247, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.nav-item:hover .mega-panel,
.nav-item[open] .mega-panel,
.nav-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mega-panel span {
  grid-column: 1 / -1;
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mega-panel a {
  display: block;
  padding: 10px 12px !important;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius) !important;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 13px;
  line-height: 1.25;
}

.mega-panel a:hover {
  background: #fff8ef;
  color: var(--wine);
  text-decoration: none;
  box-shadow: none !important;
}

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

.review-tile {
  position: relative;
  min-height: 205px;
  padding: 22px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 247, 0.94)),
    var(--white);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.review-tile::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--teal));
}

.review-tile span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-tile h3 {
  margin-top: 18px;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
  line-height: 1.05;
}

.review-tile p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.5;
}

.review-tile .link-more {
  margin-top: 14px;
}

.deep-article {
  font-size: 17px;
}

.deep-article > p {
  color: #4e4858;
}

.review-summary,
.article-summary,
.related-panel {
  margin-bottom: 30px;
  padding: 24px;
  border: 1px solid rgba(12, 119, 114, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(228, 243, 239, 0.78), rgba(255, 248, 239, 0.9));
}

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

.review-summary div {
  padding: 16px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.review-summary strong,
.review-summary span {
  display: block;
}

.review-summary strong {
  color: var(--wine);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-summary span {
  margin-top: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.verdict-section {
  padding-top: 42px;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.72), rgba(255, 255, 255, 0));
}

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

.verdict-grid article {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.verdict-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--wine), var(--gold), var(--teal));
}

.verdict-grid span {
  display: block;
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verdict-grid h3 {
  margin-top: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1;
}

.verdict-grid p {
  margin-top: 10px;
  color: #5f5768;
  font-weight: 650;
  line-height: 1.55;
}

.verdict-grid .link-more {
  margin-top: 16px;
}

.faq-block {
  margin-top: 42px;
}

.faq-block details {
  margin-top: 12px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.faq-block summary {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.faq-block details p {
  margin: 0;
  padding: 0 18px 18px;
}

.source-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.source-list {
  margin-top: 12px !important;
  padding-left: 20px;
}

.related-panel {
  margin-top: 40px;
}

.related-panel .grid {
  margin-top: 18px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.badge.teal {
  border-color: rgba(12, 119, 114, 0.2);
  background: rgba(228, 243, 239, 0.9);
  color: var(--teal-dark);
}

.article .decision-grid article h3 {
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 21px;
  line-height: 1.12;
}

@media (min-width: 981px) {
  .mega-nav .nav-item:nth-last-child(-n+2) .mega-panel {
    left: auto;
    right: 0;
    transform: translate(0, 8px);
  }

  .mega-nav .nav-item:nth-last-child(-n+2):hover .mega-panel,
  .mega-nav .nav-item:nth-last-child(-n+2)[open] .mega-panel,
  .mega-nav .nav-item:nth-last-child(-n+2):focus-within .mega-panel {
    transform: translate(0, 0);
  }
}

@media (max-width: 980px) {
  .mega-panel {
    position: static;
    width: 100%;
    margin-top: 8px;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    box-shadow: none;
  }

  .nav-item[open] .mega-panel {
    display: grid;
  }

  .nav-links {
    align-items: stretch;
  }

  .nav-item {
    flex: 0 0 auto;
  }

  .review-tile-grid,
  .review-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .review-tile-grid,
  .review-summary {
    grid-template-columns: 1fr;
  }

  .mega-panel {
    max-height: 70vh;
    overflow: auto;
  }
}


/* Mobile accordion correction for expanded navigation */
@media (max-width: 560px) {
  .mega-nav.nav {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mega-nav .brand {
    justify-self: start;
  }

  .mega-nav .nav-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
    overflow: visible;
    padding: 8px;
    border-radius: 14px;
  }

  .mega-nav .nav-item {
    width: 100%;
  }

  .mega-nav .nav-item summary {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
  }

  .mega-nav .mega-panel {
    margin-top: 6px;
    max-height: none;
    overflow: visible;
  }
}

/* Trust and approval polish */
.trust-strip {
  position: relative;
  z-index: 3;
  padding: 42px 0 18px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(255, 250, 242, 0.92));
}

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

.trust-grid article,
.trust-mini div,
.commercial-card,
.review-brand-card,
.review-evidence-list {
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--soft-shadow);
}

.trust-grid article,
.trust-mini div {
  padding: 20px;
}

.trust-grid span,
.trust-mini span,
.commercial-card span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-grid h2,
.trust-mini strong,
.commercial-card h2 {
  display: block;
  margin-top: 8px;
  font-family: Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.12;
}

.trust-grid p,
.trust-mini p,
.commercial-card p,
.review-brand-card p,
.affiliate-note {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.comparison-trust {
  padding-bottom: 0;
}

.commercial-card {
  margin-bottom: 26px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.95), rgba(246, 223, 215, 0.62)),
    var(--white);
}

.commercial-card .button {
  margin-top: 16px;
}

.specscart-commercial-card {
  border-color: rgba(57, 23, 73, 0.16);
  background:
    linear-gradient(135deg, rgba(0, 179, 163, 0.12), rgba(57, 23, 73, 0.08)),
    var(--white);
  font-family: "Segoe UI", Manrope, ui-sans-serif, system-ui, sans-serif;
}

.specscart-commercial-card span,
.specscart-commercial-card h2 {
  color: #391749;
}

.specscart-visit,
.specscart-visit:hover {
  background: #00B3A3;
  border-color: #00B3A3;
  color: #FFFFFF;
}

.affiliate-banner {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(57, 23, 73, 0.12);
  border-radius: var(--radius);
  background: #FFFFFF;
}

.affiliate-banner:hover {
  transform: translateY(-1px);
  box-shadow: var(--soft-shadow);
}

.affiliate-banner img {
  width: auto;
  max-width: 100%;
  height: auto;
}

.sidebar-disclosure {
  margin: 12px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.review-brand-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
}

.review-brand-card > div {
  display: grid;
  place-items: center;
  min-height: 96px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(23, 19, 31, 0.08);
}

.review-brand-logo {
  width: 150px;
  max-height: 58px;
  object-fit: contain;
}

.review-brand-wordmark {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  line-height: 1;
  text-align: center;
}

.review-signal-panel div:nth-child(1) { border-top: 4px solid var(--teal); }
.review-signal-panel div:nth-child(2) { border-top: 4px solid var(--wine); }
.review-signal-panel div:nth-child(3) { border-top: 4px solid var(--gold); }

.review-evidence-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 28px;
  padding: 14px;
}

.review-evidence-list span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(228, 243, 239, 0.9);
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.affiliate-note {
  padding: 14px 16px;
  border: 1px solid rgba(185, 130, 57, 0.24);
  border-radius: var(--radius);
  background: #fff8ef;
}

.retailer-visit {
  margin-top: 8px;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.table-action + .retailer-visit {
  display: inline-flex;
  margin-left: 8px;
  min-height: 36px;
  padding: 7px 12px;
  font-size: 12px;
  box-shadow: none;
}

.approval-links .card {
  min-height: 100%;
}

@media (max-width: 980px) {
  .trust-grid,
  .trust-mini,
  .verdict-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .trust-grid,
  .trust-mini,
  .verdict-grid,
  .review-brand-card {
    grid-template-columns: 1fr;
  }

  .table-action + .retailer-visit {
    margin-left: 0;
    margin-top: 8px;
  }
}

/* Table QA pass: make comparisons read like buyer tools, not raw data exports */
.comparison-table {
  border: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.comparison-table thead th {
  background: linear-gradient(135deg, #241329, #39233f);
}

.comparison-table tbody tr {
  transition: transform 160ms ease, filter 160ms ease;
}

.comparison-table tbody tr:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 24px rgba(23, 19, 31, 0.08));
}

.comparison-table tbody td {
  border-top-color: rgba(23, 19, 31, 0.1);
  border-bottom-color: rgba(23, 19, 31, 0.1);
}

.comparison-table tbody td:first-child {
  border-left: 4px solid var(--teal);
}

.comparison-table tbody td:last-child {
  min-width: 150px;
}

.merchant-card strong {
  font-size: 16px;
}

.merchant-card span {
  max-width: 220px;
  color: #6f6678;
}

.data-pill {
  gap: 6px;
}

.data-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.48;
}

.visual-mini-table {
  box-shadow: var(--soft-shadow);
}

.visual-mini-table th {
  background: linear-gradient(135deg, #241329, #3b2441);
}

.visual-mini-table tbody tr:nth-child(even) td,
.visual-mini-table tbody tr:nth-child(even) th {
  background: rgba(255, 248, 239, 0.7);
}

.visual-mini-table td,
.visual-mini-table th {
  line-height: 1.55;
}

@media (max-width: 760px) {
  .comparison-table {
    display: block;
    border-spacing: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table tbody tr {
    margin: 0 0 16px;
    border: 1px solid rgba(23, 19, 31, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
  }

  .comparison-table tbody tr:hover {
    transform: none;
    filter: none;
  }

  .comparison-table th,
  .comparison-table td {
    min-width: 0 !important;
  }

  .comparison-table td {
    border: 0;
    border-bottom: 1px solid rgba(23, 19, 31, 0.08);
    border-radius: 0 !important;
    background: #fff !important;
  }

  .comparison-table td:first-child {
    border-left: 0;
    background: linear-gradient(135deg, rgba(228, 243, 239, 0.85), rgba(255, 248, 239, 0.85)) !important;
  }

  .comparison-table td:last-child {
    border-bottom: 0;
  }

  .comparison-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 8px;
    color: var(--wine);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .comparison-table .merchant::before {
    display: none;
  }

  .merchant-card span {
    max-width: none;
  }

  .table-action,
  .table-action + .retailer-visit {
    width: 100%;
  }

  .mini-table.visual-mini-table {
    display: block;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .mini-table.visual-mini-table thead {
    display: none;
  }

  .mini-table.visual-mini-table tbody,
  .mini-table.visual-mini-table tr,
  .mini-table.visual-mini-table td,
  .mini-table.visual-mini-table th {
    display: block;
    width: 100%;
  }

  .mini-table.visual-mini-table tr {
    margin-bottom: 12px;
    border: 1px solid rgba(23, 19, 31, 0.1);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--soft-shadow);
    overflow: hidden;
  }

  .mini-table.visual-mini-table th,
  .mini-table.visual-mini-table td {
    border: 0;
    border-bottom: 1px solid rgba(23, 19, 31, 0.08);
    background: #fff;
  }

  .mini-table.visual-mini-table th {
    color: var(--ink);
    background: rgba(228, 243, 239, 0.72);
  }

  .mini-table.visual-mini-table td[data-label]::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 6px;
    color: var(--wine);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  .mega-nav .nav-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .mega-nav .nav-item[open],
  .mega-nav .nav-item:nth-child(5) {
    grid-column: 1 / -1;
  }
}


/* seo-depth-20260427 */
.topic-hub { display: grid; gap: 34px; }
.topic-group { padding: 26px; border: 1px solid rgba(23,19,31,.1); border-radius: var(--radius); background: rgba(255,255,255,.78); box-shadow: var(--soft-shadow); }
.topic-head { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.topic-head span { color: var(--wine); font-size: 11px; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.topic-head h2 { margin: 0; font-size: clamp(30px, 4vw, 54px); }
.seo-depth-block { background: linear-gradient(180deg, rgba(255,248,239,.72), rgba(255,255,255,.95)); }
.deep-article .visual-mini-table { margin: 18px 0 28px; }
.deep-article .article-summary p:last-child { margin-bottom: 0; }
@media (max-width: 760px) { .topic-group { padding: 18px; } .topic-head { display: block; } }


/* contact-capture-20260427 */
.contact-capture { background: linear-gradient(135deg, rgba(255,248,239,.92), rgba(228,243,239,.72)); }
.capture-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); gap: 28px; align-items: start; }
.capture-copy { padding: 28px; border: 1px solid rgba(23,19,31,.1); border-radius: var(--radius); background: rgba(255,255,255,.72); box-shadow: var(--soft-shadow); }
.capture-copy h2 { margin-top: 8px; font-size: clamp(38px, 5vw, 68px); line-height: .94; }
.capture-copy p { max-width: 680px; color: var(--muted); font-weight: 650; line-height: 1.65; }
.contact-form { display: grid; gap: 14px; padding: 24px; border: 1px solid rgba(23,19,31,.12); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 8px; color: var(--ink); font-size: 13px; font-weight: 900; letter-spacing: .02em; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; min-height: 46px; padding: 12px 14px; border: 1px solid rgba(23,19,31,.16); border-radius: 10px; background: #fffdf9; color: var(--ink); font: inherit; font-weight: 650; }
.contact-form textarea { min-height: 132px; resize: vertical; line-height: 1.5; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(20,125,122,.18); border-color: var(--teal); }
.check-field { grid-template-columns: auto 1fr !important; align-items: start; gap: 10px !important; color: var(--muted) !important; font-size: 12px !important; line-height: 1.45; }
.check-field input { width: 18px; min-height: 18px; margin-top: 2px; }
.form-note { margin: 0; color: var(--muted); font-size: 12px; font-weight: 650; line-height: 1.5; }
.compact-capture .capture-grid { grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr); }
@media (max-width: 860px) { .capture-grid, .compact-capture .capture-grid { grid-template-columns: 1fr; } .capture-copy { padding: 20px; } .contact-form { padding: 18px; } }


/* blog-readiness-20260501 */
.blog-visual-strip {
  margin-top: -30px;
  padding: 0 0 22px;
  background: linear-gradient(180deg, rgba(23, 19, 31, 0.04), rgba(255, 248, 239, 0));
}

.blog-hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #f5eee6;
}

.blog-hero-image::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(23, 19, 31, 0), rgba(23, 19, 31, 0.24));
  pointer-events: none;
}

.blog-hero-image img,
.post-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-image img {
  aspect-ratio: 21 / 8;
}

.topic-group {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 242, 0.82)),
    #fff;
}

.topic-group .blog-grid {
  grid-template-columns: minmax(280px, 1.18fr) repeat(3, minmax(0, 1fr));
}

.post-card.featured.has-media {
  min-height: 100%;
  padding: 0;
  justify-content: flex-start;
  background: #fff;
  color: var(--ink);
}

.post-card.featured.has-media::before,
.topic-group .post-card:not(.has-media)::before {
  display: none;
}

.post-card-media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(23, 19, 31, 0.08);
  background: #f4eee7;
}

.post-card.featured.has-media .post-card-media + .post-meta {
  margin-top: 22px;
}

.post-card.featured.has-media .post-meta,
.post-card.featured.has-media h3,
.post-card.featured.has-media p,
.post-card.featured.has-media a {
  margin-right: 24px;
  margin-left: 24px;
}

.post-card.featured.has-media h3 {
  color: var(--ink);
  font-size: clamp(27px, 2.4vw, 38px);
  line-height: 1.02;
}

.post-card.featured.has-media p {
  color: var(--muted);
}

.post-card.featured.has-media .post-meta {
  color: #766b78;
}

.post-card.featured.has-media a {
  margin-bottom: 24px;
  color: var(--wine);
}

.post-card.featured.has-media:hover .post-card-media img {
  transform: scale(1.025);
}

.post-card-media img {
  transition: transform 0.28s ease;
}

.topic-group .post-card:not(.has-media) {
  padding-top: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 251, 245, 0.94)),
    #fff;
}

.topic-group .post-card:not(.has-media) h3 {
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.05;
}

.blog-roadmap {
  background:
    radial-gradient(circle at top right, rgba(20, 125, 122, 0.1), transparent 30%),
    linear-gradient(135deg, rgba(255, 248, 239, 0.92), rgba(228, 243, 239, 0.82));
}

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

.roadmap-grid article {
  padding: 22px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--soft-shadow);
}

.roadmap-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.roadmap-grid h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.03;
}

.roadmap-grid p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .topic-group .blog-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .blog-visual-strip {
    margin-top: -18px;
    padding-bottom: 10px;
  }

  .blog-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .topic-group .blog-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .post-card.featured.has-media .post-meta,
  .post-card.featured.has-media h3,
  .post-card.featured.has-media p,
  .post-card.featured.has-media a {
    margin-right: 18px;
    margin-left: 18px;
  }

  .post-card.featured.has-media a {
    margin-bottom: 20px;
  }
}


/* content-wave-20260501 */
.content-wave-page {
  background:
    radial-gradient(circle at top right, rgba(20, 125, 122, 0.12), transparent 34rem),
    radial-gradient(circle at 10% 18%, rgba(185, 130, 57, 0.12), transparent 26rem),
    linear-gradient(180deg, #fffcf7 0%, #fff8ef 45%, #ffffff 100%);
}

.content-wave-hero {
  padding: 70px 0 42px;
  border-bottom: 1px solid rgba(23, 19, 31, 0.08);
}

.content-wave-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.content-wave-hero h1 {
  max-width: 900px;
  margin-top: 14px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(46px, 6vw, 82px);
  line-height: 0.92;
}

.content-wave-hero p {
  max-width: 760px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 650;
  line-height: 1.65;
}

.content-wave-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.content-wave-image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.content-wave-image figcaption {
  padding: 12px 16px;
  color: #665c69;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.45;
}

.content-wave-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.content-wave-meta span {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #6b6071;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-wave-layout {
  display: grid;
  grid-template-columns: minmax(0, 780px) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: start;
}

.content-wave-article {
  min-width: 0;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 252, 247, 0.96)),
    #fff;
  box-shadow: var(--soft-shadow);
}

.content-wave-article h2 {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(23, 19, 31, 0.08);
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.03;
}

.content-wave-article h2:first-child,
.content-wave-article .article-summary + h2 {
  margin-top: 28px;
}

.content-wave-article h3 {
  margin-top: 24px;
  color: var(--ink);
  font-size: clamp(23px, 2.2vw, 32px);
  line-height: 1.08;
}

.content-wave-article p,
.content-wave-article li {
  color: #4d4655;
  font-size: 17px;
  line-height: 1.82;
}

.content-wave-article p {
  margin-top: 16px;
}

.content-wave-article .visual-list {
  margin-top: 16px;
}

.content-wave-sidebar {
  position: sticky;
  top: 94px;
  display: grid;
  gap: 16px;
  min-width: 0;
}

.content-wave-sidebar-card,
.content-wave-toc {
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.content-wave-sidebar strong,
.content-wave-toc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-wave-toc a,
.content-wave-sidebar-card a {
  display: block;
  margin-top: 10px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 850;
}

.content-wave-article .mini-table {
  margin-top: 18px;
  display: block;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.content-wave-article .mini-table table {
  min-width: 620px;
}

.content-wave-article .mini-table th {
  width: 160px;
  background: #2a1831;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.content-wave-article .mini-table td {
  background: rgba(255, 255, 255, 0.86);
}

.content-wave-article .faq-block details {
  background: #fff;
}

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

.content-wave-grid article {
  padding: 18px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.method-note {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(20, 125, 122, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(20, 125, 122, 0.08), rgba(255, 255, 255, 0.78));
}

.method-note strong {
  display: block;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.provider-shortlist table {
  min-width: 760px;
}

/* site-enhancements-20260501 */
.nav-utility {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.nav-actions .nav-cta {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 12px;
  white-space: nowrap;
}

.nav-actions .nav-cta:hover,
.nav-actions .nav-utility:hover {
  text-decoration: none;
}

.mobile-nav-toggle {
  display: none;
}

.mobile-nav-toggle summary {
  list-style: none;
}

.mobile-nav-toggle summary::-webkit-details-marker {
  display: none;
}

.utility-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(20, 125, 122, 0.12), transparent 26rem),
    linear-gradient(180deg, #fff8ef 0%, #fff 100%);
}

.search-tool,
.decision-tool,
.quiz-result {
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.search-tool {
  padding: clamp(22px, 4vw, 38px);
}

.search-tool label,
.decision-tool legend,
.quiz-result > span {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-tool input[type="search"] {
  width: 100%;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(23, 19, 31, 0.16);
  border-radius: 16px;
  color: var(--ink);
  font: inherit;
  font-size: 18px;
  font-weight: 750;
}

.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.search-filters button {
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(20, 125, 122, 0.18);
  border-radius: 999px;
  background: rgba(20, 125, 122, 0.08);
  color: var(--teal-dark);
  font-weight: 900;
  cursor: pointer;
}

.search-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.search-result {
  padding: 18px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fffaf2);
}

.search-result span {
  color: var(--wine);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-result h2 {
  margin-top: 10px;
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.05;
}

.search-result p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.quiz-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 24px;
  align-items: start;
}

.decision-tool {
  display: grid;
  gap: 20px;
  padding: clamp(22px, 4vw, 36px);
}

.decision-tool fieldset {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.decision-tool label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 14px;
  background: rgba(255, 248, 239, 0.62);
  color: var(--ink);
  font-weight: 850;
}

.decision-tool input {
  margin-top: 3px;
  accent-color: var(--teal-dark);
}

.quiz-result {
  position: sticky;
  top: 98px;
  padding: clamp(22px, 4vw, 34px);
}

.quiz-result h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.04;
}

.quiz-result p {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.65;
}

.quiz-result .next-links {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.quiz-result .next-links a {
  display: block;
  padding: 12px 14px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 10px;
  background: rgba(255, 248, 239, 0.72);
  font-weight: 900;
}

@media (max-width: 980px) {
  .search-results,
  .quiz-layout {
    grid-template-columns: 1fr;
  }

  .quiz-result {
    position: static;
  }
}

@media (max-width: 720px) {
  .mega-nav.nav {
    grid-template-columns: minmax(0, 1fr) auto;
    position: relative;
    width: min(100% - 24px, 1240px);
    padding: 10px 0;
    gap: 10px;
  }

  .mega-nav.nav > .nav-links,
  .mega-nav.nav > .nav-actions {
    display: none !important;
  }

  .mega-nav.nav:has(.mobile-nav-toggle[open]) > .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 80;
    display: grid !important;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: calc(100vh - 144px);
    padding: 12px;
    overflow: auto;
    border: 1px solid rgba(23, 19, 31, 0.12);
    border-radius: 18px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--shadow);
  }

  .mega-nav.nav:has(.mobile-nav-toggle[open]) > .nav-actions {
    position: absolute;
    top: calc(100% + min(72vh, 560px));
    left: 12px;
    right: 12px;
    z-index: 81;
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px;
    border: 1px solid rgba(23, 19, 31, 0.1);
    border-radius: 16px;
    background: rgba(255, 252, 247, 0.98);
    box-shadow: var(--soft-shadow);
  }

  .mega-nav .brand-logo {
    width: min(196px, 58vw);
  }

  .mobile-nav-toggle {
    display: block;
    justify-self: end;
    position: static;
  }

  .mobile-nav-toggle summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 15px;
    border: 1px solid rgba(23, 19, 31, 0.12);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 13px;
    font-weight: 950;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(23, 19, 31, 0.1);
  }

  .mobile-nav-toggle summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
  }

  .mobile-nav-toggle[open] summary::after {
    transform: rotate(225deg) translate(-1px, -1px);
  }

  .mega-nav.nav:has(.mobile-nav-toggle[open]) > .nav-links .nav-item {
    width: 100%;
  }

  .mega-nav.nav:has(.mobile-nav-toggle[open]) > .nav-links .nav-item summary {
    width: 100%;
    justify-content: space-between;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid rgba(23, 19, 31, 0.08);
    border-radius: 12px;
    background: #fff;
  }

  .mega-nav.nav:has(.mobile-nav-toggle[open]) > .nav-links .mega-panel {
    position: static;
    display: none;
    width: 100%;
    max-height: none;
    margin-top: 6px;
    padding: 8px;
    overflow: visible;
    grid-template-columns: 1fr;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
  }

  .mega-nav.nav:has(.mobile-nav-toggle[open]) > .nav-links .nav-item[open] .mega-panel {
    display: grid;
  }

  .nav-utility {
    width: 100%;
  }

  .mega-nav.nav:has(.mobile-nav-toggle[open]) > .nav-actions .nav-cta {
    width: 100%;
  }
}

.content-wave-grid span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-wave-grid h3 {
  margin-top: 10px;
  font-size: 24px;
}

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

.wave-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.wave-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.wave-card-body {
  padding: 20px;
}

.wave-card .post-meta {
  margin-bottom: 10px;
}

.wave-card h3 {
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1.03;
}

.wave-card p {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.58;
}

.wave-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--wine);
  font-weight: 900;
}

.content-wave-article .related-panel .next-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.content-wave-article .related-panel .next-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--teal-dark);
  font-weight: 900;
}

.content-wave-article .related-panel .next-links a::after {
  content: "Open";
  color: #7a6f7f;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .content-wave-hero-grid,
  .content-wave-layout,
  .wave-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .content-wave-sidebar {
    position: static;
    order: -1;
  }
}

@media (max-width: 720px) {
  .content-wave-hero {
    padding: 52px 0 30px;
  }

  .content-wave-hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .content-wave-grid {
    grid-template-columns: 1fr;
  }
}

/* Affiliate expansion, checked 2026-05-02 */
.affiliate-hero .section-inner {
  position: relative;
}

.affiliate-hero .page-meta {
  margin-top: 18px;
}

.affiliate-note {
  padding: 18px 20px;
  border: 1px solid rgba(12, 119, 114, 0.2);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(228, 243, 239, 0.78), rgba(255, 248, 239, 0.94));
  color: #463f4d;
  font-weight: 700;
}

.review-signal-panel {
  margin-top: 24px;
}

.affiliate-table {
  margin: 18px 0 30px;
  overflow-x: auto;
}

.affiliate-table table {
  width: 100%;
  min-width: 720px;
}

.affiliate-table th {
  width: 30%;
  vertical-align: top;
}

.source-list li {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 650;
}

.source-list a {
  color: var(--teal-dark);
  font-weight: 850;
}

.affiliate-expansion {
  margin-top: 40px;
  padding-top: 34px;
  border-top: 1px solid rgba(23, 19, 31, 0.1);
}

.affiliate-expansion .comparison-cards {
  margin-top: 18px;
}

.affiliate-expansion h2 {
  max-width: 820px;
}

.affiliate-expansion p {
  max-width: 900px;
}

.affiliate-expansion .next-links {
  margin-top: 18px;
}

.sidebar-box .button + .button {
  margin-top: 10px;
}

@media (max-width: 720px) {
  .affiliate-table table {
    min-width: 620px;
  }

  .affiliate-note {
    padding: 16px;
  }
}

/* Decision-platform rebuild, 2026-05-02 */
.decision-home-hero {
  position: relative;
  padding: clamp(54px, 8vw, 96px) 0 clamp(36px, 6vw, 70px);
  background:
    radial-gradient(circle at 88% 16%, rgba(20, 125, 122, 0.18), transparent 28rem),
    radial-gradient(circle at 4% 12%, rgba(124, 49, 71, 0.12), transparent 24rem),
    linear-gradient(180deg, #fff8ef 0%, #fff 100%);
}

.decision-home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
}

.decision-home-hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 0.94;
}

.decision-winner-card,
.decision-answer-card {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

.decision-winner-card span,
.risk-meter strong {
  color: var(--wine);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-winner-card h2 {
  margin-top: 12px;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.02;
}

.decision-winner-card ol {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.decision-winner-card li {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.45;
}

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

.decision-route-grid a {
  display: grid;
  gap: 10px;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.decision-route-grid a:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.decision-route-grid strong,
.decision-picks strong,
.decision-columns h3,
.decision-alternatives h3 {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 28px;
  line-height: 1.02;
}

.decision-route-grid span,
.decision-picks span,
.decision-picks p,
.decision-answer {
  color: var(--muted);
  font-weight: 750;
  line-height: 1.58;
}

.decision-output {
  padding-top: 26px;
}

.decision-output .section-inner {
  display: grid;
  gap: 22px;
}

.decision-output-with-image {
  padding-top: clamp(24px, 4vw, 54px);
}

.decision-output-with-image .section-inner {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.84fr);
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch;
}

.decision-output-with-image .decision-answer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  border: 1px solid rgba(23, 19, 31, 0.08);
  box-shadow: 0 22px 52px rgba(23, 19, 31, 0.09);
}

.decision-output-with-image .decision-visual-card {
  display: flex;
  min-width: 0;
}

.decision-output-with-image .visual-hero-image {
  width: 100%;
  min-height: 100%;
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 22px 52px rgba(23, 19, 31, 0.12);
}

.decision-output-with-image .visual-hero-image img {
  height: 100%;
  min-height: 360px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.decision-output-with-image .decision-table-wrap,
.decision-output-with-image .decision-picks,
.decision-output-with-image .decision-picks.wide {
  grid-column: 1 / -1;
}

.decision-answer-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(228, 243, 239, 0.72));
}

.decision-answer-card h2 {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 0.98;
}

.decision-answer {
  max-width: 920px;
  margin-top: 10px;
  color: #403946;
  font-size: clamp(18px, 2vw, 23px);
}

.decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.decision-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--soft-shadow);
}

.decision-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.decision-table th,
.decision-table td {
  padding: 16px 18px;
  border-bottom: 1px solid rgba(23, 19, 31, 0.08);
  text-align: left;
  vertical-align: top;
}

.decision-table th {
  background: #fff8ef;
  color: var(--wine);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.decision-table td {
  color: #4e4858;
  font-weight: 720;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.decision-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-picks.wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.decision-picks > div,
.decision-columns > div,
.decision-alternatives {
  padding: 20px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--soft-shadow);
}

.decision-picks strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
}

.decision-picks span {
  display: block;
  color: var(--teal-dark);
  font-weight: 950;
}

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

.decision-columns ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.decision-columns li {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.48;
}

.risk-meter {
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(124, 49, 71, 0.18);
  border-radius: 12px;
  background: rgba(255, 248, 239, 0.78);
  color: #4e4858;
  font-weight: 800;
}

.decision-alternatives {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.decision-alternatives h3 {
  flex: 1 0 100%;
  margin: 0;
  font-size: 26px;
}

.decision-alternatives a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(20, 125, 122, 0.18);
  border-radius: 999px;
  background: rgba(20, 125, 122, 0.08);
  color: var(--teal-dark);
  font-weight: 900;
}

/* Visual editorial restoration, 2026-05-06 */
.visual-home-hero {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 19, 31, 0.88) 0%, rgba(23, 19, 31, 0.72) 34%, rgba(23, 19, 31, 0.24) 66%, rgba(23, 19, 31, 0.02) 100%),
    linear-gradient(180deg, rgba(20, 125, 122, 0.12), rgba(124, 49, 71, 0.16)),
    url("assets/photos/editorial/homepage-hero-premium-optician.jpg") center right / cover;
  color: #fff;
  min-height: clamp(560px, 72vh, 760px);
  display: grid;
  align-items: center;
}

.visual-home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0) 0%, rgba(255, 248, 239, 0.08) 74%, rgba(255, 248, 239, 0.22) 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.16), transparent 20rem);
  pointer-events: none;
}

.visual-home-hero .section-inner {
  position: relative;
  z-index: 1;
}

.visual-home-hero .decision-home-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(300px, 0.38fr);
  gap: clamp(28px, 7vw, 90px);
}

.home-hero-copy {
  max-width: 760px;
}

.visual-home-hero h1,
.visual-home-hero .lead,
.visual-home-hero .eyebrow {
  color: #fff;
  text-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.visual-home-hero .lead {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.88);
}

.home-hero-card {
  display: grid;
  gap: 14px;
  align-self: end;
  max-width: 390px;
  margin: 0 0 8px auto;
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: calc(var(--radius) + 10px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 32px 80px rgba(23, 19, 31, 0.24);
  color: #fff;
  backdrop-filter: blur(18px);
}

.home-hero-card span {
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-hero-card strong {
  max-width: 320px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 0.98;
}

.home-hero-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-hero-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  line-height: 1.44;
}

.home-hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f7cfd7;
}

.visual-home-image,
.visual-hero-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(23, 19, 31, 0.24);
}

.visual-home-image img,
.visual-hero-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.visual-home-image figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(23, 19, 31, 0.54);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.visual-hero-strip,
.visual-provider-strip,
.provider-logo-strip {
  padding: 28px 0 8px;
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.62), rgba(255, 255, 255, 0));
}

.editorial-image-strip {
  margin-top: -28px;
  padding: 0 0 18px;
  background: transparent;
}

.editorial-image-strip .section-inner {
  display: flex;
  justify-content: center;
}

.editorial-image-strip .visual-hero-image {
  width: min(76vw, 980px);
  border-radius: calc(var(--radius) + 10px);
  box-shadow: 0 24px 54px rgba(23, 19, 31, 0.13);
}

.editorial-image-strip .visual-hero-image img {
  aspect-ratio: 16 / 9;
}

.visual-provider-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.34fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: stretch;
}

.provider-logo-card {
  display: grid;
  gap: 14px;
  align-content: center;
  min-height: 100%;
  margin: 0;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(23, 19, 31, 0.1);
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at top right, rgba(20, 125, 122, 0.12), transparent 58%),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.provider-logo-card span {
  color: var(--wine);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.provider-logo-card img {
  display: block;
  width: min(100%, 320px);
  height: auto;
  max-height: 118px;
  object-fit: contain;
}

.provider-logo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.52;
}

.provider-logo-strip .provider-logo-card {
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  align-items: center;
}

.provider-logo-strip .provider-logo-card span {
  grid-column: 1 / -1;
}

.provider-logo-strip .provider-logo-card p {
  max-width: 720px;
}

.storefront-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 239, 0.62), rgba(245, 252, 250, 0.72) 52%, rgba(255, 255, 255, 0.98));
}

.storefront-heading {
  max-width: 880px;
  margin-bottom: 22px;
}

.storefront-heading h2 {
  max-width: 760px;
  margin: 10px 0 0;
}

.storefront-heading p {
  max-width: 820px;
  margin: 16px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.6;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(23, 19, 31, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 42px rgba(23, 19, 31, 0.07);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.product-card:hover {
  border-color: rgba(39, 102, 94, 0.24);
  box-shadow: 0 24px 54px rgba(23, 19, 31, 0.1);
  transform: translateY(-2px);
}

.product-image-link {
  display: block;
  margin: 12px 12px 0;
  border-radius: 14px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0) 34%),
    linear-gradient(135deg, #faf8f2, #edf7f4);
}

.product-card img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: contain;
  padding: 22px 24px;
}

.product-card-body {
  display: grid;
  gap: 10px;
  padding: 16px 18px 18px;
}

.product-meta-row,
.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.product-brand {
  color: var(--teal);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-tag {
  border: 1px solid rgba(151, 59, 77, 0.18);
  border-radius: 999px;
  padding: 5px 8px;
  color: var(--wine);
  background: rgba(151, 59, 77, 0.06);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.product-card h3 {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.2;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

.product-card strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 950;
}

.product-card .button {
  width: auto;
  justify-content: center;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  white-space: nowrap;
}

@media (max-width: 980px) {
  .decision-home-grid,
  .decision-route-grid,
  .decision-output-with-image .section-inner,
  .storefront-heading,
  .decision-picks,
  .decision-picks.wide,
  .decision-columns {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .decision-output-with-image .decision-visual-card {
    order: 2;
  }

  .decision-output-with-image .decision-table-wrap,
  .decision-output-with-image .decision-picks,
  .decision-output-with-image .decision-picks.wide {
    order: 3;
  }

  .decision-output-with-image .visual-hero-image img {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .decision-home-hero h1 {
    font-size: clamp(44px, 11vw, 76px);
  }
}

@media (max-width: 720px) {
  .decision-home-hero {
    padding-top: 44px;
  }

  .decision-table {
    min-width: 100%;
  }

  .decision-actions .button {
    width: 100%;
  }

  .visual-provider-grid,
  .provider-logo-strip .provider-logo-card {
    grid-template-columns: 1fr;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .product-card .button {
    width: 100%;
  }

  .visual-hero-strip,
  .visual-provider-strip,
  .provider-logo-strip {
    padding-top: 18px;
  }

  .editorial-image-strip {
    margin-top: 0;
    padding: 18px 0 4px;
  }

  .editorial-image-strip .section-inner {
    display: block;
  }

  .editorial-image-strip .visual-hero-image {
    width: 100%;
  }

  .visual-home-image img,
  .visual-hero-image img {
    aspect-ratio: 4 / 3;
  }

  .editorial-image-strip .visual-hero-image img {
    aspect-ratio: 16 / 10;
  }

  .visual-home-hero {
    min-height: auto;
    padding: 56px 0 46px;
    background:
      linear-gradient(180deg, rgba(23, 19, 31, 0.86) 0%, rgba(23, 19, 31, 0.66) 58%, rgba(23, 19, 31, 0.28) 100%),
      url("assets/photos/editorial/homepage-hero-premium-optician.jpg") center right / cover;
  }

  .visual-home-hero .decision-home-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .visual-home-hero h1 {
    max-width: 10ch;
    font-size: clamp(48px, 15vw, 64px);
  }

  .visual-home-hero .lead {
    max-width: 28rem;
  }

  .home-hero-card {
    margin: 8px 0 0;
    max-width: none;
  }
}

/* Phase 3 evidence and affiliate trust pass */
.phase3-evidence,
.phase3-money-trust,
.phase3-comparison-trust,
.phase3-lens-trust {
  background: linear-gradient(180deg, rgba(245, 239, 228, 0.72), rgba(255, 255, 255, 0.86));
}

.phase3-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(23, 19, 31, 0.09);
  border-radius: calc(var(--radius) + 8px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.phase3-heading {
  max-width: 900px;
  margin-bottom: 18px;
}

.phase3-heading h2 {
  margin-bottom: 10px;
}

.phase3-heading p,
.phase3-panel p {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.62;
}

.trust-label-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 18px;
}

.trust-label-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(20, 125, 122, 0.16);
  border-radius: 999px;
  background: rgba(20, 125, 122, 0.08);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.phase3-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 18px 0;
  border-radius: var(--radius);
  border: 1px solid rgba(23, 19, 31, 0.08);
  background: #fff;
}

.phase3-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  table-layout: fixed;
}

.phase3-table th,
.phase3-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(23, 19, 31, 0.07);
  text-align: left;
  vertical-align: top;
}

.phase3-table th {
  background: rgba(20, 125, 122, 0.08);
  color: var(--ink);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.phase3-table td {
  color: var(--muted);
  font-weight: 720;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

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

.phase3-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.phase3-grid > div,
.phase3-alternatives,
.trust-warning {
  padding: 18px;
  border: 1px solid rgba(23, 19, 31, 0.08);
  border-radius: var(--radius);
  background: rgba(248, 244, 236, 0.72);
}

.phase3-grid h3,
.phase3-alternatives h3 {
  margin-top: 0;
  font-size: 20px;
}

.phase3-grid ul {
  margin: 10px 0 0;
  padding-left: 18px;
}

.phase3-grid li {
  margin-top: 7px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.phase3-alternatives {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 14px;
}

.phase3-alternatives h3 {
  flex: 1 0 100%;
  margin-bottom: 0;
}

.phase3-alternatives a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 13px;
  border: 1px solid rgba(20, 125, 122, 0.18);
  border-radius: 999px;
  background: rgba(20, 125, 122, 0.08);
  color: var(--teal-dark);
  font-weight: 900;
}

.trust-warning {
  margin: 18px 0;
  background: rgba(255, 248, 239, 0.9);
  color: #5b3541;
  font-weight: 800;
}

.phase3-sources {
  margin-top: 16px;
}

.phase3-sources a {
  margin-right: 12px;
  font-weight: 850;
}

@media (max-width: 980px) {
  .phase3-grid,
  .phase3-grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .phase3-table {
    min-width: 0;
  }

  .decision-table {
    min-width: 0;
  }
}
