/* ==========================================================================
   Praxismanager Unterseite – Eigenständiges CSS
   ========================================================================== */

/* ==========================================================================
   0. Ecosystem ausgeblendet (Diagramm jetzt auf der Startseite)
      !important nötig, da scroll-expand.js inline-styles setzt
   ========================================================================== */
.pm-cosmos-reveal,
.pm-eco-mobile { display: none !important; }

/* Collapse scroll-expand container, full viewport hero */
.pm-scroll-container { min-height: auto !important; }
.pm-scroll-sticky {
  position: relative !important;
  min-height: calc(100svh - 80px) !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 24px !important;
  overflow: visible !important;
}

/* Override JS inline opacity/transform on hero */
.pm-hero-centered {
  opacity: 1 !important;
  transform: none !important;
  pointer-events: auto !important;
}

.pm-hero-float { display: none !important; }

/* ==========================================================================
   1. Custom Properties (eigenständig, kein V2-Import nötig)
   ========================================================================== */
/* Remove top gap to prevent scroll-up on page load */
#page-container { padding-top: 0 !important; }

/* Sticky header on all breakpoints */
#main-header, #top-header {
  position: sticky !important;
  top: 0;
  z-index: 9999;
  background: rgba(250,250,248,0.85) !important;
}

/* Desktop nav fix (>980px only) */
@media (min-width: 981px) {
  #et-top-navigation { padding-top: 13px !important; }
}
.pm-page {
  --pm-gold: #BFA762;
  --pm-gold-dark: #a8924f;
  --pm-gold-light: #d4c48e;
  --pm-gold-bg: rgba(191,167,98,0.08);
  --pm-gold-glow: rgba(191,167,98,0.25);
  --pm-gold-gradient: linear-gradient(135deg, #BFA762, #a8924f);
  --pm-dark: #484848;
  --pm-text: #484848;
  --pm-muted: #9C9B92;
  --pm-bg: #FAFAF8;
  --pm-white: #FFFFFF;
  --pm-card-bg: rgba(255,255,255,0.7);
  --pm-border: rgba(0,0,0,0.06);
  --pm-radius: 20px;
  --pm-radius-sm: 14px;
  --pm-ease: cubic-bezier(0.4, 0, 0.2, 1);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--pm-text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: var(--pm-bg);
}

.pm-page *, .pm-page *::before, .pm-page *::after {
  box-sizing: border-box;
}

/* ==========================================================================
   2. Shared Components
   ========================================================================== */
.pm-section {
  position: relative;
  padding: 50px 0;
}

.pm-container {
  width: min(92%, 1200px);
  margin: 0 auto;
}

/* Badge */
.pm-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: var(--pm-gold-bg);
  border: 1px solid var(--pm-gold-glow);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pm-gold-dark);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 24px;
}

.pm-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pm-gold);
  animation: pm-pulse-dot 2s ease infinite;
}

@keyframes pm-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

/* Typography */
.pm-heading {
  font-family: "Montserrat", "Inter", sans-serif !important;
  color: var(--pm-dark);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
}

.pm-h1 { font-size: clamp(44px, 5.5vw, 76px); font-weight: 600; }
.pm-h2 { font-size: clamp(34px, 3.8vw, 52px); font-weight: 600; }
.pm-h3 { font-size: clamp(20px, 2vw, 26px); font-weight: 600; }

.pm-heading em {
  font-style: normal;
  background: var(--pm-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pm-sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--pm-muted);
  max-width: 560px;
}

/* Buttons */
.pm-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 36px;
  border-radius: 100px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.4s var(--pm-ease), box-shadow 0.4s var(--pm-ease);
  position: relative;
  overflow: hidden;
}

.pm-btn:hover { transform: translateY(-2px); }
.pm-btn:active { transform: translateY(0) scale(0.97); }

.pm-btn-primary {
  background: var(--pm-gold-gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(191,167,98,0.3);
}

.pm-btn-primary:hover {
  box-shadow: 0 8px 40px rgba(191,167,98,0.45);
  color: #fff;
}

.pm-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: pm-btn-shimmer 3s ease infinite;
}

@keyframes pm-btn-shimmer {
  0% { left: -100%; }
  50%, 100% { left: 100%; }
}

.pm-btn-ghost {
  background: rgba(255,255,255,0.6);
  color: var(--pm-dark);
  border: 1.5px solid var(--pm-border);
  backdrop-filter: blur(12px);
}

.pm-btn-ghost:hover {
  border-color: var(--pm-gold);
  box-shadow: 0 4px 20px rgba(191,167,98,0.12);
  color: var(--pm-dark);
  background: rgba(255,255,255,0.9);
}

.pm-btn-arrow {
  display: inline-block;
  transition: transform 0.3s var(--pm-ease);
}

.pm-btn:hover .pm-btn-arrow {
  transform: translateX(4px);
}

/* Reveal animation */
.pm-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--pm-ease), transform 0.8s var(--pm-ease);
}

.pm-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   3. Hero – Split Layout
   ========================================================================== */
