:root {
  --ink: #17212b;
  --muted: #68727e;
  --line: #e4e8ee;
  --paper: #f8fafb;
  --white: #ffffff;
  --teal: #20252b;
  --teal-dark: #11161c;
  --copper: #8d949d;
  --lemon: #f2f3f5;
  --mid-gray: #6f7782;
  --glass: rgba(255, 255, 255, 0.78);
  --shadow: 0 24px 80px rgba(37, 52, 68, 0.08);
  --deep-shadow: 0 46px 120px rgba(37, 52, 68, 0.12);
  --scroll-progress: 0%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  overflow-x: hidden;
}

body::before {
  display: none;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 60;
  width: var(--scroll-progress);
  height: 3px;
  background: linear-gradient(90deg, #11161c, #6f7782, #11161c);
  box-shadow: 0 0 24px rgba(23, 33, 43, 0.16);
  transform-origin: left center;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(23, 33, 43, 0.18);
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

button,
input,
textarea,
select {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(23, 33, 43, 0.28);
  outline-offset: 3px;
}

.shell {
  min-height: 100vh;
}

.hidden {
  display: none !important;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px) saturate(1.35);
  background: rgba(255, 255, 255, 0.68);
  border-bottom: 1px solid rgba(231, 234, 238, 0.72);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  min-height: 72px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.brand-logo {
  display: block;
  width: 128px;
  height: auto;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--teal-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 250, 250, 0.84));
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(37, 52, 68, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.04);
  box-shadow: 0 16px 38px rgba(37, 52, 68, 0.12);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover {
  color: var(--ink);
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 220ms ease;
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav-links .nav-action,
.nav-links a.btn {
  flex: 0 0 auto;
  min-width: 84px;
  min-height: 42px;
  padding: 0 18px;
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.nav-links .nav-action::after,
.nav-links a.btn::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
  will-change: transform;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(23, 33, 43, 0.14);
  box-shadow: 0 14px 30px rgba(37, 52, 68, 0.09);
}

.btn-primary {
  color: var(--teal-dark);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 250, 249, 0.92));
  border-color: rgba(23, 33, 43, 0.18);
  box-shadow: 0 18px 42px rgba(23, 33, 43, 0.08);
}

.btn-teal {
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border-color: rgba(23, 33, 43, 0.16);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 52px;
  align-items: center;
  max-width: 1180px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 72px 24px 76px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 680;
}

.hero h1 {
  max-width: 760px;
  margin: 22px 0 18px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy {
  max-width: 670px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-status {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.hero-status span {
  min-height: 32px;
  padding: 7px 10px;
  color: #39414a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 234, 238, 0.9);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 720;
  box-shadow: 0 10px 26px rgba(12, 19, 27, 0.05);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 42px;
}

.proof-item {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 42px rgba(12, 19, 27, 0.06);
  backdrop-filter: blur(16px);
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.proof-item:hover {
  background: #fff;
  box-shadow: 0 28px 64px rgba(12, 19, 27, 0.1);
  transform: translateY(-4px) scale(1.02);
}

.proof-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 22px;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.workflow-window {
  position: absolute;
  inset: 42px 0 auto auto;
  width: min(100%, 520px);
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 252, 0.8));
  border: 1px solid rgba(228, 231, 235, 0.96);
  border-radius: 30px;
  box-shadow: var(--deep-shadow);
  backdrop-filter: blur(24px) saturate(1.18);
  animation: float-up 700ms ease both, window-breathe 6200ms ease-in-out infinite;
  transform-style: preserve-3d;
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 6px 14px;
}

.traffic {
  display: flex;
  gap: 7px;
}

.traffic span {
  width: 11px;
  height: 11px;
  border-radius: 999px;
}

.traffic span:nth-child(1) {
  background: #ff665e;
}

.traffic span:nth-child(2) {
  background: #ffbe45;
}

.traffic span:nth-child(3) {
  background: #36c76c;
}

.status-pill {
  padding: 6px 9px;
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.06);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.lead-card {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 251, 0.88));
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 22px;
  box-shadow: 0 16px 42px rgba(37, 52, 68, 0.06);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.lead-card:hover {
  border-color: rgba(23, 33, 43, 0.16);
  box-shadow: 0 28px 70px rgba(37, 52, 68, 0.11);
  transform: translateY(-3px);
}

.lead-card + .lead-card {
  margin-top: 12px;
}

.lead-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.lead-title {
  margin: 0;
  font-size: 17px;
}

.lead-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.score {
  padding: 7px 9px;
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.ai-text {
  margin: 16px 0;
  padding: 14px;
  color: #38404a;
  background: rgba(247, 250, 251, 0.96);
  border: 1px solid rgba(228, 232, 238, 0.82);
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.mini-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mini-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.mini-actions button:hover {
  background: #f3fbfa;
  border-color: rgba(23, 33, 43, 0.18);
  transform: translateY(-1px);
}

.mini-actions button.is-active {
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.08);
  border-color: rgba(23, 33, 43, 0.18);
  box-shadow: 0 14px 32px rgba(23, 33, 43, 0.08);
}

.demo-status {
  margin-top: 12px;
  padding: 11px 12px;
  color: var(--teal-dark);
  background: linear-gradient(180deg, rgba(23, 33, 43, 0.07), rgba(23, 33, 43, 0.04));
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 18px;
  font-size: 13px;
  font-weight: 740;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.demo-status.is-pulse {
  transform: scale(1.02);
}

.mini-progress {
  height: 8px;
  margin-top: 16px;
  overflow: hidden;
  background: #f0f2f3;
  border-radius: 999px;
}

.mini-progress span {
  display: block;
  width: var(--fill);
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--mid-gray));
  border-radius: inherit;
  animation: progress-shimmer 3200ms ease-in-out infinite;
}

.metrics-strip {
  position: absolute;
  right: 38px;
  bottom: 48px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 420px;
  animation: float-up 900ms ease 140ms both;
}

.metric {
  padding: 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 250, 251, 0.82));
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(37, 52, 68, 0.1);
  backdrop-filter: blur(20px);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.metric:hover {
  box-shadow: 0 42px 96px rgba(37, 52, 68, 0.14);
  transform: translateY(-5px) scale(1.03);
}

.metric span {
  color: var(--muted);
  font-size: 13px;
}

.metric strong {
  display: block;
  margin-top: 7px;
  font-size: 26px;
}

.workflow-orbit {
  position: absolute;
  top: 0;
  right: 12px;
  display: grid;
  gap: 9px;
  animation: float-up 800ms ease 260ms both;
}

.workflow-orbit span {
  width: max-content;
  padding: 9px 12px;
  color: #263038;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 234, 238, 0.92);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(12, 19, 27, 0.08);
  font-size: 12px;
  font-weight: 780;
}

.workflow-orbit span:nth-child(2) {
  transform: translateX(32px);
}

.workflow-orbit span:nth-child(3) {
  transform: translateX(-12px);
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 94px 24px;
}

