*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --bg: #0a0d14;
  --bg-soft: #101522;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --text: #f4f7fb;
  --muted: #aab4c8;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #79a8ff;
  --accent-strong: #a4c2ff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(121, 168, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #090c12 0%, #0d121d 100%);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: inline-flex;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  margin-bottom: 1rem;
}

h1,
h2 {
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.3rem, 6vw, 4.9rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  margin: 0 0 0.5rem;
}

p {
  margin: 0;
  color: var(--muted);
}

.lead {
  font-size: 1.05rem;
  max-width: 62ch;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: linear-gradient(
    180deg,
    rgba(8, 14, 24, 0.34) 0%,
    rgba(8, 14, 24, 0.18) 100%
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: linear-gradient(
    180deg,
    rgba(8, 14, 24, 0.56) 0%,
    rgba(8, 14, 24, 0.38) 100%
  );
  border-color: rgba(255, 255, 255, 0.045);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.1);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(164, 194, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.14);
}

.brand-mark-svg {
  padding: 0;
}

.brand-mark-logo {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-mark img,
.brand-mark-svg img,
.brand-mark-icon {
  display: none;
}

.brand-copy {
  display: grid;
}

.brand-copy strong {
  font-size: 0.98rem;
}

.brand-copy span {
  font-size: 0.84rem;
  color: var(--muted);
}

.menu-toggle {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  gap: 0.28rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.site-nav {
  position: fixed;
  top: 78px;
  left: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(10, 13, 20, 0.96);
  border: 1px solid var(--line);
  border-radius: 1.15rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.site-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.site-nav a {
  color: var(--muted);
  font-weight: 500;
}

.site-nav a.is-active,
.site-nav .nav-cta {
  color: var(--text);
}

.hero,
.page-hero {
  padding-top: 3.5rem;
}

.hero-grid,
.grid,
.split-section,
.footer-inner,
.cta-box {
  display: grid;
  gap: 1rem;
}

.hero-grid {
  gap: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1.8rem 0 1.35rem;
}

.btn {
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #08101d;
  background: linear-gradient(135deg, var(--accent-strong), #d7e4ff);
}

.btn-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.point-card,
.info-card,
.service-card,
.project-card,
.glass-card,
.cta-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.point-card,
.info-card,
.service-card,
.project-card,
.glass-card {
  padding: 1.25rem;
}

.cta-box {
  padding: 1.5rem;
  align-items: center;
}

.point-card strong,
.info-card h3,
.service-card h3,
.project-card h3 {
  display: block;
  margin-bottom: 0.45rem;
}

.point-card span,
.project-card p,
.info-card p,
.service-card p {
  color: var(--muted);
}

.glass-card {
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.status-dot {
  position: relative;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #7dff93;
  box-shadow:
    0 0 0 6px rgba(125, 255, 147, 0.12),
    0 0 14px rgba(125, 255, 147, 0.55);
  animation: statusDotPulse 1.8s ease-in-out infinite;
}

.status-dot::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  border: 1px solid rgba(125, 255, 147, 0.35);
  opacity: 0;
  transform: scale(0.72);
  animation: statusDotRing 1.8s ease-out infinite;
}

@keyframes statusDotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow:
      0 0 0 6px rgba(125, 255, 147, 0.12),
      0 0 14px rgba(125, 255, 147, 0.55);
  }

  50% {
    opacity: 0.72;
    transform: scale(0.88);
    box-shadow:
      0 0 0 9px rgba(125, 255, 147, 0.08),
      0 0 20px rgba(125, 255, 147, 0.8);
  }
}

@keyframes statusDotRing {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }

  25% {
    opacity: 0.45;
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.feature-list {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--muted);
}

.feature-list li + li {
  margin-top: 0.75rem;
}

.panel-metric {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin-top: 1.2rem;
}

.panel-metric span {
  display: block;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.project-tag {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(121, 168, 255, 0.14);
  color: var(--accent-strong);
  font-size: 0.83rem;
  font-weight: 600;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-inner {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
}

@media (min-width: 760px) {
  .section {
    padding: 6.5rem 0;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .hero-grid,
  .split-section {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-inner,
  .cta-box {
    grid-template-columns: 1.2fr auto;
  }
}

@media (min-width: 1024px) {
  .hero,
  .page-hero {
    padding-top: 5rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
  }

  .point-card,
  .info-card,
  .service-card,
  .project-card,
  .glass-card {
    padding: 1.5rem;
  }
}

.reveal-item {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.994);
  transform-origin: center 72%;
  transition:
    opacity 1120ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 1120ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
  backface-visibility: hidden;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (max-width: 759px) {
  .reveal-item {
    transform: translate3d(0, 10px, 0) scale(0.996);
    transition:
      opacity 980ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  }
}

.reveal-group .reveal-item {
  filter: blur(0px);
}

.reveal-item:not(.is-visible) {
  pointer-events: none;
}

.reveal-item.is-visible {
  pointer-events: auto;
}

.process-layout,
.services-detail-layout {
  gap: 1.5rem;
}

.timeline-list {
  display: grid;
  gap: 1rem;
}

.timeline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.timeline-card:hover {
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.timeline-step {
  min-width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--accent-strong);
  background: rgba(121, 168, 255, 0.12);
  border: 1px solid rgba(121, 168, 255, 0.15);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.trust-pill {
  min-height: 46px;
  padding: 0.8rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow);
}

.cta-box-strong {
  gap: 1.2rem;
  padding: 1.8rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(164, 194, 255, 0.16);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-card-advanced {
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card-advanced::before {
  content: '';
  position: absolute;
  inset: auto -20% -55% auto;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121, 168, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.service-card-advanced:hover {
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    linear-gradient(135deg, rgba(121, 168, 255, 0.18), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.12);
  flex: 0 0 46px;
}

.service-icon-svg {
  width: 22px;
  height: 22px;
  display: block;
  overflow: visible;
}

.service-icon-svg path,
.service-icon-svg circle,
.service-icon-svg rect,
.service-icon-svg line,
.service-icon-svg polyline {
  fill: none;
  stroke: var(--accent-strong);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

#services-overview-cards .service-card {
  min-height: 100%;
}

#services-overview-cards .service-card p {
  line-height: 1.65;
  max-width: 30ch;
}

.stack-detail {
  display: grid;
  gap: 1rem;
}

.mini-detail-card {
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.mini-detail-card:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.mini-detail-card strong {
  display: block;
  margin-bottom: 0.4rem;
}

.mini-detail-card span {
  color: var(--muted);
}

@media (min-width: 760px) {
  .cta-actions {
    justify-content: flex-end;
  }
}

.hero-grid-premium {
  position: relative;
}

.hero-inline-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.35rem;
}

.hero-trust-pill {
  min-height: 42px;
  padding: 0.75rem 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  color: var(--text);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.hero-panel-premium {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

.hero-stack {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-card {
  position: relative;
  z-index: 3;
  width: min(100%, 440px);
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  min-width: 210px;
  max-width: 240px;
  padding: 1rem 1.05rem;
  background: rgba(10, 13, 20, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-floating-card-top {
  top: 8%;
  right: 0;
}

.hero-floating-card-bottom {
  bottom: 10%;
  left: 0;
}

.floating-label {
  display: inline-flex;
  margin-bottom: 0.5rem;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-floating-card strong {
  display: block;
  line-height: 1.3;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  pointer-events: none;
  z-index: 1;
}

.hero-orb-one {
  top: 3%;
  left: 8%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(121, 168, 255, 0.22), transparent 68%);
}

.hero-orb-two {
  right: 10%;
  bottom: 4%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.hero-main-card,
.hero-floating-card,
.btn[data-magnetic] {
  will-change: transform;
}

@media (max-width: 759px) {
  .hero-panel-premium {
    min-height: auto;
    overflow: visible;
  }

  .hero-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
  }

  .hero-main-card {
    width: 100%;
  }

  .hero-floating-card {
    position: relative;
    inset: auto;
    min-width: 0;
    max-width: none;
  }

  .hero-orb {
    display: none;
  }
}

@media (min-width: 1024px) {
  .hero-grid-premium {
    align-items: center;
    gap: 3rem;
  }

  .hero-copy {
    padding-right: 1rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel-premium {
    min-height: 580px;
  }

  .hero-stack {
    min-height: 580px;
  }

  .hero-floating-card-top {
    top: 10%;
    right: -2%;
  }

  .hero-floating-card-bottom {
    bottom: 10%;
    left: -2%;
  }
}

/* ===== Hero spacing fix + smoother motion + next step ===== */

.hero-panel-premium {
  overflow: visible;
  padding: 1.25rem 2.5rem 2rem 1rem;
  min-height: 640px;
}

.hero-stack {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4.25rem 2.75rem 4.5rem 1.75rem;
}

.hero-main-card {
  position: relative;
  z-index: 3;
  width: min(100%, 400px);
  margin: 0 auto;
}

.hero-floating-card {
  position: absolute;
  z-index: 4;
  min-width: 220px;
  max-width: 240px;
  padding: 1rem 1.05rem;
  background: rgba(10, 13, 20, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-floating-card-top {
  top: 1.5rem;
  right: 0.75rem;
}

.hero-floating-card-bottom {
  bottom: 1rem;
  left: 0.5rem;
}

.hero-orb-one {
  top: 6%;
  left: 10%;
}

.hero-orb-two {
  right: 6%;
  bottom: 8%;
}

.hero-main-card,
.hero-floating-card,
.btn[data-magnetic],
.service-card-advanced,
.info-card,
.project-card,
.timeline-card {
  transition:
    transform 220ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-proof-strip {
  margin-top: 1.5rem;
}

.hero-proof-grid {
  display: grid;
  gap: 1rem;
}

.proof-card {
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.proof-label {
  display: inline-flex;
  margin-bottom: 0.45rem;
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.proof-card p {
  color: var(--muted);
}

@media (max-width: 759px) {
  .hero-panel-premium {
    min-height: auto;
    padding: 0;
    overflow: visible;
  }

  .hero-stack {
    min-height: auto;
    display: grid;
    gap: 1rem;
    padding: 0;
  }

  .hero-main-card {
    width: 100%;
  }

  .hero-floating-card {
    position: relative;
    inset: auto;
    min-width: 0;
    max-width: none;
  }
}

@media (min-width: 760px) {
  .hero-proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .hero-grid-premium {
    align-items: center;
    gap: 3.25rem;
  }

  .hero-copy {
    padding-right: 0.75rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-panel-premium {
    min-height: 680px;
    padding: 1.5rem 3.25rem 2.25rem 1rem;
  }

  .hero-stack {
    min-height: 680px;
    padding: 4.5rem 3.5rem 5rem 2rem;
  }

  .hero-main-card {
    width: min(100%, 410px);
  }

  .hero-floating-card-top {
    top: 1.25rem;
    right: 0.5rem;
  }

  .hero-floating-card-bottom {
    bottom: 0.75rem;
    left: 0.25rem;
  }
}

.hero .hero-points {
  display: grid;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero .hero-points .point-card {
  margin: 0;
}

@media (min-width: 1024px) {
  .hero .hero-points {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
}

.contact-layout {
  gap: 1.5rem;
  align-items: start;
}

.contact-intro-block {
  display: grid;
  gap: 1rem;
}

.contact-intro-card {
  gap: 1.25rem;
}

.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.contact-benefits-grid {
  display: grid;
  gap: 1rem;
}

.contact-form-card {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.5rem;
}

.form-field label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(244, 247, 251, 0.72) 50%),
    linear-gradient(135deg, rgba(244, 247, 251, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 1.15rem) calc(50% - 2px),
    calc(100% - 0.82rem) calc(50% - 2px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.form-field select::-ms-expand {
  display: none;
}

.form-field select option,
.form-field select optgroup {
  color: #f4f7fb;
  background: #111724;
}

.form-field select option:checked {
  color: #f4f7fb;
  background: rgba(121, 168, 255, 0.32);
}

.form-field select option:hover,
.form-field select option:focus {
  background: rgba(121, 168, 255, 0.22);
}

@supports selector(select:open) {
  .form-field select:open {
    border-color: rgba(164, 194, 255, 0.45);
    box-shadow: 0 0 0 4px rgba(121, 168, 255, 0.08);
  }
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(164, 194, 255, 0.45);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(121, 168, 255, 0.08);
}

.form-field.is-invalid input,
.form-field.is-invalid select,
.form-field.is-invalid textarea {
  border-color: rgba(255, 119, 119, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 119, 119, 0.08);
}

.form-error {
  min-height: 1rem;
  font-size: 0.84rem;
  color: #ff9d9d;
}

.form-footer {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.form-note {
  color: var(--muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.form-success {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(140, 255, 158, 0.08);
  border: 1px solid rgba(140, 255, 158, 0.22);
}

.form-success strong {
  display: block;
  margin-bottom: 0.35rem;
}

@media (min-width: 760px) {
  .contact-benefits-grid,
  .form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 2rem;
  }

  .contact-form-card {
    padding: 1.6rem;
  }

  .form-footer {
    grid-template-columns: 1fr auto;
  }
}

/* ===== Contact page remake ===== */

.contact-hero-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.contact-hero-copy {
  max-width: 760px;
}

.contact-hero-pills {
  margin-top: 0.25rem;
}

.contact-hero-aside {
  display: grid;
  gap: 1rem;
}

.contact-hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 100%;
}

.contact-hero-panel::before {
  content: '';
  position: absolute;
  inset: auto -18% -55% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121, 168, 255, 0.18), transparent 70%);
  pointer-events: none;
}

.contact-hero-panel > * {
  position: relative;
  z-index: 1;
}

.contact-hero-signal-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1rem;
}

.contact-hero-signal {
  padding: 0.95rem 1rem;
  display: grid;
  gap: 0.2rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact-hero-signal-kicker {
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-layout-premium {
  gap: 1.5rem;
}

.contact-intro-card-premium {
  gap: 1.35rem;
}

.contact-intake-card {
  padding: 1.15rem 1.15rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-intake-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-intake-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.contact-intake-step {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(121, 168, 255, 0.12);
  border: 1px solid rgba(121, 168, 255, 0.14);
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.contact-intake-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-form-card-premium {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
}

.contact-form-card-premium::before {
  content: '';
  position: absolute;
  inset: auto -20% -60% auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121, 168, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.contact-form-head {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.contact-form-head strong {
  font-size: 1.2rem;
  line-height: 1.35;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.contact-form-meta {
  display: grid;
  gap: 1rem;
}

.contact-form-meta-card {
  padding: 1rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.contact-form-meta-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.form-footer-premium {
  gap: 1rem;
}

.form-success,
.form-error-box {
  margin-top: 0.35rem;
}

.form-error-box {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 119, 119, 0.08);
  border: 1px solid rgba(255, 119, 119, 0.2);
}

.form-error-box strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #ffd3d3;
}

.contact-form.is-submitting {
  opacity: 0.96;
}

.contact-form.is-submitting .btn,
.contact-form.is-submitting input,
.contact-form.is-submitting select,
.contact-form.is-submitting textarea {
  pointer-events: none;
}

.contact-form.is-submitting .btn {
  opacity: 0.8;
}

@media (min-width: 760px) {
  .contact-hero-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.75rem;
    align-items: start;
  }

  .contact-layout-premium {
    grid-template-columns: 0.94fr 1.06fr;
    gap: 2rem;
  }

  .contact-form-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .contact-hero-layout {
    gap: 2.25rem;
    align-items: center;
  }

  .contact-form-card-premium {
    padding: 1.55rem;
  }

  .contact-hero-panel,
  .contact-intake-card,
  .contact-form-meta-card {
    transition:
      transform 180ms ease,
      border-color 180ms ease,
      background 180ms ease,
      box-shadow 180ms ease;
  }

  .contact-hero-panel:hover,
  .contact-intake-card:hover,
  .contact-form-meta-card:hover {
    transform: translateY(-2px);
    border-color: rgba(164, 194, 255, 0.18);
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
  }
}

.service-fit-grid,
.project-preview-grid {
  display: grid;
  gap: 1rem;
}

.contact-intro-card .eyebrow {
  margin-bottom: 0.8rem;
}

.about-layout,
.about-values-layout,
.project-showcase-layout {
  gap: 1.5rem;
}

@media (min-width: 760px) {
  .service-fit-grid,
  .project-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.site-header {
  box-shadow: none;
}

.site-nav a {
  position: relative;
  padding: 0.35rem 0;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(121, 168, 255, 0.9),
    rgba(255, 255, 255, 0.6)
  );
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
  opacity: 0.85;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  opacity: 0.6;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav a.is-active {
  color: var(--text);
  opacity: 1;
  font-weight: 600;
}

.site-nav a.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.site-nav .nav-cta {
  min-height: 40px;
  padding: 0.68rem 0.95rem;
  border-radius: 14px;
  border: 1px solid rgba(164, 194, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 6px 16px rgba(0, 0, 0, 0.08);
  color: var(--text);
}

.site-nav .nav-cta::after {
  display: none;
}

.site-nav .nav-cta:hover {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  border-color: rgba(164, 194, 255, 0.18);
}

.site-nav .nav-cta.is-active {
  border-color: rgba(164, 194, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(121, 168, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
}

.site-footer {
  padding: 2.5rem 0 3rem;
}

.footer-shell {
  display: grid;
  gap: 1.25rem;
}

.footer-main {
  display: grid;
  gap: 1.25rem;
  padding: 1.4rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.footer-brand-mark {
  flex: 0 0 auto;
}

.footer-copy {
  max-width: 52ch;
}

.footer-nav-group {
  display: grid;
  gap: 0.85rem;
}

.footer-title {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 0.7rem;
}

.footer-links a {
  width: fit-content;
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.footer-links a:hover {
  color: var(--text);
  transform: translateX(2px);
}

.footer-links-contact {
  gap: 0.55rem;
}

.footer-note {
  color: var(--muted);
  max-width: 28ch;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 0 0.2rem;
  opacity: 0.92;
}

.footer-bottom-sep {
  opacity: 0.55;
}

.page-hero .lead,
.section-heading p {
  max-width: 68ch;
}

@media (max-width: 759px) {
  .site-nav .nav-cta {
    justify-content: center;
    min-height: 46px;
    border-radius: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}

@media (min-width: 760px) {
  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
    padding: 1.6rem;
  }
}

@media (min-width: 1024px) {
  .footer-main {
    padding: 1.8rem;
  }
}

.case-preview-grid {
  display: grid;
  gap: 1rem;
}

.case-preview-card {
  padding: 1.2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.case-preview-card:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
}

.case-preview-card h3 {
  margin: 0 0 0.7rem;
}

.case-bullet-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.case-bullet-list li + li {
  margin-top: 0.65rem;
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.faq-item:hover {
  border-color: rgba(164, 194, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.faq-item.is-open {
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  min-height: 72px;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: 0;
  color: var(--text);
  text-align: left;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  border-radius: 999px;
  background: var(--accent-strong);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.6);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.2rem;
  opacity: 0;
  transition:
    grid-template-rows 260ms ease,
    opacity 220ms ease,
    padding 260ms ease;
}

.faq-answer > * {
  overflow: hidden;
}

.faq-answer p {
  max-width: 68ch;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  padding: 0 1.2rem 1.2rem;
  opacity: 1;
}

@media (min-width: 760px) {
  .case-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-preview-card {
    padding: 1.35rem;
  }
}

.closing-layout {
  gap: 1.5rem;
  align-items: start;
}

.closing-points {
  display: grid;
  gap: 1rem;
}

.contact-form-card {
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -60% auto;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121,168,255,0.18), transparent 70%);
  pointer-events: none;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-field.is-focused label {
  color: var(--accent-strong);
}

.contact-bottom-note {
  margin-top: 1rem;
  color: var(--muted);
}

.contact-trust .container {
  display: grid;
  gap: 1.2rem;
}

.contact-trust-grid {
  display: grid;
  gap: 1.2rem;
}

.contact-bottom-note {
  margin-top: 0;
  color: var(--muted);
}

.contact-bottom-note p {
  margin: 0;
}

@media (min-width: 760px) {
  .contact-trust-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

#contact-process .timeline-card,
#contact-closing .mini-detail-card {
  height: 100%;
}

#contact-process .grid,
#contact-closing .closing-points {
  align-items: stretch;
}

/* ===== Global spacing refinement ===== */

.section {
  position: relative;
}

.section > .container {
  position: relative;
}

.section-heading {
  margin-bottom: 2.2rem;
}

.section-heading.narrow {
  margin-bottom: 2rem;
}

.split-section {
  gap: 1.5rem;
}

.grid {
  gap: 1.1rem;
}

.page-hero .narrow,
.hero .hero-copy {
  max-width: 760px;
}

.page-hero .lead,
.hero .lead {
  line-height: 1.7;
}

.section + .section {
  scroll-margin-top: 110px;
}

@media (min-width: 760px) {
  .section-heading {
    margin-bottom: 2.5rem;
  }

  .section-heading.narrow {
    margin-bottom: 2.2rem;
  }

  .split-section {
    gap: 1.75rem;
  }

  .grid {
    gap: 1.2rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 0;
  }

  .section-heading {
    margin-bottom: 2.8rem;
  }

  .section-heading.narrow {
    margin-bottom: 2.35rem;
  }

  .split-section {
    gap: 2rem;
  }

  .grid {
    gap: 1.3rem;
  }

  .page-hero {
    padding-top: 5.5rem;
    padding-bottom: 4.5rem;
  }
}

/* ===== Page hero refinement ===== */

.page-hero {
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(121, 168, 255, 0.05), transparent);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.proof-card,
.case-preview-card,
.contact-form-card,
.timeline-card,
.mini-detail-card,
.faq-item {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.proof-card:hover,
.case-preview-card:hover,
.contact-form-card:hover,
.timeline-card:hover,
.mini-detail-card:hover {
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
}

@media (min-width: 1024px) {
  .proof-card:hover,
  .case-preview-card:hover,
  .contact-form-card:hover,
  .timeline-card:hover,
  .mini-detail-card:hover {
    transform: translateY(-2px);
  }
}

.results-grid {
  display: grid;
  gap: 1rem;
}

.seo-focus-layout {
  gap: 1.5rem;
  align-items: start;
}

@media (min-width: 760px) {
  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== Central stacked-card spacing fix ===== */

.hero .hero-points,
.contact-trust-grid,
.results-grid,
.case-preview-grid,
.faq-list,
.closing-points,
.stack-detail,
.contact-benefits-grid,
.hero-proof-grid {
  display: grid;
  gap: 1.25rem;
}

.hero .hero-points .point-card,
.contact-trust-grid .proof-card,
.results-grid .proof-card,
.case-preview-grid .case-preview-card,
.faq-list .faq-item,
.closing-points .mini-detail-card,
.stack-detail .mini-detail-card,
.contact-benefits-grid .proof-card,
.hero-proof-grid .proof-card {
  margin: 0;
}

@media (min-width: 760px) {
  .hero .hero-points,
  .contact-trust-grid,
  .results-grid,
  .case-preview-grid,
  .faq-list,
  .closing-points,
  .stack-detail,
  .contact-benefits-grid,
  .hero-proof-grid {
    gap: 1.35rem;
  }
}

@media (min-width: 1024px) {
  .hero .hero-points,
  .contact-trust-grid,
  .results-grid,
  .case-preview-grid,
  .faq-list,
  .closing-points,
  .stack-detail,
  .contact-benefits-grid,
  .hero-proof-grid {
    gap: 1.45rem;
  }
}
.legal-card {
  display: grid;
  gap: 1rem;
}

.legal-card h3 {
  margin: 0.4rem 0 0;
}

.legal-card p + p {
  margin-top: 0.2rem;
}

@media (min-width: 760px) {
  .site-nav {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

/* ===== Services case section: Alpha Admin Tool ===== */

.service-case-shell {
  display: grid;
  gap: 2rem;
}

.service-case-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.service-case-sidebar,
.service-case-switches,
.service-case-stage,
.service-case-benefits,
.service-case-kpis,
.service-case-mini-cards,
.service-case-inline-kpis,
.service-case-admin-top,
.service-case-table,
.service-case-log-list,
.service-case-calendar-grid {
  display: grid;
  gap: 1rem;
}

.service-case-intro-card {
  padding: 1.35rem;
}

.service-case-intro-card h3 {
  margin: 0 0 0.7rem;
}

.service-case-kpis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.service-case-kpi {
  padding: 0.95rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.service-case-kpi strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.service-case-kpi span {
  color: var(--muted);
  font-size: 0.84rem;
}

.service-case-switch {
  width: 100%;
  padding: 1rem 1.05rem;
  display: grid;
  gap: 0.35rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.service-case-switch:hover {
  transform: translateY(-1px);
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.service-case-switch.is-active {
  border-color: rgba(164, 194, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(121, 168, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.service-case-switch-label {
  font-weight: 700;
  color: var(--text);
}

.service-case-switch-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.service-case-stage {
  position: relative;
}

.service-case-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.15rem;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.service-case-panel[hidden] {
  display: none;
}

.service-case-panel.is-entering {
  opacity: 0;
  transform: translate3d(0, 10px, 0) scale(0.995);
}

.service-case-panel-top {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.service-case-panel-top strong {
  font-size: 1.05rem;
  line-height: 1.45;
}

.service-case-app {
  display: grid;
  gap: 1rem;
}

.service-case-app-sidebar {
  display: none;
}

.service-case-app-main {
  min-width: 0;
}

.service-case-app-main-full {
  width: 100%;
  grid-column: 1 / -1;
}

.service-case-window {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1rem;
  background: rgba(10, 13, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.service-case-window-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0;
}

.service-case-calendar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-case-calendar-grid span,
.service-case-location-pill {
  min-height: 42px;
  padding: 0.8rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.service-case-calendar-grid span.is-active,
.service-case-location-pill.is-active {
  color: var(--text);
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(121, 168, 255, 0.09);
}

.service-case-mini-cards {
  margin-top: 1rem;
}

.service-case-mini-card {
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.service-case-mini-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

.service-case-mini-card span {
  color: var(--muted);
}

.service-case-log-item {
  display: grid;
  gap: 0.45rem;
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-width: 0;
}

.service-case-log-time {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-case-log-badge {
  width: fit-content;
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  background: rgba(121, 168, 255, 0.12);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
}

.service-case-log-badge-muted {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.service-case-log-text {
  color: var(--muted);
}

.service-case-inline-kpis {
  margin-top: 1rem;
  grid-template-columns: 1fr;
}

.service-case-inline-kpis > div {
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.service-case-inline-kpis strong {
  display: block;
  margin-bottom: 0.3rem;
}

.service-case-inline-kpis span {
  color: var(--muted);
}

.service-case-scan-card {
  padding: 1rem;
  display: grid;
  gap: 1rem;
  align-items: start;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.service-case-scan-code {
  width: 104px;
  height: 104px;
  border-radius: 18px;
  background-color: #171c2b;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Crect width='100' height='100' rx='14' fill='%23171c2b'/%3E%3Cg fill='%23d8e4ff'%3E%3Crect x='8' y='8' width='22' height='22' rx='3'/%3E%3Crect x='12' y='12' width='14' height='14' rx='2' fill='%23171c2b'/%3E%3Crect x='16' y='16' width='6' height='6' rx='1.5'/%3E%3Crect x='70' y='8' width='22' height='22' rx='3'/%3E%3Crect x='74' y='12' width='14' height='14' rx='2' fill='%23171c2b'/%3E%3Crect x='78' y='16' width='6' height='6' rx='1.5'/%3E%3Crect x='8' y='70' width='22' height='22' rx='3'/%3E%3Crect x='12' y='74' width='14' height='14' rx='2' fill='%23171c2b'/%3E%3Crect x='16' y='78' width='6' height='6' rx='1.5'/%3E%3Crect x='40' y='10' width='6' height='6' rx='1'/%3E%3Crect x='48' y='10' width='6' height='6' rx='1'/%3E%3Crect x='40' y='18' width='6' height='6' rx='1'/%3E%3Crect x='48' y='26' width='6' height='6' rx='1'/%3E%3Crect x='56' y='18' width='6' height='6' rx='1'/%3E%3Crect x='40' y='40' width='6' height='6' rx='1'/%3E%3Crect x='48' y='40' width='6' height='6' rx='1'/%3E%3Crect x='56' y='40' width='6' height='6' rx='1'/%3E%3Crect x='64' y='40' width='6' height='6' rx='1'/%3E%3Crect x='40' y='48' width='6' height='6' rx='1'/%3E%3Crect x='56' y='48' width='6' height='6' rx='1'/%3E%3Crect x='64' y='48' width='6' height='6' rx='1'/%3E%3Crect x='72' y='48' width='6' height='6' rx='1'/%3E%3Crect x='32' y='56' width='6' height='6' rx='1'/%3E%3Crect x='40' y='56' width='6' height='6' rx='1'/%3E%3Crect x='48' y='56' width='6' height='6' rx='1'/%3E%3Crect x='64' y='56' width='6' height='6' rx='1'/%3E%3Crect x='72' y='56' width='6' height='6' rx='1'/%3E%3Crect x='32' y='64' width='6' height='6' rx='1'/%3E%3Crect x='48' y='64' width='6' height='6' rx='1'/%3E%3Crect x='56' y='64' width='6' height='6' rx='1'/%3E%3Crect x='72' y='64' width='6' height='6' rx='1'/%3E%3Crect x='40' y='72' width='6' height='6' rx='1'/%3E%3Crect x='48' y='72' width='6' height='6' rx='1'/%3E%3Crect x='56' y='72' width='6' height='6' rx='1'/%3E%3Crect x='64' y='72' width='6' height='6' rx='1'/%3E%3Crect x='72' y='72' width='6' height='6' rx='1'/%3E%3Crect x='40' y='80' width='6' height='6' rx='1'/%3E%3Crect x='56' y='80' width='6' height='6' rx='1'/%3E%3Crect x='72' y='80' width='6' height='6' rx='1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border: 1px solid rgba(164, 194, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 10px 24px rgba(0, 0, 0, 0.18);
}

.service-case-scan-meta strong {
  display: block;
  margin-bottom: 0.35rem;
}

.service-case-scan-meta span {
  color: var(--muted);
}

.service-case-admin-top {
  grid-template-columns: 1fr;
}

.service-case-stat-card {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.service-case-stat-card strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
}

.service-case-stat-card span {
  color: var(--muted);
}

.service-case-table-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.45rem;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 18px;
  min-width: 0;
}

.service-case-table-row.is-head {
  background: rgba(121, 168, 255, 0.08);
  border-color: rgba(164, 194, 255, 0.18);
  color: var(--text);
  font-weight: 700;
}

.service-case-table-row span:not(:first-child),
.service-case-flow span {
  color: var(--muted);
}

.service-case-flow {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.service-case-location-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.service-case-location-pill {
  justify-content: flex-start;
}

.service-case-benefits {
  margin-top: 0.35rem;
}

@media (min-width: 760px) {
  .service-case-layout {
    gap: 1.5rem;
  }

  .service-case-app {
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: start;
  }

  .service-case-app-sidebar {
    display: grid;
    gap: 0.75rem;
  }

  .service-case-app-sidebar span {
    min-height: 46px;
    padding: 0.85rem 0.95rem;
    display: inline-flex;
    align-items: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--muted);
  }

  .service-case-app-sidebar span.is-active {
    color: var(--text);
    border-color: rgba(164, 194, 255, 0.22);
    background: rgba(121, 168, 255, 0.08);
  }

  .service-case-scan-card {
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: center;
  }

  .service-case-mini-cards,
  .service-case-inline-kpis,
  .service-case-admin-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-case-table-row,
  .service-case-table-row.is-head {
    grid-template-columns: minmax(120px, 1.2fr) minmax(90px, 0.9fr) minmax(90px, 0.9fr);
    align-items: center;
  }

  .service-case-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 760px) {
  .service-case-app-main-full .service-case-window {
    width: 100%;
  }

  .service-case-flow span,
  .service-case-location-pill {
    flex: 0 0 auto;
  }
}

@media (min-width: 1024px) {
  .service-case-layout {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    gap: 2rem;
  }

  .service-case-intro-card {
    padding: 1.5rem;
  }

  .service-case-panel {
    min-height: 100%;
    padding: 1.35rem;
  }

  .service-case-switches {
    gap: 0.9rem;
  }

  .service-case-admin-top {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* ===== Project case premium motion refinement ===== */

.service-case-stage {
  isolation: isolate;
}

.service-case-panel {
  position: relative;
  overflow: hidden;
  transform-origin: center top;
}

.service-case-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  background: linear-gradient(
    180deg,
    rgba(121, 168, 255, 0.08),
    rgba(121, 168, 255, 0.02) 45%,
    transparent
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.service-case-panel::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(164, 194, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transition: opacity 320ms ease;
}

.service-case-panel.is-active::before,
.service-case-panel.is-active::after {
  opacity: 1;
}

.service-case-panel.is-entering {
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.992);
  filter: blur(1px);
}

.service-case-panel.is-active {
  animation: serviceCasePanelSettle 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes serviceCasePanelSettle {
  0% {
    transform: translate3d(0, 8px, 0) scale(0.996);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.service-case-switch {
  position: relative;
  overflow: hidden;
}

.service-case-switch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 168, 255, 0.12),
    transparent 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.service-case-switch::after {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(121, 168, 255, 0.95),
    rgba(255, 255, 255, 0.7)
  );
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
  pointer-events: none;
}

.service-case-switch:hover::before,
.service-case-switch.is-active::before {
  opacity: 1;
}

.service-case-switch.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.service-case-switch.is-active {
  transform: translateY(-1px);
  border-color: rgba(164, 194, 255, 0.26);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(164, 194, 255, 0.08);
}

.service-case-switch.is-active .service-case-switch-label {
  color: #f7faff;
}

.service-case-switch.is-active .service-case-switch-text {
  color: #c2cbe0;
}

.service-case-window,
.service-case-stat-card,
.service-case-log-item,
.service-case-mini-card,
.service-case-table-row,
.service-case-scan-card,
.service-case-inline-kpis > div,
.service-case-kpi,
.service-case-location-pill,
.service-case-flow span {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.service-case-panel.is-active .service-case-window {
  border-color: rgba(164, 194, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.service-case-panel.is-active .service-case-kpi,
.service-case-panel.is-active .service-case-stat-card,
.service-case-panel.is-active .service-case-log-item,
.service-case-panel.is-active .service-case-mini-card,
.service-case-panel.is-active .service-case-inline-kpis > div {
  animation: serviceCaseCardRise 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-case-panel.is-active .service-case-kpi:nth-child(1),
.service-case-panel.is-active .service-case-stat-card:nth-child(1),
.service-case-panel.is-active .service-case-log-item:nth-child(1),
.service-case-panel.is-active .service-case-mini-card:nth-child(1),
.service-case-panel.is-active .service-case-inline-kpis > div:nth-child(1) {
  animation-delay: 40ms;
}

.service-case-panel.is-active .service-case-kpi:nth-child(2),
.service-case-panel.is-active .service-case-stat-card:nth-child(2),
.service-case-panel.is-active .service-case-log-item:nth-child(2),
.service-case-panel.is-active .service-case-mini-card:nth-child(2),
.service-case-panel.is-active .service-case-inline-kpis > div:nth-child(2) {
  animation-delay: 90ms;
}

.service-case-panel.is-active .service-case-kpi:nth-child(3),
.service-case-panel.is-active .service-case-stat-card:nth-child(3),
.service-case-panel.is-active .service-case-log-item:nth-child(3),
.service-case-panel.is-active .service-case-mini-card:nth-child(3) {
  animation-delay: 140ms;
}

@keyframes serviceCaseCardRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.994);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.service-case-panel.is-active .service-case-flow span,
.service-case-panel.is-active .service-case-location-pill {
  animation: serviceCasePillIn 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.service-case-panel.is-active .service-case-flow span:nth-child(1),
.service-case-panel.is-active .service-case-location-pill:nth-child(1) {
  animation-delay: 70ms;
}

.service-case-panel.is-active .service-case-flow span:nth-child(2),
.service-case-panel.is-active .service-case-location-pill:nth-child(2) {
  animation-delay: 120ms;
}

.service-case-panel.is-active .service-case-flow span:nth-child(3),
.service-case-panel.is-active .service-case-location-pill:nth-child(3) {
  animation-delay: 170ms;
}

.service-case-panel.is-active .service-case-flow span:nth-child(4) {
  animation-delay: 220ms;
}

@keyframes serviceCasePillIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.service-case-panel.is-active .service-case-scan-code {
  animation: serviceCaseScanPulse 2.8s ease-in-out infinite;
}

@keyframes serviceCaseScanPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.03),
      0 10px 24px rgba(0, 0, 0, 0.18);
  }
  50% {
    transform: scale(1.015);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.03),
      0 14px 28px rgba(0, 0, 0, 0.24);
  }
}

.service-case-panel.is-active .service-case-log-item:hover,
.service-case-panel.is-active .service-case-mini-card:hover,
.service-case-panel.is-active .service-case-stat-card:hover,
.service-case-panel.is-active .service-case-table-row:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 194, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

@media (prefers-reduced-motion: reduce) {
  .service-case-panel,
  .service-case-switch,
  .service-case-window,
  .service-case-stat-card,
  .service-case-log-item,
  .service-case-mini-card,
  .service-case-table-row,
  .service-case-scan-card,
  .service-case-inline-kpis > div,
  .service-case-kpi,
  .service-case-location-pill,
  .service-case-flow span,
  .service-case-scan-code {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Website case section: Alpha Gebäudereinigung ===== */

.website-case-shell {
  display: grid;
  gap: 2rem;
}

.website-case-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.website-case-sidebar,
.website-case-switches,
.website-case-stage,
.website-case-benefits,
.website-case-kpis,
.website-case-services-grid,
.website-case-trust-grid {
  display: grid;
  gap: 1rem;
}

.website-case-intro-card {
  padding: 1.35rem;
}

.website-case-intro-card h3 {
  margin: 0 0 0.7rem;
}

.website-case-live-link {
  color: var(--text);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.website-case-live-link:hover {
  color: var(--accent-strong);
  opacity: 0.95;
}

.website-case-kpis {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.15rem;
}

.website-case-kpi {
  min-height: 122px;
  padding: 1rem 0.95rem;
  display: grid;
  align-content: start;
  gap: 0.3rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}
.website-case-kpi strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}

.website-case-kpi span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.website-case-switch {
  width: 100%;
  padding: 1rem 1.05rem;
  display: grid;
  gap: 0.35rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.website-case-switch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 168, 255, 0.12),
    transparent 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.website-case-switch::after {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(121, 168, 255, 0.95),
    rgba(255, 255, 255, 0.7)
  );
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
  pointer-events: none;
}

.website-case-switch:hover {
  transform: translateY(-1px);
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.website-case-switch:hover::before,
.website-case-switch.is-active::before {
  opacity: 1;
}

.website-case-switch.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.website-case-switch.is-active {
  transform: translateY(-1px);
  border-color: rgba(164, 194, 255, 0.26);
  background:
    linear-gradient(180deg, rgba(121, 168, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(164, 194, 255, 0.08);
}

.website-case-switch-label {
  font-weight: 700;
  color: var(--text);
}

.website-case-switch-text {
  color: var(--muted);
  font-size: 0.92rem;
}

.website-case-stage {
  position: relative;
  isolation: isolate;
}

.website-case-panel {
  position: relative;
  overflow: hidden;
  transform-origin: center top;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.15rem;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.website-case-panel[hidden] {
  display: none;
}

.website-case-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 140px;
  background: linear-gradient(
    180deg,
    rgba(121, 168, 255, 0.08),
    rgba(121, 168, 255, 0.02) 45%,
    transparent
  );
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.website-case-panel::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(164, 194, 255, 0.04),
    0 22px 48px rgba(0, 0, 0, 0.24);
  opacity: 0;
  transition: opacity 320ms ease;
}

.website-case-panel.is-active::before,
.website-case-panel.is-active::after {
  opacity: 1;
}

.website-case-panel.is-entering {
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.992);
  filter: blur(1px);
}

.website-case-panel.is-active {
  animation: websiteCasePanelSettle 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes websiteCasePanelSettle {
  0% {
    transform: translate3d(0, 8px, 0) scale(0.996);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.website-case-panel-top {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.website-case-panel-top strong {
  font-size: 1.05rem;
  line-height: 1.45;
}

.website-case-frame {
  padding: 0.9rem;
  background: rgba(10, 13, 20, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 12px 28px rgba(0, 0, 0, 0.16);
}

.website-case-browser-bar {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 0.9rem;
}

.website-case-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.website-case-preview {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.website-case-header-row,
.website-case-hero,
.website-case-contact-layout {
  display: grid;
  gap: 1rem;
}

.website-case-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.website-case-brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background:
    url('../images/new_logo_transparent.webp') center/76% auto no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(121, 168, 255, 0.08);
  border: 1px solid rgba(164, 194, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(0, 0, 0, 0.14);
}

.website-case-brand strong {
  font-size: 0.95rem;
}

.website-case-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.website-case-hero-copy h3,
.website-case-section-head strong {
  margin: 0 0 0.55rem;
  display: block;
}

.website-case-hero-copy p,
.website-case-section-head span,
.website-case-section-head + p {
  color: var(--muted);
}

.website-case-hero-panel,
.website-case-trust-card,
.website-case-service-card,
.website-case-contact-card,
.website-case-stat {
  min-height: 132px;
  padding: 1.1rem 1.05rem;
  display: grid;
  align-content: start;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.website-case-hero-panel,
.website-case-form {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.website-case-stat strong,
.website-case-trust-card strong,
.website-case-service-card strong,
.website-case-contact-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.website-case-stat span,
.website-case-trust-card span,
.website-case-service-card span,
.website-case-contact-card span {
  color: var(--muted);
}

.website-case-service-card strong,
.website-case-service-card span {
  max-width: 100%;
}

.website-case-service-card span {
  line-height: 1.5;
}

.website-case-cta-row,
.website-case-flow,
.website-case-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.website-case-btn,
.website-case-submit {
  min-height: 44px;
  padding: 0.8rem 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.website-case-btn.is-primary,
.website-case-submit {
  background: rgba(121, 168, 255, 0.12);
  border-color: rgba(164, 194, 255, 0.2);
}

.website-case-input {
  width: 100%;
  min-height: 54px;
  display: block;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.website-case-input-field {
  padding: 0.75rem 0.9rem;
  display: grid;
  gap: 0.35rem;
  align-content: start;
}

.website-case-input-field-wide {
  min-height: 112px;
}

.website-case-input-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.website-case-input-value {
  min-height: 1.5em;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.website-case-input-value.is-caret::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1.05em;
  margin-left: 3px;
  vertical-align: -0.12em;
  background: rgba(244, 247, 251, 0.85);
  animation: websiteCaseCaretBlink 1s steps(1) infinite;
}

@keyframes websiteCaseCaretBlink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.website-case-flow {
  margin-top: 1rem;
}

.website-case-flow span {
  min-height: 44px;
  padding: 0.8rem 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.website-case-benefits {
  margin-top: 0.35rem;
}

.website-case-panel.is-active .website-case-kpi,
.website-case-panel.is-active .website-case-service-card,
.website-case-panel.is-active .website-case-trust-card,
.website-case-panel.is-active .website-case-contact-card,
.website-case-panel.is-active .website-case-stat {
  animation: websiteCaseCardRise 560ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.website-case-panel.is-active .website-case-service-card:nth-child(1),
.website-case-panel.is-active .website-case-trust-card:nth-child(1),
.website-case-panel.is-active .website-case-stat:nth-child(1) {
  animation-delay: 40ms;
}

.website-case-panel.is-active .website-case-service-card:nth-child(2),
.website-case-panel.is-active .website-case-trust-card:nth-child(2),
.website-case-panel.is-active .website-case-stat:nth-child(2) {
  animation-delay: 95ms;
}

.website-case-panel.is-active .website-case-service-card:nth-child(3),
.website-case-panel.is-active .website-case-trust-card:nth-child(3) {
  animation-delay: 150ms;
}

@keyframes websiteCaseCardRise {
  0% {
    opacity: 0;
    transform: translate3d(0, 10px, 0) scale(0.994);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.website-case-panel.is-active .website-case-flow span,
.website-case-panel.is-active .website-case-btn,
.website-case-panel.is-active .website-case-submit {
  animation: websiteCasePillIn 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.website-case-panel.is-active .website-case-flow span:nth-child(1) {
  animation-delay: 60ms;
}

.website-case-panel.is-active .website-case-flow span:nth-child(2) {
  animation-delay: 110ms;
}

.website-case-panel.is-active .website-case-flow span:nth-child(3) {
  animation-delay: 160ms;
}

.website-case-panel.is-active .website-case-flow span:nth-child(4) {
  animation-delay: 210ms;
}

@keyframes websiteCasePillIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.website-case-panel.is-active .website-case-service-card:hover,
.website-case-panel.is-active .website-case-trust-card:hover,
.website-case-panel.is-active .website-case-contact-card:hover,
.website-case-panel.is-active .website-case-stat:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 194, 255, 0.18);
  background: rgba(255, 255, 255, 0.055);
}

@media (min-width: 760px) {
  .website-case-layout {
    gap: 1.5rem;
  }

  .website-case-hero,
  .website-case-contact-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }

  .website-case-services-grid,
  .website-case-trust-grid,
  .website-case-benefits {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .website-case-layout {
    grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
    gap: 2rem;
  }

  .website-case-intro-card {
    padding: 1.5rem;
  }

  .website-case-panel {
    min-height: 100%;
    padding: 1.35rem;
  }

  .website-case-switches {
    gap: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .website-case-panel,
  .website-case-switch,
  .website-case-kpi,
  .website-case-service-card,
  .website-case-trust-card,
  .website-case-contact-card,
  .website-case-stat,
  .website-case-flow span,
  .website-case-btn,
  .website-case-submit {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Pricing section: Leistungen ===== */

.pricing-shell {
  display: grid;
  gap: 2rem;
}

.pricing-grid,
.pricing-addon-grid {
  display: grid;
  gap: 1.25rem;
}

.pricing-card,
.custom-systems-card,
.pricing-addon-card {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.pricing-card,
.pricing-addon-card {
  overflow: visible;
}

.pricing-card {
  display: grid;
  gap: 1.15rem;
  padding: 1.35rem;
  align-content: start;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
  will-change: transform;
}

.pricing-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(121, 168, 255, 0.08),
    rgba(121, 168, 255, 0.02),
    transparent
  );
  border-radius: inherit;
  pointer-events: none;
  opacity: 0.9;
}

.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(164, 194, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(164, 194, 255, 0.05);
}

.pricing-card > * {
  position: relative;
  z-index: 1;
}

.pricing-card-featured {
  border-color: rgba(78, 242, 255, 0.38);
  box-shadow:
    0 0 0 1px rgba(78, 242, 255, 0.12),
    0 0 34px rgba(78, 242, 255, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.32);
}

.pricing-card-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(circle at top right, rgba(78, 242, 255, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(78, 242, 255, 0.08), transparent 32%);
  opacity: 1;
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  min-height: 34px;
  max-width: calc(100% - 2rem);
  padding: 0.42rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, #4ef2ff, #7ef8ff);
  color: #08101d;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  z-index: 2;
  white-space: nowrap;
}

.pricing-card-top {
  display: grid;
  gap: 1rem;
  padding-top: 0.1rem;
}

.pricing-card-featured .pricing-card-top {
  padding-top: 1.2rem;
}

.pricing-card-head {
  display: grid;
  gap: 0.32rem;
}

.pricing-card-head h3 {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.pricing-subtitle {
  color: #4ef2ff;
  font-weight: 600;
  font-size: 1rem;
}

.pricing-card-head p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 34ch;
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
  padding: 0.15rem 0 0.35rem;
}

.pricing-price-row strong {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.pricing-price-row span {
  color: var(--muted);
  font-size: 0.98rem;
  padding-bottom: 0.3rem;
}

.pricing-feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.pricing-feature-list li {
  position: relative;
  padding-left: 1.7rem;
  color: var(--text);
  line-height: 1.55;
}

.pricing-feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4ef2ff;
  font-weight: 800;
}

.pricing-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.pricing-meta-pill {
  min-height: 40px;
  padding: 0.7rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.pricing-footnote {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.3rem;
}

.pricing-footnote strong {
  color: #4ef2ff;
  font-size: 0.94rem;
}

.pricing-footnote span {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.pricing-btn {
  width: 100%;
  margin-top: 0.1rem;
}

.pricing-addon-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.2rem 1.25rem;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.pricing-addon-card:hover {
  transform: translateY(-2px);
  border-color: rgba(164, 194, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.pricing-addon-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.pricing-addon-price {
  display: flex;
  align-items: flex-end;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.pricing-addon-price strong {
  font-size: 1.35rem;
  line-height: 1;
}

.pricing-addon-price span {
  color: var(--muted);
  padding-bottom: 0.15rem;
}

.custom-systems-card {
  display: grid;
  gap: 1.5rem;
  padding: 1.45rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028)),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.custom-systems-card::before {
  content: '';
  position: absolute;
  inset: auto -10% -35% auto;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121, 168, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.custom-systems-copy,
.custom-systems-box {
  position: relative;
  z-index: 1;
}

.custom-systems-copy {
  display: grid;
  gap: 0.75rem;
}

.custom-systems-copy h3 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.custom-systems-copy p {
  line-height: 1.7;
}

.custom-systems-box {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  background: rgba(10, 13, 20, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.custom-systems-price {
  display: grid;
  gap: 0.35rem;
}

.custom-systems-price strong {
  font-size: 1.55rem;
  line-height: 1.08;
}

.custom-systems-price span {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-feature-list-compact {
  gap: 0.72rem;
}

.pricing-legal-note {
  display: grid;
  gap: 0.35rem;
  color: var(--muted);
  max-width: 76ch;
  line-height: 1.7;
}

.pricing-legal-note strong {
  color: var(--text);
}

@media (min-width: 760px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .pricing-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-card {
    min-height: 100%;
  }

  .custom-systems-card {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 1.6rem;
  }
}

@media (max-width: 759px) {
  .pricing-badge {
    top: 0.9rem;
    right: 0.9rem;
    font-size: 0.74rem;
    padding: 0.38rem 0.72rem;
  }

  .pricing-card-featured .pricing-card-top {
    padding-top: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .pricing-card {
    padding: 1.55rem;
  }

  .custom-systems-card {
    padding: 1.65rem;
  }

  .custom-systems-box {
    padding: 1.2rem;
  }
}

/* ===== Collaboration guide section: Leistungen ===== */

.collaboration-shell {
  display: grid;
  gap: 2rem;
}

.collaboration-layout {
  display: grid;
  gap: 1.4rem;
  align-items: start;
}

.collaboration-intro,
.collaboration-points,
.collaboration-stage,
.collaboration-switches {
  display: grid;
  gap: 1rem;
}

.collaboration-stage {
  position: relative;
}

.collaboration-switches {
  margin-bottom: 1rem;
}

.collaboration-switch {
  width: 100%;
  padding: 1rem 1.05rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.collaboration-switch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 168, 255, 0.12),
    transparent 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.collaboration-switch::after {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(121, 168, 255, 0.95),
    rgba(255, 255, 255, 0.7)
  );
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  transition:
    transform 260ms ease,
    opacity 260ms ease;
  pointer-events: none;
}

.collaboration-switch:hover {
  transform: translateY(-1px);
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.collaboration-switch:hover::before,
.collaboration-switch.is-active::before {
  opacity: 1;
}

.collaboration-switch.is-active::after {
  transform: scaleX(1);
  opacity: 1;
}

.collaboration-switch.is-active {
  border-color: rgba(164, 194, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(121, 168, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(164, 194, 255, 0.08);
}

.collaboration-step-no {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(121, 168, 255, 0.1);
  border: 1px solid rgba(164, 194, 255, 0.14);
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.collaboration-switch-copy {
  display: grid;
  gap: 0.22rem;
}

.collaboration-switch-copy strong {
  color: var(--text);
}

.collaboration-switch-copy span {
  color: var(--muted);
  line-height: 1.55;
}

.collaboration-panel-wrap {
  position: relative;
}

.collaboration-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 26px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.collaboration-panel[hidden] {
  display: none;
}

.collaboration-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(121, 168, 255, 0.08),
    rgba(121, 168, 255, 0.02),
    transparent
  );
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.collaboration-panel.is-active::before {
  opacity: 1;
}

.collaboration-panel.is-entering {
  opacity: 0;
  transform: translate3d(0, 14px, 0) scale(0.994);
  filter: blur(1px);
}

.collaboration-panel-top {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 0.8rem;
}

.collaboration-panel-top strong {
  font-size: 1.08rem;
  line-height: 1.4;
}

.collaboration-panel > p {
  line-height: 1.7;
  max-width: 62ch;
}

.collaboration-panel-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.collaboration-panel-tags span {
  min-height: 42px;
  padding: 0.75rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    opacity 220ms ease;
}

.collaboration-panel.is-active .collaboration-panel-tags span {
  animation: collaborationTagIn 480ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.collaboration-panel.is-active .collaboration-panel-tags span:nth-child(1) {
  animation-delay: 60ms;
}

.collaboration-panel.is-active .collaboration-panel-tags span:nth-child(2) {
  animation-delay: 120ms;
}

.collaboration-panel.is-active .collaboration-panel-tags span:nth-child(3) {
  animation-delay: 180ms;
}

@keyframes collaborationTagIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 760px) {
  .collaboration-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .collaboration-layout {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 2rem;
  }

  .collaboration-panel {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collaboration-switch,
  .collaboration-panel,
  .collaboration-panel-tags span {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Collaboration simple guide: Leistungen ===== */

.collaboration-simple-shell {
  display: grid;
  gap: 2rem;
}

.collaboration-simple-layout {
  display: grid;
  gap: 1.5rem;
  align-items: start;
}

.collaboration-simple-intro,
.collaboration-simple-points,
.collaboration-simple-stage {
  display: grid;
  gap: 1rem;
}

.collaboration-simple-stage {
  gap: 1.15rem;
}

.collaboration-simple-steps {
  display: grid;
  gap: 0.85rem;
}

.collaboration-simple-step {
  width: 100%;
  padding: 0.95rem 1rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.collaboration-simple-step-progress {
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(121, 168, 255, 0.95),
    rgba(255, 255, 255, 0.7)
  );
  transform: scaleX(0);
  transform-origin: left center;
  opacity: 0;
  pointer-events: none;
}

.collaboration-simple-step.is-active .collaboration-simple-step-progress {
  opacity: 1;
  animation: collaborationSimpleProgress 10s linear forwards;
}

@keyframes collaborationSimpleProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.collaboration-simple-step::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 168, 255, 0.12),
    transparent 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.collaboration-simple-step:hover {
  transform: translateY(-1px);
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.collaboration-simple-step:hover::before,
.collaboration-simple-step.is-active::before {
  opacity: 1;
}

.collaboration-simple-step.is-active {
  border-color: rgba(164, 194, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(121, 168, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(164, 194, 255, 0.08);
}

.collaboration-simple-step-no {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(121, 168, 255, 0.1);
  border: 1px solid rgba(164, 194, 255, 0.14);
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.04em;
  flex: 0 0 42px;
}

.collaboration-simple-step-text {
  color: var(--text);
  font-weight: 600;
  line-height: 1.45;
}

.collaboration-simple-panel-wrap {
  position: relative;
}

.collaboration-simple-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.collaboration-simple-panel[hidden] {
  display: none;
}

.collaboration-simple-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 110px;
  background: linear-gradient(
    180deg,
    rgba(121, 168, 255, 0.08),
    rgba(121, 168, 255, 0.02),
    transparent
  );
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.collaboration-simple-panel.is-active::before {
  opacity: 1;
}

.collaboration-simple-panel.is-entering {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.995);
  filter: blur(1px);
}

.collaboration-simple-panel > * {
  position: relative;
  z-index: 1;
}

.collaboration-simple-panel h3 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.25;
}

.collaboration-simple-panel p {
  line-height: 1.7;
  max-width: 62ch;
}

.collaboration-simple-tags {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.collaboration-simple-tags span {
  min-height: 40px;
  padding: 0.72rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    opacity 220ms ease;
}

.collaboration-simple-panel.is-active .collaboration-simple-tags span {
  animation: collaborationSimpleTagIn 440ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.collaboration-simple-panel.is-active .collaboration-simple-tags span:nth-child(1) {
  animation-delay: 50ms;
}

.collaboration-simple-panel.is-active .collaboration-simple-tags span:nth-child(2) {
  animation-delay: 110ms;
}

.collaboration-simple-panel.is-active .collaboration-simple-tags span:nth-child(3) {
  animation-delay: 170ms;
}

@keyframes collaborationSimpleTagIn {
  0% {
    opacity: 0;
    transform: translate3d(0, 8px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 760px) {
  .collaboration-simple-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .collaboration-simple-layout {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: 2rem;
  }

  .collaboration-simple-panel {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .collaboration-simple-step,
  .collaboration-simple-panel,
  .collaboration-simple-tags span {
    animation: none !important;
    transition: none !important;
  }
}
/* ===== About page remake ===== */

.about-hero {
  overflow: hidden;
}

.about-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-hero-copy {
  position: relative;
  z-index: 2;
}

.about-hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.about-hero-main-card,
.about-floating-card {
  position: relative;
  z-index: 2;
}

.about-hero-main-card {
  width: min(100%, 430px);
}

.about-hero-metrics {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.about-hero-metric {
  padding: 0.95rem 0.9rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.about-hero-metric strong {
  display: block;
  margin-bottom: 0.22rem;
  font-size: 1.1rem;
}

.about-hero-metric span {
  color: var(--muted);
  font-size: 0.84rem;
}

.about-floating-card {
  position: absolute;
  width: min(100%, 250px);
  padding: 1rem 1.05rem;
}

.about-floating-card-top {
  top: 1.25rem;
  right: 0.25rem;
}

.about-floating-card-bottom {
  bottom: 0.75rem;
  left: 0;
}

.about-hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  pointer-events: none;
  z-index: 1;
}

.about-hero-orb-one {
  top: 4%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(121, 168, 255, 0.2), transparent 70%);
}

.about-hero-orb-two {
  right: 6%;
  bottom: 10%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.09), transparent 72%);
}

.about-story-shell,
.about-tech-shell {
  display: grid;
  gap: 2rem;
}

.about-story-layout,
.about-tech-layout,
.about-explainer-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.about-story-switches,
.about-tech-switches {
  display: grid;
  gap: 0.9rem;
}

.about-story-switch,
.about-tech-switch {
  width: 100%;
  padding: 1rem 1.05rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: start;
  text-align: left;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--text);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.about-tech-switch {
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.about-story-switch::before,
.about-tech-switch::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(121, 168, 255, 0.12),
    transparent 45%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.about-story-switch:hover,
.about-tech-switch:hover {
  transform: translateY(-1px);
  border-color: rgba(164, 194, 255, 0.22);
  background: rgba(255, 255, 255, 0.055);
}

.about-story-switch:hover::before,
.about-story-switch.is-active::before,
.about-tech-switch:hover::before,
.about-tech-switch.is-active::before {
  opacity: 1;
}

.about-story-switch.is-active,
.about-tech-switch.is-active {
  border-color: rgba(164, 194, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(121, 168, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.24),
    0 0 0 1px rgba(164, 194, 255, 0.08);
}

.about-story-step {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(121, 168, 255, 0.1);
  border: 1px solid rgba(164, 194, 255, 0.14);
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.about-story-switch-copy,
.about-tech-switch span:not(.proof-label),
.about-tech-switch strong {
  display: grid;
  gap: 0.22rem;
}

.about-story-switch-copy span,
.about-tech-switch > span:last-child {
  color: var(--muted);
  line-height: 1.55;
}

.about-story-panel,
.about-tech-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 1.25rem;
  transition:
    opacity 320ms ease,
    transform 320ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.about-story-panel::before,
.about-tech-panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 120px;
  background: linear-gradient(
    180deg,
    rgba(121, 168, 255, 0.08),
    rgba(121, 168, 255, 0.02),
    transparent
  );
  opacity: 1;
  pointer-events: none;
}

.about-story-panel h3,
.about-tech-panel h3 {
  margin: 0 0 0.7rem;
  position: relative;
  z-index: 1;
}

.about-story-panel p,
.about-tech-panel p {
  position: relative;
  z-index: 1;
  max-width: 66ch;
  line-height: 1.7;
}

.about-story-tags,
.about-tech-pills {
  position: relative;
  z-index: 1;
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-story-tags span,
.about-tech-pills span {
  min-height: 42px;
  padding: 0.75rem 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--muted);
}

.about-fullstack-grid {
  display: grid;
  gap: 1rem;
}

.about-tech-output,
.about-story-panel-wrap,
.about-tech-output {
  min-height: 100%;
}

.about-tech-panel.is-entering,
.about-story-panel.is-entering {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.995);
}

.about-hero-pills {
  margin-top: 1.2rem;
}

@media (max-width: 759px) {
  .about-hero-stage {
    min-height: auto;
    overflow: visible;
  }

  .about-floating-card {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .about-hero-orb {
    display: none;
  }

  .about-hero-metrics {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 760px) {
  .about-fullstack-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .about-hero-grid {
    grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
    gap: 3rem;
  }

  .about-story-layout,
  .about-tech-layout {
    grid-template-columns: minmax(300px, 0.4fr) minmax(0, 0.6fr);
    gap: 1.75rem;
  }

  .about-explainer-layout {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: 2rem;
  }

  .about-hero-stage {
    min-height: 640px;
  }

  .about-story-panel,
  .about-tech-panel {
    padding: 1.45rem;
  }
}


/* ===== About hero avatar stage ===== */

.about-hero-stage {
  width: 100%;
  display: grid;
  align-items: center;
  justify-items: center;
}

.about-avatar-scene {
  position: relative;
  width: min(100%, 520px);
  min-height: 640px;
  display: grid;
  place-items: center;
  isolation: isolate;
  padding: 2rem 1.5rem;
  border-radius: 34px;
  overflow: hidden;
}

.about-avatar-scene::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 24%, rgba(121, 168, 255, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.about-avatar-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(14px);
  pointer-events: none;
  z-index: 1;
}

.about-avatar-glow-one {
  width: 240px;
  height: 240px;
  top: 7%;
  left: 8%;
  background: radial-gradient(circle, rgba(121, 168, 255, 0.22), transparent 70%);
}

.about-avatar-glow-two {
  width: 280px;
  height: 280px;
  right: 6%;
  bottom: 4%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
}

.about-avatar-shell {
  position: relative;
  z-index: 3;
  width: min(100%, 460px);
  min-height: 560px;
  display: grid;
  place-items: center;
}

.about-avatar-figure {
  position: relative;
  width: 100%;
  max-width: 420px;
  min-height: 560px;
  transform-style: preserve-3d;
  transition: transform 180ms ease;
  animation: aboutAvatarFloat 4.8s ease-in-out infinite;
}

@keyframes aboutAvatarFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.about-avatar-halo {
  position: absolute;
  inset: 24px 56px 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(121, 168, 255, 0.16), transparent 72%);
  filter: blur(8px);
}

.about-avatar-head-wrap {
  position: absolute;
  top: 28px;
  left: 50%;
  width: 200px;
  height: 220px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
}

.about-avatar-head {
  position: relative;
  width: 176px;
  height: 196px;
  border-radius: 76px 76px 62px 62px;
  background: linear-gradient(180deg, #d9dce4 0%, #bcc4d3 100%);
  box-shadow:
    inset 0 -10px 18px rgba(0, 0, 0, 0.08),
    0 18px 34px rgba(0, 0, 0, 0.24);
}

.about-avatar-hair {
  position: absolute;
  inset: 0 0 auto 0;
  height: 82px;
  border-radius: 76px 76px 24px 24px;
  background: linear-gradient(180deg, #23293a 0%, #171b27 100%);
}

.about-avatar-face {
  position: absolute;
  inset: 42px 24px 18px;
}

.about-avatar-eye {
  position: absolute;
  top: 36px;
  width: 32px;
  height: 20px;
  border-radius: 999px;
  background: #f8fbff;
  overflow: hidden;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.08);
}

.about-avatar-eye-left {
  left: 22px;
}

.about-avatar-eye-right {
  right: 22px;
}

.about-avatar-pupil {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #0f1521;
  transition: transform 120ms ease;
}

.about-avatar-eye::after {
  content: '';
  position: absolute;
  inset: 0;
  animation: aboutAvatarBlink 6.4s infinite;
  transform-origin: top center;
  background: linear-gradient(180deg, #cfd6e3 0%, #cfd6e3 100%);
}

@keyframes aboutAvatarBlink {
  0%,
  46%,
  48%,
  100% {
    transform: scaleY(0);
  }

  47% {
    transform: scaleY(1);
  }
}

.about-avatar-nose {
  position: absolute;
  left: 50%;
  top: 60px;
  width: 10px;
  height: 24px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(140, 147, 164, 0.22);
}

.about-avatar-mouth {
  position: absolute;
  left: 50%;
  bottom: 20px;
  width: 40px;
  height: 14px;
  transform: translateX(-50%);
  border-bottom: 3px solid rgba(54, 67, 89, 0.65);
  border-radius: 0 0 18px 18px;
}

.about-avatar-neck {
  position: absolute;
  top: 220px;
  left: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%);
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #c8cfdb 0%, #b1bbcd 100%);
}

.about-avatar-hoodie {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: 380px;
  height: 332px;
  transform: translateX(-50%);
}

.about-avatar-hood {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 220px;
  height: 150px;
  transform: translateX(-50%);
  border-radius: 110px 110px 58px 58px;
  background: linear-gradient(180deg, rgba(122, 154, 222, 0.24), rgba(47, 58, 86, 0.52));
  border: 1px solid rgba(164, 194, 255, 0.12);
}

.about-avatar-body {
  position: absolute;
  inset: 84px 18px 0;
  border-radius: 46% 46% 22% 22% / 24% 24% 18% 18%;
  background:
    radial-gradient(circle at 50% 16%, rgba(121, 168, 255, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #1a2030 0%, #111724 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    0 22px 46px rgba(0, 0, 0, 0.24);
}

.about-avatar-code {
  position: absolute;
  left: 50%;
  bottom: 38px;
  width: min(100%, 244px);
  transform: translateX(-50%);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(9, 13, 22, 0.88);
  border: 1px solid rgba(164, 194, 255, 0.14);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.about-avatar-code-top {
  min-height: 38px;
  padding: 0.7rem 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.42rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
}

.about-avatar-code-top strong {
  margin-left: 0.3rem;
  font-weight: 600;
  color: #d9e4ff;
}

.about-avatar-code-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.about-avatar-code-body {
  padding: 0.9rem 0.9rem 1rem;
  display: grid;
  gap: 0.55rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.86rem;
  line-height: 1.55;
}

.about-avatar-code-line {
  min-height: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #dce7ff;
}

.about-avatar-code-line-output {
  color: #95ffb3;
}

.about-avatar-code-prompt {
  color: var(--accent-strong);
  font-weight: 700;
}

[data-about-code-typing]::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 1em;
  margin-left: 2px;
  background: rgba(255, 255, 255, 0.82);
  vertical-align: -2px;
  animation: aboutCodeCaretBlink 0.9s steps(1) infinite;
}

[data-about-code-typing].is-complete::after {
  opacity: 0;
}

@keyframes aboutCodeCaretBlink {
  0%,
  50% {
    opacity: 1;
  }

  50.01%,
  100% {
    opacity: 0;
  }
}

@media (max-width: 759px) {
  .about-hero-stage {
    min-height: auto;
  }

  .about-avatar-scene {
    width: 100%;
    min-height: 440px;
    padding: 0.85rem 0.8rem;
    border-radius: 24px;
  }

  .about-avatar-shell {
    width: 100%;
    min-height: 392px;
  }

  .about-avatar-figure {
    max-width: 286px;
    min-height: 392px;
  }

  .about-avatar-halo {
    inset: 18px 42px 126px;
    filter: blur(6px);
  }

  .about-avatar-head-wrap {
    top: 18px;
    width: 146px;
    height: 158px;
  }

  .about-avatar-head {
    width: 126px;
    height: 142px;
    border-radius: 58px 58px 48px 48px;
  }

  .about-avatar-hair {
    height: 58px;
    border-radius: 58px 58px 18px 18px;
  }

  .about-avatar-face {
    inset: 34px 18px 14px;
  }

  .about-avatar-eye {
    top: 30px;
    width: 26px;
    height: 17px;
  }

  .about-avatar-eye-left {
    left: 18px;
  }

  .about-avatar-eye-right {
    right: 18px;
  }

  .about-avatar-pupil {
    left: 8px;
    top: 4px;
    width: 9px;
    height: 9px;
  }

  .about-avatar-nose {
    top: 50px;
    height: 20px;
  }

  .about-avatar-mouth {
    bottom: 16px;
    width: 34px;
  }

  .about-avatar-neck {
    top: 156px;
    width: 40px;
    height: 40px;
    border-radius: 0 0 16px 16px;
  }

  .about-avatar-hoodie {
    width: 252px;
    height: 214px;
    bottom: 8px;
  }

  .about-avatar-hood {
    width: 150px;
    height: 100px;
    top: 6px;
    border-radius: 78px 78px 40px 40px;
  }

  .about-avatar-body {
    inset: 56px 12px 0;
    border-radius: 44% 44% 20% 20% / 22% 22% 16% 16%;
  }

  .about-avatar-code {
    width: 188px;
    bottom: 18px;
    border-radius: 16px;
  }

  .about-avatar-code-top {
    min-height: 34px;
    padding: 0.58rem 0.7rem;
    font-size: 0.74rem;
  }

  .about-avatar-code-body {
    padding: 0.72rem 0.75rem 0.82rem;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .about-avatar-code-line {
    min-height: 1.2rem;
    gap: 0.35rem;
  }

  .about-avatar-glow {
    display: none;
  }
}