@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
  :root {
    --deep: #0a0612;
    --mid: #140d22;
    --red: #e8382a;
    --red-glow: #ff5a4a;
    --gold: #c9a96e;
    --gold-light: #e8c98a;
    --cream: #f5efe6;
    --muted: rgba(245,239,230,0.55);
    --glass: rgba(255,255,255,0.04);
    --glass-border: rgba(201,169,110,0.18);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  body.biomind-landing {
    background: var(--deep);
    color: var(--cream);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
  }

  /* Customizer / WP: body.custom-background (e.g. #f7f6f1) loads after theme CSS — match Biomind blocks */
  body.biomind-landing.custom-background {
    background: var(--deep) !important;
    background-color: var(--deep) !important;
    background-image: none !important;
  }

  /* ─── NOISE OVERLAY ─── */
  body.biomind-landing::before {
    content: '';
    position: fixed; inset: 0; z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
  }

  /* ─── STICKY NAV ─── */
  nav.biomind-landing-nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 18px 48px;
    display: flex; align-items: center; justify-content: space-between;
    background: linear-gradient(to bottom, rgba(10,6,18,0.95), transparent);
    backdrop-filter: blur(2px);
  }
  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; letter-spacing: 3px;
    color: var(--gold); text-decoration: none;
  }
  .nav-cta {
    background: var(--red);
    color: #fff; font-family: 'Montserrat', sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; text-decoration: none;
    padding: 11px 28px; border-radius: 2px;
    transition: background 0.2s, box-shadow 0.2s;
  }
  .nav-cta:hover { background: var(--red-glow); box-shadow: 0 0 24px rgba(232,56,42,0.5); }

  /* ─── HERO ─── */
  .hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    overflow: hidden;
  }

  .hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 120px 60px 80px;
    align-items: center;
    gap: 80px;
    position: relative; z-index: 2;
  }

  .hero::after {
    content: '';
    position: absolute;
    top: 40%; left: 25%; transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    background: radial-gradient(ellipse at center, rgba(232,56,42,0.13) 0%, transparent 65%);
    pointer-events: none; z-index: 0;
  }

  .hero-text { text-align: left; }

  .hero-img-col {
    display: flex; align-items: center; justify-content: center;
  }

  .hero-img {
    width: 100%; max-width: 520px;
    border-radius: 12px; display: block;
    box-shadow: 0 40px 120px rgba(232,56,42,0.2), 0 0 0 1px rgba(201,169,110,0.1);
  }

  .hero-img-placeholder {
    width: 100%; max-width: 460px;
    aspect-ratio: 5/6;
    border: 2px dashed rgba(201,169,110,0.3);
    border-radius: 12px;
    background: rgba(255,255,255,0.02);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
    transition: border-color 0.3s;
  }
  .hero-img-placeholder:hover { border-color: var(--gold); }
  .hip-glow {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(232,56,42,0.07), transparent 70%);
    pointer-events: none;
  }
  .hip-content { text-align: center; position: relative; z-index: 1; padding: 32px; }

  .hero-eyebrow {
    display: inline-block;
    font-size: 10px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    border: 1px solid var(--glass-border);
    padding: 8px 20px; border-radius: 100px;
    margin-bottom: 36px;
    animation: fadeUp 0.8s ease both;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(44px, 5vw, 76px);
    font-weight: 300; line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeUp 0.9s ease 0.1s both;
  }
  .hero-title em { font-style: italic; color: var(--gold); }
  .hero-title .red { color: var(--red-glow); }

  .hero-sub {
    font-size: 15px; font-weight: 500;
    color: var(--muted); line-height: 1.8;
    max-width: 460px; margin-bottom: 44px;
    animation: fadeUp 1s ease 0.2s both;
  }

  .hero-btns {
    display: flex; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 1s ease 0.3s both;
  }

  .btn-primary {
    background: var(--red);
    color: #fff; font-size: 12px; font-weight: 600;
    letter-spacing: 2.5px; text-transform: uppercase; text-decoration: none;
    padding: 18px 44px; border-radius: 2px;
    transition: all 0.25s;
    box-shadow: 0 8px 40px rgba(232,56,42,0.35);
  }
  .btn-primary:hover {
    background: var(--red-glow);
    box-shadow: 0 12px 60px rgba(232,56,42,0.55);
    transform: translateY(-2px);
  }

  .btn-ghost {
    border: 1px solid var(--glass-border);
    color: var(--gold); font-size: 12px; font-weight: 500;
    letter-spacing: 2px; text-transform: uppercase; text-decoration: none;
    padding: 18px 44px; border-radius: 2px;
    transition: all 0.25s;
  }
  .btn-ghost:hover {
    background: var(--glass); border-color: var(--gold);
  }

  /* ─── TRUST BAR ─── */
  .trust-bar {
    position: relative; z-index: 2;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 28px 40px;
    display: flex; align-items: center; justify-content: center;
    gap: 60px; flex-wrap: wrap;
    background: rgba(10, 6, 18, 0.92);
  }
  .trust-item {
    margin-top: 0px;
    display: flex; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted);
  }
  .trust-icon { color: var(--gold); font-size: 18px; }

  /* ─── SECTION BASE ─── */
  section { position: relative; z-index: 2; }

  .section-pad { padding: 100px 40px; }

  .container { max-width: 1080px; margin: 0 auto; }

  .section-label {
    font-size: 10px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 20px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 300; line-height: 1.15;
    margin-bottom: 20px;
  }

  .section-body {
    font-size: 15px; line-height: 1.8; color: var(--muted);
    max-width: 620px;
  }

  /* ─── PROBLEM SECTION ─── */
  .problem { background: var(--mid); }

  .problem-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 40px; align-items: center;
    margin-top: 60px;
  }

  .problem-cards { display: flex; flex-direction: column; gap: 16px; }

  .problem-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px; padding: 24px 28px;
    display: flex; gap: 18px; align-items: flex-start;
  }
  .problem-card .icon {
    font-size: 22px; flex-shrink: 0; margin-top: 2px;
  }
  .problem-card h4 {
    font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
    margin-bottom: 6px;
  }
  .problem-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  .problem-insight {
    padding: 40px;
    background: linear-gradient(135deg, rgba(232,56,42,0.08), rgba(10,6,18,0.3));
    border: 1px solid rgba(232,56,42,0.2);
    border-radius: 4px;
  }
  .problem-insight blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-style: italic; line-height: 1.5;
    color: var(--cream); margin-bottom: 20px;
  }
  .problem-insight cite {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold);
  }

  /* ─── TECH SECTION ─── */
  .tech-intro {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center; margin-bottom: 80px;
  }

  .vs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
  }
  .vs-table th {
    padding: 16px 20px; font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 600;
    border-bottom: 1px solid var(--glass-border);
  }
  .vs-table th small {
    font-size: 95%;
    font-weight: inherit !important;
  }
  .vs-table th:first-child { text-align: left; color: var(--muted); }
  .vs-table th:nth-child(2) { color: var(--muted); text-align: center; }
  .vs-table th:nth-child(3) {
    color: var(--gold); text-align: center;
    background: rgba(201,169,110,0.06); border-radius: 4px 4px 0 0;
  }
  .vs-table td {
    padding: 14px 20px; font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .vs-table td:first-child { color: var(--muted); }
  .vs-table td:nth-child(2) { text-align: center; color: rgba(245,239,230,0.3); font-size: 18px; }
  .vs-table td:nth-child(3) {
    text-align: center; font-size: 18px;
    background: rgba(201,169,110,0.04);
  }
  .vs-table tr:last-child td:nth-child(3) { border-radius: 0 0 4px 4px; }
  /* ─── HERO PRODUCT PLACEHOLDER ─── */
  .hero-product-placeholder {
    margin: 48px auto 0;
    max-width: 600px; height: 200px;
    border: 2px dashed rgba(201,169,110,0.25);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.02);
    cursor: pointer;
    transition: border-color 0.3s;
  }
  .hero-product-placeholder:hover { border-color: var(--gold); }
  /* When you have an image, use this class instead: */
  .hero-product-img {
    display: block; margin: 48px auto 0;
    max-width: 600px; width: 100%; border-radius: 8px;
    object-fit: cover;
  }

  /* ─── REELS GRID ─── */
  .reels-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .reel-placeholder {
    border-radius: 8px; overflow: hidden;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: border-color 0.3s, transform 0.3s;
  }
  .reel-placeholder:hover { border-color: rgba(201,169,110,0.4); transform: translateY(-3px); }
  .reel-inner {
    aspect-ratio: 9/16;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    margin: 8px; border-radius: 6px;overflow: hidden;
  }
  .reel-play {
    width: 48px; height: 48px;
    border-radius: 50%; border: 2px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 16px; margin-bottom: 16px;
    opacity: 0.5;
  }
  .reel-hint { font-size: 11px; color: var(--muted); line-height: 1.6; }
  .reel-hint span { font-size: 10px; opacity: 0.5; display: block; margin-top: 4px; }
  .reel-label {
    padding: 12px 14px; font-size: 11px; color: var(--muted);
    letter-spacing: 0.5px; border-top: 1px solid var(--glass-border);
  }

  @media (max-width: 900px) {
    .reels-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 500px) {
    .reels-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  }

  .check { color: #4ecb71; }
  .cross { color: rgba(245,239,230,0.2); }

  /* ─── PHOTO PLACEHOLDERS ─── */
  .photo-grid {
    display: grid; grid-template-columns: repeat(3,1fr);
    gap: 20px; margin-top: 48px;
  }
  .photo-placeholder {
    aspect-ratio: 1;
    border: 2px dashed var(--glass-border);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    background: var(--glass);
    transition: border-color 0.3s;
  }
  .photo-placeholder:hover { border-color: var(--gold); }
  .photo-placeholder img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 4px;
    display: block;
  }
  .photo-inner { text-align: center; padding: 24px; }
  .photo-icon { font-size: 36px; margin-bottom: 12px; opacity: 0.4; }
  .photo-hint { font-size: 12px; color: var(--muted); line-height: 1.6; }
  .photo-hint span { font-size: 10px; opacity: 0.6; display:block; margin-top:4px; }

  /* ─── TABLE NOTE ─── */
  .table-note {
    background: linear-gradient(135deg, rgba(201,169,110,0.08), rgba(10,6,18,0.2));
    border: 1px solid rgba(201,169,110,0.25);
    border-left: 3px solid var(--gold);
    border-radius: 4px; padding: 18px 24px;
    font-size: 13px; color: var(--muted); line-height: 1.7;
    margin: 32px 0 28px;
  }
  .table-note-badge {
    display: inline-block; background: var(--gold); color: var(--deep);
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 3px 10px; border-radius: 2px;
    margin-right: 10px; vertical-align: middle;
  }

  /* ─── 4-column VS TABLE overrides ─── */
  .vs-table th:nth-child(2) { color: var(--muted); text-align: center; background: none; }
  .vs-table th:nth-child(3) { color: var(--muted); text-align: center; background: none; border-radius: 0; }
  .vs-table th:nth-child(4) {
    color: var(--gold); text-align: center;
    background: rgba(201,169,110,0.06); border-radius: 4px 4px 0 0;
  }
  .vs-table td:nth-child(3) { background: none; text-align: center; }
  .vs-table td:nth-child(4) {
    text-align: center; font-size: 13px;
    background: rgba(201,169,110,0.04);
  }
  .vs-table tr:last-child td:nth-child(4) { border-radius: 0 0 4px 4px; }
  .vs-table tr:last-child td:nth-child(3) { border-radius: 0; }
  .row-highlight td { background: rgba(232,56,42,0.04) !important; }
  .row-highlight td:nth-child(4) { background: rgba(201,169,110,0.08) !important; }
  .row-highlight td:first-child { color: var(--cream); }

  @media (max-width: 768px) {
    .photo-grid { grid-template-columns: 1fr; }
    .vs-table { font-size: 12px; }
    .vs-table th, .vs-table td { padding: 10px 12px; }
  }

  /* ─── BIOPATTER SECTION ─── */
  .biopattern { background: var(--mid); }

  .bio-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
  }

  .bio-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px; padding: 36px 28px;
    position: relative; overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
  }
  .bio-card:hover {
    border-color: rgba(201,169,110,0.4);
    transform: translateY(-4px);
  }
  .bio-card::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity 0.3s;
  }
  .bio-card:hover::before { opacity: 1; }

  .bio-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px; font-weight: 300; color: var(--gold);
    opacity: 0.2; line-height: 1; margin-bottom: 16px;
  }
  .bio-card h3 {
    font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
    margin-bottom: 12px;
  }
  .bio-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

  /* ─── WAVELENGTH VIZ ─── */
  .wavelength-section { text-align: center; }

  .wl-diagram {
    margin: 60px auto 0;
    max-width: 700px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 8px; padding: 48px;
    position: relative;
  }

  .wl-spectrum {
    height: 8px; border-radius: 4px;
    background: linear-gradient(90deg, #7b00ff, #4400ff, #0033ff, #00bbff, #00ff99, #aaff00, #ffee00, #ff8800, #ff4400, #cc0000);
    margin-bottom: 24px; position: relative;
  }
  .wl-marker {
    position: absolute; top: -6px;
    width: 20px; height: 20px; border-radius: 50%;
    border: 3px solid #fff;
    transform: translateX(-50%);
  }
  .wl-marker.r1 { left: 72%; background: var(--red-glow); box-shadow: 0 0 16px var(--red-glow); }
  .wl-marker.r2 { left: 84%; background: #8B0000; box-shadow: 0 0 16px rgba(139,0,0,0.8); }

  .wl-labels { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-top: 8px; }

  .wl-callouts { display: flex; gap: 32px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
  .wl-callout {
    background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
    border-radius: 4px; padding: 20px 28px; text-align: left; min-width: 180px;
  }
  .wl-callout .nm {
    font-family: 'Cormorant Garamond', serif; font-size: 32px; color: var(--gold);
    margin-bottom: 4px;
  }
  .wl-callout p { font-size: 12px; color: var(--muted); line-height: 1.6; }

  /* ─── HOW IT WORKS ─── */
  .steps { counter-reset: step; }
  .step {
    display: grid; grid-template-columns: 80px 1fr;
    gap: 32px; padding: 40px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    align-items: center;
  }
  .step:last-child { border-bottom: none; }
  .step-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px; font-weight: 300;
    color: var(--gold); opacity: 0.3; line-height: 1;
    text-align: center;
  }
  .step h3 { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
  .step p { font-size: 14px; color: var(--muted); line-height: 1.7; }

  /* ─── SOCIAL PROOF ─── */
  .social { background: var(--mid); }

  .reviews-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
  }

  .review-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 4px; padding: 32px 28px;
  }
  .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 16px; }
  .review-text {
    /* font-family: 'Cormorant Garamond', serif; */
    font-size: 17px;
    font-style: italic;
    line-height: 1.6;
    color: var(--cream);
    margin-bottom: 20px;
    font-weight: 300;
  }
  .review-author {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    color: var(--gold);
  }

  /* ─── CTA SECTION ─── */
  .cta-section {
    text-align: center; padding: 120px 40px;
    position: relative; overflow: hidden;
    background: var(--deep);
  }
  .cta-section::before {
    content: '';
    position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
    width: 800px; height: 600px;
    background: radial-gradient(ellipse, rgba(232,56,42,0.12), transparent 65%);
    pointer-events: none;
  }

  .cta-box {
    position: relative; z-index: 1;
    max-width: 680px; margin: 0 auto;
  }

  .price-display {
    margin: 48px 0;
    display: flex; align-items: baseline; justify-content: center; gap: 16px;
  }
  .price-was {
    font-size: 20px; text-decoration: line-through; color: var(--muted);
  }
  .price-now {
    font-family: 'Cormorant Garamond', serif;
    font-size: 72px; font-weight: 300; color: var(--cream); line-height: 1;
  }
  .price-currency { font-size: 28px; }
  .price-badge {
    background: var(--red); color: #fff;
    font-size: 10px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; padding: 6px 14px; border-radius: 2px;
    align-self: center;
  }

  .cta-guarantee {
    margin-top: 28px;
    font-size: 12px; color: var(--muted); letter-spacing: 1px;
  }

  /* ─── FAQ ─── */
  .faq-list { max-width: 720px; margin: 60px auto 0; }
  .faq-item {
    border-bottom: 1px solid var(--glass-border);
    padding: 28px 0;
  }
  .faq-item summary {
    font-size: 15px; font-weight: 500; cursor: pointer;
    list-style: none; display: flex; justify-content: space-between; align-items: center;
  }
  .faq-item summary::after {
    content: '+'; color: var(--gold); font-size: 20px; transition: transform 0.25s;
  }
  .faq-item[open] summary::after { transform: rotate(45deg); }
  .faq-item p { font-size: 14px; color: var(--muted); line-height: 1.7; padding-top: 16px; }

  /* ─── FOOTER ─── */
  footer.biomind-landing-footer {
    border-top: 1px solid var(--glass-border);
    padding: 48px 40px; text-align: center;
    font-size: 12px; color: var(--muted); letter-spacing: 1px;
  }
  footer.biomind-landing-footer a { color: var(--gold); text-decoration: none; }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  @keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 40px rgba(232,56,42,0.35); }
    50%       { box-shadow: 0 0 80px rgba(232,56,42,0.6); }
  }

  .btn-primary { animation: pulse-glow 3s ease infinite; }

  /* Scroll reveal — only on live landing (body.biomind-landing). Editor iframe has no class, so previews stay visible. */
  body.biomind-landing .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  body.biomind-landing .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    nav.biomind-landing-nav { padding: 16px 24px; }
    .hero-split { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; }
    .hero-img-col { order: -1; }
    .hero-img-placeholder { max-width: 100%; aspect-ratio: 4/3; }
    .hero-text { text-align: center; }
    .hero-btns { justify-content: center; }
    .hero-sub { max-width: 100%; }
    .problem-grid,
    .tech-intro,
    .bio-grid,
    .reviews-grid { grid-template-columns: 1fr; }
    .trust-bar { gap: 28px; padding: 24px; }
    .step { grid-template-columns: 50px 1fr; }
    .price-now { font-size: 52px; }
  }

  /* Embeds / posters inside reel tiles */
  .reel-inner > iframe,
  .reel-inner > img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    border: 0;
    border-radius: 4px;
    object-fit: cover;
  }

  /* WordPress block wrapper: default canvas */
  body.biomind-landing [class*="wp-block-acf-biomind-"] {
    background-color: var(--deep);
    color: var(--cream);
  }

  /* Slightly lighter band (--mid) for these sections */
  body.biomind-landing .wp-block-acf-biomind-problem,
  body.biomind-landing .wp-block-acf-biomind-biopattern,
  body.biomind-landing .wp-block-acf-biomind-product-grid,
  body.biomind-landing .wp-block-acf-biomind-steps,
  body.biomind-landing .wp-block-acf-biomind-faq,
  body.biomind-landing .wp-block-acf-biomind-final-cta {
    background-color: var(--mid) !important;
  }

  /* Gutenberg: Biomind ACF blocks in the editor canvas */
  .editor-styles-wrapper [class*="wp-block-acf-biomind-"],
  .block-editor-block-list__block[class*="wp-block-acf-biomind-"] {
    background-color: var(--deep) !important;
    color: var(--cream);
  }

  /* Editor only (this file is enqueued only for Biomind landing): Storefront/core #333 title + headings → cream on dark UI */
  .editor-post-title__block .editor-post-title__input,
  .editor-styles-wrapper .is-root-container h1,
  .editor-styles-wrapper .is-root-container h2,
  .editor-styles-wrapper .is-root-container h3,
  .editor-styles-wrapper .is-root-container h4,
  .editor-styles-wrapper .is-root-container h5,
  .editor-styles-wrapper .is-root-container h6 {
    color: var(--cream) !important;
  }

  .editor-styles-wrapper .wp-block-acf-biomind-problem,
  .editor-styles-wrapper .wp-block-acf-biomind-biopattern,
  .editor-styles-wrapper .wp-block-acf-biomind-product-grid,
  .editor-styles-wrapper .wp-block-acf-biomind-steps,
  .editor-styles-wrapper .wp-block-acf-biomind-faq,
  .editor-styles-wrapper .wp-block-acf-biomind-final-cta,
  .block-editor-block-list__block.wp-block-acf-biomind-problem,
  .block-editor-block-list__block.wp-block-acf-biomind-biopattern,
  .block-editor-block-list__block.wp-block-acf-biomind-product-grid,
  .block-editor-block-list__block.wp-block-acf-biomind-steps,
  .block-editor-block-list__block.wp-block-acf-biomind-faq,
  .block-editor-block-list__block.wp-block-acf-biomind-final-cta {
    background-color: var(--mid) !important;
  }

  /* Editor: core/theme .editor-styles-wrapper table striping (cream #f5f4ef) breaks dark .vs-table + light text */
  .editor-styles-wrapper table.vs-table:not(.has-background) th,
  .editor-styles-wrapper table.vs-table:not(.has-background) tbody td,
  .editor-styles-wrapper table.vs-table:not(.has-background) tbody tr:nth-child(2n) td,
  .block-editor-block-list__block table.vs-table:not(.has-background) th,
  .block-editor-block-list__block table.vs-table:not(.has-background) tbody td,
  .block-editor-block-list__block table.vs-table:not(.has-background) tbody tr:nth-child(2n) td {
    background: transparent !important;
  }