.compact-section {
  padding-top: 36px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-head h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.section-head h2.is-reading {
  transform: scale(1.045);
}

body.scroll-down .section-head h2.is-reading {
  transform: translateY(-2px) scale(1.07);
}

body.scroll-up .section-head h2.is-reading {
  transform: translateY(2px) scale(1.018);
}

.section-head p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-head .demo-custom-note {
  margin-top: 14px;
  padding: 12px 14px;
  color: #3e4650;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 232, 238, 0.95);
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(37, 52, 68, 0.05);
  font-size: 14px;
  line-height: 1.48;
}

.demo-essentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.demo-essentials span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: #303842;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(228, 232, 238, 0.95);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(37, 52, 68, 0.06);
  font-size: 13px;
  font-weight: 760;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.package-card,
.system-card,
.portal-card {
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 252, 0.78));
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 24px;
  box-shadow: 0 20px 64px rgba(37, 52, 68, 0.06);
  backdrop-filter: blur(18px);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
  will-change: transform;
}

.package-card:hover,
.system-card:hover,
.portal-card:hover {
  background: #fff;
  border-color: rgba(23, 33, 43, 0.14);
  box-shadow: 0 34px 92px rgba(37, 52, 68, 0.12);
  transform: translateY(-7px) scale(1.018);
}

.package-card.highlight {
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 0%, rgba(23, 33, 43, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 250, 249, 0.88));
  border-color: rgba(23, 33, 43, 0.14);
  box-shadow: 0 38px 100px rgba(23, 33, 43, 0.08);
}

.package-card.highlight:hover {
  background:
    radial-gradient(circle at 85% 0%, rgba(23, 33, 43, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(244, 250, 249, 0.94));
  border-color: rgba(23, 33, 43, 0.18);
}

.package-card h3,
.system-card h3 {
  margin: 18px 0 8px;
  font-size: 24px;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 32px;
  padding: 0 10px;
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.highlight .card-icon,
.band .card-icon {
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
}

.package-card p,
.system-card p {
  color: var(--muted);
  line-height: 1.55;
}

.package-card.highlight p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 10px;
  color: var(--muted);
  line-height: 1.35;
  transition: transform 180ms ease, color 180ms ease;
}

.feature-list li:hover {
  color: var(--ink);
  transform: translateX(5px);
}

.package-card.highlight .feature-list li {
  color: var(--muted);
}

.band {
  background:
    radial-gradient(circle at 12% 0%, rgba(23, 33, 43, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(244, 248, 249, 0.84));
  color: var(--ink);
}

.band .section-head p,
.band .system-card p {
  color: var(--muted);
}

.band .system-card {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(228, 232, 238, 0.92);
}

.cinematic-demo {
  max-width: 1240px;
}

.cinematic-demo .section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: end;
}

.cinematic-demo .section-head > div:first-child {
  grid-row: 1 / span 3;
}

.cinematic-demo .section-head > p {
  max-width: 560px;
}

.demo-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: 20px;
  align-items: stretch;
}

.demo-player {
  position: relative;
  min-height: 650px;
  padding: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 10%, rgba(23, 33, 43, 0.055), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 248, 250, 0.92));
  border: 1px solid rgba(228, 232, 238, 0.96);
  border-radius: 34px;
  box-shadow: 0 42px 120px rgba(37, 52, 68, 0.12);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 260ms ease;
  will-change: transform;
}