.pm-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%,
      rgba(191,167,98,0.18) 0%,
      rgba(212,196,142,0.10) 40%,
      var(--pm-bg) 100%);
  background-size: 200% 200%;
  animation: pm-hero-bg 20s ease infinite;
}

@keyframes pm-hero-bg {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pm-hero-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.pm-hero-label {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--pm-gold);
  margin: 0 0 20px;
}

.pm-hero-title {
  font-family: "Montserrat", sans-serif !important;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--pm-dark);
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.pm-hero-desc {
  font-family: "Inter", sans-serif !important;
  font-size: 18px;
  line-height: 1.7;
  color: var(--pm-muted);
  margin: 0 0 36px;
  max-width: 580px;
}

.pm-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Orbit Ecosystem */
.pm-hero-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pm-orbit {
  position: relative;
  width: 520px;
  height: 520px;
}

/* Dotted orbit rings */
.pm-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(191,167,98,0.2);
}

.pm-orbit-ring--inner {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pm-orbit-ring--outer {
  width: 460px;
  height: 460px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Center hub */
.pm-orbit-center {
  position: absolute;
  width: 130px;
  height: 130px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--pm-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow:
    0 0 0 12px rgba(72,72,72,0.08),
    0 0 0 24px rgba(72,72,72,0.04),
    0 8px 32px rgba(0,0,0,0.12);
}

.pm-orbit-center span {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #FAFAF8;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.02em;
}

/* Dot pattern overlay on center */
.pm-orbit-center-dots {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background-image: radial-gradient(circle, rgba(191,167,98,0.35) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.6;
  animation: pm-dots-rotate 40s linear infinite;
}

@keyframes pm-dots-rotate {
  to { transform: rotate(360deg); }
}

/* Orbit tracks – rotating containers */
.pm-orbit-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pm-orbit-track--inner {
  animation: pm-orbit-spin 45s linear infinite;
}

.pm-orbit-track--outer {
  animation: pm-orbit-spin 70s linear infinite reverse;
}

@keyframes pm-orbit-spin {
  to { transform: rotate(360deg); }
}

/* Individual bubbles */
.pm-orbit-bubble {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: rotate(var(--angle)) translateX(var(--orbit-radius)) rotate(calc(-1 * var(--angle)));
  animation: pm-bubble-counter var(--orbit-duration) linear infinite;
  animation-direction: var(--orbit-dir, normal);
}

.pm-orbit-track--inner .pm-orbit-bubble {
  --orbit-radius: 150px;
  --orbit-duration: 45s;
  --orbit-dir: reverse;
}

.pm-orbit-track--outer .pm-orbit-bubble {
  --orbit-radius: 230px;
  --orbit-duration: 70s;
  --orbit-dir: normal;
}

@keyframes pm-bubble-counter {
  to { transform: rotate(calc(var(--angle) - 360deg)) translateX(var(--orbit-radius)) rotate(calc(-1 * (var(--angle) - 360deg))); }
}

.pm-orbit-bubble span {
  display: block;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  padding: 12px 22px;
  border-radius: 100px;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--pm-dark);
  white-space: nowrap;
  box-shadow:
    0 1px 3px rgba(0,0,0,0.04),
    0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid rgba(191,167,98,0.15);
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--pm-ease), box-shadow 0.3s var(--pm-ease);
}

.pm-orbit-bubble span:hover {
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 2px 8px rgba(0,0,0,0.06),
    0 8px 24px rgba(191,167,98,0.15);
}



/* ==========================================================================
   ECOSYSTEM – Grouped Layout
   ========================================================================== */
.pm-ecosystem {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 10 / 6;
  margin: 0 auto;
}

/* SVG lines */
.pm-eco-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
}

.pm-eco-line {
  stroke: var(--pm-gold);
  stroke-width: 1.2;
  opacity: 0.22;
  stroke-linecap: round;
}

/* ---- Center Hub ---- */
.pm-eco-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  opacity: 0.2;
}

.pm-eco-hub-core {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--pm-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  box-shadow:
    0 0 0 10px rgba(72, 72, 72, 0.07),
    0 0 0 22px rgba(72, 72, 72, 0.03),
    0 8px 32px rgba(0, 0, 0, 0.10);
}

.pm-eco-hub-core span {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #FAFAF8;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.02em;
}

.pm-eco-hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(191, 167, 98, 0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.pm-eco-hub-ring--1 {
  width: 170px;
  height: 170px;
  animation: none;
  opacity: 0;
}

.pm-eco-hub-ring--2 {
  width: 210px;
  height: 210px;
  animation: none;
  opacity: 0;
}

@keyframes pm-ring-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.15; transform: translate(-50%, -50%) scale(1.05); }
}

