/* ==========================================================================
   Soft Organic Creative Polish — How to Fax a Document (2026)
   ========================================================================== */

/* --- Keyframe Animations --- */
@media (prefers-reduced-motion: no-preference) {
  @keyframes softFadeUp {
    0% {
      opacity: 0;
      transform: translateY(18px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes gentlePulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.03);
    }
  }

  .ke72-splash-panel .ke72-lead-frame {
    animation: softFadeUp 0.85s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  }
}

/* --- Atmospheric Rhythm & Backdrop Accents --- */
body {
  background-image:
    radial-gradient(ellipse 600px 300px at 8% 12%, rgba(var(--color-primary-rgb), 0.04), transparent 80%),
    radial-gradient(ellipse 500px 350px at 92% 70%, rgba(var(--color-accent-rgb), 0.05), transparent 75%);
  background-repeat: no-repeat;
  text-rendering: optimizeLegibility;
}

/* --- Navigation & Topbar Elevation --- */
.ke72-topbar {
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ke72-site-mark {
  letter-spacing: -0.01em;
  font-weight: 800;
  color: var(--color-text);
  transition: transform 0.2s ease;
}

.ke72-site-mark:hover {
  transform: translateY(-1px);
}

.ke72-link-row a {
  position: relative;
  transition: color 0.25s ease, background-color 0.25s ease;
}

.ke72-link-row a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: var(--radius-btn);
  transition: width 0.25s cubic-bezier(0.2, 0, 0, 1), left 0.25s cubic-bezier(0.2, 0, 0, 1);
}

.ke72-link-row a:hover::after {
  width: 60%;
  left: 20%;
}

/* --- Hero Section Refinement --- */
.ke72-splash-panel {
  position: relative;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 16px 48px rgba(var(--color-primary-rgb), 0.16);
  background: linear-gradient(155deg, #ec4b99 0%, #b70b5e 100%);
}

.ke72-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-btn);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.76rem;
  letter-spacing: 0.07em;
  font-weight: 700;
}

.ke72-stamp::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.ke72-splash-panel h1 {
  text-wrap: balance;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.15);
}

.ke72-splash-panel p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
  font-weight: 400;
}

.ke72-jump-btn {
  background: #ffffff;
  color: var(--color-primary-dark);
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), box-shadow 0.2s cubic-bezier(0.2, 0, 0, 1), background-color 0.2s ease;
}

.ke72-jump-btn:hover {
  background: #fff5f8;
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.ke72-splash-panel .hero-ornament {
  font-family: var(--font-display);
  font-weight: 800;
  color: #ffffff;
  opacity: 0.09;
  transform: rotate(-10deg) scale(1.15);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.ke72-splash-panel:hover .hero-ornament {
  transform: rotate(-6deg) scale(1.18);
}

/* --- Long-form Article Typography & Hierarchy --- */
.article-text-body {
  color: var(--color-text);
  line-height: 1.72;
}

.article-text-body p {
  margin: 0 0 0.95rem;
  color: var(--color-text);
  font-size: 1.05rem;
}

.article-text-body p strong {
  font-weight: 650;
  color: var(--color-text);
}

/* Expressive H2 Section Headings with Warm Pill Markers */
.article-text-body h2 {
  position: relative;
  font-size: clamp(1.4rem, 2.8vw, 1.78rem);
  font-weight: 800;
  letter-spacing: -0.015em;
  margin: 2.6rem 0 1rem;
  padding-left: 20px;
  line-height: 1.3;
  color: var(--color-text);
  scroll-margin-top: 90px;
}

.article-text-body h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12%;
  height: 76%;
  width: 6px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-accent));
  border-radius: var(--radius-btn);
}

/* Expressive H3 Subheadings */
.article-text-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: 1.6rem 0 0.65rem;
  color: var(--color-text);
}

/* Dividers with Soft Tinted Organic Styling */
.article-text-body hr {
  border: none;
  height: 2px;
  background: radial-gradient(ellipse at center, var(--color-border) 0%, transparent 85%);
  margin: 2.8rem 0;
  position: relative;
}

.article-text-body hr::after {
  content: "✦";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-bg);
  padding: 0 10px;
  color: var(--color-accent);
  font-size: 0.85rem;
}

