/* ============================================
   Ethereal Design System — Homepage Override
   Loaded after style.css, scoped to body.ethereal
   ============================================ */

/* ---- Tokens ---- */
body.ethereal {
  --eth-bg: #f8fafc;
  --eth-text: #1e293b;
  --eth-text-secondary: #64748b;
  --eth-text-muted: #94a3b8;
  --eth-accent: #10B981;
  --eth-accent-hover: #059669;
  --eth-glass-bg: rgba(255, 255, 255, 0.4);
  --eth-glass-border: rgba(255, 255, 255, 0.8);
  --eth-glass-blur: blur(40px);
  --eth-card-radius: 2rem;
  --eth-layout-radius: 3rem;
  --eth-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.05);
  --eth-shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.06);
  --eth-gradient: linear-gradient(135deg, #dbeafe 0%, #fef3c7 40%, #fce7f3 100%);
  --eth-font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Override base variables */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: #ffffff;
  --bg-card-hover: #f8fafc;
  --bg-elevated: #f1f5f9;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --green-primary: #10B981;
  --green-primary-hover: #059669;
  --border-color: #e2e8f0;
  --border-light: #cbd5e1;
  --nav-bg: rgba(248, 250, 252, 0.6);
}

/* ---- Base ---- */
body.ethereal {
  font-family: var(--eth-font);
  background: var(--eth-bg);
  color: var(--eth-text);
}

/* ---- Navigation ---- */
body.ethereal .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: none;
  padding: 0 1rem;
}