.demo-player-3d {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.demo-workflow-lab {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
}

.demo-player-3d::before,
.demo-player-3d::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.demo-player-3d::before {
  inset: 74px 38px auto auto;
  width: 260px;
  height: 210px;
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(23, 33, 43, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: 34px;
  opacity: 0.72;
  transform: rotateX(58deg) rotateZ(-18deg) translateZ(-32px);
}

.demo-player-3d::after {
  right: 42px;
  bottom: 108px;
  left: 42px;
  height: 62px;
  background: radial-gradient(ellipse at center, rgba(37, 52, 68, 0.14), transparent 68%);
  filter: blur(18px);
  transform: rotateX(62deg);
}

.demo-lab-top {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  padding: 6px;
}

.demo-lab-top span,
.demo-lab-top strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #343b43;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.demo-lab-top strong {
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border-color: rgba(23, 33, 43, 0.1);
}

.demo-player:hover {
  box-shadow: 0 54px 140px rgba(37, 52, 68, 0.16);
  transform: translateY(-7px) scale(1.01);
}

.demo-player.is-switching .demo-screen,
.demo-player.is-switching .demo-mail-preview {
  animation: demo-switch 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.demo-screen {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  min-height: 500px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(241, 244, 247, 0.72));
  border: 1px solid rgba(228, 232, 238, 0.9);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 28px 80px rgba(37, 52, 68, 0.08);
  transform: rotateX(1.3deg) rotateY(-0.8deg);
  transform-style: preserve-3d;
}

.demo-screen::before {
  position: absolute;
  inset: 28px;
  content: "";
  border: 1px solid rgba(23, 33, 43, 0.06);
  border-radius: 24px;
  transform: translateZ(-18px);
}

.demo-screen-top {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.demo-screen-top span,
.demo-screen-top strong,
.output-label,
.mail-topline span,
.mail-topline strong {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  color: #343b43;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.demo-screen-top strong,
.mail-topline strong {
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border-color: rgba(23, 33, 43, 0.1);
}

.demo-phone {
  align-self: end;
  min-height: 390px;
  padding: 70px 16px 16px;
  background:
    linear-gradient(180deg, #fff, #f5f7f9);
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 36px;
  box-shadow:
    inset 0 0 0 8px rgba(23, 33, 43, 0.03),
    0 28px 80px rgba(37, 52, 68, 0.14);
  transform: translateZ(28px) rotateY(3deg);
}

.panel-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: #343b43;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.phone-bar {
  width: 72px;
  height: 6px;
  margin: 16px auto 18px;
  background: rgba(23, 33, 43, 0.18);
  border-radius: 999px;
}

.phone-camera-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.property-shot {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 104px;
  padding: 12px;
  overflow: hidden;
  isolation: isolate;
  color: #11161c;
  border: 1px solid rgba(228, 232, 238, 0.96);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 14px 34px rgba(37, 52, 68, 0.1);
  transition:
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 300ms ease,
    box-shadow 300ms ease;
}

.property-shot::before,
.property-shot::after {
  position: absolute;
  z-index: -1;
  content: "";
  transition: transform 340ms ease, opacity 340ms ease;
}

.property-shot b,
.property-shot em {
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  backdrop-filter: blur(14px);
}

.property-shot b {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 860;
}

.property-shot em {
  color: #3f4750;
  font-size: 10px;
  font-style: normal;
  font-weight: 740;
}

.property-shot:hover {
  box-shadow: 0 22px 56px rgba(37, 52, 68, 0.16);
  filter: saturate(1.06) contrast(1.02);
  transform: translateY(-4px) scale(1.025);
}

.property-shot:hover::before {
  transform: translateY(-4px) scale(1.04);
}

.shot-living {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.88) 0 13%, transparent 14%),
    linear-gradient(180deg, #f7d69c 0 48%, #cf9f74 49% 100%);
}

.shot-living::before {
  right: 12px;
  bottom: 38px;
  width: 70px;
  height: 38px;
  background:
    linear-gradient(90deg, transparent 0 8px, rgba(255, 255, 255, 0.82) 8px 12px, transparent 12px 100%),
    linear-gradient(180deg, #fef8ed, #dfeecf);
  border: 4px solid rgba(255, 255, 255, 0.78);
  border-radius: 12px;
  box-shadow: -68px 28px 0 -8px rgba(70, 82, 69, 0.5);
}

.shot-living::after {
  right: 18px;
  bottom: 18px;
  width: 76px;
  height: 22px;
  background: #4d5b54;
  border-radius: 999px 999px 10px 10px;
  box-shadow: -16px -6px 0 -2px #748474;
}

.shot-balcony {
  background:
    linear-gradient(180deg, #b9d7b9 0 44%, #e6d0a8 45% 100%);
}

.shot-balcony::before {
  right: 16px;
  bottom: 23px;
  width: 88px;
  height: 42px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.88) 0 4px, transparent 4px 17px),
    linear-gradient(180deg, transparent 0 18px, rgba(255, 255, 255, 0.9) 18px 23px, transparent 23px 100%);
  border-bottom: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 10px;
}

.shot-balcony::after {
  left: 14px;
  bottom: 18px;
  width: 46px;
  height: 34px;
  background:
    radial-gradient(circle at 28% 28%, #55745d 0 15%, transparent 17%),
    radial-gradient(circle at 70% 34%, #73916d 0 17%, transparent 19%),
    linear-gradient(180deg, transparent 0 62%, #8c6652 63% 100%);
}

.shot-kitchen {
  background:
    linear-gradient(180deg, #f2e5ce 0 44%, #d3c2a5 45% 100%);
}

.shot-kitchen::before {
  right: 13px;
  bottom: 26px;
  width: 88px;
  height: 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7) 0 2px, transparent 2px 100%),
    linear-gradient(180deg, #fbfbf9 0 44%, #839184 45% 100%);
  background-size: 22px 100%, 100% 100%;
  border-radius: 12px;
  box-shadow: -48px 20px 0 -16px rgba(114, 90, 67, 0.48);
}

.shot-kitchen::after {
  right: 38px;
  bottom: 80px;
  width: 28px;
  height: 20px;
  background: rgba(255, 255, 255, 0.74);
  border-radius: 0 0 14px 14px;
  box-shadow: 0 10px 20px rgba(91, 74, 62, 0.18);
}

.shot-plan {
  background:
    linear-gradient(135deg, #f8f3e9, #dfe7da);
}

.shot-plan::before {
  inset: 17px;
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(23, 33, 43, 0.42) 38% 41%, transparent 41% 100%),
    linear-gradient(180deg, transparent 0 48%, rgba(23, 33, 43, 0.38) 48% 51%, transparent 51% 100%),
    linear-gradient(90deg, rgba(23, 33, 43, 0.32) 0 3px, transparent 3px 100%),
    linear-gradient(180deg, rgba(23, 33, 43, 0.32) 0 3px, transparent 3px 100%);
  border: 3px solid rgba(23, 33, 43, 0.36);
  border-radius: 10px;
}

.shot-plan::after {
  right: 28px;
  bottom: 28px;
  width: 34px;
  height: 26px;
  background: rgba(151, 178, 134, 0.56);
  border-radius: 8px;
}

.phone-camera-grid[data-visual="expose"] .property-shot,
.phone-camera-grid[data-visual="portal"] .property-shot {
  filter: saturate(1.08) brightness(1.02);
}

.phone-camera-grid[data-visual="bestand"] .property-shot:nth-child(2),
.phone-camera-grid[data-visual="lead"] .property-shot:nth-child(1) {
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.94),
    0 0 0 6px rgba(119, 139, 112, 0.34),
    0 22px 58px rgba(37, 52, 68, 0.15);
}

.phone-camera-grid span:nth-child(2) {
  transform: translateY(20px);
}

.phone-camera-grid span:nth-child(3) {
  transform: translateY(-8px);
}

.object-dossier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 24px;
  padding: 12px;
  color: #343b43;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 232, 238, 0.94);
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(37, 52, 68, 0.08);
}

.object-dossier span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 820;
  text-transform: uppercase;
}

.object-dossier strong {
  color: var(--ink);
  font-size: 12px;
  font-weight: 860;
  text-align: right;
}

.voice-message {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  margin-top: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(228, 232, 238, 0.94);
  border-radius: 22px;
}

.voice-dot {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  background: #11161c;
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(23, 33, 43, 0.08);
  animation: voice-pulse 1.6s ease-in-out infinite;
}

.voice-message strong {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
}

.voice-message p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.demo-output {
  align-self: end;
  padding: 112px 28px 28px;
  transform: translateZ(44px);
}

.demo-output h3 {
  max-width: 560px;
  margin: 18px 0 12px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.96;
  letter-spacing: 0;
}

.demo-output p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.demo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.demo-tags span {
  padding: 10px 12px;
  color: #343b43;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 760;
}

.demo-output .demo-personalized-note {
  max-width: 520px;
  margin-top: 16px;
  padding: 12px 14px;
  color: #3e4650;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.45;
}

.demo-mail-preview {
  margin-top: 14px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(249, 250, 251, 0.86));
  border: 1px solid rgba(228, 232, 238, 0.94);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(37, 52, 68, 0.08);
  transform: translateY(-2px) translateZ(22px);
}

.mail-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.demo-mail-preview p {
  max-width: 760px;
  margin: 0;
  color: #343b43;
  font-size: 17px;
  line-height: 1.62;
}

.demo-timeline {
  display: grid;
  gap: 12px;
}

.demo-step {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 8px 14px;
  align-content: center;
  min-height: 112px;
  padding: 18px;
  text-align: left;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 232, 238, 0.94);
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(37, 52, 68, 0.06);
  cursor: pointer;
  transition:
    transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.demo-step:hover,
.demo-step.is-active {
  background: #fff;
  border-color: rgba(23, 33, 43, 0.14);
  box-shadow: 0 30px 78px rgba(37, 52, 68, 0.12);
  transform: translateY(-4px) scale(1.01);
}

.demo-step span {
  grid-row: span 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 840;
}

.demo-step strong {
  align-self: end;
  font-size: 17px;
}

.demo-step small {
  color: var(--muted);
  line-height: 1.4;
}

.flow-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  counter-reset: flow;
}

@keyframes demo-switch {
  from {
    opacity: 0.55;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes voice-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(23, 33, 43, 0.08);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(23, 33, 43, 0.04);
    transform: scale(0.92);
  }
}

.flow-step {
  position: relative;
  min-height: 250px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 252, 0.8));
  border: 1px solid rgba(231, 234, 238, 0.96);
  border-radius: 26px;
  box-shadow: 0 28px 76px rgba(37, 52, 68, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 280ms ease;
}

.flow-step::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 82px;
  height: 82px;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(23, 33, 43, 0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  border-radius: 18px;
  opacity: 0.78;
  transform: rotate(4deg);
}

.flow-step:hover {
  box-shadow: 0 42px 110px rgba(12, 19, 27, 0.14);
  transform: translateY(-9px) scale(1.025);
}

.step-kicker {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 860;
}

.flow-step h3 {
  max-width: 260px;
  margin: 44px 0 12px;
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1;
}