/* ---- Module Tags (circular around hub) ---- */
.pm-eco-tag {
  position: absolute;
  left: var(--tx);
  top: var(--ty);
  transform: translate(-50%, -50%);
  z-index: 4;
  display: inline-block;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(191, 167, 98, 0.18);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--pm-gold-dark);
  white-space: nowrap;
  line-height: 1.3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  opacity: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.pm-eco-tag:hover {
  background: var(--pm-gold-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(191, 167, 98, 0.3);
}

/* ---- Group Boxes (dashed border containers) ---- */
.pm-eco-group {
  position: absolute;
  left: var(--gx);
  top: var(--gy);
  transform: translate(-50%, -50%) scale(0.3);
  z-index: 2;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  border: 2px dashed rgba(191, 167, 98, 0.3);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: border-color 0.3s ease;
}

.pm-eco-group:hover {
  border-color: rgba(191, 167, 98, 0.5);
}

.pm-eco-group-label {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--pm-dark);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.pm-eco-group-nodes {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Individual circles inside group boxes */
.pm-eco-gnode {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.pm-eco-gnode span {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--pm-dark);
  text-align: center;
  line-height: 1.35;
  padding: 4px;
}

.pm-eco-gnode:hover {
  border-color: var(--pm-gold);
  box-shadow: 0 4px 20px rgba(191, 167, 98, 0.12);
}

/* Side groups stack vertically */
.pm-eco-group--left .pm-eco-group-nodes,
.pm-eco-group--right .pm-eco-group-nodes {
  flex-direction: column;
  gap: 16px;
}

/* ==========================================================================
   9. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .pm-eco-hub-core { width: 110px; height: 110px; }
  .pm-eco-hub-core span { font-size: 13px; }
  .pm-eco-hub-ring--1 { width: 148px; height: 148px; }
  .pm-eco-hub-ring--2 { width: 184px; height: 184px; }
  .pm-eco-tag { font-size: 10px; padding: 4px 10px; }
  .pm-eco-gnode { width: 78px; height: 78px; }
  .pm-eco-gnode span { font-size: 10px; }
  .pm-eco-group { padding: 18px 22px; }
  .pm-eco-group-label { font-size: 12px; }
}



@media (max-width: 768px) {
  .pm-section { padding: 40px 0; }
  .pm-hero-actions { flex-direction: column; }
  .pm-hero-actions .pm-btn { text-align: center; justify-content: center; }
  .pm-hero-title { font-size: 34px !important; }
  .pm-eco-hub-core { width: 95px; height: 95px; }
  .pm-eco-hub-core span { font-size: 12px; }
  .pm-eco-tag { font-size: 9px; padding: 3px 8px; }
  .pm-eco-gnode { width: 65px; height: 65px; }
  .pm-eco-gnode span { font-size: 9px; }
  .pm-eco-group { padding: 14px 16px; gap: 10px; }
  .pm-eco-group-label { font-size: 11px; }
  .pm-eco-group-nodes { gap: 10px; }
  .pm-h2 { font-size: clamp(26px, 5vw, 40px) !important; }
}

@media (max-width: 480px) {
  .pm-container { width: 94%; }
  .pm-eco-hub-core { width: 80px; height: 80px; }
  .pm-eco-hub-core span { font-size: 11px; }
  .pm-eco-tag { font-size: 8px; padding: 2px 6px; }
  .pm-eco-gnode { width: 55px; height: 55px; }
  .pm-eco-gnode span { font-size: 8px; }
  .pm-eco-group { padding: 10px 12px; gap: 8px; border-width: 1.5px; }
  .pm-eco-group-label { font-size: 10px; }
}

/* ============================================================
   SCROLL-EXPAND
   ============================================================ */
.pm-hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pm-hero-centered .pm-hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 800px;
}

.pm-hero-centered .pm-hero-title { text-align: center; }
.pm-hero-centered .pm-hero-desc { text-align: center; max-width: 560px; }
.pm-hero-centered .pm-hero-actions { justify-content: center; }

.pm-page { overflow: visible !important; }
/* Remove top gap */
#page-container { padding-top: 0 !important; }

.pm-scroll-container {
  position: relative;
  min-height: 135vh;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%,
      rgba(191,167,98,0.10) 0%,
      rgba(212,196,142,0.05) 40%,
      var(--pm-bg) 100%);
}

.pm-scroll-sticky {
  position: sticky;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 24px 80px;
  overflow: hidden;
}

.pm-scroll-sticky .pm-hero-centered {
  position: relative;
  z-index: 2;
}

.pm-cosmos-reveal {
  --cosmos-shift: 20%;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  pointer-events: none;
  transform: translateY(var(--cosmos-shift));
}

.pm-cosmos-reveal.is-active {
  pointer-events: auto;
}

.pm-cosmos-reveal .pm-ecosystem {
  width: min(92%, 1300px);
  max-height: calc(100vh - 120px);
  aspect-ratio: 10 / 6;
}

/* Initial states for scroll animation */
.pm-cosmos-reveal .pm-eco-tag { opacity: 0; }
.pm-cosmos-reveal .pm-eco-group { opacity: 0; }
.pm-cosmos-reveal .pm-eco-lines { opacity: 0; }

/* Mobile ecosystem: hidden on desktop */
.pm-eco-mobile { display: none; }