body.ethereal .nav.nav-solid {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

body.ethereal .nav-inner {
  transition: background 0.35s ease, border-radius 0.35s ease,
              box-shadow 0.35s ease, border-color 0.35s ease,
              padding 0.35s ease, max-width 0.35s ease;
  border: 1px solid transparent;
}

body.ethereal .nav.nav-solid .nav-inner {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
  max-width: 900px;
  margin: 0.5rem auto 0;
  padding: 0 1.25rem;
}

body.ethereal .nav-links a {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .nav-links a:hover {
  color: var(--eth-text);
}

body.ethereal .nav-dropdown-menu {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

body.ethereal .nav-dropdown-menu a {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .nav-dropdown-menu a:hover {
  background: #f1f5f9;
  color: var(--eth-text);
}

/* Hide theme toggle on homepage */
body.ethereal .theme-toggle {
  display: none !important;
}

/* Emerald primary button */
body.ethereal .btn-primary {
  background: var(--eth-accent);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
}

body.ethereal .btn-primary:hover {
  background: var(--eth-accent-hover);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

body.ethereal .btn-ghost {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .btn-ghost:hover {
  color: var(--eth-text);
}

body.ethereal .btn-secondary {
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  color: var(--eth-text);
}

body.ethereal .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--eth-glass-border);
  box-shadow: var(--eth-shadow-sm);
}

/* Mobile nav — lives inside the pill, inherits its glass look */
body.ethereal .nav-mobile-menu {
  background: transparent;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0;
  box-shadow: none;
  padding: 0.5rem 0;
  position: static;
}

/* Pill expands to contain the menu when open */
body.ethereal .nav .nav-inner.menu-open {
  border-radius: 1.25rem;
  height: auto;
  min-height: 64px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
}

body.ethereal .nav .nav-inner.menu-open .nav-mobile-menu {
  flex-basis: 100%;
}

body.ethereal .nav-mobile-menu a,
body.ethereal .nav-mobile-menu button {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .nav-mobile-menu a:hover,
body.ethereal .nav-mobile-menu button:hover {
  background: #f1f5f9;
  color: var(--eth-text);
}

body.ethereal .nav-mobile-menu .btn-primary {
  background: var(--eth-accent);
}

body.ethereal .nav-mobile-menu .btn-primary:hover {
  background: var(--eth-accent-hover);
}

body.ethereal .nav-mobile-toggle span {
  background: var(--eth-text);
}

/* ---- Hero (centered, Dia-inspired) ---- */
body.ethereal .hero {
  position: relative;
  background-color: #f8fafc;
  background-image:
    linear-gradient(180deg, transparent 0%, transparent 65%, #f8fafc 100%),
    radial-gradient(ellipse 70% 40% at 25% 40%, rgba(253, 230, 138, 0.5) 0%, transparent 100%),
    radial-gradient(ellipse 60% 35% at 75% 30%, rgba(249, 168, 212, 0.4) 0%, transparent 100%),
    radial-gradient(ellipse 50% 35% at 50% 55%, rgba(147, 197, 253, 0.3) 0%, transparent 100%);
  padding: 0;
  margin-top: -64px;
  padding-top: 64px;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

body.ethereal .hero::before,
body.ethereal .hero::after {
  display: none;
}

body.ethereal .hero > .container {
  max-width: 800px;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

body.ethereal .hero-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-template-columns: none;
  gap: 0;
}

body.ethereal .hero-content {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

body.ethereal .hero-badge {
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  box-shadow: var(--eth-shadow-sm);
  color: var(--eth-text-secondary);
  font-family: var(--eth-font);
  font-size: 11px;
  padding: 6px 14px;
  margin-bottom: 2rem;
}

body.ethereal .hero-title {
  font-family: var(--eth-font);
  font-weight: 300;
  letter-spacing: -0.05em;
  color: var(--eth-text);
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.15;
  max-width: 720px;
}

body.ethereal .hero-input {
  font-family: var(--eth-font);
  color: var(--eth-text);
  border-bottom: 2px solid #cbd5e1;
  caret-color: var(--eth-accent);
}

body.ethereal .hero-input:hover,
body.ethereal .hero-input:focus {
  border-bottom-color: var(--eth-accent);
}

body.ethereal .hero-title .highlight-green {
  background: var(--eth-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: none;
  font-weight: 400;
}

body.ethereal .hero-subtitle {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  max-width: 560px;
  line-height: 1.6;
}

body.ethereal .hero-cta {
  margin-top: 2rem;
  justify-content: center;
}

body.ethereal .hero-cta .btn-glow {
  background: var(--eth-accent);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
  font-family: var(--eth-font);
}

body.ethereal .hero-cta .btn-glow:hover {
  background: var(--eth-accent-hover);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

body.ethereal .hero-cta .btn-secondary {
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  color: var(--eth-text);
  box-shadow: var(--eth-shadow-sm);
}

body.ethereal .hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.7);
}

body.ethereal .hero-image {
  display: none;
}

/* ---- Hero scroll arrow ---- */
body.ethereal .hero-scroll-arrow {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
  color: #64748b;
  opacity: 0.8;
  animation: heroArrowBounce 2s ease-in-out infinite;
  transition: opacity 0.4s ease, background 0.3s ease;
  text-decoration: none;
  line-height: 1;
}

body.ethereal .hero-scroll-arrow svg {
  width: 20px;
  height: 20px;
}

body.ethereal .hero-scroll-arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.9);
}

body.ethereal .hero-scroll-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes heroArrowBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  body.ethereal .hero-scroll-arrow {
    animation: none;
  }
}

/* ---- Use Cases ---- */
body.ethereal .use-cases-grid {
  gap: 2rem;
}

body.ethereal .use-case-card .step-visual {
  background: var(--eth-glass-bg) !important;
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  border-radius: var(--eth-card-radius);
  box-shadow: var(--eth-shadow-sm);
}

body.ethereal .use-case-card .step-content {
  font-family: var(--eth-font);
}

body.ethereal .step-title {
  font-family: var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .step-desc {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .cv-heading {
  font-weight: 600;
  letter-spacing: -0.05em;
}

/* Rotating accent word — static green by default, rainbow only during reveal */
body.ethereal .cv-heading-accent {
  display: inline-block;
  color: #10B981;
}

/* Rainbow reveal animation — applied only while transitioning in */
body.ethereal .cv-heading-accent.cv-word-enter {
  background: linear-gradient(90deg, #f87171, #fb923c, #facc15, #4ade80, #60a5fa, #a78bfa, #f472b6);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: wordReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes wordReveal {
  0% {
    clip-path: inset(0 100% 0 0);
    -webkit-text-fill-color: transparent;
  }
  60% {
    clip-path: inset(0 0% 0 0);
    -webkit-text-fill-color: transparent;
  }
  100% {
    clip-path: inset(0 0% 0 0);
    -webkit-text-fill-color: #10B981;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.ethereal .cv-heading-accent.cv-word-enter {
    animation: none;
    clip-path: none;
    -webkit-text-fill-color: #10B981;
  }
}

body.ethereal .metric-bubble {
  color: var(--eth-accent);
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  font-family: var(--eth-font);
}

body.ethereal .use-case-docs-link {
  font-family: var(--eth-font);
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  color: var(--eth-text);
}

body.ethereal .use-case-docs-link:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* Lighter iPhone frames */
body.ethereal .iphone-frame {
  border-color: #cbd5e1;
  background: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 4px 16px rgba(0, 0, 0, 0.06);
}

body.ethereal .iphone-frame.iphone-mid {
  box-shadow:
    inset 1px 0 0 0 rgba(255, 255, 255, 0.5),
    inset -1px 0 0 0 rgba(255, 255, 255, 0.5);
}

body.ethereal .tipkit-card {
  background: #ffffff;
  border-color: #e2e8f0;
}

body.ethereal .tipkit-btn {
  background: var(--eth-accent);
}

body.ethereal .signup-web-btn {
  background: var(--eth-accent);
}

body.ethereal .sheet-panel {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 60%, transparent 100%), #ffffff;
  border-top-color: rgba(16, 185, 129, 0.2);
}

body.ethereal .cancel-option-highlight {
  border-color: rgba(16, 185, 129, 0.35);
  background: rgba(16, 185, 129, 0.06);
}

body.ethereal .sheet-secured {
  color: var(--eth-accent);
}

body.ethereal .sheet-secured svg {
  color: var(--eth-accent);
}

/* A/B testing note below use cases */
body.ethereal #use-cases .section-subtitle,
body.ethereal .section-title,
body.ethereal .section-subtitle {
  font-family: var(--eth-font);
}

body.ethereal .section-title {
  color: var(--eth-text);
  font-weight: 600;
  letter-spacing: -0.05em;
}

body.ethereal .section-subtitle {
  color: var(--eth-text-secondary);
}

/* ---- Calculator ---- */
body.ethereal .calculator-section {
  font-family: var(--eth-font);
}

body.ethereal .billing-mode-toggle {
  background: #f1f5f9;
  border: none;
  border-bottom: none;
  border-radius: 12px;
  padding: 4px;
  gap: 4px;
  display: inline-flex;
  margin: var(--space-6) auto var(--space-2);
}

body.ethereal .mode-toggle-btn {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
  border: none;
  border-bottom: none;
  border-radius: 9px;
  padding: 8px 20px;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  transition: all 0.25s ease;
}

body.ethereal .mode-toggle-btn:hover {
  color: var(--eth-text);
  background: rgba(255, 255, 255, 0.5);
}

body.ethereal .mode-toggle-btn.active {
  color: var(--eth-text);
  background: #ffffff;
  border: none;
  border-bottom: none;
  box-shadow: none;
}

body.ethereal .mode-toggle-btn[data-mode="founding"].active {
  border-bottom: none;
  border-bottom-color: transparent;
}

body.ethereal .billing-mode-blurb {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .calc-input-label {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .calc-arr-input {
  font-family: var(--eth-font);
  background: #ffffff;
  border-color: #e2e8f0;
  color: var(--eth-text);
  border-radius: 1rem;
}

body.ethereal .calc-arr-input:focus {
  border-color: rgba(16, 185, 129, 0.5);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

body.ethereal .calc-dollar {
  color: var(--eth-text-secondary);
}

body.ethereal .calc-preset {
  font-family: var(--eth-font);
  background: #ffffff;
  border-color: #e2e8f0;
  color: var(--eth-text-secondary);
  border-radius: 0.5rem;
}

body.ethereal .calc-preset:hover {
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--eth-text);
}

body.ethereal .calc-preset.active {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--eth-text);
}

body.ethereal .calc-option-label {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .calc-opt-btn {
  font-family: var(--eth-font);
  background: #ffffff;
  border-color: #e2e8f0;
  color: var(--eth-text-secondary);
}

body.ethereal .calc-opt-btn:hover {
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--eth-text);
}

body.ethereal .calc-opt-btn.active {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.4);
  color: var(--eth-text);
}

/* Glass results card with pastel gradient */
body.ethereal .calc-visual {
  background-color: #fefcf6;
  background-image:
    radial-gradient(ellipse 70% 60% at 30% 40%, rgba(253, 230, 138, 0.5) 0%, transparent 100%),
    radial-gradient(ellipse 60% 55% at 75% 65%, rgba(249, 168, 212, 0.4) 0%, transparent 100%),
    radial-gradient(ellipse 50% 50% at 55% 25%, rgba(253, 186, 116, 0.35) 0%, transparent 100%);
  border: none;
  border-radius: var(--eth-layout-radius);
  box-shadow: var(--eth-shadow);
  padding: 2.5rem;
}

body.ethereal .calc-results {
  font-family: var(--eth-font);
}

body.ethereal .calc-hero-label {
  color: var(--eth-text-muted);
  font-family: var(--eth-font);
}

body.ethereal .calc-hero-value {
  color: var(--eth-accent);
  font-family: var(--eth-font);
}

body.ethereal .calc-hero-sub {
  color: var(--eth-text-muted);
  font-family: var(--eth-font);
}

body.ethereal .calc-margin-increase {
  color: var(--eth-accent);
  background: rgba(16, 185, 129, 0.1);
  font-family: var(--eth-font);
}

body.ethereal .calc-bar {
  background: rgba(255, 255, 255, 0.5);
}

body.ethereal .calc-bar-fill {
  background: linear-gradient(90deg, #10B981, #059669);
}

body.ethereal .calc-bar-percent {
  color: var(--eth-accent);
}

body.ethereal .calc-bar-label {
  color: var(--eth-text-secondary);
  font-family: var(--eth-font);
}

body.ethereal .calc-compare {
  border-top-color: rgba(255, 255, 255, 0.5);
}

body.ethereal .calc-compare-label {
  color: var(--eth-text-muted);
  font-family: var(--eth-font);
}

body.ethereal .calc-compare-apple {
  color: #94a3b8;
  text-decoration-color: rgba(148, 163, 184, 0.5);
}

body.ethereal .calc-compare-zs {
  color: var(--eth-accent);
}

body.ethereal .calc-full-link {
  font-family: var(--eth-font);
  color: var(--eth-accent);
}

body.ethereal .calc-full-link:hover {
  color: var(--eth-accent-hover);
}

body.ethereal .info-icon-small {
  color: var(--eth-text-muted);
}

body.ethereal .tooltip-text {
  background: #ffffff;
  border-color: #e2e8f0;
  color: var(--eth-text-secondary);
  font-family: var(--eth-font);
}

/* ---- Comparison / Pricing ---- */
body.ethereal .comparison-card.dark {
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  box-shadow: var(--eth-shadow-sm);
}

body.ethereal .comparison-card.dark .comparison-value {
  color: #94a3b8;
}

body.ethereal .comparison-card.dark .comparison-label,
body.ethereal .comparison-card.dark .comparison-desc {
  font-family: var(--eth-font);
}

body.ethereal .comparison-card.green {
  background-color: #f6faf8;
  background-image:
    radial-gradient(ellipse 70% 60% at 25% 45%, rgba(110, 231, 183, 0.4) 0%, transparent 100%),
    radial-gradient(ellipse 60% 55% at 75% 55%, rgba(147, 197, 253, 0.35) 0%, transparent 100%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--eth-shadow);
}

body.ethereal .comparison-card.green .comparison-value {
  color: var(--eth-accent);
}

body.ethereal .comparison-card.green .comparison-label,
body.ethereal .comparison-card.green .comparison-desc {
  font-family: var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .comparison-value {
  font-family: var(--eth-font);
}

body.ethereal .comparison-desc {
  font-family: var(--eth-font);
}

body.ethereal .strikethrough::after {
  background: #94a3b8;
}

/* Founding partner */
body.ethereal .founding-content .comparison-card.green {
  background-color: #faf8fc;
  background-image:
    radial-gradient(ellipse 65% 55% at 30% 45%, rgba(196, 181, 253, 0.45) 0%, transparent 100%),
    radial-gradient(ellipse 55% 50% at 70% 55%, rgba(249, 168, 212, 0.35) 0%, transparent 100%);
  border-color: rgba(255, 255, 255, 0.6);
}

body.ethereal .founding-perk {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .founding-perk-icon {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--eth-accent);
}

body.ethereal .founding-spots {
  font-family: var(--eth-font);
  color: var(--eth-text-muted);
}

body.ethereal .btn-white {
  font-family: var(--eth-font);
}

/* ---- How It Works ---- */
body.ethereal .steps-grid {
  gap: 2rem;
}

body.ethereal .step-card .step-visual {
  background: var(--eth-glass-bg) !important;
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  border-radius: var(--eth-card-radius);
  box-shadow: var(--eth-shadow-sm);
}

body.ethereal .step-number {
  color: var(--eth-accent);
}

/* Mockup cards */
body.ethereal .code-mockup,
body.ethereal .dashboard-mockup,
body.ethereal .checkout-card,
body.ethereal .payout-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

body.ethereal .code-string {
  color: var(--eth-accent);
}

body.ethereal .mock-sync-badge {
  color: var(--eth-accent);
  background: rgba(16, 185, 129, 0.1);
}

body.ethereal .mock-value {
  color: var(--eth-accent);
}

body.ethereal .checkout-btn {
  background: var(--eth-accent);
}

body.ethereal .payout-header {
  color: var(--eth-accent);
}

body.ethereal .payout-icon {
  background: rgba(16, 185, 129, 0.15);
}

/* ---- Billing Modes ---- */
body.ethereal .mor-card {
  background: var(--eth-glass-bg) !important;
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  border-radius: var(--eth-card-radius);
  box-shadow: var(--eth-shadow-sm);
}

body.ethereal .mor-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--eth-accent);
  border-radius: 1rem;
}

body.ethereal .mor-title {
  font-family: var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .mor-desc {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .billing-mode-panel .section-subtitle {
  font-family: var(--eth-font);
}

/* ---- FAQ ---- */
body.ethereal .faq-list {
  font-family: var(--eth-font);
}

body.ethereal .faq-item {
  border-bottom-color: #e2e8f0;
}

body.ethereal .faq-item:first-child {
  border-top-color: #e2e8f0;
}

body.ethereal .faq-question {
  font-family: var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .faq-question:hover {
  color: var(--eth-accent);
}

body.ethereal .faq-chevron {
  color: var(--eth-text-muted);
}

body.ethereal .faq-answer p {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .faq-answer strong {
  color: var(--eth-text);
}

body.ethereal .faq-answer a {
  color: var(--eth-accent);
}

body.ethereal .faq-answer a:hover {
  color: var(--eth-accent-hover);
}

/* ---- CTA (full-bleed gradient) ---- */
body.ethereal .cta-section {
  padding: 0;
  background-color: #f8fafc;
  background-image:
    linear-gradient(180deg, #f8fafc 0%, transparent 25%, transparent 75%, #f8fafc 100%),
    radial-gradient(ellipse 65% 45% at 35% 45%, rgba(249, 168, 212, 0.4) 0%, transparent 100%),
    radial-gradient(ellipse 55% 40% at 70% 55%, rgba(147, 197, 253, 0.35) 0%, transparent 100%);
}

body.ethereal .cta-section > .container {
  background: transparent;
  border-radius: 0;
  padding: 12rem 2rem;
  box-shadow: none;
  max-width: 720px;
}

body.ethereal .cta-card {
  padding: 0;
}

body.ethereal .cta-title {
  font-family: var(--eth-font);
  font-weight: 300;
  letter-spacing: -0.05em;
  color: var(--eth-text);
  font-size: clamp(28px, 4vw, 48px);
  margin-bottom: 1.5rem;
}

body.ethereal .cta-desc {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
  font-size: clamp(16px, 2vw, 20px);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

body.ethereal .cta-buttons .btn-primary {
  background: var(--eth-accent);
  box-shadow: 0 2px 12px rgba(16, 185, 129, 0.25);
}

body.ethereal .cta-buttons .btn-primary:hover {
  background: var(--eth-accent-hover);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

body.ethereal .cta-buttons .btn-secondary {
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  color: var(--eth-text);
}

body.ethereal .cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.7);
}

/* ---- Footer ---- */
body.ethereal .footer {
  font-family: var(--eth-font);
  border-top: none;
}

body.ethereal .footer-logo {
  font-family: 'Söhne', var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .footer-tagline {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .footer-column h4 {
  font-family: var(--eth-font);
  color: var(--eth-text-muted);
}

body.ethereal .footer-column a {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .footer-column a:hover {
  color: var(--eth-text);
}

body.ethereal .footer-bottom {
  border-top-color: #e2e8f0;
  color: var(--eth-text-muted);
  font-family: var(--eth-font);
}

/* ---- Modal ---- */
body.ethereal .modal-overlay {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.ethereal .modal {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--eth-glass-border);
  border-radius: var(--eth-card-radius);
  box-shadow: var(--eth-shadow);
}

body.ethereal .modal-title {
  font-family: var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .modal-title span {
  color: var(--eth-accent);
}

body.ethereal .modal-desc {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .modal-close {
  color: var(--eth-text-muted);
}

body.ethereal .modal-close:hover {
  color: var(--eth-text);
}

body.ethereal .modal-form input,
body.ethereal .modal-form textarea {
  font-family: var(--eth-font);
  background: rgba(255, 255, 255, 0.6);
  border-color: #e2e8f0;
  color: var(--eth-text);
}

body.ethereal .modal-form input:focus,
body.ethereal .modal-form textarea:focus {
  border-color: var(--eth-accent);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

body.ethereal .modal-form input::placeholder,
body.ethereal .modal-form textarea::placeholder {
  color: var(--eth-text-muted);
}

body.ethereal .modal-form .btn {
  background: var(--eth-accent);
}

body.ethereal .modal-form .btn:hover {
  background: var(--eth-accent-hover);
}

/* ---- Section-level overrides ---- */
/* Remove all flowing gradient backgrounds from sections */
body.ethereal .section > .container,
body.ethereal .section:nth-child(6n+1) > .container,
body.ethereal .section:nth-child(6n+2) > .container,
body.ethereal .section:nth-child(6n+3) > .container,
body.ethereal .section:nth-child(6n+4) > .container,
body.ethereal .section:nth-child(6n+5) > .container,
body.ethereal .section:nth-child(6n+6) > .container {
  background: transparent !important;
}

body.ethereal .section-label {
  color: var(--eth-accent);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: none;
}

/* Section no-card padding */
body.ethereal .section-no-card {
  padding: 80px 1rem;
}

/* Form success */
body.ethereal .form-success {
  color: var(--eth-accent);
  background: rgba(16, 185, 129, 0.08);
  border-color: var(--eth-accent);
}

/* Mock button green refs */
body.ethereal .mock-btn {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--eth-accent);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  body.ethereal .hero {
    min-height: auto;
    padding-top: calc(64px + 2rem);
    padding-bottom: 2rem;
    background-image:
      linear-gradient(180deg, transparent 0%, transparent 40%, #f8fafc 85%),
      radial-gradient(ellipse 70% 40% at 25% 40%, rgba(253, 230, 138, 0.5) 0%, transparent 100%),
      radial-gradient(ellipse 60% 35% at 75% 30%, rgba(249, 168, 212, 0.4) 0%, transparent 100%),
      radial-gradient(ellipse 50% 35% at 50% 55%, rgba(147, 197, 253, 0.3) 0%, transparent 100%);
  }

  body.ethereal .hero > .container {
    padding-top: 1.5rem;
    padding-bottom: 1rem;
  }

  body.ethereal .hero-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  body.ethereal .hero-subtitle {
    font-size: 16px;
  }

  body.ethereal .section-no-card {
    padding: 56px 0.5rem;
  }

  body.ethereal .cta-section > .container {
    padding: 4rem 1.5rem;
  }

  body.ethereal .calc-visual {
    border-radius: 2rem;
    padding: 1.5rem;
  }

  body.ethereal .mor-card {
    border-radius: 1.5rem !important;
  }

  body.ethereal .use-case-card .step-visual,
  body.ethereal .step-card .step-visual {
    border-radius: 1.5rem;
  }

  body.ethereal .modal {
    border-radius: 1.5rem;
  }

  /* On mobile, keep nav full-width pill with tighter radius for mobile menu compat */
  body.ethereal .nav.nav-solid .nav-inner {
    border-radius: 1.25rem;
    max-width: 100%;
    margin-top: 0.35rem;
    padding: 0 1rem;
  }

  body.ethereal .billing-mode-toggle {
    border-radius: 10px;
    padding: 3px;
    gap: 2px;
    display: flex;
    width: 100%;
    max-width: 100%;
  }

  body.ethereal .mode-toggle-btn {
    padding: 6px 8px;
    font-size: 0.7rem;
    border-radius: 8px;
    flex: 1 1 0;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* Hide scroll arrow on mobile — hero is short, no need */
  body.ethereal .hero-scroll-arrow {
    display: none;
  }

  /* Calculator: ensure content doesn't overflow on mobile */
  body.ethereal .calculator-section .container {
    padding: 0 1rem;
    overflow: hidden;
  }

  body.ethereal .calc-layout {
    overflow: hidden;
  }

  body.ethereal .calc-visual {
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  body.ethereal .calc-arr-input {
    box-sizing: border-box;
    max-width: 100%;
  }

  body.ethereal .calc-presets {
    flex-wrap: wrap;
    justify-content: center;
  }

  body.ethereal .calc-preset {
    flex: 0 0 auto;
    padding: 0.4rem 0.65rem;
    font-size: 0.75rem;
  }

  body.ethereal .calc-option-btns {
    flex-wrap: wrap;
    justify-content: center;
  }

  body.ethereal .calc-opt-btn {
    flex: 0 0 auto;
    padding: 0.4rem 0.65rem;
    font-size: 0.8rem;
  }

}

@media (max-width: 640px) {
  body.ethereal .cta-section > .container {
    padding: 3rem 1.25rem;
  }

  body.ethereal .calc-visual {
    border-radius: 1.5rem;
  }
}

@media (max-width: 900px) {
  body.ethereal .calc-visual {
    padding: 2rem;
  }
}

/* ---- Use Cases Carousel ---- */
body.ethereal .uc-carousel {
  max-width: 960px;
  margin: 0 auto;
}

body.ethereal .uc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

body.ethereal .uc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: var(--eth-text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

body.ethereal .uc-arrow:hover {
  border-color: var(--eth-accent);
  color: var(--eth-accent);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.15);
}

body.ethereal .uc-dots {
  display: flex;
  gap: 8px;
}

body.ethereal .uc-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  border: none;
  background: #cbd5e1;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
  transition: width 0.35s ease, background 0.35s ease;
}

body.ethereal .uc-dot-active {
  width: 32px;
  background: #e2e8f0;
  transform: none;
}

body.ethereal .uc-dot-active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--eth-accent);
  border-radius: 9999px;
  animation: dotFill 6s linear forwards;
}

body.ethereal .uc-paused .uc-dot-active::after {
  animation-play-state: paused;
}

body.ethereal .uc-showcase {
  background-color: #f6f8fc;
  background-image:
    radial-gradient(ellipse 65% 55% at 20% 50%, rgba(147, 197, 253, 0.45) 0%, transparent 100%),
    radial-gradient(ellipse 55% 50% at 80% 30%, rgba(196, 181, 253, 0.4) 0%, transparent 100%),
    radial-gradient(ellipse 50% 55% at 55% 80%, rgba(249, 168, 212, 0.3) 0%, transparent 100%);
  border-radius: var(--eth-layout-radius);
  padding: 3rem;
  box-shadow: var(--eth-shadow);
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

body.ethereal .uc-slides {
  position: relative;
  width: 100%;
  min-height: 360px;
}

body.ethereal .uc-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

body.ethereal .uc-slide-active {
  opacity: 1;
  visibility: visible;
}

body.ethereal .uc-slide-visual {
  flex: 0 0 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem 0;
}

body.ethereal .uc-slide-visual .step-mockup {
  max-width: 240px;
  width: 100%;
}

body.ethereal .uc-screenshot {
  max-width: 230px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
}

body.ethereal .uc-screenshot img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: bottom;
  height: 420px;
}

body.ethereal .uc-slide-content {
  flex: 1;
  min-width: 0;
}

body.ethereal .uc-slide-content .step-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

body.ethereal .uc-slide-content .step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1rem 0;
}

body.ethereal .uc-slide-content .metric-bubbles {
  justify-content: center;
}

body.ethereal .uc-slide-content .use-case-docs-link {
  margin-top: 1rem;
}

/* ---- How It Works Stepper ---- */
body.ethereal .hiw-stepper {
  max-width: 800px;
  margin: 0 auto;
}

body.ethereal .hiw-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0 2rem;
  margin-bottom: 0.75rem;
}

body.ethereal .hiw-progress {
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: #e2e8f0;
  transform: translateY(-50%);
  border-radius: 2px;
  z-index: 0;
}

body.ethereal .hiw-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--eth-accent);
  border-radius: 2px;
  transition: width 0.5s ease;
}

body.ethereal .hiw-step-dot {
  position: relative;
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  background: #ffffff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

body.ethereal .hiw-step-num {
  font-family: var(--eth-font);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--eth-text-muted);
  transition: color 0.3s ease;
}

body.ethereal .hiw-step-dot-active {
  border-color: var(--eth-accent);
  background: var(--eth-accent);
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

body.ethereal .hiw-step-dot-active .hiw-step-num {
  color: #ffffff;
}

body.ethereal .hiw-step-dot-completed {
  border-color: var(--eth-accent);
  background: var(--eth-accent);
}

body.ethereal .hiw-step-dot-completed .hiw-step-num {
  color: #ffffff;
}

body.ethereal .hiw-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  margin-bottom: 2.5rem;
}

body.ethereal .hiw-label {
  font-family: var(--eth-font);
  font-size: 0.8rem;
  color: var(--eth-text-muted);
  text-align: center;
  width: 40px;
  overflow: visible;
  white-space: nowrap;
  transition: color 0.3s ease;
}

body.ethereal .hiw-label-active {
  color: var(--eth-accent);
  font-weight: 500;
}

body.ethereal .hiw-panels {
  position: relative;
  min-height: 300px;
}

body.ethereal .hiw-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.5s ease, visibility 0.5s ease, transform 0.5s ease;
}

body.ethereal .hiw-panel-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

body.ethereal .hiw-panel-visual {
  flex: 0 0 45%;
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  border-radius: var(--eth-card-radius);
  box-shadow: var(--eth-shadow-sm);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.ethereal .hiw-panel-text {
  flex: 1;
  padding-top: 1rem;
}

body.ethereal .hiw-panel-text .step-title {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

body.ethereal .hiw-panel-text .step-desc {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- Conversion Carousel screenshots ---- */
body.ethereal .cv-screenshot {
  max-width: 230px;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
}

body.ethereal .cv-screenshot img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: bottom;
  height: 420px;
}

body.ethereal .cv-dashboard-screenshot {
  max-width: 640px;
  width: 90%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.08),
    0 1px 4px rgba(0, 0, 0, 0.04);
  margin: 0 auto;
}

body.ethereal .cv-dashboard-screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ---- Conversion Carousel dot progress ---- */
body.ethereal .cv-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: #cbd5e1;
  position: relative;
  overflow: hidden;
  transition: width 0.35s ease, background 0.35s ease;
}

body.ethereal .cv-dot-active {
  width: 32px;
  background: #e2e8f0;
}

body.ethereal .cv-dot-active::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--eth-accent);
  border-radius: 9999px;
  animation: dotFill 5s linear forwards;
}

body.ethereal .cv-paused .cv-dot-active::after {
  animation-play-state: paused;
}

/* ---- Dot Fill Animation ---- */
@keyframes dotFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ---- Gradient Drift ---- */
@keyframes gradientDrift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ---- Pop-in Animation ---- */
@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }
  70% {
    transform: scale(1.03);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

body.ethereal .pop-in {
  animation: popIn 350ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {

  body.ethereal .cv-dot-active::after,
  body.ethereal .uc-dot-active::after {
    animation: none;
    width: 100%;
  }
}

/* ---- Responsive: New Components ---- */
@media (max-width: 768px) {
  body.ethereal .uc-showcase {
    padding: 2rem 1.5rem;
    border-radius: 2rem;
    min-height: auto;
  }

  body.ethereal .uc-slides {
    min-height: auto;
  }

  body.ethereal .uc-slide {
    flex-direction: column;
    position: relative;
    gap: 1.5rem;
    display: none;
  }

  body.ethereal .uc-slide-active {
    display: flex;
  }

  body.ethereal .uc-slide-visual {
    flex: none;
    width: 100%;
  }

  body.ethereal .uc-slide-visual .step-mockup {
    max-width: 200px;
    margin: 0 auto;
  }

  body.ethereal .uc-slide-content {
    text-align: center;
  }

  body.ethereal .uc-slide-content .step-title {
    font-size: 1.25rem;
  }

  body.ethereal .hiw-timeline {
    padding: 0 1rem;
  }

  body.ethereal .hiw-step-dot {
    width: 32px;
    height: 32px;
  }

  body.ethereal .hiw-step-num {
    font-size: 0.75rem;
  }

  body.ethereal .hiw-labels {
    display: none;
  }

  body.ethereal .hiw-panel {
    flex-direction: column;
    position: relative;
    gap: 1.5rem;
    display: none;
  }

  body.ethereal .hiw-panel-active {
    display: flex;
  }

  body.ethereal .hiw-panel-visual {
    flex: none;
    width: 100%;
    padding: 1.5rem;
  }

  body.ethereal .hiw-panels {
    min-height: auto;
  }

  /* Conversion carousel: scale images for mobile */
  body.ethereal .cv-screenshot {
    max-width: 180px;
  }

  body.ethereal .cv-screenshot img {
    height: 320px;
  }

  body.ethereal .cv-dashboard-screenshot {
    max-width: 100%;
    width: 100%;
  }

  /* UC carousel: scale screenshot for mobile */
  body.ethereal .uc-screenshot {
    max-width: 180px;
  }

  body.ethereal .uc-screenshot img {
    height: 320px;
  }
}

/* ============================================
   Subpage Components
   ============================================ */

/* Hero — clean bg, no gradient overlay */
body.ethereal .subpage-hero {
  background: var(--eth-bg);
}

body.ethereal .subpage-hero::after {
  display: none;
}

/* Badge — emerald tinted pill */
body.ethereal .subpage-badge {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--eth-accent);
  font-family: var(--eth-font);
}

/* Cards — glassmorphism */
body.ethereal .sp-card {
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  border-radius: var(--eth-card-radius);
  box-shadow: var(--eth-shadow-sm);
}

body.ethereal .sp-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
}

body.ethereal .sp-card h4 {
  font-family: var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .sp-card p {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .sp-card-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--eth-accent);
}

/* Compare columns — same glass treatment */
body.ethereal .sp-compare-col {
  background: var(--eth-glass-bg);
  border: 1px solid var(--eth-glass-border);
  backdrop-filter: var(--eth-glass-blur);
  -webkit-backdrop-filter: var(--eth-glass-blur);
  border-radius: var(--eth-card-radius);
  box-shadow: var(--eth-shadow-sm);
}

body.ethereal .sp-compare-col h4 {
  font-family: var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .sp-compare-col.highlight {
  background: rgba(16, 185, 129, 0.06);
  border-color: rgba(16, 185, 129, 0.25);
}

body.ethereal .sp-compare-col.highlight ul li::before {
  color: var(--eth-accent);
}

/* Flow steps */
body.ethereal .flow-step-icon {
  background: rgba(16, 185, 129, 0.1);
  color: var(--eth-accent);
}

body.ethereal .flow-step-label {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

body.ethereal .flow-arrow {
  color: var(--eth-text-muted);
}

/* BYOS setup steps */
body.ethereal .setup-step-number {
  background: var(--eth-accent);
}

body.ethereal .setup-step-title {
  font-family: var(--eth-font);
  color: var(--eth-text);
}

body.ethereal .setup-step-body {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

/* Callout boxes */
body.ethereal .callout-box {
  border-radius: 1rem;
  font-family: var(--eth-font);
}

/* Guide sections */
body.ethereal .guide-section {
  font-family: var(--eth-font);
}

/* Checklist items */
body.ethereal .checklist label {
  font-family: var(--eth-font);
  color: var(--eth-text-secondary);
}

/* Worth the Squeeze page overrides */
body.ethereal .squeeze-page {
  font-family: var(--eth-font);
}