.flow-step p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.workflow-explorer {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.workflow-tabs {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 234, 238, 0.96);
  border-radius: 22px;
  box-shadow: 0 22px 70px rgba(37, 52, 68, 0.07);
  backdrop-filter: blur(18px);
}

.workflow-tab {
  min-height: 54px;
  padding: 0 16px;
  color: #343b43;
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 780;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.workflow-tab:hover,
.workflow-tab.is-active {
  color: var(--ink);
  background: #fff;
  border-color: rgba(23, 33, 43, 0.12);
  transform: translateX(4px);
}

.workflow-tab.is-active {
  box-shadow: 0 16px 42px rgba(12, 19, 27, 0.08);
}

.workflow-preview {
  position: relative;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 20%, rgba(23, 33, 43, 0.05), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 252, 0.82));
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 28px;
  box-shadow: 0 34px 96px rgba(37, 52, 68, 0.11);
  backdrop-filter: blur(22px);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
  will-change: transform;
}

.workflow-preview::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 136px;
  height: 92px;
  content: "";
  background:
    linear-gradient(90deg, rgba(23, 33, 43, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(23, 33, 43, 0.06) 1px, transparent 1px);
  background-size: 16px 16px;
  border-radius: 18px;
  opacity: 0.72;
}

.workflow-preview:hover {
  box-shadow: 0 46px 118px rgba(37, 52, 68, 0.14);
  transform: translateY(-7px) scale(1.018);
}

.workflow-preview.is-switching {
  filter: saturate(1.16) brightness(1.06);
  transform: translateY(-4px) scale(1.012);
}

.preview-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
}

.preview-topline span,
.preview-topline strong {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 820;
}

.preview-topline span {
  color: var(--ink);
  background: var(--lemon);
}

.preview-topline strong {
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.06);
  border: 1px solid rgba(23, 33, 43, 0.1);
}

.workflow-preview h3 {
  max-width: 680px;
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
}

.workflow-preview p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.workflow-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 620px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.workflow-points li {
  padding: 12px 14px;
  color: #3d4650;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(228, 232, 238, 0.9);
  border-radius: 18px;
}

.workflow-self-test {
  max-width: 1240px;
}

.self-test-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: stretch;
}

.self-test-controls,
.self-test-output {
  position: relative;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 249, 250, 0.88));
  border: 1px solid rgba(228, 232, 238, 0.96);
  border-radius: 32px;
  box-shadow: 0 34px 96px rgba(37, 52, 68, 0.1);
  transition:
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 260ms ease,
    border-color 260ms ease;
}

.self-test-controls:hover,
.self-test-output:hover,
.self-test-output.is-running {
  border-color: rgba(23, 33, 43, 0.16);
  box-shadow: 0 48px 128px rgba(37, 52, 68, 0.14);
}

.self-test-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 22px;
}

.self-test-options button {
  min-height: 58px;
  padding: 10px 14px;
  color: #3d4650;
  text-align: left;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(228, 232, 238, 0.96);
  border-radius: 20px;
  cursor: pointer;
  font-weight: 780;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.self-test-options button:hover,
.self-test-options button.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 58px rgba(37, 52, 68, 0.1);
  transform: translateY(-4px) scale(1.015);
}

.self-test-controls label,
.self-test-range label {
  display: block;
  margin-bottom: 8px;
  color: #3d4650;
  font-size: 13px;
  font-weight: 820;
}

.self-test-controls textarea {
  width: 100%;
  min-height: 142px;
  padding: 16px;
  color: var(--ink);
  resize: vertical;
  background: #fff;
  border: 1px solid rgba(228, 232, 238, 0.96);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.self-test-range {
  margin: 20px 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 22px;
}

.self-test-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.self-test-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.self-test-topline span,
.self-test-topline strong,
.test-mail-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: #343b43;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 232, 238, 0.94);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 840;
}

.self-test-topline strong {
  background: rgba(23, 33, 43, 0.06);
  border-color: rgba(23, 33, 43, 0.1);
}

.test-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.test-step {
  min-height: 190px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(228, 232, 238, 0.94);
  border-radius: 24px;
  box-shadow: 0 20px 56px rgba(37, 52, 68, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.test-step:hover {
  box-shadow: 0 28px 72px rgba(37, 52, 68, 0.11);
  transform: translateY(-5px) scale(1.016);
}

.test-step span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--ink);
  background: rgba(23, 33, 43, 0.06);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 840;
}

.test-step h3 {
  margin: 28px 0 8px;
  font-size: 21px;
}

.test-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.test-mail-card {
  margin-top: 12px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(228, 232, 238, 0.96);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(37, 52, 68, 0.08);
}

.test-mail-card p {
  margin: 18px 0 0;
  color: #343b43;
  font-size: 17px;
  line-height: 1.62;
}

.self-test-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.calculator-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 28px;
  align-items: stretch;
}

.calculator-copy {
  display: grid;
  align-content: center;
  margin-bottom: 0;
}

.calc-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 250, 0.88)),
    radial-gradient(circle at 84% 16%, rgba(23, 33, 43, 0.05), transparent 28%);
  border: 1px solid rgba(231, 234, 238, 0.96);
  border-radius: 28px;
  box-shadow: 0 34px 96px rgba(37, 52, 68, 0.09);
  backdrop-filter: blur(22px) saturate(1.12);
}

.calc-control {
  display: grid;
  gap: 13px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(231, 234, 238, 0.92);
  border-radius: 20px;
}

.range-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.range-row label {
  color: #353d45;
  font-size: 14px;
  font-weight: 760;
}

.range-row strong {
  min-width: 54px;
  padding: 8px 10px;
  text-align: center;
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border-radius: 8px;
  font-size: 18px;
}

.calc-control input[type="range"] {
  width: 100%;
  height: 6px;
  appearance: none;
  cursor: pointer;
  background:
    linear-gradient(90deg, #11161c, #11161c) 0 / var(--range-progress, 0%) 100% no-repeat,
    #dfe3e8;
  border-radius: 999px;
}

.calc-control input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  appearance: none;
  background: conic-gradient(from 0deg, #11161c 0 25%, #fff 25% 50%, #8d949d 50% 75%, #fff 75% 100%);
  border: 5px solid #fff;
  border-radius: 42%;
  box-shadow: 0 12px 28px rgba(37, 52, 68, 0.18);
  transform: rotate(var(--thumb-rotation, 0deg));
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.calc-control input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  background: #11161c;
  border: 6px solid #fff;
  border-radius: 42%;
  box-shadow: 0 12px 28px rgba(37, 52, 68, 0.18);
  transform: rotate(var(--thumb-rotation, 0deg));
}

.calc-result {
  padding: 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(23, 33, 43, 0.05), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 251, 0.86));
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 24px;
  box-shadow: 0 34px 86px rgba(37, 52, 68, 0.12);
  backdrop-filter: blur(20px);
  transition: transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 260ms ease;
  will-change: transform;
}

.calc-result:hover {
  box-shadow: 0 44px 110px rgba(37, 52, 68, 0.14);
  transform: translateY(-7px) scale(1.018);
}

