h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.text-gradient, .admin-sidebar__brand a, .block-services__heading, .text-display {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-display {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

.text-heading-1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.text-heading-2, .prose-enhanced h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  position: relative;
  padding-bottom: 0.5rem;
}
.text-heading-2.with-underline::after, .prose-enhanced h2.with-underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 4px;
  background: var(--color-accent);
  border-radius: 0.375rem;
}

.text-lead {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.8;
}

.text-body, .prose-enhanced {
  font-size: 1.0625rem;
  line-height: 1.7;
}

.prose-enhanced h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
.prose-enhanced p {
  margin-bottom: 1.5rem;
}
.prose-enhanced a {
  color: var(--color-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-primary);
}
.prose-enhanced a:hover {
  border-bottom-width: 2px;
}
.prose-enhanced img {
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce-right {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(5px);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.animate-fade-in {
  animation: fade-in 0.6s ease-out;
}

.animate-fade-in-up, .block-hero__cta-group, .block-hero__subheadline, .block-hero__headline {
  animation: fade-in-up 0.8s ease-out forwards;
  opacity: 0;
}
.animate-fade-in-up:nth-child(1), .block-hero__cta-group:nth-child(1), .block-hero__subheadline:nth-child(1), .block-hero__headline:nth-child(1) {
  animation-delay: 0s;
}
.animate-fade-in-up:nth-child(2), .block-hero__cta-group:nth-child(2), .block-hero__subheadline:nth-child(2), .block-hero__headline:nth-child(2) {
  animation-delay: 0.1s;
}
.animate-fade-in-up:nth-child(3), .block-hero__cta-group:nth-child(3), .block-hero__subheadline:nth-child(3), .block-hero__headline:nth-child(3) {
  animation-delay: 0.2s;
}
.animate-fade-in-up:nth-child(4), .block-hero__cta-group:nth-child(4), .block-hero__subheadline:nth-child(4), .block-hero__headline:nth-child(4) {
  animation-delay: 0.3s;
}
.animate-fade-in-up:nth-child(5), .block-hero__cta-group:nth-child(5), .block-hero__subheadline:nth-child(5), .block-hero__headline:nth-child(5) {
  animation-delay: 0.4s;
}

.animate-bounce-right {
  animation: bounce-right 2s ease-in-out infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.hover-lift {
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 300ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hover-scale, .admin-sidebar__brand a, .tenant-nav__cta, .tenant-nav__brand, .block-cta__button, .block-hero__cta {
  transition: transform 300ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.hover-scale:hover, .admin-sidebar__brand a:hover, .tenant-nav__cta:hover, .tenant-nav__brand:hover, .block-cta__button:hover, .block-hero__cta:hover {
  transform: scale(1.05);
}

.hover-glow {
  position: relative;
  transition: box-shadow 300ms;
}
.hover-glow:hover {
  box-shadow: 0 0 30px var(--color-primary);
}

.block-hero {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
}
.block-hero__gradient-orbs {
  position: absolute;
  inset: 0;
  opacity: 0.3;
  pointer-events: none;
}
.block-hero__gradient-orbs .orb-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  filter: blur(80px);
  animation: float 4s ease-in-out infinite;
}
.block-hero__gradient-orbs .orb-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  filter: blur(80px);
  animation: float 4s ease-in-out infinite;
  animation-delay: 1s;
}
.block-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  mix-blend-mode: overlay;
  opacity: 0.4;
}
.block-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 6rem 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
}
.block-hero__headline {
  color: white;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.block-hero__subheadline {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.25rem, 2vw, 1.875rem);
  font-weight: 300;
  margin-bottom: 3rem;
  animation-delay: 0.2s;
}
.block-hero--subtle {
  background: var(--color-base-200);
  min-height: 40vh;
}
.block-hero--subtle .block-hero__headline {
  color: var(--color-base-content);
  text-shadow: none;
}
.block-hero--subtle .block-hero__subheadline {
  color: rgba(0, 0, 0, 0.65);
}
.block-hero--subtle .block-hero__gradient-orbs {
  display: none;
}
.block-hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation-delay: 0.4s;
}
.block-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: var(--color-base-content);
  padding: 1rem 2rem;
  border-radius: 9999px;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.block-hero__cta:hover {
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
}
.block-hero__cta--secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: none;
}
.block-hero__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  box-shadow: none;
}
.block-hero--subtle .block-hero__cta {
  background: var(--color-primary);
  color: white;
}
.block-hero--subtle .block-hero__cta--secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.block-hero--subtle .block-hero__cta--secondary:hover {
  background: rgba(0, 0, 0, 0.05);
}
.block-hero__scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s ease-in-out infinite;
  color: rgba(255, 255, 255, 0.6);
}