/* Refined In-Article Summary Table */
.article-text-body > table,
.article-text-body table:not(.ke72-cmp-grid) {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 1.8rem 0 2.2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.article-text-body > table thead th,
.article-text-body table:not(.ke72-cmp-grid) thead th {
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.12), rgba(var(--color-accent-rgb), 0.08));
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 13px 16px;
  border-bottom: 1px solid var(--color-border);
}

.article-text-body > table tbody td,
.article-text-body table:not(.ke72-cmp-grid) tbody td {
  padding: 12px 16px;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
}

.article-text-body > table tbody tr:last-child td,
.article-text-body table:not(.ke72-cmp-grid) tbody tr:last-child td {
  border-bottom: none;
}

.article-text-body > table tbody tr:hover,
.article-text-body table:not(.ke72-cmp-grid) tbody tr:hover {
  background: rgba(var(--color-primary-rgb), 0.03);
}

/* Municorn Top Row in Table Highlight */
.article-text-body > table tbody tr:first-child td,
.article-text-body table:not(.ke72-cmp-grid) tbody tr:first-child td {
  background: rgba(var(--color-primary-rgb), 0.04);
}

/* In-Article Lists */
.article-text-body ul:not([style*="list-style-type: none"]) {
  list-style: none;
  padding-left: 0;
  margin: 0 0 1.2rem;
}

.article-text-body ul:not([style*="list-style-type: none"]) > li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  line-height: 1.58;
}

.article-text-body ul:not([style*="list-style-type: none"]) > li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(var(--color-primary-rgb), 0.16);
}

.article-text-body ol {
  padding-left: 1.3rem;
  margin: 0 0 1.2rem;
}

.article-text-body ol > li {
  padding-left: 0.4rem;
  margin-bottom: 0.6rem;
  line-height: 1.58;
  color: var(--color-text);
}

.article-text-body ol > li::marker {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
}

/* Pros and Cons Checklist inside Article Sections */
.article-text-body ul[style*="list-style-type: none"] {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-ctl);
  padding: 14px 18px !important;
  margin: 1.1rem 0 1.3rem;
}

.article-text-body ul[style*="list-style-type: none"] li {
  padding: 4px 0;
  font-size: 0.94rem;
  line-height: 1.5;
  color: var(--color-text);
}

/* Blockquotes */
.article-text-body blockquote {
  margin: 1.6rem 0;
  padding: 1.2rem 1.6rem;
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.05) 0%, var(--color-bg-card) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  box-shadow: var(--shadow-card);
  font-style: italic;
}

.article-text-body blockquote p {
  color: var(--color-text);
  margin: 0;
}

/* Links inside Article Text */
.article-text-body a:not([class]) {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3.5px;
  font-weight: 600;
  border-radius: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease, background-color 0.2s ease;
}

.article-text-body a:not([class]):hover {
  color: var(--color-primary-dark);
  background: rgba(var(--color-primary-rgb), 0.08);
  text-decoration-color: var(--color-primary-dark);
}

/* Direct Action Links (e.g., "Start faxing with Municorn Fax App →") */
.article-text-body p > a:only-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-btn);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  margin: 0.4rem 0 0.8rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.article-text-body p > a:only-child:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateX(3px);
}

/* --- Section Rhythm & Container Spacing --- */
#ke72-byline-note,
#ke72-write-us {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-bg-card);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

/* Warm Blob Behind Author Block */
#ke72-byline-note::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle, rgba(var(--color-accent-rgb), 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.ke72-expert-block img {
  border: 3px solid rgba(var(--color-primary-rgb), 0.2);
  padding: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease;
}

.ke72-expert-block:hover img {
  transform: scale(1.04);
}

.ke72-expert-block .role-line {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
}

/* Form Polish */
#ke72-write-us h2 {
  font-size: 1.7rem;
  letter-spacing: -0.015em;
  font-weight: 800;
}

#ke72-contact-fields input,
#ke72-contact-fields textarea {
  border-radius: var(--radius-ctl);
  border: 1px solid var(--color-border);
  background: var(--color-bg);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.02);
}

#ke72-contact-fields button[type="submit"] {
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.28);
  font-family: var(--font-display);
  letter-spacing: 0.02em;
}

#ke72-contact-fields button[type="submit"]:hover {
  box-shadow: 0 8px 24px rgba(var(--color-primary-rgb), 0.38);
}

/* --- Footer Polish --- */
.ke72-end-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.ke72-end-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.ke72-end-strip a {
  border-radius: var(--radius-ctl);
  padding: 4px 8px;
}

