/* ============================================================
   Bao.buzz — Section-specific styles (v2)
   ============================================================ */

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg-0) 78%, transparent);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) var(--ease-out);
}
.nav.is-scrolled { border-bottom-color: var(--stroke); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px var(--pad-x);
  max-width: var(--container);
  margin-inline: auto;
  gap: var(--space-5);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-0);
  text-decoration: none;
}
.brand-mark {
  width: 38px; height: 38px;
  flex-shrink: 0;
  display: block;
}
.brand-mark img, .brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-name { font-weight: 600; }
.brand-name .dot { color: var(--pastel-orange); }
.brand-name .buzz { color: var(--pastel-blue-deep); }
[data-theme="dark"] .brand-name .buzz { color: var(--pastel-blue-soft); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  list-style: none;
}
.nav-links a {
  color: var(--ink-1);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-links a:hover { color: var(--ink-0); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.toggle {
  display: inline-flex;
  align-items: center;
  background: var(--bg-1);
  border: 1px solid var(--stroke-strong);
  border-radius: 999px;
  padding: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
}
.toggle button {
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--ink-2);
  transition: color var(--dur-fast) var(--ease-out);
  position: relative;
  z-index: 1;
}
.toggle button.is-active { color: var(--bg-0); }
.toggle .thumb {
  position: absolute;
  top: 3px; bottom: 3px;
  left: 3px;
  border-radius: 999px;
  background: var(--ink-0);
  transition: transform var(--dur-base) var(--ease-out), width var(--dur-base) var(--ease-out);
}

.theme-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 1px solid var(--stroke-strong);
  display: grid; place-items: center;
  color: var(--ink-0);
  transition: all var(--dur-fast) var(--ease-out);
}
.theme-btn:hover { background: var(--bg-2); transform: rotate(15deg); }
.theme-btn svg { width: 18px; height: 18px; }
.theme-btn .ico-sun { display: none; }
.theme-btn .ico-moon { display: block; }
[data-theme="dark"] .theme-btn .ico-sun { display: block; }
[data-theme="dark"] .theme-btn .ico-moon { display: none; }

.nav-burger {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-1);
  border: 1px solid var(--stroke-strong);
  color: var(--ink-0);
}
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: grid; place-items: center; }
  .nav-mobile {
    display: none;
    flex-direction: column;
    gap: var(--space-4);
    padding: var(--space-4) var(--pad-x) var(--space-6);
    border-top: 1px solid var(--stroke);
    background: var(--bg-0);
  }
  .nav-mobile.is-open { display: flex; }
  .nav-mobile a { color: var(--ink-0); font-size: 18px; font-weight: 600; font-family: var(--font-sans); }
}
@media (min-width: 881px) {
  .nav-mobile { display: none !important; }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding-top: clamp(var(--space-7), 7vw, var(--space-9));
  padding-bottom: clamp(var(--space-7), 8vw, var(--space-9));
  overflow: hidden;
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-eyebrow { margin-bottom: var(--space-5); }
.hero h1 {
  margin-bottom: var(--space-4);
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
}
.hero h1 .grad {
  background: var(--grad-hero); background-size: 200% 200%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: gradShift 12s var(--ease-in-out) infinite;
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
}
.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  color: var(--ink-1);
  max-width: 50ch;
  margin-bottom: var(--space-6);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-5);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.hero-trust .dot { color: var(--pastel-orange); }

/* Floating shapes */
.hero-shape-1 { top: 8%; left: 6%; width: 70px; height: 70px; }
.hero-shape-2 { top: 14%; right: 8%; width: 100px; height: 100px; }
.hero-shape-3 { bottom: 6%; right: 18%; width: 60px; height: 60px; }
.hero-shape-4 { bottom: 18%; left: 12%; width: 54px; height: 54px; }
@media (max-width: 640px) {
  .hero-shape-1, .hero-shape-3 { display: none; }
}

/* ---------- SERVICES ---------- */
.services .panes {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: var(--space-5);
  align-items: stretch;
  margin-top: var(--space-6);
}
.pane {
  display: flex;
  flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.pane:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.pane.featured {
  border-color: var(--pastel-blue);
  box-shadow: var(--shadow-glow-blue);
  transform: translateY(-12px);
  z-index: 1;
}
.pane.featured:hover { transform: translateY(-18px); }
.pane.featured::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--pastel-blue), transparent 40%, var(--pastel-yellow));
  opacity: 0.12;
  z-index: -1;
  pointer-events: none;
}
.pane-ribbon {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--pastel-yellow);
  color: #5A4500;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 2;
}
.pane-shape {
  width: 38px; height: 38px;
  margin-bottom: var(--space-3);
}
.pane h3 {
  margin-bottom: var(--space-2);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
}
.pane-desc { font-size: 14px; color: var(--ink-1); margin-bottom: var(--space-4); }