@media (max-width: 768px) {
  /* Keep hero visible, remove sticky behavior */
  .pm-scroll-container { min-height: auto; }
  .pm-scroll-sticky {
    position: relative;
    height: auto;
    padding: 40px 20px 40px;
  }

  /* Hide diagram + floats on mobile */
  .pm-cosmos-reveal { display: none !important; }
  .pm-hero-float { display: none !important; }

  /* Show mobile ecosystem */
  .pm-eco-mobile {
    display: block;
    padding: 24px 20px 48px;
    text-align: center;
  }

  /* Hub */
  .pm-eco-mobile-hub {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--pm-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 0 0 7px rgba(72,72,72,0.07),
      0 0 0 16px rgba(72,72,72,0.03);
    margin-bottom: 32px;
  }

  .pm-eco-mobile-hub span {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #FAFAF8;
    text-align: center;
    line-height: 1.3;
  }

  /* Tags as chip cloud */
  .pm-eco-mobile-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    padding: 0 4px;
  }

  .pm-eco-mobile-tags span {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(191,167,98,0.18);
    border-radius: 100px;
    padding: 6px 14px;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--pm-gold-dark);
    white-space: nowrap;
  }

  /* Group cards stacked */
  .pm-eco-mobile-groups {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    margin: 0 auto;
  }

  .pm-eco-mobile-card {
    background: var(--pm-white);
    border: 1px solid var(--pm-border);
    border-radius: var(--pm-radius-sm);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-align: left;
  }

  .pm-eco-mobile-card h4 {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--pm-dark);
    margin: 0;
    line-height: 1.3;
    flex-shrink: 0;
    width: 100px;
  }

  .pm-eco-mobile-nodes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
  }

  .pm-eco-mobile-nodes span {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 100px;
    border: 1px solid rgba(0,0,0,0.06);
    background: var(--pm-bg);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--pm-muted);
    line-height: 1.3;
  }
}

/* ==========================================================================
   Floating Hero UI Screenshots
   ========================================================================== */
.pm-hero-float {
  position: absolute;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0,0,0,0.08),
    0 6px 16px rgba(0,0,0,0.04);
  border: 1px solid rgba(255,255,255,0.7);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}

.pm-hero-float img {
  display: block;
  width: 100%;
  height: auto;
}

.pm-hero-float--left {
  width: 260px;
  left: 5%;
  top: 160px;
  transform: rotate(-4deg) perspective(1000px) rotateY(8deg);
  animation: pm-float-in-left 0.8s ease-out 0.3s forwards, pm-float-a 6s ease-in-out 1.1s infinite;
}

.pm-hero-float--right {
  width: 240px;
  right: 5%;
  top: 200px;
  transform: rotate(3deg) perspective(1000px) rotateY(-6deg);
  animation: pm-float-in-right 0.8s ease-out 0.5s forwards, pm-float-b 7s ease-in-out 1.3s infinite;
}

.pm-hero-float--bottom {
  width: 200px;
  right: 10%;
  bottom: 18%;
  transform: rotate(2deg) perspective(1000px) rotateY(-4deg);
  animation: pm-float-in-right 0.8s ease-out 0.7s forwards, pm-float-c 8s ease-in-out 1.5s infinite;
}

/* Entry animations */
@keyframes pm-float-in-left {
  from { opacity: 0; transform: rotate(-4deg) perspective(1000px) rotateY(8deg) translateX(-30px) scale(0.95); }
  to   { opacity: 0.45; transform: rotate(-4deg) perspective(1000px) rotateY(8deg) translateX(0) scale(1); }
}

@keyframes pm-float-in-right {
  from { opacity: 0; transform: rotate(3deg) perspective(1000px) rotateY(-6deg) translateX(30px) scale(0.95); }
  to   { opacity: 0.45; transform: rotate(3deg) perspective(1000px) rotateY(-6deg) translateX(0) scale(1); }
}

/* Floating hover animations */
@keyframes pm-float-a {
  0%, 100% { transform: rotate(-4deg) perspective(1000px) rotateY(8deg) translateY(0); opacity: 0.45; }
  50%      { transform: rotate(-4deg) perspective(1000px) rotateY(8deg) translateY(-14px); opacity: 0.5; }
}

@keyframes pm-float-b {
  0%, 100% { transform: rotate(3deg) perspective(1000px) rotateY(-6deg) translateY(0); opacity: 0.45; }
  50%      { transform: rotate(3deg) perspective(1000px) rotateY(-6deg) translateY(-10px); opacity: 0.5; }
}

@keyframes pm-float-c {
  0%, 100% { transform: rotate(2deg) perspective(1000px) rotateY(-4deg) translateY(0); opacity: 0.45; }
  50%      { transform: rotate(2deg) perspective(1000px) rotateY(-4deg) translateY(-12px); opacity: 0.5; }
}

/* Large screens: bigger floating screenshots */
@media (min-width: 1400px) {
  .pm-hero-float--left { width: 320px; left: 6%; }
  .pm-hero-float--right { width: 300px; right: 6%; }
  .pm-hero-float--bottom { width: 260px; right: 12%; }
}