.ke72-end-strip a:hover {
  background: rgba(255, 255, 255, 0.06);
}

/* --- Responsive Polish --- */
@media (max-width: 768px) {
  .ke72-topbar {
    padding: 10px 16px 12px;
  }

  .ke72-splash-panel {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .ke72-content-hub {
    padding: 1.8rem 1rem;
  }

  .article-text-body h2 {
    font-size: 1.45rem;
    margin: 2.1rem 0 0.8rem;
    padding-left: 15px;
  }

  .article-text-body > table,
  .article-text-body table:not(.ke72-cmp-grid) {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  #ke72-byline-note,
  #ke72-write-us {
    padding: 22px 18px;
    margin: 1.8rem 0;
  }
}

@media (max-width: 480px) {
  .ke72-site-mark {
    font-size: 0.96rem;
  }

  .ke72-link-row a {
    font-size: 0.8rem;
    padding: 5px 8px;
  }

  .ke72-jump-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }
}

/* --- Dark Mode Polish --- */
html.dark body {
  background-image:
    radial-gradient(ellipse 600px 300px at 8% 12%, rgba(var(--color-primary-rgb), 0.09), transparent 80%),
    radial-gradient(ellipse 500px 350px at 92% 70%, rgba(var(--color-accent-rgb), 0.06), transparent 75%);
}

html.dark .article-text-body blockquote {
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.1) 0%, var(--color-bg-card) 100%);
}

html.dark .article-text-body hr::after {
  background: var(--color-bg);
}

html.dark .article-text-body > table thead th,
html.dark .article-text-body table:not(.ke72-cmp-grid) thead th {
  background: linear-gradient(135deg, rgba(var(--color-primary-rgb), 0.18), rgba(var(--color-accent-rgb), 0.12));
}

html.dark #ke72-contact-fields input,
html.dark #ke72-contact-fields textarea {
  background: var(--color-input-bg);
  border-color: var(--color-border);
}

/* === CSS CONTENT === */

/* ==========================================================================
   How to Fax a Document: Comparison Table & Review Stack (Soft Organic)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Comparison Section: Atmosphere & Header
   -------------------------------------------------------------------------- */
#ke72-compare-index {
  position: relative;
  margin: 3rem 0 3.8rem;
  width: 100%;
}

.ke72-cmp-intro {
  position: relative;
  margin-bottom: 1.8rem;
  text-align: left;
}

/* Soft organic blob backdrops behind intro headers */
.ke72-cmp-intro::before {
  content: "";
  position: absolute;
  top: -18px;
  left: -20px;
  width: 160px;
  height: 100px;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--color-primary-rgb), 0.15) 0%,
    rgba(var(--color-accent-rgb), 0.04) 65%,
    transparent 80%
  );
  border-radius: 64% 36% 70% 30% / 45% 55% 45% 55%;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.ke72-cmp-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-btn);
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(var(--color-primary-rgb), 0.18);
  margin-bottom: 0.6rem;
}

.ke72-cmp-title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.25;
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
}

.ke72-cmp-deck {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

/* --------------------------------------------------------------------------
   2. Comparison Table: Card Wrapper & Desktop Layout
   -------------------------------------------------------------------------- */
.ke72-cmp-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.ke72-cmp-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.ke72-cmp-grid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.ke72-cmp-grid thead th {
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}

.ke72-cmp-grid tbody tr {
  transition: background-color 0.2s ease;
}

.ke72-cmp-grid tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-border);
}

.ke72-cmp-grid tbody tr:hover {
  background: rgba(var(--color-primary-rgb), 0.025);
}

/* Winner (First Place - Municorn Fax App) Organic Table Treatment */
.ke72-cmp-grid tbody tr.ke72-winner-row {
  background: rgba(var(--color-primary-rgb), 0.05);
  position: relative;
}

.ke72-cmp-grid tbody tr.ke72-winner-row:hover {
  background: rgba(var(--color-primary-rgb), 0.08);
}

.ke72-winner-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-primary);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-btn);
  margin-bottom: 6px;
  box-shadow: 0 2px 10px rgba(var(--color-primary-rgb), 0.3);
}

.ke72-cmp-cell {
  padding: 16px 20px;
  vertical-align: middle;
  font-size: 0.92rem;
}

.ke72-col-brand {
  min-width: 185px;
}

.ke72-brand-name {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
  display: block;
}