.pane-features { list-style: none; margin-bottom: var(--space-4); display: grid; gap: var(--space-2); }
.pane-features li {
  display: flex; align-items: flex-start; gap: var(--space-2);
  font-size: 14px; color: var(--ink-1);
}
.pane-features svg {
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 4px;
  color: var(--pastel-orange-deep);
}
[data-theme="dark"] .pane-features svg { color: var(--pastel-orange-soft); }

.pane-frame { margin-top: auto; margin-bottom: var(--space-4); position: relative; }
.pane-frame .iframe-wrap {
  position: relative; height: 200px; overflow: hidden; background: white;
}
.pane-frame iframe {
  width: 200%; height: 400px; border: 0;
  transform: scale(0.5); transform-origin: top left;
  pointer-events: none;
  transition: transform var(--dur-slow) var(--ease-out);
}
.pane:hover .pane-frame iframe { transform: scale(0.52); }
.pane-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); border-top: 1px solid var(--stroke); padding-top: var(--space-4);
}
.pane-price {
  font-family: var(--font-mono); font-size: 14px; color: var(--ink-0); font-weight: 500;
}
.pane-price b { color: var(--pastel-orange-deep); font-weight: 700; }
[data-theme="dark"] .pane-price b { color: var(--pastel-orange-soft); }
.pane-link {
  font-size: 13px; font-weight: 600; color: var(--ink-0);
  display: inline-flex; align-items: center; gap: 4px;
  font-family: var(--font-sans);
}
@media (max-width: 1024px) {
  .services .panes { grid-template-columns: 1fr; }
  .pane.featured { transform: none; }
  .pane.featured:hover { transform: translateY(-6px); }
}

/* ---------- PRICING ---------- */
.pricing .cards {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: var(--space-5);
  margin-top: var(--space-6);
  align-items: stretch;
}
.price-card {
  display: flex; flex-direction: column; gap: var(--space-3);
  background: var(--bg-1);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}
.price-card.featured {
  border-color: var(--pastel-orange);
  box-shadow: var(--shadow-glow-orange);
  transform: translateY(-16px);
}
.price-tier {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.price-name {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink-0);
}
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-block: var(--space-3); }
.price-amount .amount {
  font-family: var(--font-display); font-weight: 700;
  font-size: 56px; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink-0);
}
.price-amount .currency { font-family: var(--font-mono); font-size: 14px; color: var(--ink-2); }
.price-anchor { text-decoration: line-through; color: var(--ink-2); font-size: 14px; margin-left: 6px; }
.price-list { list-style: none; display: grid; gap: var(--space-2); margin-block: var(--space-4); }
.price-list li {
  display: flex; align-items: flex-start; gap: var(--space-2);
  font-size: 14px; color: var(--ink-1);
}
.price-list svg {
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 5px;
  color: var(--pastel-orange-deep);
}
[data-theme="dark"] .price-list svg { color: var(--pastel-orange-soft); }
.price-card.featured .price-list svg { color: var(--pastel-blue-deep); }
[data-theme="dark"] .price-card.featured .price-list svg { color: var(--pastel-blue-soft); }
.price-card .btn { margin-top: auto; }

@media (max-width: 1024px) {
  .pricing .cards { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ---------- COMPARISON (with shine on hover) ---------- */
.compare {
  margin-top: var(--space-5);
  background: var(--bg-1);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th,
.compare-table td {
  padding: 14px var(--space-4); text-align: left;
  border-bottom: 1px solid var(--stroke);
  position: relative; z-index: 1;
}
.compare-table tr:last-child th,
.compare-table tr:last-child td { border-bottom: 0; }
.compare-table th {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
  background: var(--bg-2);
}
.compare-bao {
  background: rgba(111, 161, 255, 0.10);
  color: var(--ink-0);
  font-weight: 700;
  position: relative;
  transition: background-color var(--dur-base) var(--ease-out);
}
.compare-bao::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--pastel-blue), var(--pastel-orange), var(--pastel-yellow));
}
.compare-them { color: var(--ink-1); }
.compare-table tr td:first-child { color: var(--ink-1); font-weight: 500; }