.block-services {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, var(--color-base-100), var(--color-base-200));
}
.block-services__heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.block-services__subheading {
  text-align: center;
  font-size: 1.125rem;
  opacity: 0.7;
  max-width: 42rem;
  margin: 0 auto 3rem;
}
.block-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.block-services__card {
  position: relative;
  background: var(--color-base-100);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 500ms cubic-bezier(0.4, 0, 0.2, 1);
}
.block-services__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  opacity: 0;
  transition: opacity 500ms;
  border-radius: 1.5rem;
}
.block-services__card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.block-services__card:hover::before {
  opacity: 0.05;
}
.block-services__card:hover .block-services__icon-wrapper {
  transform: scale(1.1);
  background: rgba(0, 0, 0, 0.08);
}
.block-services__card:hover .block-services__title {
  color: var(--color-primary);
}
.block-services__card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 6rem;
  height: 6rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 9999px;
  filter: blur(40px);
  transition: background 500ms;
}
.block-services__card:hover::after {
  background: rgba(0, 0, 0, 0.05);
}
.block-services__icon-wrapper {
  position: relative;
  z-index: 1;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 300ms;
}
.block-services__icon {
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.block-services__title {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  transition: color 300ms;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.block-services__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  background: var(--color-secondary);
  color: white;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
  letter-spacing: 0.02em;
  vertical-align: middle;
}
.block-services__description {
  position: relative;
  z-index: 1;
  opacity: 0.7;
  line-height: 1.6;
}
.block-services__description ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}
.block-services__description p {
  margin-bottom: 0.5rem;
}
.block-services__description strong {
  font-weight: 600;
  opacity: 1;
}
.block-services__description em {
  font-style: italic;
}
.block-services__link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
  transition: gap 200ms;
  position: relative;
  z-index: 1;
}
.block-services__link:hover {
  text-decoration: underline;
}

.block-cta {
  padding: 4rem 0;
}
.block-cta--primary {
  background: var(--color-primary);
  color: var(--color-primary-content);
}
.block-cta--secondary {
  background: var(--color-secondary);
  color: var(--color-secondary-content);
}
.block-cta__content {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.block-cta__headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.block-cta__body {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}
.block-testimonial {
  padding: 3rem 0;
  background: var(--color-base-200);
}
.block-testimonial__card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  background: var(--color-base-100);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
}
.block-testimonial__quote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.block-testimonial__quote::before {
  content: '"';
}
.block-testimonial__quote::after {
  content: '"';
}
.block-testimonial__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.block-testimonial__photo {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  object-fit: cover;
}
.block-testimonial__name {
  font-weight: 600;
}
.block-testimonial__title {
  font-size: 0.875rem;
  opacity: 0.6;
}

.tenant-nav {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.tenant-nav__link {
  font-weight: 500;
  transition: all 200ms;
  border-radius: 0.75rem;
}
.tenant-nav__link:hover {
  background: rgba(0, 0, 0, 0.05);
  color: var(--color-primary);
}
.tenant-nav__cta {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.tenant-nav__cta:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.admin-sidebar__brand {
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.03), rgba(0, 0, 0, 0.05));
}
.admin-sidebar__menu-item {
  border-radius: 0.75rem;
  transition: all 200ms;
}
.admin-sidebar__menu-item--active {
  background: var(--color-primary);
  color: var(--color-primary-content);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.admin-sidebar__menu-item:not(.admin-sidebar__menu-item--active):hover {
  background: rgba(255, 255, 255, 0.05);
}

.admin-content__header {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.htmx-request.htmx-request {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.htmx-request.htmx-request::after {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  border-radius: inherit;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}
*:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: 0.25rem;
}

body {
  font-size: 1.0625rem;
  line-height: 1.7;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a, button, .card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover, button:hover, .card:hover {
  cursor: pointer;
}

.card {
  backdrop-filter: blur(10px);
}

section {
  animation: fade-in 0.6s ease-out;
}

/*# sourceMappingURL=atelier.css.map */