.ke72-brand-rank {
  font-size: 0.76rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 3px;
  line-height: 1.3;
}

/* Score Badge */
.ke72-score-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1;
}

.ke72-score-denom {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.ke72-winner-row .ke72-score-tag {
  color: var(--color-primary-dark);
}

html.dark .ke72-winner-row .ke72-score-tag {
  color: var(--color-primary);
}

/* Feature bullets */
.ke72-feature-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ke72-feature-list li {
  font-size: 0.85rem;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0 0 5px 0 !important;
  padding: 0 !important;
  display: flex;
  align-items: center;
  gap: 7px;
}

.ke72-feature-list li:last-child {
  margin-bottom: 0 !important;
}

.ke72-feature-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.ke72-winner-row .ke72-feature-bullet {
  background: var(--color-primary);
}

.ke72-price-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--color-text);
  display: block;
  line-height: 1.3;
}

.ke72-price-note {
  font-size: 0.74rem;
  color: var(--color-text-muted);
  display: block;
  margin-top: 2px;
}

/* Hierarchy for Table Action CTAs */
.ke72-action-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: var(--radius-btn);
  padding: 9px 20px;
  font-size: 0.86rem;
  font-weight: 700;
  font-family: var(--font-display);
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
}

.ke72-cta-first {
  background: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 16px rgba(var(--color-primary-rgb), 0.32);
}

.ke72-cta-first:hover {
  opacity: 0.94;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(var(--color-primary-rgb), 0.42);
}

.ke72-cta-second {
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary) !important;
  border: 1px solid rgba(var(--color-primary-rgb), 0.18);
}

.ke72-cta-second:hover {
  background: rgba(var(--color-primary-rgb), 0.18);
  transform: translateY(-1px);
}

.ke72-cta-standard {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text) !important;
}

.ke72-cta-standard:hover {
  border-color: var(--color-text-muted);
  background: var(--color-bg-card);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   3. Review Cards Stack: Art Direction & Hue Families
   -------------------------------------------------------------------------- */
#ke72-pick-stack {
  position: relative;
  margin: 3.5rem 0 4.2rem;
}

.ke72-stack-header {
  position: relative;
  margin-bottom: 2.2rem;
  text-align: left;
}

.ke72-soft-blob {
  position: absolute;
  top: -20px;
  left: -22px;
  width: 170px;
  height: 110px;
  background: radial-gradient(
    circle,
    rgba(var(--color-primary-rgb), 0.14) 0%,
    rgba(var(--color-accent-rgb), 0.04) 65%,
    transparent 80%
  );
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}

.ke72-stack-eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 14px;
  border-radius: var(--radius-btn);
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(var(--color-primary-rgb), 0.18);
  margin-bottom: 0.6rem;
}

.ke72-stack-headline {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.7vw, 1.95rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.25;
  margin: 0 0 0.5rem;
  letter-spacing: -0.015em;
}

.ke72-stack-summary {
  position: relative;
  z-index: 1;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
}

.ke72-cards-flow {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Individual Card Shape & Subtle Pastel Panels */
.ke72-item-unit {
  position: relative;
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  padding: 26px 28px;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
  overflow: hidden;
}

.ke72-item-unit:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-hover);
}

/* Hue Families per Card */
.ke72-item-unit.ke72-winner-card {
  background: linear-gradient(
    176deg,
    rgba(var(--color-primary-rgb), 0.08) 0%,
    rgba(var(--color-accent-rgb), 0.03) 40%,
    var(--color-bg-card) 100%
  );
  border: 1.5px solid rgba(var(--color-primary-rgb), 0.38);
}

.ke72-item-unit.ke72-panel-second {
  background: linear-gradient(
    176deg,
    rgba(var(--color-accent-rgb), 0.09) 0%,
    rgba(var(--color-accent-rgb), 0.02) 42%,
    var(--color-bg-card) 100%
  );
  border: 1px solid var(--color-border);
}

.ke72-item-unit.ke72-panel-third {
  background: linear-gradient(
    176deg,
    rgba(var(--color-primary-rgb), 0.045) 0%,
    rgba(var(--color-accent-rgb), 0.015) 38%,
    var(--color-bg-card) 100%
  );
  border: 1px solid var(--color-border);
}