/* Shine sweep on hover over the Bao column */
.compare-table tbody tr:hover .compare-bao,
.compare-table thead tr:hover .compare-bao {
  background: rgba(111, 161, 255, 0.20);
}
.compare.shine::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255, 209, 92, 0.45) 45%,
    rgba(111, 161, 255, 0.45) 55%,
    transparent 70%);
  background-size: 250% 100%;
  background-position: 200% 0;
  animation: shineSweep 1.4s var(--ease-out) forwards;
  mix-blend-mode: screen;
}
[data-theme="dark"] .compare.shine::after { mix-blend-mode: plus-lighter; }
@keyframes shineSweep {
  to { background-position: -50% 0; }
}
.compare.glow {
  box-shadow:
    0 0 0 1px var(--pastel-blue),
    0 0 50px rgba(111, 161, 255, 0.45),
    0 0 100px rgba(255, 209, 92, 0.25);
}

.compare-foot {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--ink-2); margin-top: var(--space-3); text-align: right;
}

/* ---------- MJU ---------- */
.mju {
  background: var(--bg-1);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
}
.mju-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: var(--space-7);
  align-items: stretch;
  margin-top: var(--space-5);
}
.mju-info { display: grid; gap: var(--space-4); }
.mju-info > .card { height: 100%; }
.mju-cta { display: flex; flex-direction: column; }
.mju-cta .calendly-inline-widget { flex: 1; min-height: 700px; }
.mju-info .meta { display: grid; gap: var(--space-3); }
.mju-info .meta-row {
  display: flex; align-items: flex-start; gap: var(--space-3);
  padding: var(--space-3) 0;
  border-bottom: 1px dashed var(--stroke-strong);
}
.mju-info .meta-row:last-child { border-bottom: 0; }
.mju-info .meta-row .label {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-2); width: 100px; flex-shrink: 0; font-weight: 600;
}
.mju-info .meta-row .val { font-size: 15px; color: var(--ink-0); }

.mju-steps {
  list-style: none; display: grid; gap: var(--space-3);
  counter-reset: step; margin-top: var(--space-3);
}
.mju-steps li {
  display: flex; align-items: flex-start; gap: var(--space-3);
  counter-increment: step; font-size: 15px; color: var(--ink-1);
}
.mju-steps li::before {
  content: counter(step);
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%; background: var(--pastel-yellow); color: #5A4500;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  display: grid; place-items: center;
}

.mju-cta {
  background: var(--bg-0);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
}
.mju-cta::before {
  content: "";
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  top: -100px; right: -80px;
  background: radial-gradient(circle, var(--pastel-orange-soft), transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}
/* Calendly: inline `style` on the widget div sets the height (Calendly's
   own widget.js requires that). We only style the chrome here. */
.calendly-inline-widget {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-1);
}

@media (max-width: 1024px) {
  .mju-grid { grid-template-columns: 1fr; }
}

/* ---------- INQUIRY FORM ---------- */
.inquiry .form-wrap {
  max-width: 720px;
  margin: var(--space-6) auto 0;
  background: var(--bg-1);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-5), 4vw, var(--space-7));
  box-shadow: var(--shadow-card);
  position: relative;
  z-index: 2;
}