.result-label {
  display: block;
  margin-bottom: 10px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calc-result strong {
  display: block;
  margin-bottom: 12px;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.95;
  letter-spacing: 0;
}

.calc-result p {
  max-width: 440px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.calc-result .btn {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(23, 33, 43, 0.14);
}

.calc-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 28px;
  align-items: start;
}

.trust-copy h2 {
  margin: 18px 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.trust-copy p {
  max-width: 520px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  min-height: 190px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 22px;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.faq-item:hover {
  background: #fff;
  box-shadow: 0 28px 70px rgba(12, 19, 27, 0.1);
  transform: translateY(-5px) scale(1.018);
}

.faq-item h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.18;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(12, 19, 27, 0.08);
}

.cta-panel h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 5vw, 52px);
  letter-spacing: 0;
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.audit-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  gap: 26px;
  align-items: start;
}

.audit-copy {
  padding: 34px 0;
}

.audit-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

.audit-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.audit-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.audit-list li {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(12, 19, 27, 0.055);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.audit-list li:hover {
  box-shadow: 0 26px 62px rgba(12, 19, 27, 0.1);
  transform: translateX(5px);
}

.audit-form {
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 34px 90px rgba(12, 19, 27, 0.1);
  backdrop-filter: blur(18px);
  transition: box-shadow 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.audit-form.is-targeted {
  border-color: rgba(23, 33, 43, 0.22);
  box-shadow: 0 42px 110px rgba(23, 33, 43, 0.1);
  transform: translateY(-4px);
}

.pain-selector {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pain-selector button {
  min-height: 42px;
  padding: 0 10px;
  color: #3b424a;
  background: rgba(246, 248, 248, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.pain-selector button:hover,
.pain-selector button.is-active {
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.06);
  border-color: rgba(23, 33, 43, 0.16);
  transform: translateY(-2px);
}

.field textarea.is-filled-by-chip {
  border-color: rgba(23, 33, 43, 0.22);
  box-shadow: 0 0 0 4px rgba(23, 33, 43, 0.09), 0 18px 44px rgba(23, 33, 43, 0.05);
}

.audit-progress {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(23, 33, 43, 0.05), transparent 48%),
    rgba(248, 250, 250, 0.86);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 20px;
}

.audit-progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.audit-progress-top span {
  color: #363c45;
  font-size: 13px;
  font-weight: 780;
}

.audit-progress-top strong {
  color: var(--teal-dark);
  font-size: 18px;
}

.audit-progress-track {
  height: 8px;
  overflow: hidden;
  background: rgba(23, 33, 43, 0.09);
  border-radius: 999px;
}

.audit-progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #11161c, #727985);
  border-radius: inherit;
  transition: width 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.audit-progress p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.conversion-dock {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(560px, calc(100vw - 48px));
  padding: 14px 14px 14px 18px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(231, 234, 238, 0.94);
  border-radius: 26px;
  box-shadow: 0 26px 82px rgba(12, 19, 27, 0.16);
  backdrop-filter: blur(22px) saturate(1.22);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.conversion-dock.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.conversion-dock strong,
.conversion-dock span {
  display: block;
}

.conversion-dock strong {
  margin-bottom: 3px;
  font-size: 15px;
}

.conversion-dock span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.auth-page,
.portal-page {
  min-height: 100vh;
  padding: 32px 24px;
}

.auth-card {
  max-width: 440px;
  margin: 8vh auto 0;
  padding: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.auth-card h1 {
  margin: 18px 0 8px;
  font-size: 38px;
  letter-spacing: 0;
}

.auth-card p {
  color: var(--muted);
  line-height: 1.55;
}

.field {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.field label {
  color: #363c45;
  font-size: 13px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  outline: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 33, 43, 0.09);
  transform: translateY(-1px);
}

.form-actions {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  border-top: 1px solid rgba(228, 232, 238, 0.92);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), #fff);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
}

.footer-inner nav,
.legal-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-inner nav a,
.legal-quicklinks a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(228, 232, 238, 0.92);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
  transition: transform 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.footer-inner nav a:hover,
.legal-quicklinks a:hover {
  color: var(--ink);
  box-shadow: 0 14px 34px rgba(37, 52, 68, 0.08);
  transform: translateY(-1px);
}

.legal-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px 24px 90px;
}

.legal-hero {
  display: grid;
  gap: 18px;
  max-width: 900px;
  padding: 42px 0 34px;
}

.legal-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.legal-hero p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.6;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 0.68fr);
  gap: 22px;
  align-items: start;
}

.legal-side {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.legal-side-card,
.legal-accordion {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 251, 0.82));
  border: 1px solid rgba(228, 232, 238, 0.95);
  border-radius: 26px;
  box-shadow: 0 22px 70px rgba(37, 52, 68, 0.06);
}

.legal-side-card {
  padding: 20px;
}