/* Header within Cards */
.ke72-unit-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.ke72-brand-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ke72-eyebrow-chip {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 4px 13px;
  border-radius: var(--radius-btn);
  background: rgba(var(--color-primary-rgb), 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(var(--color-primary-rgb), 0.16);
}

/* First Place Winner Stamp */
.ke72-winner-stamp {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 15px;
  border-radius: var(--radius-btn);
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 3px 14px rgba(var(--color-primary-rgb), 0.32);
}

.ke72-unit-title {
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 800;
  color: var(--color-text);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.25;
}

/* Score cluster presentation */
.ke72-score-cluster {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-ctl);
  padding: 8px 16px;
  flex-shrink: 0;
}

.ke72-score-digits {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.ke72-score-max {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

.ke72-score-caption {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--color-text-muted);
  display: block;
  line-height: 1.2;
}

/* Typography & Descriptions */
.ke72-unit-desc {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 1.2rem;
}

.ke72-unit-desc strong {
  color: var(--color-text);
  font-weight: 650;
}

/* Pros / Cons Aspects Split Grid */
.ke72-aspects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-ctl);
  padding: 16px 18px;
  margin-bottom: 1.3rem;
}

.ke72-aspect-block h4 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  color: var(--color-text);
}

.ke72-aspect-block ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.ke72-aspect-block li {
  font-size: 0.88rem !important;
  color: var(--color-text) !important;
  margin-bottom: 6px !important;
  line-height: 1.4 !important;
  padding-left: 1.35rem !important;
  position: relative;
}

.ke72-aspect-block li:last-child {
  margin-bottom: 0 !important;
}

/* Card Actions / Footer Strip */
.ke72-unit-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.ke72-pricing-hint {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.ke72-pricing-hint strong {
  font-family: var(--font-display);
  color: var(--color-text);
  font-size: 1.05rem;
}

.ke72-unit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 28px;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.ke72-btn-primary {
  background: var(--color-primary);
  color: #ffffff !important;
  box-shadow: 0 4px 18px rgba(var(--color-primary-rgb), 0.32);
}

.ke72-btn-primary:hover {
  opacity: 0.94;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(var(--color-primary-rgb), 0.44);
}

.ke72-btn-soft {
  background: rgba(var(--color-primary-rgb), 0.12);
  color: var(--color-primary) !important;
  border: 1px solid rgba(var(--color-primary-rgb), 0.2);
}

.ke72-btn-soft:hover {
  background: rgba(var(--color-primary-rgb), 0.18);
  transform: translateY(-1px);
}

.ke72-btn-outline {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text) !important;
}

.ke72-btn-outline:hover {
  border-color: var(--color-text-muted);
  background: var(--color-bg-card);
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   4. Fully Responsive Behavior (<768px Viewport Override)
      Guarantees no horizontal scrolling on the comparison table,
      and clean vertical stacking for review cards & grids.
   -------------------------------------------------------------------------- */
@media (max-width: 767px) {
  #ke72-compare-index {
    overflow-x: visible !important;
  }

  .ke72-cmp-card {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .ke72-cmp-grid,
  .ke72-cmp-grid thead,
  .ke72-cmp-grid tbody,
  .ke72-cmp-grid tr,
  .ke72-cmp-grid td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ke72-cmp-grid thead {
    display: none !important;
  }

  .ke72-cmp-grid tbody tr {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    margin-bottom: 1.4rem;
    padding: 16px 18px;
    box-shadow: var(--shadow-card);
  }

  .ke72-cmp-grid tbody tr.ke72-winner-row {
    background: linear-gradient(
      176deg,
      rgba(var(--color-primary-rgb), 0.08) 0%,
      var(--color-bg-card) 50%
    );
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 30px rgba(var(--color-primary-rgb), 0.14);
  }

  .ke72-cmp-grid tbody tr:not(:last-child) td {
    border-bottom: 1px solid var(--color-border);
  }

  .ke72-cmp-cell {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0 !important;
    text-align: right;
  }

  .ke72-cmp-cell::before {
    content: attr(data-label);
    font-family: var(--font-display);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    text-align: left;
    padding-right: 14px;
    flex-shrink: 0;
  }

  .ke72-cmp-cell.ke72-col-brand {
    display: block !important;
    text-align: left;
    padding-top: 4px !important;
    padding-bottom: 12px !important;
  }

  .ke72-cmp-cell.ke72-col-brand::before {
    display: none !important;
  }

  .ke72-cmp-cell.ke72-col-action {
    display: block !important
}}