.steps {
  display: flex; align-items: center; gap: var(--space-2);
  margin-bottom: var(--space-6);
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-2); font-weight: 600;
}
.steps .step {
  display: flex; align-items: center; gap: var(--space-2);
  flex: 1; position: relative;
}
.steps .step .num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg-2); border: 1px solid var(--stroke-strong);
  display: grid; place-items: center; font-size: 11px; color: var(--ink-2);
  flex-shrink: 0; font-weight: 700;
}
.steps .step.is-active .num { background: var(--ink-0); color: var(--bg-0); border-color: var(--ink-0); }
.steps .step.is-done .num { background: var(--pastel-orange); color: #1A0E08; border-color: var(--pastel-orange); }
.steps .step.is-active .label { color: var(--ink-0); }
.steps .step:not(:last-child)::after {
  content: ""; flex: 1; height: 1px; background: var(--stroke-strong);
  margin-inline: var(--space-2);
}
.steps .step.is-done:not(:last-child)::after { background: var(--pastel-orange); }
@media (max-width: 600px) {
  .steps .step .label { display: none; }
}

.step-panel { display: none; }
.step-panel.is-active { display: block; animation: fadeUp 320ms var(--ease-out); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-actions {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-3); margin-top: var(--space-5);
  padding-top: var(--space-5); border-top: 1px solid var(--stroke);
}

.banner {
  border-radius: var(--radius-md); padding: var(--space-4); font-size: 14px;
  margin-bottom: var(--space-4); display: none;
}
.banner.is-show { display: block; }
.banner.banner-error { background: rgba(232, 90, 90, 0.12); color: var(--danger); border: 1px solid rgba(232, 90, 90, 0.3); }

/* SUCCESS SCREEN — celebration */
.success-screen {
  text-align: center; display: none; padding: var(--space-7) 0; position: relative;
}
.success-screen.is-show { display: block; animation: popIn 600ms var(--ease-bounce); }
@keyframes popIn {
  0% { opacity: 0; transform: scale(0.5); }
  60% { opacity: 1; transform: scale(1.05); }
  100% { transform: scale(1); }
}
.success-screen .checkmark {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pastel-blue), var(--pastel-yellow), var(--pastel-orange));
  background-size: 200% 200%;
  color: #14141C;
  display: grid; place-items: center;
  margin: 0 auto var(--space-5);
  font-size: 50px; font-weight: 800;
  box-shadow: 0 16px 40px -10px rgba(255, 138, 76, 0.5);
  animation: gradShift 4s var(--ease-in-out) infinite, float 3s var(--ease-in-out) infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.success-screen h3 {
  margin-bottom: var(--space-3);
  font-size: 32px;
  font-family: var(--font-display); font-weight: 700;
}

/* MJU yes/no — conditional */
.if-mju { display: none; }
.if-mju.is-show {
  display: block !important;
  animation: fadeUp 320ms var(--ease-out);
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: var(--space-3); margin-top: var(--space-5); }
.faq-item {
  background: var(--bg-1); border: 1px solid var(--stroke);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: var(--space-4) var(--space-5);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); font-weight: 600; font-size: 16px; color: var(--ink-0);
  font-family: var(--font-sans);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono); font-size: 22px; color: var(--ink-2);
  transition: transform var(--dur-fast) var(--ease-out); line-height: 1; font-weight: 700;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--pastel-orange-deep); }
.faq-item .faq-body { padding: 0 var(--space-5) var(--space-5); color: var(--ink-1); font-size: 15px; max-width: 64ch; }

/* ---------- FOOTER ---------- */
.footer {
  border-top: 1px solid var(--stroke);
  padding-block: var(--space-7) var(--space-5);
  background: var(--bg-1);
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-5);
  margin-bottom: var(--space-6);
}
.footer-brand p { font-size: 14px; color: var(--ink-1); max-width: 32ch; margin-top: var(--space-3); }
.footer-col h4 {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-2); margin-bottom: var(--space-3); font-weight: 700;
}
.footer-col ul { list-style: none; display: grid; gap: var(--space-2); }
.footer-col a { color: var(--ink-1); font-size: 14px; }
.footer-col a:hover { color: var(--ink-0); }
.footer-bot {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); padding-top: var(--space-4);
  border-top: 1px solid var(--stroke);
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-2);
  letter-spacing: 0.04em; font-weight: 600;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bot { flex-direction: column; align-items: flex-start; }
}

/* ---------- FLOATING CTA ---------- */
.fab {
  position: fixed;
  bottom: var(--space-5); right: var(--space-5);
  z-index: 30;
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.fab.is-show { opacity: 1; transform: translateY(0); pointer-events: auto; }
@media (max-width: 640px) {
  .fab { left: var(--space-4); right: var(--space-4); bottom: var(--space-4); }
  .fab .btn { width: 100%; }
}

/* Headline highlight */
.headline-mark {
  display: inline-block; position: relative;
  font-style: italic; color: var(--pastel-orange-deep);
}
[data-theme="dark"] .headline-mark { color: var(--pastel-orange-soft); }
.headline-mark::after {
  content: ""; position: absolute;
  left: -2%; right: -2%; bottom: 8%; height: 22%;
  background: var(--pastel-yellow);
  z-index: -1;
  transform: skewX(-8deg);
  border-radius: 4px;
  opacity: 0.7;
}
[data-theme="dark"] .headline-mark::after { opacity: 0.3; }