@media (min-width: 1920px) {
  .pm-hero-float--left { width: 380px; left: 8%; }
  .pm-hero-float--right { width: 340px; right: 8%; }
  .pm-hero-float--bottom { width: 300px; right: 14%; }
}

/* Responsive: hide on smaller screens */
@media (max-width: 1200px) {
  .pm-hero-float--left { width: 200px; left: 2%; }
  .pm-hero-float--right { width: 190px; right: 2%; }
  .pm-hero-float--bottom { display: none; }
}

@media (max-width: 900px) {
  .pm-hero-float { display: none; }
}

/* ==========================================================================
   Stacking Cards – single sticky container + transform animation
   ========================================================================== */
.pm-scroll-container + .cl-divider {
  display: none;
}

/* Section: tall to provide scroll room for the animation.
   The sticky container stays fixed while the user scrolls through. */
.pm-stack-section {
  position: relative;
  z-index: 2;
  margin-top: -5vh;
  background: var(--pm-bg);
  min-height: 200vh;
  padding-bottom: 80px;
}

/* Single sticky container — everything unsticks as one unit */
.pm-stack-sticky {
  position: sticky;
  top: 72px;
  width: min(92%, 900px);
  margin: 0 auto;
}

.pm-stack-header {
  text-align: center;
  padding: 40px 0 24px;
}

/* Deck: holds all 3 cards. Card 0 is in flow (sets height),
   cards 1+2 are absolute and animate in via transform. */
.pm-stack-deck {
  --peek: 80px;
  position: relative;
  padding-bottom: calc(var(--peek) * 2);
}

/* Card 0: in normal flow, always visible */
.pm-stack-card[data-card="0"] {
  position: relative;
  z-index: 1;
}

/* Cards 1+2: absolute, stacked with peek offset, animated by JS */
.pm-stack-card[data-card="1"],
.pm-stack-card[data-card="2"] {
  position: absolute;
  left: 0;
  right: 0;
  will-change: transform;
}

.pm-stack-card[data-card="1"] {
  top: var(--peek);
  z-index: 2;
  transform: translateY(100vh);
}

.pm-stack-card[data-card="2"] {
  top: calc(var(--peek) * 2);
  z-index: 3;
  transform: translateY(100vh);
}

/* --- Card body --- */
.pm-stack-card-body {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 28px 100px 28px 40px;
  background: var(--pm-white);
  border-radius: var(--pm-radius);
  border: 1px solid var(--pm-border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04), 0 1px 4px rgba(0,0,0,0.02);
}

.pm-stack-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pm-gold-bg);
  border: 1px solid var(--pm-gold-glow);
  border-radius: 16px;
  color: var(--pm-gold-dark);
}

.pm-stack-card-content {
  flex: 1;
  min-width: 0;
}

.pm-stack-card-title {
  font-family: "Montserrat", "Inter", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--pm-dark);
  margin: 0 0 6px;
}

.pm-stack-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--pm-muted);
  margin: 0;
}

/* Cover: hide text, keep icon + title + number visible */
.pm-stack-card-text {
  opacity: calc(1 - var(--cover, 0));
}

/* Number: always top-right (visible in peek area) */
.pm-stack-card-num {
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: rgba(191,167,98,0.12);
  line-height: 1;
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .pm-stack-section {
    min-height: 220vh;
  }

  .pm-stack-sticky {
    top: 60px;
  }

  .pm-stack-header {
    padding: 24px 0 16px;
  }

  .pm-stack-deck {
    --peek: 65px;
  }

  .pm-stack-card-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
  }

  .pm-stack-card-num {
    top: 12px;
    right: 16px;
    font-size: 32px;
  }
}

/* ==========================================================================
   Phone Mockup Section
   ========================================================================== */
.pm-phone-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: min(95%, 1100px);
  margin: 0 auto;
}

.pm-phone-text .cl-section-heading {
  margin-bottom: 16px;
}

.pm-phone-mockup-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pm-demo-img {
  width: 55%;
  height: auto;
  border-radius: var(--pm-radius);
}

@media (max-width: 768px) {
  .pm-phone-section {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pm-phone-text .cl-section-heading { text-align: center; }
  .pm-phone-text .cl-section-sub { margin-left: auto; margin-right: auto; }
}

/* ==========================================================================
   Video Section
   ========================================================================== */
.pm-video-wrap {
  max-width: min(95%, 900px);
  margin: 0 auto;
}

.pm-video-container {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 4px 6px rgba(0,0,0,0.04),
    0 12px 28px rgba(0,0,0,0.06),
    0 32px 60px rgba(0,0,0,0.08);
  background: var(--pm-dark);
}

.pm-video-poster {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.pm-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--pm-ease);
}

.pm-video-poster:hover img {
  transform: scale(1.03);
}

.pm-video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--pm-ease);
  filter: drop-shadow(0 4px 20px rgba(0,0,0,0.2));
}

.pm-video-poster:hover .pm-video-play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.pm-video-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================
   Claysen Interactive Dashboard Mockup
   ========================================================== */