.legal-side-card span,
.legal-content h3 {
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

.legal-side-card strong {
  display: block;
  margin-top: 8px;
  overflow-wrap: anywhere;
}

.legal-side-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.legal-accordions {
  display: grid;
  gap: 14px;
}

.legal-accordion {
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.legal-accordion:hover {
  border-color: rgba(23, 33, 43, 0.14);
  box-shadow: 0 32px 90px rgba(37, 52, 68, 0.1);
  transform: translateY(-2px);
}

.legal-accordion summary {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}

.legal-accordion summary::-webkit-details-marker {
  display: none;
}

.legal-accordion summary span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: rgba(23, 33, 43, 0.06);
  border: 1px solid rgba(23, 33, 43, 0.1);
  border-radius: 15px;
  font-weight: 800;
}

.legal-accordion summary strong {
  font-size: 22px;
  letter-spacing: 0;
}

.legal-accordion summary::after {
  grid-column: 2;
  width: fit-content;
  padding: 4px 10px;
  color: var(--muted);
  content: "aufklappen";
  background: rgba(23, 33, 43, 0.04);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.legal-accordion[open] summary::after {
  content: "zuklappen";
}

.legal-content {
  display: grid;
  gap: 12px;
  padding: 0 22px 24px 82px;
  color: var(--muted);
  line-height: 1.62;
}

.legal-content h2,
.legal-content h3,
.legal-content p,
.legal-content address {
  margin: 0;
}

.legal-content h2 {
  color: var(--ink);
  font-size: 26px;
  line-height: 1.16;
}

.legal-content h3 {
  margin-top: 10px;
  color: var(--ink);
}

.legal-content address {
  font-style: normal;
}

.legal-content a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(23, 33, 43, 0.22);
  text-underline-offset: 4px;
}

.portal-wrap {
  max-width: 1240px;
  margin: 0 auto;
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 28px;
}

.portal-header h1 {
  margin: 10px 0 0;
  font-size: clamp(34px, 5vw, 62px);
  letter-spacing: 0;
}

.portal-grid {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 18px;
}

.sidebar {
  display: grid;
  gap: 14px;
  align-content: start;
}

.portal-card h2,
.portal-card h3 {
  margin: 0 0 14px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.stat-box {
  padding: 14px;
  background: #f6f7f7;
  border-radius: 18px;
}

.stat-box strong {
  display: block;
  font-size: 24px;
}

.stat-box span {
  color: var(--muted);
  font-size: 12px;
}

.workflow-status-list {
  display: grid;
  gap: 10px;
}

.workflow-status-item {
  display: grid;
  gap: 5px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(31, 38, 48, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.workflow-status-item:hover {
  border-color: rgba(23, 33, 43, 0.16);
  box-shadow: 0 18px 42px rgba(31, 38, 48, 0.11);
  transform: translateY(-3px) scale(1.01);
}

.workflow-status-item span,
.workflow-status-item small {
  color: var(--muted);
  line-height: 1.35;
}

.workflow-status-item small {
  font-size: 12px;
}

.workflow-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 14px;
}

.portal-column-title {
  margin-top: 0;
  font-size: 16px;
}

.lead-list {
  display: grid;
  gap: 10px;
}

.lead-button {
  width: 100%;
  padding: 14px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.lead-button:hover {
  border-color: rgba(23, 33, 43, 0.16);
  box-shadow: 0 16px 34px rgba(37, 52, 68, 0.09);
  transform: translateY(-3px) scale(1.01);
}

.lead-button.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 33, 43, 0.07);
}

.lead-button strong {
  display: block;
  margin-bottom: 6px;
}

.lead-button span {
  color: var(--muted);
  font-size: 13px;
}

.draft-box {
  min-height: 220px;
  padding: 18px;
  white-space: pre-wrap;
  background: #f7f8f8;
  border: 1px solid var(--line);
  border-radius: 20px;
  line-height: 1.55;
}

.decision-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.toast {
  margin-top: 14px;
  padding: 12px;
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border: 1px solid rgba(23, 33, 43, 0.12);
  border-radius: 18px;
}

.admin-sticky-toast {
  position: sticky;
  top: 12px;
  z-index: 20;
  margin: 0 0 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(31, 38, 48, 0.12);
  backdrop-filter: blur(14px);
}

.admin-tabs {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  margin-bottom: 16px;
  background: #f5f6f7;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.admin-tab {
  min-height: 38px;
  padding: 0 16px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.admin-tab:hover,
.admin-tab.is-active {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 24px rgba(28, 36, 45, 0.08);
}

.admin-panel {
  display: none;
}

.admin-panel.is-active {
  display: block;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.audit-reply-panel {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(31, 38, 48, 0.08);
}

.audit-reply-panel h3 {
  margin: 6px 0 0;
  font-size: 24px;
}

.audit-reply-panel #audit-reply-body {
  min-height: 300px;
  white-space: pre-wrap;
}

.audit-reply-panel #audit-reply-feedback {
  min-height: 110px;
}

.reply-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.reply-chip-row button {
  min-height: 36px;
  padding: 0 12px;
  color: #343b43;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(228, 232, 238, 0.96);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 820;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.reply-chip-row button:hover {
  background: #fff;
  box-shadow: 0 14px 36px rgba(31, 38, 48, 0.09);
  transform: translateY(-2px);
}

.admin-toolbar select,
.audit-table select,
.admin-inline-controls select {
  min-height: 40px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.portal-admin-stats {
  margin-bottom: 18px;
}

.portal-admin-stats .portal-card {
  margin: 0;
}

.portal-admin-stats strong {
  display: block;
  margin-top: 10px;
  font-size: 38px;
  line-height: 1;
}

.portal-admin-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.portal-admin-sidebar,
.portal-admin-main,
.portal-admin-actions,
.portal-data-grid {
  display: grid;
  gap: 14px;
}

.portal-admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(31, 38, 48, 0.07);
}

.portal-admin-header h3 {
  margin: 8px 0 0;
  font-size: 28px;
  line-height: 1.1;
}

.portal-admin-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-mini-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 16px 38px rgba(31, 38, 48, 0.06);
}

.admin-mini-form h3,
.portal-data-grid h3 {
  margin: 0;
}

.client-list {
  display: grid;
  gap: 10px;
}

.client-list-item {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.client-list-item:hover,
.client-list-item.is-active {
  border-color: rgba(23, 33, 43, 0.18);
  box-shadow: 0 18px 42px rgba(31, 38, 48, 0.1);
  transform: translateY(-2px);
}

.client-list-item span {
  color: var(--muted);
  font-size: 13px;
}

.portal-data-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.portal-data-grid section {
  display: grid;
  gap: 10px;
  align-content: start;
}

.admin-card-list {
  display: grid;
  gap: 10px;
}

.admin-data-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(31, 38, 48, 0.055);
}

.admin-data-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.admin-data-card span {
  color: var(--muted);
  font-size: 12px;
}

.admin-data-head,
.admin-inline-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.admin-inline-controls {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.audit-table-wrap {
  overflow-x: auto;
}

.audit-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.audit-table th,
.audit-table td {
  padding: 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.audit-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.audit-table td {
  color: #313842;
  font-size: 14px;
  line-height: 1.45;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(420px, 1.15fr);
  gap: 18px;
}

.offer-form {
  display: grid;
  gap: 14px;
}

.offer-preview {
  min-height: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.offer-preview pre {
  margin: 0;
  white-space: pre-wrap;
  color: #2e353e;
  font: 14px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.nested-panel {
  margin-top: 18px;
  box-shadow: none;
}

.command-stats .portal-card strong {
  display: block;
  margin: 12px 0 4px;
  font-size: 42px;
  line-height: 1;
}

.command-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.launch-panel {
  margin: 16px 0;
}

.launch-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.launch-list article {
  min-height: 210px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.launch-list h3 {
  margin: 14px 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.launch-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.48;
}

.launch-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--teal-dark);
  background: rgba(23, 33, 43, 0.07);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.launch-badge.urgent {
  color: #4f5660;
  background: rgba(23, 33, 43, 0.08);
}

.tool-link {
  display: block;
}

.tool-link:hover {
  border-color: rgba(23, 33, 43, 0.2);
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.09);
}

.playbook-copy {
  margin: 0;
  padding: 18px;
  white-space: pre-wrap;
  color: #27313a;
  background: #f7f8f8;
  border: 1px solid var(--line);
  border-radius: 22px;
  font: 15px/1.6 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.playbook-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #303841;
  line-height: 1.5;
}

.pipeline-cell,
.notes-cell,
.problem-cell {
  min-width: 220px;
}

.pipeline-cell label {
  display: block;
  margin: 10px 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.pipeline-cell label:first-child {
  margin-top: 0;
}

.pipeline-cell input,
.notes-cell textarea {
  width: 100%;
  min-height: 40px;
  padding: 9px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.notes-cell textarea {
  min-height: 112px;
  resize: vertical;
  margin-bottom: 10px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.reveal-on-scroll.from-scroll-down.is-visible {
  animation: reveal-down 760ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.reveal-on-scroll.from-scroll-up.is-visible {
  animation: reveal-up 620ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.package-card:hover,
.system-card:hover,
.flow-step:hover,
.workflow-preview:hover,
.calc-result:hover,
.faq-item:hover,
.proof-item:hover,
.lead-card:hover,
.metric:hover {
  filter: saturate(0.96) contrast(1.02);
}

@keyframes reveal-down {
  from {
    opacity: 0;
    transform: translateY(44px) scale(0.965) rotateX(4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.975) rotateX(-3deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

@keyframes float-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes window-breathe {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: translateY(-8px) rotateX(1deg) rotateY(-1deg);
  }
}

@keyframes progress-shimmer {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.35) brightness(1.08);
  }
}

@media (max-width: 980px) {
  .hero,
  .portal-grid,
  .workflow-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .workflow-window,
  .metrics-strip {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .metrics-strip {
    right: auto;
    bottom: auto;
    margin-top: 14px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .flow-board {
    grid-template-columns: 1fr;
  }

  .section-head,
  .cinematic-demo .section-head,
  .calculator-layout,
  .workflow-explorer,
  .self-test-layout,
  .demo-stage,
  .demo-screen,
  .cta-panel,
  .audit-layout,
  .legal-layout,
	  .trust-layout,
	  .offer-layout,
	  .launch-list,
	  .command-grid,
	  .portal-admin-layout,
	  .portal-admin-actions,
	  .portal-data-grid {
	    grid-template-columns: 1fr;
	    align-items: start;
	  }

  .cinematic-demo .section-head > div:first-child {
    grid-row: auto;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .legal-side {
    position: static;
  }

  .audit-copy {
    padding: 0;
  }

  .workflow-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .workflow-tab {
    text-align: center;
  }

  .workflow-tab:hover,
  .workflow-tab.is-active {
    transform: translateY(-2px);
  }

  .test-step-grid {
    grid-template-columns: 1fr;
  }

  .demo-player {
    min-height: auto;
  }

  .demo-screen {
    grid-template-columns: 1fr;
    transform: none;
  }

  .demo-phone,
  .demo-output,
  .demo-mail-preview {
    transform: none;
  }

  .demo-output {
    padding: 18px 4px 4px;
  }
}

@media (max-width: 720px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero-proof,
  .metrics-strip,
  .hero-status,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .mini-actions {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .pain-selector {
    grid-template-columns: 1fr;
  }

  .self-test-options {
    grid-template-columns: 1fr;
  }

  .conversion-dock {
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr;
    width: calc(100vw - 24px);
  }

  .portal-header {
    align-items: start;
    flex-direction: column;
  }

  .footer-inner {
    align-items: start;
    flex-direction: column;
  }

  .legal-page {
    padding-top: 38px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-accordion summary {
    grid-template-columns: 42px minmax(0, 1fr);
    padding: 16px;
  }

  .legal-accordion summary strong {
    font-size: 19px;
  }

  .legal-content {
    padding: 0 16px 20px;
  }

  .workflow-orbit {
    display: none;
  }

  .demo-screen-top,
  .mail-topline {
    align-items: start;
    flex-direction: column;
  }

  .demo-phone {
    min-height: auto;
    padding-top: 68px;
  }

  .phone-camera-grid span {
    min-height: 86px;
  }

  .demo-step {
    grid-template-columns: 38px minmax(0, 1fr);
    min-height: 98px;
  }

  .demo-step span {
    width: 38px;
    height: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Moreni 3D property journey */
.demo-stage {
  grid-template-columns: minmax(0, 1fr);
}

.demo-player.demo-workflow-lab {
  min-height: 760px;
  padding: 16px;
  background: #f5f6f7;
  border-color: #e1e4e7;
  border-radius: 34px;
  box-shadow: 0 40px 110px rgba(20, 29, 38, 0.13);
  transform: none;
}

.demo-player.demo-workflow-lab:hover {
  box-shadow: 0 48px 130px rgba(20, 29, 38, 0.16);
  transform: none;
}

.demo-player.demo-workflow-lab::before,
.demo-player.demo-workflow-lab::after {
  display: none;
}

.live-dot,
.scene-signal {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: #1f252b;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(31, 37, 43, 0.08);
  animation: scene-pulse 2.2s ease-in-out infinite;
}

.property-3d-experience {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.78fr);
  gap: 14px;
  min-height: 680px;
}

.property-canvas-wrap {
  position: relative;
  min-width: 0;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(28, 35, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 35, 42, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 46% 38%, #fff 0 9%, #f4f5f6 44%, #e8ebed 100%);
  background-size: 28px 28px, 28px 28px, 100% 100%;
  border: 1px solid rgba(215, 220, 224, 0.96);
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 26px 70px rgba(27, 37, 46, 0.08);
  transition: background 500ms ease;
}

.property-canvas-wrap::after {
  position: absolute;
  inset: auto 12% 3% 12%;
  z-index: -1;
  height: 18%;
  content: "";
  background: radial-gradient(ellipse at center, rgba(19, 27, 34, 0.2), transparent 68%);
  filter: blur(28px);
  opacity: 0.72;
  pointer-events: none;
}

#property-3d-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: pan-y;
}

#property-3d-canvas:active {
  cursor: grabbing;
}

.property-scene-fallback {
  position: absolute;
  inset: 24% 18% 24%;
  z-index: 0;
  opacity: 0.38;
  perspective: 900px;
  transform: rotateX(58deg) rotateZ(-28deg);
}

.fallback-room,
.fallback-wall {
  position: absolute;
  display: block;
  background: #fff;
  border: 2px solid #cfd4d8;
  box-shadow: 0 24px 70px rgba(22, 31, 39, 0.12);
}

.fallback-room {
  inset: 0;
}

.fallback-wall-a {
  inset: 0 auto 0 0;
  width: 22px;
  transform: rotateY(90deg);
  transform-origin: left center;
}

.fallback-wall-b {
  inset: 0 0 auto;
  height: 22px;
  transform: rotateX(90deg);
  transform-origin: center top;
}

.scene-topline {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  pointer-events: none;
}

.scene-topline span,
.scene-topline strong {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: #303840;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(218, 223, 227, 0.94);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(22, 31, 39, 0.08);
  backdrop-filter: blur(18px);
  font-size: 12px;
  font-weight: 800;
}

.scene-topline strong {
  color: #fff;
  background: rgba(21, 27, 33, 0.92);
  border-color: rgba(21, 27, 33, 0.92);
}

.scene-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: calc(100% - 40px);
  padding: 12px 15px 12px 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(218, 223, 227, 0.94);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(22, 31, 39, 0.11);
  backdrop-filter: blur(20px);
  pointer-events: none;
}

.scene-caption > span {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #fff;
  background: #171d23;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 850;
}

.scene-caption strong,
.scene-caption small {
  display: block;
}

.scene-caption strong {
  font-size: 13px;
}

.scene-caption small {
  margin-top: 3px;
  color: #6c747d;
  font-size: 11px;
}

.scene-node {
  position: absolute;
  z-index: 5;
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 32px;
  padding: 4px 9px 4px 5px;
  color: #5f6871;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(210, 216, 220, 0.92);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(22, 31, 39, 0.08);
  backdrop-filter: blur(15px);
  font-size: 10px;
  opacity: 0.58;
  pointer-events: none;
  transform: scale(0.9);
  transition:
    opacity 360ms ease,
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    color 360ms ease,
    background 360ms ease;
}

.scene-node span {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: #4b545c;
  background: #e9ecee;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 850;
}

.scene-node.is-active {
  color: #fff;
  background: rgba(22, 28, 34, 0.94);
  border-color: rgba(22, 28, 34, 0.94);
  opacity: 1;
  transform: scale(1);
}

.scene-node.is-active span {
  color: #171d23;
  background: #fff;
}

.scene-node-property {
  top: 18%;
  left: 8%;
}

.scene-node-expose {
  top: 33%;
  right: 7%;
}

.scene-node-portal {
  top: 57%;
  right: 5%;
}

.scene-node-bestand {
  bottom: 18%;
  left: 28%;
}

.scene-node-lead {
  top: 47%;
  left: 5%;
}

.moreni-core-badge {
  position: absolute;
  top: 48%;
  left: 52%;
  z-index: 5;
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 12px 8px 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(210, 216, 220, 0.95);
  border-radius: 18px;
  box-shadow: 0 20px 52px rgba(22, 31, 39, 0.14);
  backdrop-filter: blur(20px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.moreni-core-badge > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: #171d23;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 900;
}

.moreni-core-badge strong,
.moreni-core-badge small {
  display: block;
}

.moreni-core-badge strong {
  font-size: 12px;
}

.moreni-core-badge small {
  max-width: 128px;
  margin-top: 2px;
  color: #737b83;
  font-size: 9px;
  line-height: 1.25;
}

.property-story-panel {
  display: flex;
  min-width: 0;
  padding: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e1e4e7;
  border-radius: 26px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 22px 64px rgba(25, 34, 42, 0.08);
  flex-direction: column;
}

.story-progress {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  gap: 12px;
  align-items: center;
  margin-bottom: 4px;
}

.story-progress > span {
  color: #626b74;
  font-size: 11px;
  font-weight: 800;
}

.story-progress-track {
  height: 5px;
  overflow: hidden;
  background: #eceff1;
  border-radius: 999px;
}

.story-progress-track i {
  display: block;
  width: 20%;
  height: 100%;
  background: #1b2229;
  border-radius: inherit;
  transition: width 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.property-story-panel .demo-output {
  min-height: 0;
  padding: 18px 2px 10px;
  transform: none;
}

.property-story-panel .demo-output h3 {
  margin: 14px 0 9px;
  font-size: clamp(23px, 2.3vw, 34px);
  line-height: 1.06;
}

.property-story-panel .demo-output > p {
  margin: 0;
  color: #69727b;
  font-size: 13px;
  line-height: 1.58;
}

.property-story-panel .demo-tags {
  margin-top: 13px;
}

.property-story-panel .demo-tags span {
  padding: 6px 8px;
  font-size: 9px;
}

.property-input-card {
  margin-top: 5px;
  padding: 13px;
  background: #f6f7f8;
  border: 1px solid #e5e8ea;
  border-radius: 18px;
}

.input-card-head {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  color: #69727b;
  font-size: 10px;
  font-weight: 780;
}

.input-card-head strong {
  color: #252c33;
}

.input-preview-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
  margin-top: 10px;
}

.input-preview-row span {
  display: grid;
  min-width: 0;
  min-height: 50px;
  padding: 6px;
  align-content: end;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(180deg, transparent, rgba(19, 25, 31, 0.7)),
    linear-gradient(135deg, #c7ccd0, #6b737a);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  font-size: 8px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.input-preview-row span:nth-child(2) {
  background:
    linear-gradient(180deg, transparent, rgba(19, 25, 31, 0.68)),
    linear-gradient(135deg, #e1e3e4, #7b8389);
}

.input-preview-row span:nth-child(3) {
  background:
    linear-gradient(180deg, transparent, rgba(19, 25, 31, 0.7)),
    linear-gradient(135deg, #aeb4b9, #525b63);
}

.input-preview-row span:nth-child(4) {
  color: #2f373e;
  background:
    linear-gradient(90deg, rgba(61, 69, 76, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(61, 69, 76, 0.12) 1px, transparent 1px),
    #f4f5f6;
  background-size: 9px 9px;
}

.property-input-card .voice-message {
  padding: 10px 0 0;
  margin-top: 9px;
  border-top: 1px solid #e1e4e6;
}

.property-input-card .voice-message strong {
  font-size: 10px;
}

.property-input-card .voice-message p {
  margin-top: 3px;
  font-size: 9px;
  line-height: 1.4;
}

.property-story-panel .demo-mail-preview {
  min-height: 0;
  padding: 13px;
  margin-top: 10px;
  background: #fff;
  border: 1px solid #e3e6e8;
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(24, 33, 41, 0.06);
  transform: none;
}

.property-story-panel .demo-mail-preview p {
  margin: 10px 0 0;
  color: #555f68;
  font-size: 10px;
  line-height: 1.48;
}

.property-story-panel .mail-topline span,
.property-story-panel .mail-topline strong {
  min-height: 26px;
  padding: 0 8px;
  font-size: 9px;
}

.approval-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding-top: 10px;
  border-top: 1px solid #eceef0;
  color: #747d85;
  font-size: 9px;
  font-weight: 760;
}

.approval-row b {
  padding: 6px 9px;
  color: #fff;
  background: #1b2229;
  border-radius: 9px;
  font-size: 9px;
}

.property-story-panel .demo-personalized-note {
  margin: auto 2px 0;
  padding-top: 12px;
  color: #838a91;
  font-size: 9px;
  line-height: 1.42;
}

.demo-timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.demo-step {
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 100px;
}

.demo-step small {
  font-size: 10px;
}

@keyframes scene-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(31, 37, 43, 0.08);
    opacity: 0.68;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(31, 37, 43, 0.02);
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .property-3d-experience {
    grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  }

  .property-canvas-wrap {
    min-height: 640px;
  }
}

@media (max-width: 900px) {
  .demo-player.demo-workflow-lab {
    min-height: 0;
  }

  .property-3d-experience {
    grid-template-columns: 1fr;
  }

  .property-canvas-wrap {
    min-height: 520px;
  }

  .property-story-panel {
    min-height: 0;
  }

  .demo-timeline {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .demo-player.demo-workflow-lab {
    padding: 9px;
    border-radius: 24px;
  }

  .demo-lab-top {
    padding: 4px;
  }

  .property-canvas-wrap {
    min-height: 430px;
    border-radius: 20px;
  }

  .scene-topline {
    top: 12px;
    right: 12px;
    left: 12px;
  }

  .scene-topline span {
    display: none;
  }

  .scene-topline strong {
    margin-left: auto;
  }

  .moreni-core-badge {
    top: 54%;
    left: 50%;
  }

  .moreni-core-badge small {
    display: none;
  }

  .scene-node {
    padding-right: 5px;
  }

  .scene-node strong {
    display: none;
  }

  .scene-node-property {
    top: 19%;
    left: 5%;
  }

  .scene-node-expose {
    top: 31%;
    right: 4%;
  }

  .scene-node-portal {
    top: 57%;
    right: 4%;
  }

  .scene-node-bestand {
    bottom: 17%;
    left: 31%;
  }

  .scene-node-lead {
    top: 53%;
    left: 4%;
  }

  .scene-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .property-story-panel {
    padding: 15px;
    border-radius: 20px;
  }

  .demo-timeline {
    grid-template-columns: 1fr;
  }
}