.claysen-embed * { box-sizing: border-box; }
.claysen-embed {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #1F1F1D;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 0;
}
.claysen-embed img { display: block; max-width: 100%; }
.claysen-embed button { font-family: inherit; cursor: pointer; }
.claysen-embed h3, .claysen-embed h6 { margin: 0; }

.claysen-embed .product-mock {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #E5DFD3;
  box-shadow: 0 1px 0 rgba(31,31,29,.04), 0 8px 24px -12px rgba(31,31,29,.10);
}
.claysen-embed .product-mock__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid #E5DFD3;
  background: #FAF7F2;
}
.claysen-embed .product-mock__bar i {
  width: 9px; height: 9px; border-radius: 999px; display: inline-block;
}
.claysen-embed .product-mock__bar i:nth-child(1) { background: #EFE6CC; }
.claysen-embed .product-mock__bar i:nth-child(2) { background: #E5DCB8; }
.claysen-embed .product-mock__bar i:nth-child(3) { background: #C8D7BE; }
.claysen-embed .product-mock__bar span {
  margin-left: 10px;
  font-family: "Inter", sans-serif;
  font-size: 11px; color: #8A8881; letter-spacing: .06em;
}

.claysen-embed .dashboard-mock {
  display: grid;
  grid-template-columns: 220px 1fr 280px;
  min-height: 460px;
}
@media (max-width: 920px) {
  .claysen-embed .dashboard-mock { grid-template-columns: 1fr; min-height: 0; }
  .claysen-embed .dashboard-mock > .dm-side { display: none; }
}
.claysen-embed .dm-side {
  background: #FAF7F2;
  border-right: 1px solid #E5DFD3;
  padding: 20px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.claysen-embed .dm-side--right { border-right: 0; border-left: 1px solid #E5DFD3; padding: 22px 18px; }
.claysen-embed .dm-side h6 {
  font-family: "Inter", sans-serif;
  font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: #8A8881; margin: 14px 0 8px; font-weight: 400;
}
.claysen-embed .dm-side h6:first-child { margin-top: 0; }
.claysen-embed .dm-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 8px;
  font-size: 13px; color: #4A4A47;
}
.claysen-embed .dm-item.is-active { background: #EFE6CC; color: #1F1F1D; }
.claysen-embed .dm-item .ico {
  width: 14px; height: 14px; border-radius: 4px;
  background: #D9D2C2; flex: none;
}
.claysen-embed .dm-item.is-active .ico { background: #BFA667; }

.claysen-embed .dm-side button.dm-item {
  appearance: none; border: 0; background: transparent;
  text-align: left; width: 100%; font: inherit; cursor: pointer;
}
.claysen-embed .dm-side button.dm-item:hover { background: rgba(0,0,0,.025); }
.claysen-embed .dm-side button.dm-item:focus-visible { outline: 2px solid #BFA667; outline-offset: 2px; }
.claysen-embed .dm-side button.dm-item.is-active { background: #EFE6CC; color: #1F1F1D; }
.claysen-embed .dm-side button.dm-item.is-active .ico { background: #BFA667; }

.claysen-embed .dm-main { padding: 24px 28px; display: flex; flex-direction: column; gap: 20px; }
.claysen-embed .dm-main h3 {
  font-family: "Montserrat", sans-serif; font-weight: 600;
  font-size: 20px; letter-spacing: -0.015em;
}
.claysen-embed .dm-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.claysen-embed .dm-stat {
  border: 1px solid #E5DFD3; border-radius: 10px;
  padding: 14px; background: #FAF7F2;
}
.claysen-embed .dm-stat__label { font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #8A8881; }
.claysen-embed .dm-stat__value { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 26px; line-height: 1.05; margin-top: 6px; letter-spacing: -.02em; }
.claysen-embed .dm-stat__delta { font-family: "Inter", sans-serif; font-size: 11px; color: #BFA667; margin-top: 2px; }

.claysen-embed .dm-chart {
  height: 140px; border: 1px solid #E5DFD3; border-radius: 10px;
  background: linear-gradient(180deg, rgba(191,166,103,.06), transparent 60%), #FAF7F2;
  position: relative; overflow: hidden;
}
.claysen-embed .dm-chart svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.claysen-embed .dm-list { border: 1px solid #E5DFD3; border-radius: 10px; overflow: hidden; }
.claysen-embed .dm-row {
  display: grid; grid-template-columns: auto 1fr auto; gap: 12px; align-items: center;
  padding: 10px 14px; border-top: 1px solid #E5DFD3; font-size: 13px;
}
.claysen-embed .dm-row:first-child { border-top: 0; background: #FAF7F2; }
.claysen-embed .dm-row .time { font-family: "Inter", sans-serif; font-size: 11px; color: #8A8881; width: 56px; }

.claysen-embed .pill {
  font-family: "Inter", sans-serif; font-size: 10px;
  padding: 3px 8px; border-radius: 999px;
  background: #EFE6CC; color: #BFA667;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.claysen-embed .pill--ink { background: #1F1F1D; color: #F2EDE4; }

.claysen-embed .dm-card {
  border: 1px solid #E5DFD3; border-radius: 10px;
  padding: 14px; background: #FAF7F2;
  display: flex; flex-direction: column; gap: 8px;
}
.claysen-embed .dm-card + .dm-card { margin-top: 10px; }
.claysen-embed .dm-card .lbl { font-family: "Inter", sans-serif; font-size: 10px; color: #8A8881; letter-spacing: .1em; text-transform: uppercase; }
.claysen-embed .dm-card .val { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 17px; letter-spacing: -.015em; }
.claysen-embed .dm-card .meta { font-size: 12px; color: #8A8881; }

.claysen-embed .dm-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.claysen-embed .dm-head__meta { font-family: "Inter", sans-serif; font-size: 11px; color: #8A8881; letter-spacing: .08em; }
.claysen-embed .dm-view {
  display: flex; flex-direction: column; gap: 18px;
  opacity: 0; transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.claysen-embed .dm-view.is-in { opacity: 1; transform: none; }

.claysen-embed .dm-row--head {
  font-family: "Inter", sans-serif; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: #8A8881; background: #FAF7F2;
}
.claysen-embed .dm-row strong { font-weight: 500; }
.claysen-embed .dm-row em.dim { font-style: normal; color: #8A8881; font-family: "Inter", sans-serif; font-size: 11px; margin-left: 4px; }

.claysen-embed .dm-toolbar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.claysen-embed .dm-search {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid #E5DFD3; border-radius: 999px;
  padding: 8px 14px; background: #FAF7F2; flex: 1; min-width: 220px;
}
.claysen-embed .dm-search span { color: #8A8881; font-size: 14px; }
.claysen-embed .dm-search input { border: 0; outline: 0; background: transparent; font: inherit; font-size: 13px; color: #1F1F1D; width: 100%; }
.claysen-embed .dm-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.claysen-embed .dm-chip {
  font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 10px; border-radius: 999px; border: 1px solid #E5DFD3; color: #4A4A47; cursor: default;
}
.claysen-embed .dm-chip.is-on { background: #1F1F1D; color: #fff; border-color: #1F1F1D; }

.claysen-embed .dm-cal { border: 1px solid #E5DFD3; border-radius: 10px; overflow: hidden; background: #FAF7F2; }
.claysen-embed .dm-cal__head { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid #E5DFD3; }
.claysen-embed .dm-cal__head > div {
  padding: 10px 12px; font-family: "Inter", sans-serif; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: #8A8881; border-right: 1px solid #E5DFD3;
}
.claysen-embed .dm-cal__head > div:last-child { border-right: 0; }
.claysen-embed .dm-cal__head > div.is-today { color: #BFA667; background: #EFE6CC; }
.claysen-embed .dm-cal__body {
  display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: repeat(10, 28px);
  background-image: linear-gradient(to right, #E5DFD3 1px, transparent 1px), linear-gradient(to bottom, #E5DFD3 1px, transparent 1px);
  background-size: 20% 100%, 100% 28px;
}
.claysen-embed .dm-cal__evt {
  margin: 2px; border-radius: 6px; padding: 4px 8px; font-size: 11px;
  display: flex; align-items: center; gap: 6px; overflow: hidden; white-space: nowrap; height: 24px;
}
.claysen-embed .dm-cal__evt .t { font-family: "Inter", sans-serif; font-size: 10px; color: #8A8881; }
.claysen-embed .dm-cal__evt .l { color: #1F1F1D; font-weight: 500; text-overflow: ellipsis; overflow: hidden; }
.claysen-embed .dm-cal__evt--g { background: #EFE6CC; }
.claysen-embed .dm-cal__evt--i { background: rgba(0,0,0,.04); }

.claysen-embed .dm-saal { display: flex; flex-direction: column; gap: 8px; }
.claysen-embed .dm-saal__row { display: grid; grid-template-columns: 80px 1fr; gap: 12px; align-items: center; }
.claysen-embed .dm-saal__lbl { font-family: "Inter", sans-serif; font-size: 11px; letter-spacing: .08em; color: #8A8881; }
.claysen-embed .dm-saal__bar {
  position: relative; height: 36px;
  background: repeating-linear-gradient(90deg, transparent 0 calc(100%/10 - 1px), #E5DFD3 calc(100%/10 - 1px) calc(100%/10)), #FAF7F2;
  border: 1px solid #E5DFD3; border-radius: 8px;
}
.claysen-embed .dm-saal__bar > span {
  position: absolute; top: 4px; bottom: 4px; border-radius: 6px;
  padding: 0 10px; display: flex; align-items: center;
  font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.claysen-embed .dm-saal__bar > span.g { background: #EFE6CC; color: #BFA667; }
.claysen-embed .dm-saal__bar > span.i { background: rgba(0,0,0,.05); color: #4A4A47; }
.claysen-embed .dm-saal__axis {
  display: grid; grid-template-columns: 80px repeat(6, 1fr);
  font-family: "Inter", sans-serif; font-size: 10px; color: #8A8881; letter-spacing: .08em; padding-top: 2px;
}
.claysen-embed .dm-saal__axis > span:first-child { display: none; }

.claysen-embed .dm-note {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; border: 1px dashed #E5DFD3; border-radius: 8px; font-size: 13px; color: #4A4A47;
}

.claysen-embed .dm-rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.claysen-embed .dm-room {
  border: 1px solid #E5DFD3; border-radius: 10px; padding: 12px 14px;
  background: #FAF7F2; display: flex; flex-direction: column; gap: 4px; min-height: 78px;
}
.claysen-embed .dm-room__nr { font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: .12em; color: #8A8881; text-transform: uppercase; }
.claysen-embed .dm-room__name { font-family: "Montserrat", sans-serif; font-weight: 600; font-size: 16px; letter-spacing: -.01em; }
.claysen-embed .dm-room__sub { font-size: 12px; color: #8A8881; }
.claysen-embed .dm-room--b { background: #EFE6CC; }
.claysen-embed .dm-room--b .dm-room__nr { color: #BFA667; }
.claysen-embed .dm-room--f { background: #FAF7F2; }
.claysen-embed .dm-room--f .dm-room__name { color: #8A8881; font-style: italic; font-weight: 400; }
.claysen-embed .dm-room--c { background: rgba(0,0,0,.04); }

.claysen-embed .dm-recorder {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px; border: 1px solid #E5DFD3; border-radius: 10px; background: #FAF7F2;
}
.claysen-embed .dm-recorder__pulse { display: flex; align-items: end; gap: 3px; height: 32px; }
.claysen-embed .dm-recorder__pulse span {
  width: 3px; background: #BFA667; border-radius: 2px;
  animation: dm-pulse 1.1s ease-in-out infinite;
}
.claysen-embed .dm-recorder__pulse span:nth-child(1)  { animation-delay: 0s;    height: 40%; }
.claysen-embed .dm-recorder__pulse span:nth-child(2)  { animation-delay: .08s;  height: 60%; }
.claysen-embed .dm-recorder__pulse span:nth-child(3)  { animation-delay: .16s;  height: 80%; }
.claysen-embed .dm-recorder__pulse span:nth-child(4)  { animation-delay: .24s;  height: 50%; }
.claysen-embed .dm-recorder__pulse span:nth-child(5)  { animation-delay: .32s;  height: 90%; }
.claysen-embed .dm-recorder__pulse span:nth-child(6)  { animation-delay: .40s;  height: 30%; }
.claysen-embed .dm-recorder__pulse span:nth-child(7)  { animation-delay: .48s;  height: 70%; }
.claysen-embed .dm-recorder__pulse span:nth-child(8)  { animation-delay: .56s;  height: 55%; }
.claysen-embed .dm-recorder__pulse span:nth-child(9)  { animation-delay: .64s;  height: 85%; }
.claysen-embed .dm-recorder__pulse span:nth-child(10) { animation-delay: .72s;  height: 45%; }
.claysen-embed .dm-recorder__pulse span:nth-child(11) { animation-delay: .80s;  height: 65%; }
.claysen-embed .dm-recorder__pulse span:nth-child(12) { animation-delay: .88s;  height: 35%; }
.claysen-embed .dm-recorder__pulse span:nth-child(13) { animation-delay: .96s;  height: 75%; }
.claysen-embed .dm-recorder__pulse span:nth-child(14) { animation-delay: 1.04s; height: 50%; }
@keyframes dm-pulse {
  0%, 100% { transform: scaleY(.6); opacity: .55; }
  50%      { transform: scaleY(1);  opacity: 1; }
}
.claysen-embed .dm-recorder__meta { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.claysen-embed .dm-recorder__t { font-family: "Inter", sans-serif; font-size: 18px; color: #1F1F1D; letter-spacing: .04em; }
.claysen-embed .dm-recorder__lbl { font-size: 12px; color: #8A8881; }
.claysen-embed .dm-btn {
  appearance: none; border: 1px solid #1F1F1D; background: #1F1F1D; color: #fff;
  font: inherit; font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 999px; cursor: pointer;
}

.claysen-embed .dm-transcript {
  border: 1px solid #E5DFD3; border-radius: 10px; padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px; background: #FAF7F2;
  max-height: 180px; overflow: hidden;
}
.claysen-embed .dm-tx { display: grid; grid-template-columns: 90px 1fr; gap: 12px; font-size: 13px; }
.claysen-embed .dm-tx .who { font-family: "Inter", sans-serif; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; color: #8A8881; padding-top: 2px; }
.claysen-embed .dm-tx .said { color: #4A4A47; }

.claysen-embed .dm-suggest {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: #EFE6CC; border-radius: 8px; font-size: 13px; color: #1F1F1D;
}
.claysen-embed .dm-suggest strong { font-weight: 600; }

.claysen-embed .dm-eyebrow {
  font-family: "Inter", sans-serif; font-size: 10px;
  letter-spacing: .12em; text-transform: uppercase; color: #8A8881;
}

@media (max-width: 920px) {
  .claysen-embed .dm-rooms { grid-template-columns: repeat(2, 1fr); }
}
