:root {
  --primary: #4f46e5;
  --accent: #f59e0b;
  --dark: #0f172a;
  --light: #f5f7fb;
  --text-color: #475569;
  --heading-color: #0f172a;
  --body-bg: #fff;
  --on-primary: #fff;
  --on-accent: #0f172a;
  --radius: 14px;
  --btn-radius: 10px;
  --heading-weight: 700;
  --heading-spacing: -0.02em;
  --heading-transform: none;
  --font-heading: system-ui, sans-serif;
  --font-body: system-ui, sans-serif;
  --shadow-sm: 0 2px 10px rgba(15, 23, 42, 0.06);
  --shadow: 0 18px 50px -12px rgba(15, 23, 42, 0.18);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --hero-top: 84px;
  --bs-body-font-family: var(--font-body);
  --bs-primary: var(--primary);
  --bs-link-color: var(--primary);
}

.tone-light,
body {
  --bg: var(--body-bg);
  --fg: var(--text-color);
  --hd: var(--heading-color);
  --muted: color-mix(in srgb, var(--text-color) 75%, #fff);
  --card: #fff;
  --line: color-mix(in srgb, var(--heading-color) 10%, transparent);
  --brand: var(--primary);
  --brand-soft: color-mix(in srgb, var(--primary) 11%, transparent);
}

.tone-alt {
  --bg: var(--light);
  --card: #fff;
}

.tone-dark,
.tone-primary {
  --fg: rgba(255, 255, 255, 0.74);
  --hd: #fff;
  --muted: rgba(255, 255, 255, 0.55);
  --card: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.14);
  --brand-soft: rgba(255, 255, 255, 0.1);
}

.tone-dark {
  --bg: var(--dark);
  --brand: color-mix(in srgb, var(--primary) 50%, #fff);
}

.tone-primary {
  --bg: var(--primary);
  --fg: color-mix(in srgb, var(--on-primary) 86%, transparent);
  --hd: var(--on-primary);
  --muted: color-mix(in srgb, var(--on-primary) 62%, transparent);
  --brand: var(--on-primary);
  --card: color-mix(in srgb, var(--on-primary) 10%, transparent);
  --line: color-mix(in srgb, var(--on-primary) 18%, transparent);
  --brand-soft: color-mix(in srgb, var(--on-primary) 12%, transparent);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: var(--font-body);
  color: var(--fg);
  background: var(--body-bg);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  color: var(--hd);
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
  line-height: 1.15;
}

a {
  color: var(--brand);
  text-decoration: none;
  transition: color 0.25s;
}

a:hover {
  color: color-mix(in srgb, var(--brand) 80%, var(--hd));
}

img {
  max-width: 100%;
  height: auto;
}

em {
  font-style: normal;
  color: var(--brand);
}

::selection {
  background: var(--primary);
  color: var(--on-primary);
}

:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--primary) 55%, transparent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  background: var(--dark);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 8px;
}
.skip-link:focus {
  top: 1rem;
  color: #fff;
}

.sec {
  position: relative;
  background: var(--bg);
  color: var(--fg);
}

.pad-none {
  padding: 0;
}

.pad-sm {
  padding: clamp(48px, 6vw, 72px) 0;
}

.pad-md {
  padding: clamp(72px, 9vw, 120px) 0;
}

.pad-lg {
  padding: clamp(96px, 12vw, 160px) 0;
}

.section-head {
  max-width: 740px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3.1rem);
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.1rem;
  max-width: 640px;
  margin-bottom: 0;
}
.section-head-center .section-text {
  margin-left: auto;
  margin-right: auto;
}

.eyebrow,
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-soft);
  padding: 0.4rem 0.9rem;
  border-radius: 99px;
  margin-bottom: 1.1rem;
}

.text-muted-o {
  color: var(--muted);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.7rem;
}
.check-list li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--hd);
  font-weight: 500;
}
.check-list i {
  color: var(--brand);
  font-size: 1.15rem;
  line-height: 1.5;
}

.stars {
  color: var(--accent);
  display: inline-flex;
  gap: 2px;
  font-size: 0.95rem;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.social-links a {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--hd);
  transition: all 0.25s;
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--d, 0ms);
}
.js [data-reveal][data-reveal=left] {
  transform: translateX(-36px);
}
.js [data-reveal][data-reveal=right] {
  transform: translateX(36px);
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
.btn-group-o {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.btn-o {
  --btn-bg: var(--primary);
  --btn-fg: var(--on-primary);
  --btn-bd: var(--btn-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.65rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.2;
  border-radius: var(--btn-radius);
  border: 2px solid var(--btn-bd);
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn-o i {
  transition: transform 0.3s var(--ease);
}
.btn-o:hover {
  color: var(--btn-fg);
  transform: translateY(-2px);
}
.btn-o:hover i {
  transform: translateX(3px);
}
.btn-o-sm {
  padding: 0.65rem 1.2rem;
  font-size: 0.9rem;
}
.btn-o-primary:hover {
  background: color-mix(in srgb, var(--btn-bg) 86%, #000);
  border-color: color-mix(in srgb, var(--btn-bg) 86%, #000);
  box-shadow: 0 12px 26px -10px color-mix(in srgb, var(--btn-bg) 70%, transparent);
}
.btn-o-outline {
  --btn-bg: transparent;
  --btn-fg: var(--hd);
  --btn-bd: var(--line);
}
.btn-o-outline:hover {
  --btn-bg: var(--hd);
  --btn-bd: var(--hd);
  --btn-fg: var(--bg);
}
.btn-o-light {
  --btn-bg: #fff;
  --btn-fg: var(--dark);
}
.btn-o-light:hover {
  box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.45);
}
.btn-o-dark {
  --btn-bg: var(--dark);
  --btn-fg: #fff;
}
.btn-o-accent {
  --btn-bg: var(--accent);
  --btn-fg: var(--on-accent);
}
.btn-o-link {
  --btn-bg: transparent;
  --btn-bd: transparent;
  --btn-fg: var(--brand);
  padding: 0.2rem 0;
  border-width: 0;
  border-radius: 0;
  background-image: linear-gradient(currentColor, currentColor);
  background-size: 0 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.35s var(--ease), color 0.25s;
}
.btn-o-link:hover {
  background-size: 100% 2px;
  transform: none;
}

.tone-primary .btn-o-primary {
  --btn-bg: var(--on-primary);
  --btn-fg: var(--primary);
}

.tone-primary .btn-o-outline {
  --btn-fg: var(--on-primary) !important;
  --btn-bd: color-mix(in srgb, var(--on-primary) 45%, transparent) !important;
}

.tone-dark .btn-o-outline,
.tone-primary .btn-o-outline,
.hero-on-image .btn-o-outline {
  --btn-fg: #fff;
  --btn-bd: rgba(255, 255, 255, 0.4);
}
.tone-dark .btn-o-outline:hover,
.tone-primary .btn-o-outline:hover,
.hero-on-image .btn-o-outline:hover {
  --btn-bg: #fff;
  --btn-fg: var(--dark);
  --btn-bd: #fff;
}

.play-btn {
  --size: 72px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #fff;
  color: var(--primary);
  font-size: calc(var(--size) * 0.42);
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s var(--ease);
}
.play-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: pulse 2.2s infinite;
}
.play-btn:hover {
  transform: scale(1.08);
  color: var(--primary);
}
.play-btn i {
  margin-left: 4px;
}
.play-btn-lg {
  --size: 96px;
}

@keyframes pulse {
  from {
    transform: scale(1);
    opacity: 0.8;
  }
  to {
    transform: scale(1.7);
    opacity: 0;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: #fff;
  color: var(--heading-color);
  --hd: var(--heading-color);
  --line: color-mix(in srgb, var(--heading-color) 10%, transparent);
  transition: background 0.35s, box-shadow 0.35s, color 0.35s;
}
.site-header.is-scrolled {
  box-shadow: 0 6px 24px -12px rgba(15, 23, 42, 0.22);
}

.header-dark {
  background: var(--dark);
  color: #fff;
  --hd: #fff;
  --line: rgba(255, 255, 255, 0.2);
}

.header-transparent,
.header-transparent-dark {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
}

.header-transparent {
  color: #fff;
  --hd: #fff;
  --line: rgba(255, 255, 255, 0.3);
}

.header-transparent.is-scrolled,
.header-transparent-dark.is-scrolled {
  background: color-mix(in srgb, #fff 92%, transparent);
  backdrop-filter: saturate(1.6) blur(14px);
  color: var(--heading-color);
  --hd: var(--heading-color);
  --line: color-mix(in srgb, var(--heading-color) 12%, transparent);
}
.header-transparent.is-scrolled .topbar,
.header-transparent-dark.is-scrolled .topbar {
  display: none;
}

.brand > .brand-scrolled {
  display: none;
}

.header-transparent.is-scrolled .brand > .brand-default {
  display: none;
}
.header-transparent.is-scrolled .brand > .brand-scrolled {
  display: inline-flex;
}

.topbar {
  font-size: 0.85rem;
  min-height: 42px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.topbar .topbar-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0.85;
}
.topbar .topbar-info i {
  color: var(--primary);
  margin-right: 0.3rem;
}
.topbar .social-links a {
  width: 28px;
  height: 28px;
  border: 0;
  font-size: 0.85rem;
}
@media (max-width: 767.98px) {
  .topbar .topbar-info span:nth-child(n+2) {
    display: none;
  }
}

.header-transparent .topbar .topbar-info i {
  color: inherit;
}

.navbar-o {
  height: 84px;
  display: flex;
  align-items: center;
  transition: height 0.35s;
}
.is-scrolled .navbar-o {
  height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  margin-right: auto;
}
.brand:hover {
  color: inherit;
}
.brand > span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
  text-transform: none;
  color: inherit;
  line-height: 1;
}

.brand > .logo-mark + .logo-text,
.brand .logo-text {
  margin-left: 0.6rem;
}

.brand > span .logo-text {
  margin-left: 0;
}

.nav-o {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  gap: 0.35rem;
}
.nav-o a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: inherit;
  font-weight: 500;
  font-size: 0.96rem;
  opacity: 0.82;
  position: relative;
}
.nav-o a::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.2rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-o a:hover, .nav-o a.active {
  opacity: 1;
  color: inherit;
}
.nav-o a:hover::after, .nav-o a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-transparent:not(.is-scrolled) .header-actions .btn-o-primary,
.header-dark .header-actions .btn-o-primary {
  --btn-bg: var(--primary);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: inherit;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.mobile-nav {
  --hd: var(--heading-color);
  --line: color-mix(in srgb, var(--heading-color) 10%, transparent);
  color: var(--heading-color);
}
.mobile-nav .mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-nav .mobile-links a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--heading-color);
  border-bottom: 1px solid var(--line);
}

.header-is-transparent,
.header-is-transparent-dark {
  --hero-top: 84px;
}

.header-is-light,
.header-is-dark {
  --hero-top: 0px;
}

.has-topbar.header-is-transparent,
.has-topbar.header-is-transparent-dark {
  --hero-top: 126px;
}

.tone-primary .logo-mark, .bento-tone-primary .logo-mark {
  --logo-mark: var(--dark);
}

.sec-hero {
  overflow: hidden;
  padding-top: calc(var(--hero-top) + clamp(40px, 6vw, 80px));
  padding-bottom: clamp(56px, 7vw, 100px);
}

.hero-full {
  min-height: 100svh;
  display: flex;
  align-items: center;
}
.hero-full > .container {
  width: 100%;
}
.header-is-light .hero-full, .header-is-dark .hero-full {
  min-height: calc(100svh - 84px);
}

.hero-on-image {
  background: var(--dark);
}

.hero-bg,
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-image .hero-bg,
.hero-video .hero-bg {
  animation: kenburns 24s ease-out both;
}

@keyframes kenburns {
  from {
    transform: scale(1.12);
  }
  to {
    transform: scale(1);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--dark) 10%, color-mix(in srgb, var(--dark) 55%, transparent) 70%, color-mix(in srgb, var(--dark) 30%, transparent));
}

.hero-title {
  font-size: clamp(2.5rem, 1.4rem + 4.2vw, 4.6rem);
  line-height: 1.06;
  margin-bottom: 1.4rem;
  letter-spacing: calc(var(--heading-spacing) - 0.01em);
}

.hero-title-xl {
  font-size: clamp(3rem, 1rem + 8.5vw, 9rem);
  line-height: 0.98;
  max-width: 14ch;
}

.hero-text {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.25rem);
  max-width: 580px;
  margin-bottom: 0;
}
.text-center .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  margin-top: 2.2rem;
}
.text-center .hero-buttons {
  justify-content: center;
}

.hero-on-image .hero-eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(6px);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}
.text-center .hero-rating {
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 3rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.text-center .hero-stats {
  justify-content: center;
}
.hero-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--hd);
  line-height: 1.1;
}
.hero-stats span {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-split::before {
  content: "";
  position: absolute;
  width: 60vw;
  height: 60vw;
  right: -20vw;
  top: -20vw;
  border-radius: 50%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--primary) 16%, transparent), transparent);
  pointer-events: none;
}

.hero-media {
  position: relative;
}
.hero-media img {
  width: 100%;
  aspect-ratio: 4/4.4;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.6);
  box-shadow: var(--shadow);
}
.hero-media-wide img {
  aspect-ratio: 16/10;
}

.hero-badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  display: flex;
  gap: 0.9rem;
  align-items: center;
  background: #fff;
  color: var(--heading-color);
  padding: 1rem 1.3rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.hero-badge > i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
  font-size: 1.3rem;
}
.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  line-height: 1.2;
}
.hero-badge span {
  font-size: 0.85rem;
  color: var(--text-color);
}
@media (max-width: 767.98px) {
  .hero-badge {
    left: 1rem;
    bottom: 1rem;
  }
}

@keyframes float {
  50% {
    transform: translateY(-10px);
  }
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(40% 50% at 20% 20%, color-mix(in srgb, var(--primary) 22%, transparent), transparent), radial-gradient(35% 45% at 85% 30%, color-mix(in srgb, var(--accent) 20%, transparent), transparent), radial-gradient(50% 40% at 50% 100%, color-mix(in srgb, var(--primary) 14%, transparent), transparent);
}

.hero-screen {
  margin-top: clamp(3rem, 6vw, 5rem);
}
.hero-screen img {
  width: 100%;
  border-radius: calc(var(--radius) * 1.3);
  border: 8px solid color-mix(in srgb, var(--card) 70%, transparent);
  box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.45);
}

.hero-gradient.hero-full {
  align-items: flex-start;
}

.hero-slider {
  padding: 0;
}
.hero-slider .carousel, .hero-slider .carousel-inner, .hero-slider .carousel-item {
  height: 100svh;
  min-height: 600px;
}
.hero-slider .carousel-item .container {
  padding-top: var(--hero-top);
}
.hero-slider .carousel-item.active .hero-bg {
  animation: kenburns 9s ease-out both;
}
.hero-slider .hero-slide-content > * {
  animation: slideUp 1s var(--ease) both;
}
.hero-slider .hero-slide-content > *:nth-child(2) {
  animation-delay: 0.12s;
}
.hero-slider .hero-slide-content > *:nth-child(3) {
  animation-delay: 0.24s;
}
.hero-slider .hero-slide-content > *:nth-child(4) {
  animation-delay: 0.36s;
}
.hero-slider .carousel-control-prev, .hero-slider .carousel-control-next {
  width: 56px;
  height: 56px;
  top: auto;
  bottom: 2rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  opacity: 1;
  font-size: 1.2rem;
}
@media (max-width: 767.98px) {
  .hero-slider .carousel-control-prev, .hero-slider .carousel-control-next {
    display: none;
  }
}
.hero-slider .carousel-control-prev {
  left: auto;
  right: 6.5rem;
}
.hero-slider .carousel-control-next {
  right: 2rem;
}
.hero-slider .carousel-indicators {
  justify-content: flex-start;
  margin: 0 auto 2.6rem;
  max-width: 1320px;
  padding: 0 12px;
}
.hero-slider .carousel-indicators [data-bs-target] {
  width: 36px;
  height: 3px;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}
.hero-form-card {
  background: #fff;
  color: var(--text-color);
  --hd: var(--heading-color);
  --fg: var(--text-color);
  --line: color-mix(in srgb, var(--heading-color) 12%, transparent);
  --card: #fff;
  --muted: #64748b;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: calc(var(--radius) * 1.3);
  box-shadow: var(--shadow);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 1.75rem;
  translate: -50% 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  animation: bob 2s ease-in-out infinite;
}
.scroll-hint:hover {
  color: #fff;
}

@keyframes bob {
  50% {
    transform: translateY(8px);
  }
}
.hero-slider > .carousel {
  width: 100%;
}

.hero-video .play-btn {
  display: grid;
  margin: 0 auto 1.75rem;
}

.listing, .cd-unit, .session, .timeline-card, .newsletter-box, .contact-form-card, .contact-hours, .post-card, .plan, .testimonial, .stat-boxed, .service-card, .feature-boxed, .feature-cards {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.listing, .post-card, .plan, .service-card, .feature-cards {
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
}
.listing:hover, .post-card:hover, .plan:hover, .service-card:hover, .feature-cards:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.tile, .listing-img, .post-img, .member-img, .gallery-item, .portfolio-item, .service-overlay, .service-img {
  overflow: hidden;
}
.tile img, .listing-img img, .post-img img, .member-img img, .gallery-item img, .portfolio-item img, .service-overlay img, .service-img img {
  transition: transform 0.8s var(--ease);
}

.feature-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  display: inline-grid;
  place-items: center;
  border-radius: calc(var(--radius) * 0.9);
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.55rem;
  margin-bottom: 1.3rem;
  transition: all 0.35s var(--ease);
}

.feature-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--brand);
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.feature p {
  margin-bottom: 0;
}

.feature-cards {
  height: 100%;
  padding: 2.1rem 1.9rem;
}
.feature-cards:hover .feature-icon {
  background: var(--primary);
  color: var(--on-primary);
}

.feature-boxed {
  height: 100%;
  text-align: center;
  padding: 2.5rem 1.75rem;
  border-width: 0;
  box-shadow: var(--shadow-sm);
}
.feature-boxed .feature-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 1.9rem;
  box-shadow: 0 12px 24px -10px var(--primary);
}

.feature-minimal {
  height: 100%;
}
.feature-minimal .feature-icon {
  background: none;
  width: auto;
  height: auto;
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.feature-list {
  display: flex;
  gap: 1.25rem;
}
.feature-list .feature-icon {
  margin-bottom: 0;
}

.about-media {
  position: relative;
}
.about-media.has-second {
  padding: 0 12% 12% 0;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.5);
}

.about-img-second {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 8px solid var(--bg);
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  left: -1rem;
  top: 2rem;
  background: var(--primary);
  color: var(--on-primary);
  padding: 1.3rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 190px;
}
.about-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
}
.about-badge span {
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.3;
  display: block;
  margin-top: 0.4rem;
}
@media (max-width: 767.98px) {
  .about-badge {
    left: 1rem;
  }
}

.about-play {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}

.has-second .about-play {
  left: 44%;
  top: 44%;
}

.about-content > p {
  font-size: 1.05rem;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin-top: 2rem;
}
.about-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--brand);
  line-height: 1.1;
}
.about-stats span {
  font-size: 0.9rem;
}

.about-signature {
  margin-top: 2rem;
}
.about-signature strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--hd);
  font-style: italic;
}
.about-signature span {
  font-size: 0.9rem;
  color: var(--muted);
}

.zigzag-row + .zigzag-row {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.zigzag-media img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.4);
}

.zigzag-title {
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.3rem);
  margin-bottom: 1rem;
}

.service-card {
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card:hover .service-img img {
  transform: scale(1.07);
}
.service-card:hover .service-more i {
  transform: translateX(4px);
}

.service-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-body {
  padding: 1.75rem;
}

.service-card-image .feature-icon {
  margin-top: calc(-1.75rem - 29px);
  position: relative;
  background: var(--primary);
  color: var(--on-primary);
  border: 4px solid var(--card);
  box-sizing: content-box;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 0.6rem;
}

.service-body p {
  margin-bottom: 0.8rem;
}

.service-price {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand);
  font-size: 1.1rem;
}

.service-more {
  font-weight: 600;
  color: var(--brand);
  font-size: 0.93rem;
}
.service-more i {
  display: inline-block;
  transition: transform 0.3s var(--ease);
}

.service-overlay {
  position: relative;
  border-radius: var(--radius);
  isolation: isolate;
}
.service-overlay img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}
.service-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--dark) 92%, transparent), transparent 65%);
  transition: background 0.4s;
}
.service-overlay:hover img {
  transform: scale(1.07);
}
.service-overlay:hover::after {
  background: linear-gradient(to top, color-mix(in srgb, var(--primary) 92%, transparent), color-mix(in srgb, var(--primary) 30%, transparent));
}

.service-overlay-body {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.75rem;
  color: rgba(255, 255, 255, 0.82);
  --hd: #fff;
}
.service-overlay-body .feature-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 1rem;
}
.service-overlay-body p {
  margin: 0;
  font-size: 0.95rem;
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr 40px;
  gap: 0.5rem 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease);
}
@media (min-width: 992px) {
  .service-row {
    grid-template-columns: 90px 1fr 1.3fr 50px;
  }
}
.service-row p {
  margin: 0;
  grid-column: 2;
}
@media (min-width: 992px) {
  .service-row p {
    grid-column: auto;
  }
}
.service-row .service-title {
  margin: 0;
  font-size: clamp(1.4rem, 1rem + 1.4vw, 2.1rem);
}
.service-row:hover {
  padding-left: 1rem;
}
.service-row:hover .service-arrow {
  background: var(--primary);
  color: var(--on-primary);
  transform: rotate(45deg);
}

.service-num {
  font-family: var(--font-heading);
  color: var(--muted);
  font-weight: 600;
}

.service-arrow {
  grid-row: 1;
  grid-column: 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--hd);
  transition: all 0.4s var(--ease);
}
@media (min-width: 992px) {
  .service-arrow {
    grid-column: 4;
  }
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: var(--heading-weight);
  font-size: clamp(2.4rem, 1.6rem + 2.6vw, 3.6rem);
  line-height: 1.1;
  color: var(--hd);
  letter-spacing: -0.03em;
}

.stat-label {
  margin-top: 0.35rem;
  font-weight: 500;
}

.stat-icon {
  display: block;
  font-size: 2rem;
  color: var(--brand);
  margin-bottom: 0.6rem;
}

.stat-boxed {
  padding: 2rem 1rem;
  height: 100%;
}

@media (min-width: 992px) {
  .stat-divided {
    border-left: 1px solid var(--line);
  }
  .col-lg-3:first-child .stat-divided {
    border-left: 0;
  }
}

.step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
}
.step p {
  margin: 0;
}

.step-marker {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 2px dashed color-mix(in srgb, var(--brand) 50%, transparent);
  color: var(--brand);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.4s var(--ease);
}
.step:hover .step-marker {
  background: var(--primary);
  border-style: solid;
  border-color: var(--primary);
  color: var(--on-primary);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

@media (min-width: 992px) {
  .process-row > div:not(:last-child) .step::after {
    content: "";
    position: absolute;
    top: 38px;
    left: calc(50% + 50px);
    right: calc(-50% + 50px);
    border-top: 2px dashed var(--line);
  }
}
.filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: -1rem 0 2.5rem;
}
.filters button {
  border: 1px solid var(--line);
  background: transparent;
  color: var(--hd);
  padding: 0.5rem 1.15rem;
  border-radius: 99px;
  font-weight: 500;
  font-size: 0.93rem;
  transition: all 0.25s;
}
.filters button:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filters button.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.portfolio-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .portfolio-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .portfolio-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.portfolio-grid [hidden] {
  display: none;
}

.portfolio-masonry {
  grid-auto-rows: 300px;
  grid-auto-flow: dense;
}
.portfolio-masonry .portfolio-item {
  height: 100%;
}
.portfolio-masonry .portfolio-item img {
  aspect-ratio: auto;
  height: 100%;
}
@media (min-width: 768px) {
  .portfolio-masonry .is-tall {
    grid-row: span 2;
  }
  .portfolio-masonry .is-wide {
    grid-column: span 2;
  }
}

.portfolio-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
}
.portfolio-item a {
  display: block;
  height: 100%;
  color: #fff;
}
.portfolio-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.portfolio-item figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--dark) 88%, transparent), transparent 60%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
}
.portfolio-item figcaption h3 {
  color: #fff;
  font-size: 1.3rem;
  margin: 0;
  transform: translateY(12px);
  transition: transform 0.45s var(--ease);
}
@media (hover: none) {
  .portfolio-item figcaption {
    opacity: 1;
  }
}
.portfolio-item:hover img, .portfolio-item:focus-within img {
  transform: scale(1.07);
}
.portfolio-item:hover figcaption, .portfolio-item:focus-within figcaption {
  opacity: 1;
}
.portfolio-item:hover figcaption h3, .portfolio-item:focus-within figcaption h3 {
  transform: none;
}

.portfolio-cat {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.portfolio-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: grid;
  place-items: center;
}

.gallery-grid {
  columns: 2;
  column-gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    columns: 3;
  }
}
@media (min-width: 992px) {
  .gallery-grid.cols-4 {
    columns: 4;
  }
  .gallery-grid.cols-5 {
    columns: 5;
  }
}

.gallery-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
}
.gallery-item img {
  width: 100%;
  display: block;
}
.gallery-item:hover img {
  transform: scale(1.06);
}

.sec-gallery > .gallery-grid,
.sec-gallery > .section-head {
  padding: 0 1rem;
}

.testimonial {
  margin: 0;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.testimonial p {
  font-size: 1.05rem;
  margin: 0;
  flex-grow: 1;
  color: var(--hd);
}
.testimonial footer {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--hd);
  font-family: var(--font-heading);
}
.testimonial footer span {
  font-size: 0.88rem;
  color: var(--muted);
}

.quote-icon {
  font-size: 2.2rem;
  color: var(--brand);
  line-height: 1;
}

.testimonial-big {
  background: none;
  border: 0;
  text-align: center;
  align-items: center;
  padding: 0 0 1rem;
}
.testimonial-big .stars {
  font-size: 1.2rem;
}
.testimonial-big p {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.9rem);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.testimonial-big footer {
  text-align: left;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  border: 0;
  padding: 0;
  background: var(--line);
  transition: all 0.35s var(--ease);
}
.carousel-dots button.active {
  width: 32px;
  background: var(--brand);
}

.member {
  text-align: center;
}

.member-img {
  position: relative;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}
.member-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
.member-img .social-links {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--ease);
}
.member-img .social-links a {
  background: #fff;
  border-color: #fff;
  color: var(--dark);
}
.member-img:hover img {
  transform: scale(1.06);
}
.member-img:hover .social-links {
  opacity: 1;
  transform: none;
}

.member-name {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.member-role {
  color: var(--brand);
  font-size: 0.92rem;
  font-weight: 500;
}

.member p {
  margin: 0.6rem 0 0;
  font-size: 0.95rem;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: -1.5rem 0 3rem;
  font-weight: 600;
}
.pricing-toggle span {
  color: var(--muted);
  transition: color 0.25s;
}
.pricing-toggle span.is-active {
  color: var(--hd);
}
.pricing-toggle em {
  font-size: 0.75rem;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.15rem 0.5rem;
  border-radius: 99px;
  margin-left: 0.3rem;
}
.pricing-toggle button {
  width: 56px;
  height: 30px;
  border-radius: 99px;
  border: 0;
  background: var(--primary);
  position: relative;
}
.pricing-toggle button span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.3s var(--ease);
}
.pricing-toggle.is-yearly button span {
  transform: translateX(26px);
}

.plan {
  position: relative;
  height: 100%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
}
.plan.is-featured {
  background: var(--dark);
  border-color: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  --hd: #fff;
  --line: rgba(255, 255, 255, 0.15);
  --muted: rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
}
@media (min-width: 992px) {
  .plan.is-featured {
    transform: scale(1.04);
  }
  .plan.is-featured:hover {
    transform: scale(1.04) translateY(-6px);
  }
}
.tone-dark .plan.is-featured {
  background: var(--primary);
  border-color: var(--primary);
}
.plan .btn-o {
  margin-top: auto;
}

.plan-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
}

.plan-name {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.plan-text {
  font-size: 0.93rem;
  color: var(--muted);
}

.plan-price {
  display: flex;
  align-items: flex-start;
  gap: 0.15rem;
  color: var(--hd);
  font-family: var(--font-heading);
  margin: 1rem 0 1.5rem;
  line-height: 1;
}
.plan-price span:nth-child(2) {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}
.plan-price .plan-cur {
  font-size: 1.5rem;
  margin-top: 0.4rem;
}
.plan-price small {
  align-self: flex-end;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.plan-features {
  list-style: none;
  padding: 1.5rem 0 0;
  margin: 0 0 2rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 0.75rem;
}
.plan-features li {
  display: flex;
  gap: 0.6rem;
}
.plan-features i {
  color: var(--brand);
}
.plan.is-featured .plan-features i {
  color: var(--accent);
}
.plan-features .is-off {
  opacity: 0.5;
  text-decoration: line-through;
}
.plan-features .is-off i {
  color: inherit;
}

.faq {
  --bs-accordion-bg: var(--card);
  --bs-accordion-color: var(--fg);
  --bs-accordion-border-color: var(--line);
  --bs-accordion-btn-color: var(--hd);
  --bs-accordion-active-color: var(--hd);
  --bs-accordion-active-bg: var(--card);
  --bs-accordion-btn-focus-box-shadow: none;
  --bs-accordion-border-radius: var(--radius);
  --bs-accordion-inner-border-radius: var(--radius);
  display: grid;
  gap: 0.9rem;
}
.faq .accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
}
.faq .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.07rem;
  padding: 1.3rem 1.5rem;
}
.faq .accordion-button::after {
  background-image: none;
  content: "\f64d";
  font-family: "bootstrap-icons";
  color: var(--brand);
  display: grid;
  place-items: center;
  transform: none;
  font-size: 1.2rem;
}
.faq .accordion-button:not(.collapsed)::after {
  content: "\f63b";
}
.faq .accordion-body {
  padding: 0 1.5rem 1.4rem;
}

.cta-title {
  font-size: clamp(1.9rem, 1.2rem + 2.5vw, 3.2rem);
  margin-bottom: 1rem;
}

.cta-text {
  font-size: 1.12rem;
  margin: 0;
}

.cta-banner, .cta-image {
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 80% at 0% 0%, rgba(255, 255, 255, 0.14), transparent), radial-gradient(40% 80% at 100% 100%, rgba(0, 0, 0, 0.16), transparent);
}

.cta-box {
  background: var(--primary);
  color: color-mix(in srgb, var(--on-primary) 86%, transparent);
  --hd: var(--on-primary);
  --brand: var(--on-primary);
  --brand-soft: color-mix(in srgb, var(--on-primary) 14%, transparent);
  border-radius: calc(var(--radius) * 1.6);
  padding: clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-box::before, .cta-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 50px solid rgba(255, 255, 255, 0.07);
  z-index: -1;
}
.cta-box::before {
  width: 340px;
  height: 340px;
  right: -120px;
  top: -160px;
}
.cta-box::after {
  width: 220px;
  height: 220px;
  left: 30%;
  bottom: -170px;
}
.cta-box .btn-o-primary {
  --btn-bg: var(--on-primary);
  --btn-fg: var(--primary);
}
.cta-box .btn-o-outline {
  --btn-fg: var(--on-primary);
  --btn-bd: color-mix(in srgb, var(--on-primary) 45%, transparent);
}

.cta-img {
  width: 100%;
  border-radius: calc(var(--radius) * 1.4);
  aspect-ratio: 4/3;
  object-fit: cover;
}

.post-card {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.post-card:hover .post-img img {
  transform: scale(1.07);
}
.post-card:hover .post-title a {
  color: var(--brand);
}

.post-img {
  position: relative;
}
.post-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.post-cat {
  position: absolute;
  left: 1rem;
  top: 1rem;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}

.post-body {
  padding: 1.5rem 1.6rem 1.75rem;
}
.post-body p {
  margin: 0;
  font-size: 0.96rem;
}

.post-meta {
  display: flex;
  gap: 1.2rem;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.post-title {
  font-size: 1.2rem;
  line-height: 1.35;
  margin-bottom: 0.6rem;
}
.post-title a {
  color: var(--hd);
}

.contact-info {
  display: grid;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.1rem;
}
.contact-item > i {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.3rem;
}
.contact-item h3 {
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.contact-item p {
  margin: 0;
}

.contact-hours {
  padding: 1.5rem;
}
.contact-hours h3 {
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}
.contact-hours h3 i {
  color: var(--brand);
}
.contact-hours ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--line);
}
.contact-hours li:last-child {
  border: 0;
}

.contact-form-card {
  padding: clamp(1.5rem, 4vw, 2.75rem);
  box-shadow: var(--shadow-sm);
}

.contact-map {
  margin-top: clamp(3rem, 6vw, 5rem);
  border-radius: calc(var(--radius) * 1.3);
  overflow: hidden;
}
.contact-map iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: grayscale(0.6);
}

.newsletter-box {
  padding: clamp(2rem, 5vw, 3.5rem);
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.newsletter-form .form-control {
  flex: 1 1 220px;
}
.newsletter-form .form-status {
  flex-basis: 100%;
}

.newsletter-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0.75rem 0 0;
}

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 980px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 19px;
  width: 2px;
  background: var(--line);
}
@media (min-width: 992px) {
  .timeline::before {
    left: 50%;
  }
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2.5rem;
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 6px var(--brand-soft);
}
@media (min-width: 992px) {
  .timeline-item {
    width: 50%;
    padding: 0 3.5rem 0 0;
    text-align: right;
  }
  .timeline-item::before {
    left: auto;
    right: -9px;
  }
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding: 0 0 0 3.5rem;
    text-align: left;
  }
  .timeline-item:nth-child(even)::before {
    right: auto;
    left: -9px;
  }
}

.timeline-year {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

.timeline-card {
  padding: 1.5rem 1.75rem;
}
.timeline-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.timeline-card p {
  margin: 0;
}

.menu-tabs {
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.menu-tabs .nav-link {
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--hd);
  font-weight: 600;
  padding: 0.6rem 1.4rem;
}
.menu-tabs .nav-link.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.menu-item {
  display: flex;
  gap: 1.1rem;
  align-items: center;
}
.menu-item h3 {
  font-size: 1.12rem;
  margin: 0;
}
.menu-item p {
  margin: 0.3rem 0 0;
  font-size: 0.93rem;
  color: var(--muted);
}

.menu-thumb {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-line {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
}

.menu-dots {
  flex: 1;
  border-bottom: 2px dotted var(--line);
  transform: translateY(-4px);
  min-width: 20px;
}

.menu-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand);
  font-size: 1.12rem;
  white-space: nowrap;
}

.menu-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--accent);
  color: var(--on-accent);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  vertical-align: middle;
}

.schedule-list {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.session {
  display: grid;
  gap: 0.75rem 2rem;
  padding: 1.4rem 1.75rem;
  align-items: center;
  transition: border-color 0.3s;
}
@media (min-width: 768px) {
  .session {
    grid-template-columns: 170px 1fr auto;
  }
}
.session:hover {
  border-color: var(--primary);
}
.session h3 {
  font-size: 1.15rem;
  margin: 0;
}
.session span {
  font-size: 0.9rem;
  color: var(--muted);
}

.session-time {
  font-weight: 600;
  color: var(--brand);
}

.session-main {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.session-room {
  font-size: 0.9rem;
  color: var(--muted);
}

.skills-img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.bars {
  display: grid;
  gap: 1.5rem;
}

.bar-head {
  display: flex;
  justify-content: space-between;
  font-weight: 600;
  color: var(--hd);
  margin-bottom: 0.5rem;
}

.bar-track {
  height: 8px;
  border-radius: 99px;
  background: var(--line);
  overflow: hidden;
}
.bar-track span {
  display: block;
  height: 100%;
  width: var(--w);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1.6s var(--ease);
}
.bar-track.is-visible span {
  transform: none;
}

.product {
  position: relative;
}

.product-img {
  position: relative;
  border-radius: var(--radius);
  background: var(--light);
  margin-bottom: 1rem;
  overflow: hidden;
}
.product-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s, transform 0.8s var(--ease);
}
.product-img .product-img-alt {
  position: absolute;
  inset: 0;
  height: 100%;
  opacity: 0;
}
.product-img:hover .product-img-alt {
  opacity: 1;
}
.product-img:hover img {
  transform: scale(1.04);
}
.product-img:hover .product-actions, .product-img:hover .product-add {
  opacity: 1;
  transform: none;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
}

.product-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.4s var(--ease);
}
.product-actions button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.product-actions button:hover {
  background: var(--primary);
  color: var(--on-primary);
}

.product-add {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  border: 0;
  border-radius: var(--btn-radius);
  background: var(--dark);
  color: #fff;
  font-weight: 600;
  padding: 0.8rem;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.4s var(--ease);
}
.product-add:hover {
  background: var(--primary);
}

@media (hover: none) {
  .product-actions, .product-add {
    opacity: 1;
    transform: none;
  }
}
.product-cat {
  font-size: 0.8rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-name {
  font-size: 1.05rem;
  margin: 0.2rem 0 0.35rem;
}
.product-name a {
  color: var(--hd);
}
.product-name a:hover {
  color: var(--brand);
}

.product-price {
  font-weight: 700;
  color: var(--hd);
  margin-top: 0.3rem;
}
.product-price del {
  color: var(--muted);
  font-weight: 400;
  margin-right: 0.5rem;
}

.sec-countdown {
  padding: clamp(72px, 9vw, 120px) 0;
  overflow: hidden;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: clamp(0.6rem, 2vw, 1.5rem);
  margin-top: 2rem;
}

.cd-unit {
  min-width: clamp(72px, 16vw, 130px);
  padding: 1.25rem 0.5rem;
  backdrop-filter: blur(8px);
}
.cd-unit span {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.6rem);
  color: var(--hd);
  line-height: 1;
}
.cd-unit small {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.listing {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.listing:hover .listing-img img {
  transform: scale(1.07);
}

.listing-img {
  position: relative;
}
.listing-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.listing-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
}

.listing-price {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  color: var(--dark);
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
}
.listing-price small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8rem;
  margin-left: 0.2rem;
  color: #64748b;
}

.listing-body {
  padding: 1.4rem 1.5rem 1.5rem;
}
.listing-body .stars {
  margin-bottom: 0.4rem;
}

.listing-title {
  font-size: 1.18rem;
  margin-bottom: 0.3rem;
}
.listing-title a {
  color: var(--hd);
}

.listing-sub {
  font-size: 0.93rem;
  color: var(--muted);
  margin: 0;
}

.listing-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  padding: 1rem 0 0;
  margin: 1rem 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.listing-meta i {
  color: var(--brand);
  margin-right: 0.2rem;
}

.sec-video {
  overflow: hidden;
}

.marquee {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: marquee var(--speed) linear infinite;
}
.marquee-track span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 1.5rem + 5vw, 6rem);
  line-height: 1.1;
  color: var(--hd);
  text-transform: var(--heading-transform);
  letter-spacing: -0.03em;
  white-space: nowrap;
}
.marquee-track i {
  font-size: clamp(1.5rem, 1rem + 2vw, 3rem);
  color: var(--brand);
}
.is-outline .marquee-track span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--hd);
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
.logos-title {
  text-align: center;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

.logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem 3rem;
}

.logo-item {
  color: var(--hd);
  opacity: 0.45;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.logo-item img {
  max-height: 40px;
  width: auto;
  filter: grayscale(1);
}
.logo-item:hover {
  opacity: 1;
  color: var(--hd);
}

.logo-font-1 {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0;
}

.logo-font-2 {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 1.1rem;
}

.logo-font-3 {
  font-weight: 400;
  letter-spacing: 0;
}

.logo-font-4 {
  text-transform: lowercase;
  font-weight: 900;
}

.tiles-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .tiles-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .tiles-grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  color: #fff;
  isolation: isolate;
}
.tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}
@media (min-width: 768px) {
  .tile.is-wide {
    grid-column: span 2;
  }
  .tile.is-wide img {
    aspect-ratio: auto;
  }
}
.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent 55%);
}
.tile:hover {
  color: var(--on-primary);
}
.tile:hover img {
  transform: scale(1.07);
}
.tile:hover .tile-arrow {
  background: var(--primary);
  color: var(--on-primary);
  transform: rotate(45deg);
}

.tile-body {
  position: absolute;
  z-index: 1;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  display: flex;
  flex-direction: column;
}
.tile-body small {
  opacity: 0.85;
  font-size: 0.85rem;
}
.tile-body strong {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.2;
  padding-right: 3.5rem;
}

.tile-arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: grid;
  place-items: center;
  transition: all 0.4s var(--ease);
}

.rich-text {
  font-size: 1.08rem;
}
.rich-text h3 {
  font-size: 1.5rem;
  margin: 2rem 0 0.8rem;
}
.rich-text p {
  margin-bottom: 1.2rem;
}
.rich-text blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--hd);
  margin: 2rem 0;
}

.quote-mark {
  font-size: 3.5rem;
  color: var(--brand);
  line-height: 1;
}

.big-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 1rem + 2vw, 2.6rem);
  line-height: 1.35;
  color: var(--hd);
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 1rem 0 2rem;
}

.big-quote-author {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}
.big-quote-author strong {
  display: block;
  color: var(--hd);
  font-family: var(--font-heading);
}
.big-quote-author span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-image .hero-overlay, .sec-video .hero-overlay, .sec-countdown .hero-overlay, .sec-page-header .hero-overlay, .hero-search .hero-overlay, .hero-video .hero-overlay {
  background: var(--dark);
}
.cta-image .eyebrow, .sec-video .eyebrow, .sec-countdown .eyebrow, .sec-page-header .eyebrow, .hero-search .eyebrow, .hero-video .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.accordion-button:has(.fp-meta)::after {
  margin-left: 0;
}

.accordion-button .fp-meta {
  margin-left: auto;
  margin-right: 1rem;
}

@media (min-width: 768px) {
  .gallery-grid.cols-2 {
    columns: 2;
  }
}

.site-footer {
  background: var(--bg);
  color: var(--fg);
  padding: clamp(64px, 8vw, 100px) 0 0;
  font-size: 0.96rem;
}
.site-footer .brand {
  margin-bottom: 1.25rem;
  color: var(--hd);
}
.site-footer a {
  color: var(--fg);
}
.site-footer a:hover {
  color: var(--hd);
}
.site-footer .social-links a {
  color: var(--hd);
}
.site-footer .social-links a:hover {
  color: #fff;
}

.footer-about {
  margin: 0 0 1.5rem;
  max-width: 360px;
}

.footer-title {
  font-size: 1rem;
  margin-bottom: 1.2rem;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.footer-contact li {
  display: flex;
  gap: 0.7rem;
}
.footer-contact li i {
  color: var(--brand);
}

.footer-newsletter {
  position: relative;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.footer-newsletter .form-control {
  padding-right: 3.5rem;
}
.footer-newsletter button {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: calc(var(--btn-radius) - 3px);
  background: var(--primary);
  color: var(--on-primary);
}
.footer-newsletter .form-status {
  flex-basis: 100%;
  margin-top: 0.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  margin-top: clamp(48px, 6vw, 72px);
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
}
.footer-bottom p {
  margin: 0;
}

.footer-simple {
  padding-bottom: 2.5rem;
}
.footer-simple .footer-about {
  margin: 0 auto 1.5rem;
}
.footer-simple .social-links {
  justify-content: center;
}
.footer-simple .copyright {
  margin: 2rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-inline {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.75rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--hd);
  margin-bottom: 0.4rem;
}

.form-control,
.form-select {
  background-color: var(--card);
  border: 1px solid var(--line);
  color: var(--hd);
  border-radius: var(--btn-radius);
  padding: 0.85rem 1.1rem;
  font-size: 0.97rem;
}
.form-control::placeholder,
.form-select::placeholder {
  color: var(--muted);
}
.form-control:focus,
.form-select:focus {
  background-color: var(--card);
  color: var(--hd);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.tone-dark .form-select option {
  color: #000;
}

.form-status {
  font-weight: 600;
  color: var(--brand);
  font-size: 0.92rem;
}

.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1020;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--primary);
  color: var(--on-primary);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.35s var(--ease);
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.demo-switcher-btn {
  position: fixed;
  left: 0;
  top: 50%;
  z-index: 1020;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.8rem 0.55rem;
  border: 0;
  border-radius: 0 12px 12px 0;
  background: var(--dark);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: var(--shadow);
}
.demo-switcher-btn i {
  font-size: 1.1rem;
}
@media (max-width: 767.98px) {
  .demo-switcher-btn {
    display: none;
  }
}

.demo-switcher {
  --hd: var(--heading-color);
  color: var(--heading-color);
}
.demo-switcher .brand .logo-text {
  font-size: 1.3rem;
}

.demo-switcher-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.25rem;
}
.demo-switcher-list a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  color: var(--heading-color);
  font-weight: 600;
  font-size: 0.95rem;
}
.demo-switcher-list a:hover, .demo-switcher-list a[aria-current] {
  background: var(--light);
}
.demo-switcher-list a small {
  margin-left: auto;
  font-weight: 400;
  color: #64748b;
  font-size: 0.78rem;
}
.demo-switcher-list .swatch {
  width: 14px;
  height: 14px;
}

.swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.4);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(8, 10, 18, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
.lightbox[hidden] {
  display: none;
}
.lightbox figure {
  margin: 0;
  text-align: center;
}
.lightbox img {
  max-width: min(92vw, 1400px);
  max-height: 80vh;
  border-radius: 8px;
}
.lightbox figcaption {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1rem;
}
.lightbox button {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #fff;
  font-size: 1.2rem;
}
.lightbox button:hover {
  background: rgba(255, 255, 255, 0.12);
}
.lightbox .lb-close {
  top: 1rem;
  right: 1rem;
}
.lightbox .lb-prev {
  left: 1rem;
  top: 50%;
  translate: 0 -50%;
}
.lightbox .lb-next {
  right: 1rem;
  top: 50%;
  translate: 0 -50%;
}

.video-modal .modal-content {
  background: #000;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.video-modal .btn-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  z-index: 2;
  opacity: 1;
}
.video-modal .modal-dialog {
  margin-top: 4rem;
}
.video-modal .modal-content {
  overflow: visible;
}

.offcanvas {
  --bs-offcanvas-width: 340px;
}

.showcase-hero {
  padding: calc(84px + clamp(48px, 7vw, 96px)) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
}
.showcase-hero .hero-glow {
  opacity: 0.9;
}
.showcase-hero .hero-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.showcase .site-header {
  position: fixed;
  left: 0;
  right: 0;
}

.showcase-logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  color: #fff;
}
.showcase-logo .logo-mark {
  width: 64px;
  height: 64px;
}
.showcase-logo .logo-text {
  font-size: 2.6rem;
}

.demo-grid {
  display: grid;
  gap: 2rem 1.75rem;
  grid-template-columns: minmax(0, 1fr);
}
@media (min-width: 768px) {
  .demo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .demo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.demo-grid [hidden] {
  display: none;
}

.demo-frame {
  display: block;
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.demo-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 990px;
  border: 0;
  transform: scale(var(--s, 0.28));
  transform-origin: 0 0;
  pointer-events: none;
}
.demo-frame:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.demo-frame:hover .demo-open {
  opacity: 1;
}

.demo-open {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--dark) 55%, transparent);
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.35s;
}
.demo-open i {
  margin-right: 0.4rem;
}

.demo-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 0.25rem 0;
}
.demo-meta h3 {
  font-size: 1.08rem;
  margin: 0;
}
.demo-meta small {
  color: var(--muted);
}

.demo-num {
  margin-left: auto;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--muted);
}

textarea.form-control {
  border-radius: min(var(--btn-radius), 16px);
}

.demo-open:focus-visible {
  opacity: 1;
  outline-offset: -6px;
}

.demo-open, .demo-open:hover, .demo-open:focus-visible {
  color: #fff;
}

.demo-open {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}
.demo-open i {
  margin: 0;
}

.filter-card div.form-label label {
  margin: 0;
}

.showcase-hero {
  padding: calc(84px + clamp(40px, 6vw, 80px)) 0 clamp(48px, 6vw, 80px);
}
.showcase-hero .hero-title {
  max-width: 14ch;
}
.showcase-hero .hero-title em {
  color: var(--accent);
}

.showcase-peek {
  position: relative;
  height: 520px;
}

.peek {
  position: absolute;
  width: 62%;
  aspect-ratio: 16/11;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  background: var(--light);
}
.peek iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 1440px;
  height: 990px;
  border: 0;
  transform: scale(var(--s, 0.3));
  transform-origin: 0 0;
  pointer-events: none;
}
.peek.peek-0 {
  left: 0;
  top: 40px;
  transform: rotate(-4deg);
  z-index: 1;
}
.peek.peek-1 {
  right: 0;
  top: 0;
  transform: rotate(3deg);
  z-index: 2;
}
.peek.peek-2 {
  left: 18%;
  bottom: 0;
  z-index: 3;
}

.showcase-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 768px) {
  .showcase-stats {
    grid-template-columns: repeat(5, 1fr);
  }
}
.showcase-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 1.5rem + 1.5vw, 2.8rem);
  color: #fff;
  line-height: 1.1;
}
.showcase-stats span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
}

.demo-pages {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  background: var(--dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
}

.code-point {
  display: flex;
  gap: 0.9rem;
  height: 100%;
}
.code-point > i {
  color: var(--brand);
  font-size: 1.4rem;
}
.code-point h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}
.code-point p {
  margin: 0;
  font-size: 0.92rem;
}

.code-window {
  background: #0d1117;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.code-window pre {
  margin: 0;
  padding: 1.25rem 1.5rem;
  color: #c9d1d9;
  font-size: 0.9rem;
  line-height: 1.65;
  max-height: 460px;
}
.code-window .tok-key {
  color: #79c0ff;
}
.code-window .tok-str {
  color: #a5d6ff;
}

.code-bar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.8rem 1rem;
  background: #161b22;
  border-bottom: 1px solid #30363d;
}
.code-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff5f57;
}
.code-bar span:nth-child(2) {
  background: #febc2e;
}
.code-bar span:nth-child(3) {
  background: #28c840;
}
.code-bar small {
  margin-left: 0.75rem;
  color: #8b949e;
  font-family: ui-monospace, monospace;
}

.code-result {
  padding: 0.9rem 1.5rem;
  background: #161b22;
  border-top: 1px solid #30363d;
  color: #7ee787;
  font-size: 0.9rem;
}

.chip-cloud {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.chip-cloud li {
  padding: 0.55rem 1.1rem;
  border-radius: 99px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--hd);
  font-weight: 500;
  font-size: 0.93rem;
  transition: all 0.25s;
}
.chip-cloud li:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.nav-o .has-dropdown {
  position: relative;
}
.nav-o .has-dropdown .dd-caret {
  font-size: 0.7em;
  margin-left: 0.2rem;
}
.nav-o .has-dropdown > a::after {
  display: none;
}
.nav-o .has-dropdown:hover > .dropdown-o, .nav-o .has-dropdown:focus-within > .dropdown-o {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown-o {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 10px);
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 0.6rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 20px 50px -12px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(15, 23, 42, 0.06);
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease);
  z-index: 10;
}
.dropdown-o a {
  color: var(--heading-color) !important;
  opacity: 1 !important;
  padding: 0.55rem 0.8rem !important;
  border-radius: 8px;
  font-size: 0.93rem;
  white-space: nowrap;
}
.dropdown-o a::after {
  display: none;
}
.dropdown-o a:hover, .dropdown-o a[aria-current] {
  background: var(--light);
  color: var(--primary) !important;
}

.mobile-sub-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 0.9rem 0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--heading-color);
}
.mobile-sub-toggle i {
  font-size: 0.9rem;
  transition: transform 0.3s;
}
.mobile-sub-toggle:not(.collapsed) i {
  transform: rotate(180deg);
}

.mobile-nav .mobile-sub {
  list-style: none;
  padding: 0.25rem 0 0.5rem 1rem;
}
.mobile-nav .mobile-sub a {
  font-size: 1rem;
  font-weight: 500;
  border: 0;
  padding: 0.5rem 0;
  color: var(--text-color);
}

.color-switcher {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1025;
}

.color-switcher-btn {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px 0 0 12px;
  background: var(--primary);
  color: var(--on-primary);
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}
.color-switcher-btn i {
  display: inline-block;
  animation: spin 8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.color-panel {
  position: absolute;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  width: 236px;
  background: #fff;
  color: var(--heading-color);
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 24px 60px -16px rgba(15, 23, 42, 0.35);
}
.color-panel[hidden] {
  display: none;
}

.color-panel-title {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.color-panel-note {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0.75rem 0 0;
}

.color-swatches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
}
.color-swatches button {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 3px solid #fff;
  background: linear-gradient(135deg, var(--sw) 55%, var(--sw2) 55%);
  box-shadow: 0 0 0 1px rgba(15, 23, 42, 0.15);
  transition: transform 0.2s;
}
.color-swatches button:hover {
  transform: scale(1.1);
}
.color-swatches button[aria-checked=true] {
  box-shadow: 0 0 0 2px var(--sw);
}

@media (max-width: 767.98px) {
  .color-switcher {
    top: auto;
    bottom: 5rem;
    transform: none;
  }
  .color-switcher-btn {
    width: 44px;
    height: 44px;
  }
  .color-panel {
    top: auto;
    bottom: 0;
    transform: none;
    right: 52px;
  }
}
.job, .auth-card, .author-box, .agent-stats div, .agent-tile, .side-card, .pd-block, .filter-card, .prop-toolbar, .prop-empty, .prop-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.badge-o {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 6px;
  background: var(--primary);
  color: var(--on-primary);
}

.badge-status.is-rent {
  background: var(--accent);
  color: var(--on-accent);
}

.badge-featured {
  background: var(--dark);
  color: #fff;
}

.badge-soft {
  background: var(--brand-soft);
  color: var(--brand);
}

.avatar-sm {
  width: 32px;
  height: 32px;
}

.avatar-lg {
  width: 76px;
  height: 76px;
}

.btn-link-o {
  background: none;
  border: 0;
  padding: 0;
  color: var(--brand);
  font-weight: 600;
  font-size: 0.9rem;
}

.sec-page-header {
  padding: calc(var(--hero-top) + clamp(48px, 7vw, 90px)) 0 clamp(48px, 7vw, 90px);
  overflow: hidden;
}
.sec-page-header .hero-overlay {
  background: linear-gradient(180deg, color-mix(in srgb, var(--dark) 85%, transparent), color-mix(in srgb, var(--dark) 70%, transparent));
}

.page-title {
  font-size: clamp(2.2rem, 1.4rem + 3vw, 3.8rem);
  margin: 0.75rem 0 0;
}

.page-text {
  max-width: 620px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
}

.crumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.9rem;
}
.crumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.crumbs a {
  color: var(--fg);
}
.crumbs a:hover {
  color: var(--hd);
}
.crumbs i {
  font-size: 0.7rem;
  opacity: 0.6;
}
.crumbs [aria-current] {
  color: var(--hd);
  font-weight: 600;
}

.crumbs-dark {
  margin-bottom: 1.25rem;
}

.search-box {
  background: #fff;
  color: var(--heading-color);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: 0 30px 60px -24px rgba(15, 23, 42, 0.35);
  padding: 0.75rem;
  text-align: left;
  --line: color-mix(in srgb, var(--heading-color) 12%, transparent);
}

.search-fields {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .search-fields {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .search-fields {
    grid-template-columns: 1.6fr repeat(4, 1fr) auto;
  }
}
.search-fields .btn-o {
  height: 100%;
  min-height: 54px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--light);
  border-radius: var(--btn-radius);
  padding: 0 0.9rem;
  min-height: 54px;
}
.search-field i {
  color: var(--primary);
  flex-shrink: 0;
}
.search-field input, .search-field select {
  border: 0;
  background: transparent;
  width: 100%;
  min-width: 0;
  height: 54px;
  color: var(--heading-color);
  font-size: 0.95rem;
  outline: none;
}
.search-field:focus-within {
  box-shadow: 0 0 0 2px var(--primary);
}

.search-tabs {
  display: inline-flex;
  gap: 0.25rem;
  margin: 0 0 0.75rem;
  padding: 0.25rem;
  background: var(--light);
  border-radius: 99px;
}
.search-tabs label {
  cursor: pointer;
}
.search-tabs input {
  position: absolute;
  opacity: 0;
}
.search-tabs span {
  display: block;
  padding: 0.45rem 1.4rem;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-color);
  transition: all 0.25s;
}
.search-tabs input:checked + span {
  background: var(--primary);
  color: var(--on-primary);
}
.search-tabs input:focus-visible + span {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hero-searchbox {
  margin-top: 2.5rem;
}

.hero-tags {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}
.hero-tags span {
  opacity: 0.8;
  margin-right: 0.25rem;
}
.hero-tags a {
  color: var(--on-primary);
  background: rgba(255, 255, 255, 0.14);
  padding: 0.25rem 0.8rem;
  border-radius: 99px;
  backdrop-filter: blur(6px);
}
.hero-tags a:hover {
  background: var(--primary);
}

.hero-search .hero-title {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
}

.search-overlap {
  background: transparent;
  padding-top: 0;
  margin-top: -60px;
  position: relative;
  z-index: 3;
}

.search-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.prop-card {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.prop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.prop-card:hover .prop-img img {
  transform: scale(1.06);
}

.prop-img {
  position: relative;
  overflow: hidden;
}
.prop-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.prop-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.4rem;
}
.prop-badges.static {
  position: static;
  margin-bottom: 0.75rem;
}

.prop-tools {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.4rem;
}
.prop-tools button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  display: grid;
  place-items: center;
  transition: all 0.25s;
}
.prop-tools button:hover {
  background: var(--primary);
  color: var(--on-primary);
}
.prop-tools button[aria-pressed=true] {
  background: var(--primary);
  color: var(--on-primary);
}
.prop-tools button[data-fav][aria-pressed=true] i::before {
  content: "\f415";
}

.prop-photos {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}

.prop-body {
  padding: 1.25rem 1.4rem 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.prop-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--brand);
  line-height: 1.2;
}
.prop-price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.15rem;
}

.prop-title {
  font-size: 1.15rem;
  margin: 0.35rem 0 0.25rem;
}
.prop-title a {
  color: var(--hd);
}
.prop-title a:hover {
  color: var(--brand);
}

.prop-addr {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 0.9rem;
}
.prop-addr i {
  color: var(--brand);
}

.prop-excerpt {
  font-size: 0.93rem;
  margin-bottom: 1rem;
}

.prop-specs {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  padding: 0.9rem 0;
  margin: auto 0 0;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--hd);
}
.prop-specs li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.prop-specs i {
  color: var(--muted);
}

.prop-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.4rem;
  margin: 0 -1.4rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  background: color-mix(in srgb, var(--light) 50%, transparent);
}

.prop-agent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--hd);
  font-weight: 500;
}

.prop-type {
  color: var(--muted);
}

@media (min-width: 768px) {
  .prop-card-list {
    flex-direction: row;
  }
  .prop-card-list .prop-img {
    width: 42%;
    flex-shrink: 0;
  }
  .prop-card-list .prop-img img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 280px;
  }
}

.prop-grid [hidden] {
  display: none;
}

.prop-empty {
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.prop-empty > i {
  font-size: 2.5rem;
  color: var(--brand);
}
.prop-empty h3 {
  font-size: 1.3rem;
  margin: 1rem 0 0.5rem;
}
.prop-empty[hidden] {
  display: none;
}

.prop-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
}
.prop-toolbar .form-select-sm {
  width: auto;
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
  font-size: 0.9rem;
}

.view-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  overflow: hidden;
}
.view-toggle button {
  border: 0;
  background: var(--card);
  color: var(--muted);
  width: 40px;
  height: 38px;
}
.view-toggle button[aria-pressed=true] {
  background: var(--primary);
  color: var(--on-primary);
}

.filter-card {
  padding: 1.5rem;
  position: sticky;
  top: 96px;
  display: grid;
  gap: 0.35rem;
}
.filter-card fieldset {
  margin: 0.6rem 0 0.4rem;
}
.filter-card .form-label {
  margin-top: 0.6rem;
  display: flex;
  justify-content: space-between;
}
.filter-card output {
  color: var(--brand);
  font-weight: 700;
}
.filter-card .form-range {
  --bs-form-range-thumb-bg: var(--primary);
  accent-color: var(--primary);
}

.filter-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter-head h3 {
  font-size: 1.1rem;
  margin: 0;
}
.filter-head h3 i {
  color: var(--brand);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.chip {
  cursor: pointer;
}
.chip input {
  position: absolute;
  opacity: 0;
}
.chip span {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.87rem;
  transition: all 0.2s;
}
.chip input:checked + span {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}
.chip input:focus-visible + span {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.check-o {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.25rem 0;
  cursor: pointer;
}
.check-o input {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
}

.pager {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
}
.pager a, .pager button {
  min-width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: var(--card);
  color: var(--hd);
  font-weight: 600;
}
.pager a:hover, .pager button:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pager a[aria-current=page], .pager button[aria-current=page] {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}
.pager a:disabled, .pager button:disabled {
  opacity: 0.4;
}
.pager:empty {
  display: none;
}

.pd-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pd-title {
  font-size: clamp(1.8rem, 1.2rem + 2vw, 2.8rem);
  margin: 0 0 0.4rem;
}

.pd-addr {
  color: var(--muted);
  margin: 0;
}
.pd-addr i {
  color: var(--brand);
}

.pd-price-wrap {
  text-align: left;
}
@media (min-width: 768px) {
  .pd-price-wrap {
    text-align: right;
  }
}

.pd-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 1.2rem + 1.6vw, 2.5rem);
  color: var(--brand);
  line-height: 1.1;
}
.pd-price small {
  font-size: 1rem;
  color: var(--muted);
  font-weight: 500;
}

.pd-ppsf {
  font-size: 0.9rem;
  color: var(--muted);
}

.pd-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .pd-actions {
    justify-content: flex-end;
  }
}
.pd-actions .prop-tools {
  position: static;
}
.pd-actions > button, .pd-actions .prop-tools button {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--hd);
  display: grid;
  place-items: center;
}
.pd-actions > button:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.pd-gallery {
  position: relative;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  border-radius: calc(var(--radius) * 1.2);
  overflow: hidden;
}
@media (min-width: 768px) {
  .pd-gallery {
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 230px;
  }
}
.pd-gallery .pd-photo {
  position: relative;
  display: block;
  overflow: hidden;
}
.pd-gallery .pd-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.pd-gallery .pd-photo:hover img {
  transform: scale(1.05);
}
.pd-gallery .is-main {
  grid-column: span 2;
  grid-row: span 2;
}
@media (min-width: 768px) {
  .pd-gallery .is-main {
    grid-column: 1;
  }
}
@media (max-width: 767.98px) {
  .pd-gallery .pd-photo:nth-child(n+4) {
    display: none;
  }
}

.pd-more {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}

.pd-all {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  border: 0;
  background: #fff;
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.pd-subnav {
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  margin: 1.75rem 0;
  padding: 0.35rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--btn-radius) + 4px);
  position: sticky;
  top: 72px;
  z-index: 5;
  background: color-mix(in srgb, var(--bg) 94%, transparent);
  backdrop-filter: blur(10px);
}
.pd-subnav a {
  padding: 0.55rem 1rem;
  border-radius: var(--btn-radius);
  color: var(--hd);
  font-weight: 600;
  font-size: 0.92rem;
  white-space: nowrap;
}
.pd-subnav a:hover {
  background: var(--brand-soft);
  color: var(--brand);
}

.pd-block {
  padding: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  scroll-margin-top: 150px;
}
.pd-block p:last-child {
  margin-bottom: 0;
}

.pd-h {
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}

.pd-sub {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.pd-sub i {
  color: var(--brand);
}

.pd-facts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .pd-facts {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pd-facts li {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.pd-facts i {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.pd-facts span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}
.pd-facts strong {
  color: var(--hd);
  font-family: var(--font-heading);
}

.pd-details {
  display: grid;
  margin: 0;
  gap: 0 2rem;
}
@media (min-width: 768px) {
  .pd-details {
    grid-template-columns: 1fr 1fr;
  }
}
.pd-details div {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
}
.pd-details dt {
  font-weight: 500;
  color: var(--muted);
}
.pd-details dd {
  margin: 0;
  font-weight: 600;
  color: var(--hd);
  text-align: right;
}

.pd-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .pd-features {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .pd-features {
    grid-template-columns: repeat(3, 1fr);
  }
}
.pd-features li {
  display: flex;
  gap: 0.5rem;
  color: var(--hd);
}
.pd-features i {
  color: var(--brand);
}

.fp-meta {
  margin-left: auto;
  margin-right: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: var(--muted);
}

.fp-img {
  width: 100%;
  border-radius: var(--radius);
  background: var(--light);
}

.pd-video {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.pd-video img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}
.pd-video .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.pd-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}
.pd-video .play-btn {
  z-index: 1;
}

.pd-near {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pd-near li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.93rem;
}
.pd-near small {
  color: var(--muted);
  white-space: nowrap;
}

.pd-side {
  position: sticky;
  top: 150px;
  display: grid;
  gap: 1.5rem;
}

.side-card {
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.side-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.side-title i {
  color: var(--brand);
}

.agent-card-head {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}
.agent-card-head h3 {
  font-size: 1.1rem;
  margin: 0;
}
.agent-card-head span {
  font-size: 0.88rem;
  color: var(--muted);
}

.agent-card-links {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--line);
}
.agent-card-links a {
  color: var(--hd);
  font-weight: 500;
  font-size: 0.93rem;
}
.agent-card-links a i {
  color: var(--brand);
  margin-right: 0.4rem;
}

.tour-days {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.tour-days label {
  cursor: pointer;
}
.tour-days input {
  position: absolute;
  opacity: 0;
}
.tour-days span {
  display: block;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.5rem 0.25rem;
  font-size: 0.8rem;
  line-height: 1.3;
}
.tour-days span small {
  display: block;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--hd);
  font-family: var(--font-heading);
}
.tour-days input:checked + span {
  border-color: var(--primary);
  background: var(--brand-soft);
  color: var(--brand);
}
.tour-days input:checked + span small {
  color: var(--brand);
}

.input-o {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: var(--card);
  overflow: hidden;
}
.input-o:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--brand-soft);
}
.input-o span {
  padding: 0 0.9rem;
  color: var(--muted);
  font-weight: 600;
}
.input-o .form-control {
  border: 0;
  box-shadow: none !important;
  border-radius: 0;
  padding-left: 0.25rem;
}
.input-o span + .form-control {
  padding-left: 0;
}

.mortgage-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: var(--light);
}
.mortgage-result > div:first-child {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.mortgage-result > div:first-child span {
  font-weight: 500;
}
.mortgage-result > div:first-child strong {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--brand);
}

.mortgage-bar {
  display: flex;
  height: 10px;
  border-radius: 99px;
  overflow: hidden;
  margin: 1rem 0;
  background: var(--line);
}
.mortgage-bar span {
  transition: width 0.5s var(--ease);
}
.mortgage-bar [data-m-bar=principal] {
  background: var(--primary);
}
.mortgage-bar [data-m-bar=interest] {
  background: var(--accent);
}

.mortgage-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
}
.mortgage-legend li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mortgage-legend b {
  margin-left: auto;
  color: var(--hd);
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
  display: inline-block;
}
.dot-a {
  background: var(--primary);
}
.dot-b {
  background: var(--accent);
}

.agent-tile {
  overflow: hidden;
  height: 100%;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.agent-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.agent-tile:hover img {
  transform: scale(1.05);
}

.agent-tile-img {
  position: relative;
  display: block;
  overflow: hidden;
}
.agent-tile-img img {
  width: 100%;
  aspect-ratio: 1/1.05;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.agent-count {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: #fff;
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
}

.agent-tile-body {
  padding: 1.25rem 1.4rem 1.4rem;
}
.agent-tile-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.15rem;
}
.agent-tile-body h3 a {
  color: var(--hd);
}

.agent-tile-contact {
  display: flex;
  gap: 0.4rem;
  margin-top: 1rem;
}
.agent-tile-contact > a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
}
.agent-tile-contact > a:hover {
  background: var(--primary);
  color: var(--on-primary);
}
.agent-tile-contact .social-links a {
  width: 38px;
  height: 38px;
}

.agent-profile-card {
  text-align: center;
  position: sticky;
  top: 96px;
}
.agent-profile-card .social-links {
  justify-content: center;
  margin-top: 1.25rem;
}

.agent-photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.agent-name {
  font-size: 1.6rem;
  margin-bottom: 0.2rem;
}

.agent-contact {
  list-style: none;
  padding: 1.25rem 0 0;
  margin: 1.25rem 0 0;
  border-top: 1px solid var(--line);
  text-align: left;
  display: grid;
  gap: 0.6rem;
}
.agent-contact li {
  display: flex;
  gap: 0.7rem;
  font-size: 0.93rem;
}
.agent-contact i {
  color: var(--brand);
}
.agent-contact a {
  color: var(--hd);
}

.agent-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
@media (min-width: 768px) {
  .agent-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}
.agent-stats div {
  padding: 1.1rem;
  text-align: center;
}
.agent-stats strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--brand);
  line-height: 1.1;
}
.agent-stats span {
  font-size: 0.85rem;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 640px;
}
.compare-table th, .compare-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  text-align: center;
}
.compare-table tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--hd);
  white-space: nowrap;
  position: sticky;
  left: 0;
  background: var(--bg);
  z-index: 1;
}
.compare-table td {
  color: var(--hd);
}
.compare-table tbody tr:nth-child(even) td, .compare-table tbody tr:nth-child(even) th {
  background: color-mix(in srgb, var(--light) 60%, var(--bg));
}
.compare-table [hidden] {
  display: none;
}

.compare-head {
  position: relative;
  display: grid;
  gap: 0.4rem;
  min-width: 180px;
}
.compare-head img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
}
.compare-head a {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--hd);
}
.compare-head small {
  color: var(--muted);
  font-weight: 400;
}

.compare-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.compare-note {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--muted);
}
.compare-note i {
  color: var(--brand);
}

.article-img {
  width: 100%;
  border-radius: calc(var(--radius) * 1.2);
  aspect-ratio: 16/9;
  object-fit: cover;
}

.article .post-meta {
  align-items: center;
  margin-bottom: 1.5rem;
}

.article-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.tag-cloud a {
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 99px;
  font-size: 0.85rem;
  color: var(--hd);
}
.tag-cloud a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.author-box {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  margin: 2rem 0;
}
.author-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.author-box p {
  margin: 0;
  font-size: 0.95rem;
}

.comment-form {
  margin-top: 2rem;
}

.side-search {
  position: relative;
}
.side-search .form-control {
  padding-right: 3rem;
}
.side-search button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  translate: 0 -50%;
  border: 0;
  background: none;
  color: var(--brand);
}

.side-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.side-list a {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--hd);
}
.side-list a:hover {
  color: var(--brand);
}
.side-list span {
  color: var(--muted);
}

.side-posts {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.side-posts a {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  color: var(--hd);
}
.side-posts img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.side-posts strong {
  display: block;
  font-size: 0.93rem;
  line-height: 1.35;
}
.side-posts small {
  color: var(--muted);
}

.error-code {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(6rem, 4rem + 10vw, 12rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.error-img {
  max-width: 320px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: 1rem;
}

.auth-card {
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.auth-media {
  position: relative;
}
.auth-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.auth-quote {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 1.25rem;
  border-radius: var(--radius);
}
.auth-quote p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.auth-body {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.auth-tabs {
  justify-content: flex-start;
  margin: 1.5rem 0;
}

.auth-small {
  text-align: center;
  font-size: 0.9rem;
  margin: 1rem 0 0;
}

.auth-or {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.auth-or::before, .auth-or::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--line);
}

.jobs {
  display: grid;
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.job {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.3s;
}
.job:hover {
  border-color: var(--primary);
}
.job h3 {
  font-size: 1.25rem;
  margin: 0.6rem 0 0.3rem;
}
.job p {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.job-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.25rem;
  padding: 0;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}
.job-meta i {
  color: var(--brand);
}

@media print {
  .site-header, .site-footer, .pd-side, .pd-subnav, .demo-switcher-btn, .color-switcher, .back-to-top, .pd-actions {
    display: none !important;
  }
}
.toast-o {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translate(-50%, 20px);
  background: var(--dark);
  color: #fff;
  padding: 0.8rem 1.3rem;
  border-radius: 12px;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s var(--ease);
  z-index: 2100;
}
.toast-o.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.form-range::-webkit-slider-thumb {
  background: var(--primary);
}
.form-range::-moz-range-thumb {
  background: var(--primary);
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.demo-architecture .eyebrow,
.demo-architecture .hero-eyebrow {
  background: none;
  padding: 0;
  border-radius: 0;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  letter-spacing: 0.16em;
}
.demo-architecture .eyebrow::before,
.demo-architecture .hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.demo-architecture .hero-title-xl {
  font-size: clamp(2.8rem, 1.4rem + 5vw, 6.2rem);
  line-height: 1.02;
  max-width: 16ch;
}
.demo-architecture .section-title {
  line-height: 1.12;
}
.demo-architecture .portfolio-item,
.demo-architecture .service-card,
.demo-architecture .member-img,
.demo-architecture .post-card,
.demo-architecture .plan,
.demo-architecture .testimonial,
.demo-architecture .contact-form-card,
.demo-architecture .side-card,
.demo-architecture .job,
.demo-architecture .bento-tile {
  box-shadow: none !important;
}
.demo-architecture .service-card,
.demo-architecture .post-card,
.demo-architecture .testimonial,
.demo-architecture .side-card,
.demo-architecture .contact-form-card {
  border: 1px solid var(--line);
}
.demo-architecture .portfolio-item figcaption h3 {
  font-size: 1.05rem;
}
.demo-architecture .btn-o {
  font-weight: 600;
  letter-spacing: 0.01em;
}
.demo-architecture .site-header {
  border-bottom: 1px solid var(--line);
}
.demo-architecture .awards li:hover {
  padding-left: 0.5rem;
}
.demo-architecture .hero-minimal {
  padding-bottom: clamp(48px, 6vw, 88px);
}

.demo-architecture .split-num, .demo-architecture .step-marker {
  border-radius: 0;
}

.demo-architecture .detail-meta i, .demo-architecture .feature-icon, .demo-architecture .bento-icon, .demo-architecture .service-arrow, .demo-architecture .bento-more {
  border-radius: 0;
}

.demo-cafe .site-footer.tone-primary {
  --logo-mark: var(--dark);
}
.demo-cafe .hero-title em {
  font-style: italic;
  color: var(--primary);
}

.demo-car-dealer .plan-badge,
.demo-car-dealer .pricing-toggle em,
.demo-car-dealer .menu-tag {
  color: #fff;
}
.demo-car-dealer .bento-tone-accent {
  --hd: #fff;
  --brand: #fff;
  color: rgba(255, 255, 255, 0.85);
}
.demo-car-dealer .stars {
  color: #f59e0b;
}
.demo-car-dealer .listing-meta li {
  font-variant-numeric: tabular-nums;
}

.demo-conference {
  --body-bg: #0b0f19;
  --ink: #0b0f19;
  background: var(--body-bg);
}
.demo-conference .tone-light,
.demo-conference .tone-alt, .demo-conference {
  --fg: rgba(226, 232, 240, 0.74);
  --hd: #f8fafc;
  --muted: rgba(226, 232, 240, 0.52);
  --card: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.1);
  --brand: var(--primary);
  --brand-soft: color-mix(in srgb, var(--primary) 16%, transparent);
}
.demo-conference .tone-light {
  --bg: #0b0f19;
}
.demo-conference .tone-alt {
  --bg: #111726;
}
.demo-conference .tone-dark {
  --bg: #05070d;
  --brand: var(--primary);
}
.demo-conference .tone-primary {
  --fg: rgba(11, 15, 25, 0.8);
  --hd: var(--ink);
  --muted: rgba(11, 15, 25, 0.6);
  --brand: var(--ink);
  --card: rgba(11, 15, 25, 0.08);
  --line: rgba(11, 15, 25, 0.16);
  --brand-soft: rgba(11, 15, 25, 0.1);
}
.demo-conference .tone-primary .btn-o-primary {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
}
.demo-conference .tone-primary .btn-o-outline {
  --btn-fg: var(--ink);
  --btn-bd: rgba(11, 15, 25, 0.35);
}
.demo-conference .tone-primary .btn-o-outline:hover {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
  --btn-bd: var(--ink);
}
.demo-conference .btn-o-primary {
  --btn-fg: var(--ink);
}
.demo-conference .btn-o-accent {
  --btn-fg: var(--ink);
}
.demo-conference .ftab.active, .demo-conference .ftab.active i,
.demo-conference .menu-tabs .nav-link.active,
.demo-conference .filters button.active,
.demo-conference .feature-boxed .feature-icon,
.demo-conference .about-badge, .demo-conference .about-badge strong, .demo-conference .about-badge span,
.demo-conference .post-cat, .demo-conference .listing-badge, .demo-conference .plan-badge,
.demo-conference .back-to-top, .demo-conference .color-switcher-btn,
.demo-conference .footer-newsletter button,
.demo-conference .service-card-image .feature-icon {
  color: var(--ink);
}
.demo-conference .feature-cards:hover .feature-icon,
.demo-conference .step:hover .step-marker,
.demo-conference .service-row:hover .service-arrow,
.demo-conference .social-links a:hover,
.demo-conference .slider-arrows button:hover {
  color: var(--ink);
}
.demo-conference ::selection {
  color: var(--ink);
}
.demo-conference .pricing-toggle button span {
  background: var(--ink);
}
.demo-conference .plan.is-featured {
  background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 18%, #111726), #111726 60%);
  border-color: color-mix(in srgb, var(--primary) 55%, transparent);
}
.demo-conference .bento-tone-primary {
  color: rgba(11, 15, 25, 0.8);
  --hd: var(--ink);
  --brand: var(--ink);
}
.demo-conference .bento-tone-primary .bento-icon {
  background: rgba(11, 15, 25, 0.12);
  color: var(--ink);
}
.demo-conference .bento-tone-dark {
  background: #05070d;
  border-color: rgba(255, 255, 255, 0.08);
}
.demo-conference .cta-box {
  color: rgba(11, 15, 25, 0.8);
  --hd: var(--ink);
  --brand: var(--ink);
  --brand-soft: rgba(11, 15, 25, 0.1);
}
.demo-conference .cta-box::before, .demo-conference .cta-box::after {
  border-color: rgba(11, 15, 25, 0.07);
}
.demo-conference .cta-box .eyebrow {
  color: var(--ink);
  background: rgba(11, 15, 25, 0.1);
}
.demo-conference .cta-box .btn-o-primary {
  --btn-bg: var(--ink);
  --btn-fg: #fff;
}
.demo-conference .cta-box .btn-o-outline {
  --btn-fg: var(--ink);
  --btn-bd: rgba(11, 15, 25, 0.35);
}
.demo-conference .form-select option {
  color: #000;
}
.demo-conference .site-header {
  background: rgba(11, 15, 25, 0.92);
  color: #f8fafc;
  --hd: #f8fafc;
  --line: rgba(255, 255, 255, 0.12);
}
.demo-conference .header-transparent {
  background: transparent;
}
.demo-conference .header-transparent.is-scrolled,
.demo-conference .header-transparent-dark.is-scrolled {
  background: rgba(11, 15, 25, 0.9);
  color: #f8fafc;
  --hd: #f8fafc;
  --line: rgba(255, 255, 255, 0.12);
}
.demo-conference .header-transparent.is-scrolled .brand > .brand-default,
.demo-conference .header-transparent-dark.is-scrolled .brand > .brand-default {
  display: inline-flex;
}
.demo-conference .header-transparent.is-scrolled .brand > .brand-scrolled,
.demo-conference .header-transparent-dark.is-scrolled .brand > .brand-scrolled {
  display: none;
}
.demo-conference .header-actions .btn-o-primary {
  --btn-fg: var(--ink);
}
.demo-conference .hero-title em, .demo-conference .section-title em, .demo-conference .page-title em {
  color: var(--primary);
}
.demo-conference .hero-glow {
  opacity: 0.55;
}
.demo-conference .eyebrow {
  letter-spacing: 0.14em;
}
.demo-conference .countdown .cd-unit {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid color-mix(in srgb, var(--primary) 40%, transparent);
}
.demo-conference .countdown .cd-unit span {
  color: var(--primary);
}
.demo-conference .site-footer {
  background: #05070d;
}

.demo-conference .hero-slider > .carousel {
  width: 100%;
}

.demo-conference .accordion-button .fp-meta {
  margin-left: auto;
  margin-right: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.demo-conference .accordion-button:has(.fp-meta)::after {
  margin-left: 0;
}

.demo-conference .gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.demo-construction .tone-light,
.demo-construction .tone-alt, .demo-construction {
  --brand: color-mix(in srgb, var(--primary) 62%, #000);
}
.demo-construction .tone-dark {
  --brand: var(--primary);
}
.demo-construction .btn-o-primary {
  --btn-fg: var(--dark);
}
.demo-construction .tone-primary .btn-o-primary {
  --btn-bg: var(--dark);
  --btn-fg: #fff;
}
.demo-construction .tone-primary {
  --fg: color-mix(in srgb, var(--dark) 82%, transparent);
  --hd: var(--dark);
  --brand: var(--dark);
  --muted: color-mix(in srgb, var(--dark) 65%, transparent);
  --line: color-mix(in srgb, var(--dark) 18%, transparent);
  --card: rgba(255, 255, 255, 0.25);
}
.demo-construction .tone-primary .btn-o-outline {
  --btn-fg: var(--dark);
  --btn-bd: color-mix(in srgb, var(--dark) 35%, transparent);
}
.demo-construction .tone-primary .eyebrow {
  background: rgba(0, 0, 0, 0.08);
  color: var(--dark);
}
.demo-construction .about-badge,
.demo-construction .post-cat,
.demo-construction .cta-box,
.demo-construction .service-card-image .feature-icon,
.demo-construction .back-to-top,
.demo-construction .color-switcher-btn,
.demo-construction .site-footer .footer-newsletter button {
  color: var(--dark);
}
.demo-construction .cta-box {
  --hd: var(--dark);
  --brand: var(--dark);
  color: color-mix(in srgb, var(--dark) 80%, transparent);
}
.demo-construction .cta-box .btn-o-primary {
  --btn-bg: var(--dark);
  --btn-fg: #fff;
}
.demo-construction .feature:hover .feature-icon,
.demo-construction .step:hover .step-marker,
.demo-construction .service-row:hover .service-arrow {
  color: var(--dark);
}
.demo-construction .ftab.active, .demo-construction .ftab.active i,
.demo-construction .menu-tabs .nav-link.active,
.demo-construction .filters button.active,
.demo-construction .chip-group input:checked + span {
  color: var(--dark) !important;
}
.demo-construction .bento-tone-primary {
  --hd: var(--dark);
  --brand: var(--dark);
  color: color-mix(in srgb, var(--dark) 80%, transparent);
}
.demo-construction .bento-tone-primary .bento-icon {
  background: rgba(0, 0, 0, 0.1);
  color: var(--dark);
}
.demo-construction ::selection {
  color: var(--dark);
}
.demo-construction .sec-page-header::after,
.demo-construction .site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(-45deg, var(--primary) 0 16px, var(--dark) 16px 32px);
}
.demo-construction .sec-page-header {
  position: relative;
}
.demo-construction .sec-page-header::after {
  bottom: 0;
}
.demo-construction .site-footer {
  position: relative;
}
.demo-construction .site-footer::before {
  top: 0;
}
.demo-construction .eyebrow, .demo-construction .hero-eyebrow {
  letter-spacing: 0.14em;
}

.demo-construction .feature-boxed .feature-icon {
  color: var(--dark);
}
.demo-construction .stars {
  color: var(--primary);
}
.demo-construction .awards .award-title i {
  color: var(--brand);
}

.demo-construction .sec-page-header .container:not(.text-center) .page-text {
  margin-left: 0;
  text-align: left;
}

.detail-cover img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.2);
}

.detail-meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
}
.detail-meta li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}
.detail-meta i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
}
.detail-meta span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}
.detail-meta strong {
  color: var(--hd);
  font-family: var(--font-heading);
}

.detail-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--brand);
  line-height: 1.1;
  margin-bottom: 0.75rem;
}
.detail-price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.25rem;
}

.detail-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.detail-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--line);
}
.detail-list span {
  color: var(--muted);
}
.detail-list strong {
  color: var(--hd);
  text-align: right;
}

.detail-buttons {
  flex-direction: column;
  align-items: stretch;
}
.detail-buttons .btn-o {
  width: 100%;
}

.detail-hl {
  display: flex;
  gap: 0.9rem;
  height: 100%;
  padding: 1rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--light) 70%, var(--card));
}
.detail-hl > i {
  color: var(--brand);
  font-size: 1.4rem;
}
.detail-hl h3 {
  font-size: 1.02rem;
  margin-bottom: 0.25rem;
}
.detail-hl p {
  margin: 0;
  font-size: 0.92rem;
}

.person-quote {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 4px solid var(--primary);
  background: var(--light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.person-quote i {
  color: var(--brand);
  font-size: 1.6rem;
}
.person-quote p {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--hd);
}

.bento {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  grid-auto-rows: minmax(220px, auto);
  grid-auto-flow: dense;
}
@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bento-tile {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) * 1.3);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.4rem;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--fg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bento-tile h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--hd);
}
.bento-tile p {
  margin: 0;
}
.bento-tile {
  --tile-fg: var(--fg);
  color: var(--tile-fg);
}
.bento-tile:hover, .bento-tile:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: var(--tile-fg);
}
@media (min-width: 768px) {
  .bento-tile.bento-wide, .bento-tile.bento-lg {
    grid-column: span 2;
  }
}
@media (min-width: 992px) {
  .bento-tile.bento-tall, .bento-tile.bento-lg {
    grid-row: span 2;
  }
}

.bento-tone-dark {
  background: var(--dark);
  border-color: var(--dark);
  --hd: #fff;
  --tile-fg: rgba(255, 255, 255, 0.75);
  --brand: #fff;
}

.bento-tone-primary {
  background: var(--primary);
  border-color: var(--primary);
  --hd: var(--on-primary);
  --tile-fg: color-mix(in srgb, var(--on-primary) 85%, transparent);
  --brand: var(--on-primary);
}

.bento-tone-accent {
  background: var(--accent);
  border-color: var(--accent);
  --hd: var(--on-accent);
  --tile-fg: color-mix(in srgb, var(--on-accent) 80%, transparent);
  --brand: var(--on-accent);
}

.bento-image {
  padding: 0;
}
.bento-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.bento-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), transparent 60%);
}
.bento-image:hover img {
  transform: scale(1.06);
}

.bento-caption {
  position: relative;
  z-index: 1;
  padding: 1.75rem;
  color: rgba(255, 255, 255, 0.85);
  --hd: #fff;
}
.bento-caption small {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.bento-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 1.4rem;
  margin-bottom: auto;
}

.bento-tone-dark .bento-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.bento-tone-primary .bento-icon {
  background: color-mix(in srgb, var(--on-primary) 14%, transparent);
  color: var(--on-primary);
}

.bento-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.6rem, 2rem + 2vw, 3.8rem);
  line-height: 1;
  color: var(--hd);
  letter-spacing: -0.03em;
}

.bento-stat, .bento-text {
  justify-content: space-between;
}

.bento-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--brand);
  font-weight: 700;
}

.bento-more {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--hd);
}

.bento-quote-icon {
  font-size: 2rem;
  color: var(--brand);
}

.bento-quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--hd);
  margin-bottom: auto !important;
}

.bento-quote + strong {
  color: var(--hd);
}

.bento-list ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: grid;
  gap: 0.45rem;
}

.bento-list i {
  color: var(--brand);
}

.ftabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.ftabs-nav.flex-column {
  justify-content: flex-start;
  margin: 0;
}

.ftab {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.3rem;
  border-radius: var(--btn-radius);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--hd);
  font-weight: 600;
  text-align: left;
  transition: all 0.25s;
}
.ftab i {
  color: var(--brand);
  font-size: 1.15rem;
}
.ftab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}
.ftab.active i {
  color: var(--on-primary);
}

.ftab-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.3);
}

.slider-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.slider-head .section-head {
  margin-bottom: 0;
}

.slider-arrows {
  display: flex;
  gap: 0.5rem;
}
.slider-arrows button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--hd);
  transition: all 0.25s;
}
.slider-arrows button:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--on-primary);
}

.slider-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 85%;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
@media (min-width: 768px) {
  .slider-track {
    grid-auto-columns: calc((100% - 1.25rem) / 2);
  }
}
@media (min-width: 992px) {
  .slider-track {
    grid-auto-columns: calc((100% - 2.5rem) / 3);
  }
}
@media (min-width: 992px) {
  .slider-track.slider-images {
    grid-auto-columns: calc((100% - 3.75rem) / 4);
  }
}
.slider-track:focus-visible {
  outline-offset: 6px;
}

.slider-item {
  scroll-snap-align: start;
}

.slide-card {
  position: relative;
  height: 100%;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.slide-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.slide-card h3 {
  font-size: 1.15rem;
  margin: 0.5rem 0;
}
.slide-card h3 a {
  color: var(--hd);
}
.slide-card p {
  margin: 0;
  font-size: 0.95rem;
}

.slide-card-body {
  padding: 1.25rem 1.4rem 1.5rem;
}

.slide-meta {
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--brand);
}

.slide-image {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
}
.slide-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.slide-image > span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  flex-direction: column;
}
.slide-image strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}
.slide-image small {
  opacity: 0.85;
}
.slide-image:hover {
  color: #fff;
}
.slide-image:hover img {
  transform: scale(1.06);
}

.slide-quote {
  height: 100%;
}

.ba {
  position: relative;
  border-radius: calc(var(--radius) * 1.3);
  overflow: hidden;
  user-select: none;
  aspect-ratio: 16/9;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-before {
  position: absolute;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}

.ba input[type=range] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  width: 3px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-handle i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  color: var(--dark);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.ba-tag {
  position: absolute;
  top: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  pointer-events: none;
}

.ba-tag-before {
  left: 1rem;
}

.ba-tag-after {
  right: 1rem;
}

.ba:has(input:focus-visible) {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
}

.split-sticky {
  position: sticky;
  top: 110px;
}

.split-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.split-items li {
  display: flex;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--line);
}
.split-items li:first-child {
  padding-top: 0;
}
.split-items h3 {
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.split-items p {
  margin: 0;
}

.split-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.awards {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
}
.awards li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 0.25rem 1.5rem;
  padding: 1.4rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, padding 0.3s;
  align-items: center;
}
@media (min-width: 768px) {
  .awards li {
    grid-template-columns: 90px 2fr 1.2fr 1fr;
  }
}
.awards li:hover {
  background: var(--brand-soft);
  padding-left: 1rem;
}

.award-year {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--brand);
}

.award-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--hd);
}
.award-title i {
  color: var(--accent);
}

.award-org, .award-cat {
  font-size: 0.92rem;
  color: var(--muted);
  grid-column: 2;
}
@media (min-width: 768px) {
  .award-org, .award-cat {
    grid-column: auto;
  }
}

.map-band {
  position: relative;
  min-height: 460px;
}
.map-band iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.5);
}
.map-band .container {
  padding-top: 4rem;
  padding-bottom: 4rem;
  pointer-events: none;
}

.map-card {
  pointer-events: auto;
  max-width: 400px;
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.75rem;
}

.form-split-info {
  position: relative;
  height: 100%;
  border-radius: calc(var(--radius) * 1.3);
  overflow: hidden;
  background: var(--light);
  padding: clamp(1.5rem, 4vw, 2.75rem);
}
.form-split-info.has-image {
  color: rgba(255, 255, 255, 0.85);
  --hd: #fff;
  --brand: #fff;
  --brand-soft: rgba(255, 255, 255, 0.14);
  --muted: rgba(255, 255, 255, 0.7);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
}
.form-split-info.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--dark) 92%, transparent), color-mix(in srgb, var(--dark) 45%, transparent));
}

.form-split-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-split-body {
  position: relative;
  z-index: 1;
}

.plan-compare th, .plan-compare td {
  text-align: center;
}
.plan-compare thead th {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--hd);
}
.plan-compare .pc-yes {
  color: var(--primary);
  font-size: 1.15rem;
}
.plan-compare .pc-no {
  color: var(--muted);
}
.plan-compare .pc-group th {
  text-align: left;
  background: var(--brand-soft) !important;
  color: var(--brand);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sec-coming-soon {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
}
.sec-coming-soon .hero-overlay {
  background: var(--dark);
}
.sec-coming-soon .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.cs-form {
  max-width: 520px;
  margin-top: 2.5rem;
}

.hero-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: clamp(380px, 48vw, 600px);
}
.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.4);
  box-shadow: var(--shadow);
}
.hero-mosaic .hc-0 {
  grid-row: span 2;
}
.hero-mosaic .hero-badge {
  left: auto;
  right: 1rem;
  bottom: -1rem;
}

.hero-wide {
  position: relative;
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.hero-wide img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  border-radius: calc(var(--radius) * 1.6);
  box-shadow: 0 40px 80px -30px rgba(15, 23, 42, 0.45);
}

.hero-float {
  position: absolute;
  display: none;
  gap: 0.8rem;
  align-items: center;
  background: #fff;
  color: var(--heading-color);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: left;
  animation: float 5s ease-in-out infinite;
}
.hero-float > i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--primary) 12%, transparent);
  color: var(--primary);
}
.hero-float strong {
  display: block;
  font-family: var(--font-heading);
  line-height: 1.2;
}
.hero-float span {
  font-size: 0.82rem;
  color: var(--text-color);
}
@media (min-width: 768px) {
  .hero-float {
    display: flex;
  }
}
.hero-float.hero-float-0 {
  left: -1.5rem;
  top: 18%;
}
.hero-float.hero-float-1 {
  right: -1.5rem;
  bottom: 16%;
  animation-delay: 1.5s;
}
.hero-float.hero-float-2 {
  right: 12%;
  top: -1.5rem;
  animation-delay: 0.8s;
}

@media (min-width: 768px) {
  .pd-gallery.count-3 .pd-photo:not(.is-main) {
    grid-column: span 2;
  }
  .pd-gallery.count-4 .pd-photo:nth-child(4) {
    grid-column: span 2;
  }
}
.map-band {
  background: var(--light);
}

@media (min-width: 768px) {
  .pd-gallery.count-2 {
    grid-template-columns: 2fr 1fr;
  }
  .pd-gallery.count-2 .pd-photo:not(.is-main) {
    grid-row: span 2;
  }
}
.pdp-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--light);
}
.pdp-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
  margin-top: 0.6rem;
}
.pdp-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: var(--light);
}
.pdp-thumbs button[aria-current=true] {
  border-color: var(--primary);
}
.pdp-thumbs img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.pdp-info {
  position: sticky;
  top: 100px;
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.pdp-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--hd);
  margin-bottom: 1rem;
}
.pdp-price del {
  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 500;
  margin-right: 0.6rem;
}

.pdp-opt {
  margin: 1.25rem 0;
}
.pdp-opt legend {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--hd);
  margin-bottom: 0.6rem;
}
.pdp-opt legend b {
  font-weight: 500;
  color: var(--muted);
}

.pdp-colors {
  display: flex;
  gap: 0.6rem;
}
.pdp-colors label {
  cursor: pointer;
}
.pdp-colors input {
  position: absolute;
  opacity: 0;
}
.pdp-colors span[style] {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--line);
}
.pdp-colors input:checked + span {
  box-shadow: 0 0 0 2px var(--primary);
}
.pdp-colors input:focus-visible + span {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.pdp-buy {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.pdp-wish {
  width: 54px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--hd);
}
.pdp-wish:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.pdp-perks {
  list-style: none;
  padding: 1.25rem 0;
  margin: 0 0 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 0.5rem;
  font-size: 0.93rem;
}
.pdp-perks i {
  color: var(--brand);
  margin-right: 0.5rem;
}

.pdp-review {
  padding: 1.25rem 0;
  border-bottom: 1px dashed var(--line);
}
.pdp-review p {
  margin: 0.4rem 0;
}
.pdp-review small {
  color: var(--muted);
}

.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--btn-radius);
  background: var(--card);
  overflow: hidden;
}
.qty button {
  width: 44px;
  height: 52px;
  border: 0;
  background: none;
  color: var(--hd);
}
.qty input {
  width: 48px;
  border: 0;
  text-align: center;
  background: none;
  color: var(--hd);
  font-weight: 600;
  -moz-appearance: textfield;
}
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.qty.qty-sm button {
  height: 40px;
  width: 36px;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}
.cart-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0 0.75rem 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.cart-table td {
  padding: 1rem 0.75rem;
  border-bottom: 1px solid var(--line);
  color: var(--hd);
  vertical-align: middle;
}

.cart-prod {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cart-prod img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}
.cart-prod a {
  font-weight: 600;
  color: var(--hd);
}
.cart-prod small {
  display: block;
  color: var(--muted);
}

.cart-remove {
  border: 0;
  background: none;
  color: var(--muted);
}
.cart-remove:hover {
  color: #dc2626;
}

.cart-total {
  font-size: 1.1rem;
  border-bottom: 0 !important;
}
.cart-total strong {
  color: var(--brand) !important;
  font-family: var(--font-heading);
  font-size: 1.4rem;
}

.cart-summary {
  position: sticky;
  top: 100px;
}

.checkout-items {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.9rem;
}
.checkout-items li {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}
.checkout-items img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
}
.checkout-items div {
  flex: 1;
}
.checkout-items strong {
  display: block;
  color: var(--hd);
  font-size: 0.95rem;
}
.checkout-items small {
  color: var(--muted);
}
.checkout-items span {
  font-weight: 600;
  color: var(--hd);
}

.pay-icons {
  display: flex;
  gap: 0.9rem;
  font-size: 1.6rem;
  color: var(--muted);
  margin-top: 1rem;
}

.demo-corporate .hero-slider > .carousel {
  width: 100%;
}
.demo-corporate .hero-on-image em,
.demo-corporate .tone-dark em,
.demo-corporate .tone-primary em {
  color: var(--accent);
}
.demo-corporate .eyebrow,
.demo-corporate .hero-eyebrow {
  border-radius: 4px;
  letter-spacing: 0.16em;
}
.demo-corporate .hero-on-image .hero-eyebrow {
  background: color-mix(in srgb, var(--accent) 22%, transparent);
  color: #fff;
  border-left: 3px solid var(--accent);
}
.demo-corporate .section-title {
  letter-spacing: -0.03em;
}

.demo-corporate .tone-dark {
  --brand: var(--accent);
}

.demo-corporate .gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.demo-creative-agency .section-title {
  font-size: clamp(2.1rem, 1.2rem + 3.2vw, 4rem);
  line-height: 1.02;
}
.demo-creative-agency .eyebrow {
  color: var(--hd);
}
.demo-creative-agency .eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}
.demo-creative-agency .tone-primary .eyebrow::before, .demo-creative-agency .tone-dark .eyebrow::before {
  background: var(--accent);
}
.demo-creative-agency .tone-light h1 em, .demo-creative-agency .tone-light h2 em, .demo-creative-agency .tone-light .hero-title em, .demo-creative-agency .tone-alt h1 em, .demo-creative-agency .tone-alt h2 em, .demo-creative-agency .tone-alt .hero-title em {
  color: inherit;
  background: linear-gradient(transparent 58%, var(--accent) 58%, var(--accent) 92%, transparent 92%);
  padding: 0 0.08em;
}
.demo-creative-agency .btn-o-primary:hover {
  --btn-bg: var(--accent);
  --btn-fg: #111;
  --btn-bd: var(--accent);
}
.demo-creative-agency .btn-o {
  font-weight: 700;
  letter-spacing: 0.01em;
}
.demo-creative-agency .ca-hero .hero-title-xl {
  font-size: clamp(3.2rem, 1rem + 9vw, 10rem);
  max-width: 11ch;
  line-height: 0.92;
  letter-spacing: -0.05em;
}
.demo-creative-agency .ca-hero .hero-eyebrow {
  background: var(--dark);
  color: #fff;
}
.demo-creative-agency .ca-hero .hero-media {
  border-radius: calc(var(--radius) * 1.6);
  overflow: hidden;
  transform: rotate(2deg);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.45);
}
.demo-creative-agency .ca-hero .hero-media img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
}
.demo-creative-agency .ca-hero::after {
  content: "";
  position: absolute;
  top: calc(var(--hero-top) + 30px);
  right: 6%;
  width: clamp(90px, 12vw, 180px);
  aspect-ratio: 1;
  background: var(--primary);
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  animation: ca-spin 18s linear infinite;
  opacity: 0.95;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .demo-creative-agency .ca-hero::after {
    display: none;
  }
}
.demo-creative-agency .ca-hero-2 .hero-title {
  font-size: clamp(2.8rem, 1rem + 6vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.demo-creative-agency .ca-hero-2 .hero-wide img {
  border-radius: calc(var(--radius) * 1.6);
}
@keyframes ca-spin {
  to {
    transform: rotate(360deg);
  }
}
.demo-creative-agency .ca-tape {
  padding: 1.1rem 0;
  width: 108%;
  margin-left: -4%;
  z-index: 2;
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.5);
}
.demo-creative-agency .ca-tape .marquee-track span {
  font-size: clamp(1.8rem, 1.2rem + 2.4vw, 3.4rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.demo-creative-agency .ca-tape .marquee-track i {
  color: var(--accent);
  font-size: clamp(1.2rem, 1rem + 1vw, 2rem);
}
.demo-creative-agency .ca-tape-a {
  transform: rotate(-2deg);
  margin-top: 1.5rem;
}
.demo-creative-agency .ca-tape-b {
  transform: rotate(1.5deg);
  margin-top: -1.6rem;
  margin-bottom: 1.5rem;
  z-index: 1;
}
.demo-creative-agency .ca-tape-a + .ca-tape-b {
  margin-top: 0.6rem;
  z-index: 3;
}
.demo-creative-agency .ca-services .service-row {
  border-radius: var(--radius);
  padding-left: 1rem;
  padding-right: 1rem;
}
.demo-creative-agency .ca-services .service-row .service-title {
  font-size: clamp(1.6rem, 1rem + 2vw, 2.8rem);
  letter-spacing: -0.04em;
}
.demo-creative-agency .ca-services .service-row .service-num {
  font-size: 1.1rem;
  color: var(--primary);
}
.demo-creative-agency .ca-services .service-row:hover {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  padding-left: 2rem;
  --hd: #fff;
}
.demo-creative-agency .ca-services .service-row:hover .service-num {
  color: var(--accent);
}
.demo-creative-agency .ca-services .service-row:hover .service-arrow {
  background: var(--accent);
  color: #111;
}
.demo-creative-agency .ca-work .portfolio-item figcaption {
  opacity: 1;
}
.demo-creative-agency .ca-work .portfolio-item img {
  aspect-ratio: 5/4;
}
.demo-creative-agency .ca-work .portfolio-item h3 {
  font-size: clamp(1.3rem, 1rem + 1vw, 2rem);
}
.demo-creative-agency .portfolio-cat {
  color: var(--accent);
}
.demo-creative-agency .portfolio-item figcaption {
  opacity: 1;
}
.demo-creative-agency .gallery-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.demo-creative-agency .tone-primary .big-quote-author span {
  color: rgba(255, 255, 255, 0.8);
}
.demo-creative-agency .member-img img {
  filter: grayscale(1);
  transition: filter 0.5s, transform 0.8s var(--ease);
}
.demo-creative-agency .member:hover .member-img img {
  filter: none;
}
.demo-creative-agency .ca-team .member p {
  display: none;
}
.demo-creative-agency .member {
  text-align: left;
}
.demo-creative-agency .member-role {
  color: var(--muted);
}
.demo-creative-agency .awards li:hover {
  background: var(--primary);
  --hd: #fff;
  color: #fff;
}
.demo-creative-agency .awards li:hover .award-org, .demo-creative-agency .awards li:hover .award-cat, .demo-creative-agency .awards li:hover .award-year {
  color: rgba(255, 255, 255, 0.85);
}
.demo-creative-agency .award-title {
  font-size: clamp(1.1rem, 1rem + 0.6vw, 1.5rem);
}
.demo-creative-agency .bento-tile {
  border-radius: calc(var(--radius) * 1.2);
}
.demo-creative-agency .bento-stat .bento-number {
  font-size: clamp(3rem, 2rem + 3vw, 5rem);
  letter-spacing: -0.05em;
}
.demo-creative-agency .stat-number {
  letter-spacing: -0.05em;
}
.demo-creative-agency .logo-item {
  font-weight: 800;
  letter-spacing: -0.03em;
}
.demo-creative-agency .split-num {
  background: var(--primary);
  color: #fff;
}
.demo-creative-agency .page-title {
  font-size: clamp(2.4rem, 1.2rem + 4.5vw, 5.4rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  .demo-creative-agency .ca-hero::after {
    animation: none;
  }
}
.demo-dental .plan-badge,
.demo-dental .pricing-toggle em {
  color: #fff;
}
.demo-dental .bento-tone-accent {
  --hd: #fff;
  --brand: #fff;
  color: rgba(255, 255, 255, 0.82);
}

.demo-dental .bento-tone-accent .bento-icon {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.demo-education .accordion-button .fp-meta {
  margin-left: auto;
  margin-right: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.demo-education .accordion-button:has(.fp-meta)::after {
  margin-left: 0;
}

.demo-education .plan-badge {
  color: var(--dark);
}

.demo-education .gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.demo-fashion-store .hero-slider > .carousel {
  width: 100%;
}
.demo-fashion-store .hero-title em {
  font-style: normal;
  color: var(--accent);
}

.demo-finance .tone-dark {
  --brand: var(--accent);
}
.demo-finance .tone-dark .eyebrow {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
}
.demo-finance .site-footer.tone-primary {
  --logo-mark: var(--dark);
}
.demo-finance .plan-price,
.demo-finance .stat-number,
.demo-finance .bento-number,
.demo-finance .hero-stats strong {
  font-variant-numeric: tabular-nums;
}

.demo-finance .gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.bmi-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius);
}

.bmi-units {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  margin-bottom: 1.25rem;
  border-radius: var(--btn-radius);
  background: color-mix(in srgb, var(--hd) 7%, transparent);
  flex-wrap: wrap;
}
.bmi-units input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.bmi-units span {
  display: block;
  padding: 0.45rem 0.9rem;
  border-radius: var(--btn-radius);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--muted);
}
.bmi-units input:checked + span {
  background: var(--primary);
  color: #fff;
}
.bmi-units input:focus-visible + span {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.bmi-result {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--hd) 6%, transparent);
}

.bmi-score {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.bmi-score span {
  font-weight: 600;
}
.bmi-score strong {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--brand);
}
.bmi-score em {
  font-style: normal;
  font-weight: 600;
  color: var(--hd);
}

.bmi-scale {
  position: relative;
  display: grid;
  grid-template-columns: 18.5fr 6.5fr 5fr 10fr;
  height: 10px;
  margin: 1.1rem 0 0.9rem;
  border-radius: 99px;
  overflow: visible;
}
.bmi-scale span:nth-child(1) {
  background: #60a5fa;
  border-radius: 99px 0 0 99px;
}
.bmi-scale span:nth-child(2) {
  background: #22c55e;
}
.bmi-scale span:nth-child(3) {
  background: #f59e0b;
}
.bmi-scale span:nth-child(4) {
  background: #ef4444;
  border-radius: 0 99px 99px 0;
}
.bmi-scale i {
  position: absolute;
  top: 50%;
  left: var(--pin, 50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--card);
  border: 4px solid var(--hd);
  transform: translate(-50%, -50%);
  transition: left 0.4s ease;
}

.bmi-bands {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.35rem 1rem;
  font-size: 0.88rem;
}
.bmi-bands b {
  display: block;
  color: var(--hd);
  font-weight: 600;
}

.bmi-note {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.demo-gym .hero-slider > .carousel {
  width: 100%;
}

.demo-hotel .tone-dark, .demo-hotel .tone-primary, .demo-hotel .plan.is-featured, .demo-hotel .bento-tone-dark {
  --accent: #e3c9a6;
}
.demo-hotel .hero-title {
  letter-spacing: 0.01em;
}

.demo-hotel .hero-video .hero-eyebrow {
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.demo-interior-design .hero-title em,
.demo-interior-design .section-title em,
.demo-interior-design .page-title em {
  font-style: italic;
  color: var(--accent);
}
.demo-interior-design .hero-title {
  font-weight: 500;
  letter-spacing: -0.02em;
}
.demo-interior-design .hero-mosaic .hc-0 {
  border-radius: 999px 999px var(--radius) var(--radius);
}
.demo-interior-design .about-img-main {
  border-radius: 400px 400px var(--radius) var(--radius);
}
.demo-interior-design .eyebrow {
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: color-mix(in srgb, var(--accent) 70%, #3b2a1c);
}
.demo-interior-design .tone-dark .eyebrow, .demo-interior-design .tone-primary .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.demo-interior-design .section-title {
  font-weight: 500;
}
.demo-interior-design .stat-number, .demo-interior-design .plan-price, .demo-interior-design .bento-number {
  font-family: var(--font-heading);
  font-weight: 500;
}

.demo-interior-design .form-split-info.has-image .eyebrow {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.demo-law-firm .eyebrow,
.demo-law-firm .hero-eyebrow {
  background: none;
  padding: 0;
  border-radius: 0;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--accent);
}
.demo-law-firm .eyebrow::before,
.demo-law-firm .hero-eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.demo-law-firm .section-head-center .eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.demo-law-firm .section-title {
  font-size: clamp(2.2rem, 1.6rem + 2vw, 3.3rem);
  line-height: 1.08;
}
.demo-law-firm .hero-title {
  line-height: 1.02;
}
.demo-law-firm .hero-on-image em,
.demo-law-firm .tone-dark em,
.demo-law-firm .tone-primary em {
  color: var(--accent);
  font-style: italic;
}
.demo-law-firm em {
  font-style: italic;
}
.demo-law-firm .tone-dark {
  --brand: var(--accent);
}
.demo-law-firm .tone-primary {
  --brand: #f3e6d0;
}
.demo-law-firm .btn-o {
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.demo-law-firm .quote-mark,
.demo-law-firm .big-quote {
  font-style: italic;
}

.demo-law-firm .member-name,
.demo-law-firm .post-title,
.demo-law-firm .split-items h3,
.demo-law-firm .service-card .service-title,
.demo-law-firm .service-overlay .service-title,
.demo-law-firm .feature-title,
.demo-law-firm .step-title,
.demo-law-firm .timeline-card h3,
.demo-law-firm .job h3 {
  font-size: 1.45rem;
  font-weight: 600;
}
.demo-law-firm .award-title {
  font-size: 1.3rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.demo-law-firm .award-year {
  font-size: 1.15rem;
  font-family: var(--font-heading);
}
.demo-law-firm .contact-item h3,
.demo-law-firm .testimonial cite,
.demo-law-firm .big-quote-author strong,
.demo-law-firm .pd-sub,
.demo-law-firm .side-title {
  font-size: 1.2rem;
}
.demo-law-firm .hero-stats strong {
  font-size: 2.1rem;
  font-family: var(--font-heading);
}
.demo-law-firm .post-title {
  line-height: 1.2;
}
.demo-law-firm .service-row .service-title {
  font-size: clamp(1.6rem, 1.1rem + 1.6vw, 2.4rem);
}

.demo-law-firm .gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.demo-law-firm .accordion-button {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}

.demo-logistics .tone-dark .btn-o-primary,
.demo-logistics .cta-image .btn-o-primary,
.demo-logistics .sec-coming-soon .btn-o-primary {
  --btn-bg: var(--accent);
  --btn-fg: #fff;
}
.demo-logistics .hero-title em {
  color: var(--accent);
  font-style: normal;
}

.demo-mobile-app .gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.demo-music-festival {
  --glow: 0 0 24px color-mix(in srgb, var(--primary) 55%, transparent);
  --neon: linear-gradient(90deg, var(--primary), var(--accent));
}
.demo-music-festival, .demo-music-festival .tone-light, .demo-music-festival .tone-alt {
  --card: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.12);
  --muted: rgba(255, 255, 255, 0.58);
  --brand: color-mix(in srgb, var(--primary) 75%, #fff);
  --brand-soft: color-mix(in srgb, var(--primary) 18%, transparent);
  --shadow-sm: 0 0 0 1px rgba(255, 255, 255, 0.04);
  --shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.demo-music-festival .tone-alt {
  background-image: radial-gradient(60% 80% at 100% 0%, color-mix(in srgb, var(--accent) 14%, transparent), transparent 70%);
}
.demo-music-festival .tone-dark {
  --card: rgba(255, 255, 255, 0.05);
}
.demo-music-festival .tone-primary {
  background-image: linear-gradient(120deg, var(--primary), color-mix(in srgb, var(--primary) 55%, var(--accent)));
}
.demo-music-festival .form-select option {
  color: #000;
}
.demo-music-festival .text-muted-o {
  color: var(--muted) !important;
}
.demo-music-festival .dropdown-o {
  background: #1d1233;
  border-color: rgba(255, 255, 255, 0.08);
}
.demo-music-festival .dropdown-o a:hover, .demo-music-festival .dropdown-o a[aria-current] {
  background: rgba(255, 255, 255, 0.06);
}
.demo-music-festival .color-panel {
  background: #1d1233;
}
.demo-music-festival .offcanvas {
  --bs-offcanvas-bg: #150c26;
  --bs-offcanvas-color: #fff;
}
.demo-music-festival .offcanvas .btn-close {
  filter: invert(1);
}
.demo-music-festival .header-transparent.is-scrolled {
  background: color-mix(in srgb, #0b0614 88%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.demo-music-festival .topbar {
  background: #0b0614;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.demo-music-festival .hero-float {
  background: #1d1233;
  color: #fff;
}
.demo-music-festival h1, .demo-music-festival h2, .demo-music-festival h3, .demo-music-festival .h1, .demo-music-festival .h2 {
  line-height: 1;
}
.demo-music-festival .section-title {
  font-size: clamp(2.4rem, 1.2rem + 4vw, 4.8rem);
}
.demo-music-festival .page-title {
  font-size: clamp(3rem, 1.2rem + 6vw, 7rem);
  text-shadow: var(--glow);
}
.demo-music-festival .eyebrow, .demo-music-festival .hero-eyebrow {
  border-radius: 0;
  background: transparent;
  padding-left: 0;
  color: var(--brand);
  letter-spacing: 0.22em;
  font-size: 0.78rem;
}
.demo-music-festival .eyebrow::before, .demo-music-festival .hero-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--neon);
}
.demo-music-festival .tone-primary .eyebrow {
  color: #fff;
}
.demo-music-festival .tone-primary .eyebrow::before {
  background: #fff;
}
.demo-music-festival em {
  color: var(--primary);
  text-shadow: var(--glow);
}
.demo-music-festival .tone-primary em {
  color: #fff;
}
.demo-music-festival .member-name, .demo-music-festival .post-title, .demo-music-festival .listing-title, .demo-music-festival .service-title, .demo-music-festival .plan-name, .demo-music-festival .pd-title, .demo-music-festival .agent-name, .demo-music-festival .zigzag-title {
  letter-spacing: 0.02em;
}
.demo-music-festival .btn-o {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  font-size: 0.88rem;
}
.demo-music-festival .btn-o-primary {
  box-shadow: var(--glow);
}
.demo-music-festival .btn-o-primary:hover {
  box-shadow: 0 0 36px color-mix(in srgb, var(--primary) 75%, transparent);
}
.demo-music-festival .btn-o-outline {
  --btn-bd: rgba(255, 255, 255, 0.35);
  --btn-fg: #fff;
}
.demo-music-festival .btn-o-outline:hover {
  --btn-bg: #fff;
  --btn-fg: #120a1f;
  --btn-bd: #fff;
}
.demo-music-festival .btn-o-link {
  --btn-fg: #fff;
}
.demo-music-festival .mf-hero .hero-title {
  font-size: clamp(4rem, 1rem + 12vw, 12rem);
  line-height: 0.88;
  letter-spacing: 0.01em;
}
.demo-music-festival .mf-hero .hero-title em {
  display: block;
  background: var(--neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 0 18px color-mix(in srgb, var(--primary) 60%, transparent));
}
.demo-music-festival .mf-hero .play-btn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
.demo-music-festival .mf-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(11, 6, 20, 0.35), rgba(11, 6, 20, 0.2) 40%, var(--bg, #120a1f)), linear-gradient(90deg, color-mix(in srgb, var(--primary) 30%, transparent), transparent 60%, color-mix(in srgb, var(--accent) 30%, transparent));
  opacity: 1 !important;
}
.demo-music-festival .mf-hero .hero-eyebrow {
  color: #fff;
  letter-spacing: 0.25em;
}
@media (max-width: 767.98px) {
  .demo-music-festival .mf-hero .hero-eyebrow {
    letter-spacing: 0.12em;
  }
  .demo-music-festival .mf-hero .hero-eyebrow::before {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .demo-music-festival .mf-hero .hero-title {
    font-size: 5.2rem;
  }
}
.demo-music-festival .mf-hero .play-btn {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--glow);
}
.demo-music-festival .sec-hero.hero-slider .hero-title {
  font-size: clamp(3rem, 1rem + 8vw, 8rem);
}
.demo-music-festival .mf-marquee {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.demo-music-festival .mf-marquee .marquee-track span {
  font-weight: 400;
  letter-spacing: 0.02em;
  font-size: clamp(2.2rem, 1.4rem + 3vw, 4.4rem);
  color: #fff;
}
.demo-music-festival .mf-marquee .marquee-track i {
  color: #fff;
}
.demo-music-festival .mf-marquee.tone-dark .marquee-track i {
  color: var(--primary);
}
.demo-music-festival .cd-unit {
  border: 1px solid color-mix(in srgb, var(--primary) 45%, transparent);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0;
  box-shadow: inset 0 0 30px color-mix(in srgb, var(--primary) 15%, transparent);
}
.demo-music-festival .cd-unit span {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.4rem, 1.5rem + 3vw, 4.4rem);
  background: var(--neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.demo-music-festival .cd-unit small {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.demo-music-festival .tone-primary .cd-unit {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.15);
}
.demo-music-festival .tone-primary .cd-unit span {
  background: none;
  color: #fff;
}
.demo-music-festival .mf-tiles .tile {
  border-radius: 0;
}
.demo-music-festival .mf-tiles .tile img {
  aspect-ratio: 3/4;
  filter: saturate(1.15);
}
.demo-music-festival .mf-tiles .tile strong {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.8rem, 1rem + 2vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.demo-music-festival .mf-tiles .tile small {
  display: inline-block;
  align-self: flex-start;
  color: #fff;
  background: var(--primary);
  padding: 0.15rem 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.7rem;
}
.demo-music-festival .mf-tiles .tile:hover {
  box-shadow: var(--glow);
}
.demo-music-festival .mf-artists .member p {
  display: none;
}
.demo-music-festival .mf-artists .member-img {
  border-radius: 0;
}
.demo-music-festival .mf-artists .member-img img {
  aspect-ratio: 1;
  filter: grayscale(1) contrast(1.1);
  transition: filter 0.4s, transform 0.8s var(--ease);
}
.demo-music-festival .mf-artists .member:hover .member-img img {
  filter: none;
}
.demo-music-festival .mf-artists .member {
  text-align: left;
}
.demo-music-festival .mf-artists .member-name {
  font-size: 1.6rem;
  text-transform: uppercase;
}
.demo-music-festival .mf-artists .member-name a {
  color: #fff;
}
.demo-music-festival .mf-artists .member-role {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
}
.demo-music-festival .plan, .demo-music-festival .session, .demo-music-festival .post-card, .demo-music-festival .service-card, .demo-music-festival .feature-boxed, .demo-music-festival .feature-cards, .demo-music-festival .testimonial, .demo-music-festival .contact-form-card, .demo-music-festival .side-card, .demo-music-festival .pd-block, .demo-music-festival .newsletter-box, .demo-music-festival .bento-tile:not(.bento-image), .demo-music-festival .timeline-card, .demo-music-festival .accordion-item, .demo-music-festival .slide-card {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.demo-music-festival .plan.is-featured {
  background: linear-gradient(160deg, color-mix(in srgb, var(--primary) 85%, #000), color-mix(in srgb, var(--accent) 60%, #000));
  border-color: transparent !important;
  box-shadow: var(--glow);
}
.demo-music-festival .plan.is-featured .btn-o-primary {
  --btn-bg: #fff;
  --btn-fg: #120a1f;
  box-shadow: none;
}
.demo-music-festival .plan-badge {
  color: #120a1f;
}
.demo-music-festival .session:hover {
  border-color: color-mix(in srgb, var(--primary) 60%, transparent) !important;
  box-shadow: var(--glow);
}
.demo-music-festival .session h3 {
  font-size: 1.7rem;
  text-transform: uppercase;
}
.demo-music-festival .session-time {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--primary);
}
.demo-music-festival .menu-tabs .nav-link {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.demo-music-festival .plan-compare .pc-group th {
  background: color-mix(in srgb, var(--primary) 18%, transparent);
  color: #fff;
}
.demo-music-festival .compare-table th, .demo-music-festival .compare-table td {
  border-color: rgba(255, 255, 255, 0.08);
}
.demo-music-festival .stat-number {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3rem, 2rem + 4vw, 6rem);
}
.demo-music-festival .tone-primary .stat-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
}
.demo-music-festival .gallery-item {
  border-radius: 0;
}
.demo-music-festival .gallery-item img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}
.demo-music-festival .logo-item {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
}
.demo-music-festival .logo-item:hover {
  color: #fff;
}
.demo-music-festival .service-overlay {
  border-radius: 0;
}
.demo-music-festival .map-card {
  background: #1d1233;
  color: var(--fg);
  --hd: #fff;
}
.demo-music-festival .error-code {
  background: var(--neon);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-heading);
}
.demo-music-festival .site-footer {
  background: #0b0614;
}
.demo-music-festival .bento-quote {
  font-family: var(--font-body);
  text-transform: none;
  font-size: 1.15rem;
}

.demo-photography {
  --ph-bg: #0b0b0c;
  --ph-alt: #131315;
  --ph-card: #1a1a1d;
  background: var(--ph-bg);
}
.demo-photography,
.demo-photography .tone-light,
.demo-photography .tone-alt {
  --fg: rgba(255, 255, 255, 0.68);
  --hd: #fafaf9;
  --muted: rgba(255, 255, 255, 0.48);
  --card: var(--ph-card);
  --line: rgba(255, 255, 255, 0.1);
  --brand: var(--primary);
  --brand-soft: color-mix(in srgb, var(--primary) 14%, transparent);
  --light: var(--ph-alt);
}
.demo-photography .tone-light {
  --bg: var(--ph-bg);
}
.demo-photography .tone-alt {
  --bg: var(--ph-alt);
}
.demo-photography .tone-dark {
  --bg: #000;
  --brand: var(--primary);
}
.demo-photography .sec {
  background-color: var(--bg);
}
.demo-photography .hero-title,
.demo-photography .section-title,
.demo-photography .page-title,
.demo-photography .cta-title,
.demo-photography .pd-title {
  letter-spacing: 0.02em;
  line-height: 0.95;
}
.demo-photography .hero-title {
  font-size: clamp(3.4rem, 2rem + 6vw, 7.5rem);
}
.demo-photography .section-title {
  font-size: clamp(2.6rem, 1.8rem + 3vw, 4.4rem);
}
.demo-photography .eyebrow,
.demo-photography .hero-eyebrow {
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--primary) 55%, transparent);
  color: var(--primary);
}
.demo-photography .btn-o {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}
.demo-photography .btn-o-primary {
  --btn-fg: #0b0b0c;
}
.demo-photography .btn-o-light {
  --btn-fg: #0b0b0c;
}
.demo-photography .ftab.active, .demo-photography .ftab.active i, .demo-photography .filters button.active, .demo-photography .pricing-toggle button {
  color: #0b0b0c;
}
.demo-photography .slider-arrows button:hover, .demo-photography .back-to-top {
  color: #0b0b0c;
}
.demo-photography .back-to-top {
  background: var(--primary);
}
.demo-photography .site-header.is-scrolled {
  background: color-mix(in srgb, #0b0b0c 90%, transparent);
  color: #fff;
  --hd: #fff;
  --line: rgba(255, 255, 255, 0.12);
}
.demo-photography .dropdown-o {
  background: #161618;
  border-color: rgba(255, 255, 255, 0.08);
}
.demo-photography .dropdown-o a {
  color: #e7e5e4 !important;
}
.demo-photography .dropdown-o a:hover, .demo-photography .dropdown-o a[aria-current] {
  background: rgba(255, 255, 255, 0.06);
  color: var(--primary) !important;
}
.demo-photography .mobile-nav {
  background: #111113;
  color: #fff;
  --hd: #fff;
  --line: rgba(255, 255, 255, 0.1);
}
.demo-photography .mobile-nav .mobile-links a, .demo-photography .mobile-nav .mobile-sub-toggle {
  color: #fff;
}
.demo-photography .mobile-nav .btn-close {
  filter: invert(1);
}
.demo-photography .portfolio-item figcaption h3 {
  letter-spacing: 0.03em;
}
.demo-photography .gallery-grid.cols-3 .gallery-item img,
.demo-photography .gallery-grid.cols-4 .gallery-item img {
  aspect-ratio: 3/2;
  object-fit: cover;
}
.demo-photography .gallery-grid.cols-3 .gallery-item:is(:nth-child(12n+1), :nth-child(12n+3), :nth-child(12n+6), :nth-child(12n+8), :nth-child(12n+9), :nth-child(12n+11)) img,
.demo-photography .gallery-grid.cols-4 .gallery-item:is(:nth-child(8n+1), :nth-child(8n+4), :nth-child(8n+5), :nth-child(8n+8)) img {
  aspect-ratio: 4/5;
}
.demo-photography .page-title {
  font-size: clamp(3.2rem, 2rem + 4vw, 6rem);
}
.demo-photography .stars {
  color: var(--primary);
}
.demo-photography .footer-columns, .demo-photography .footer-simple {
  background: #000;
}

.demo-photography .hero-slider > .carousel {
  width: 100%;
}

.demo-photography .post-title, .demo-photography .award-title, .demo-photography .member-name, .demo-photography .plan-name, .demo-photography .feature-title, .demo-photography .service-title, .demo-photography .job h3, .demo-photography .timeline-card h3, .demo-photography .side-title, .demo-photography .pd-sub, .demo-photography .split-items h3, .demo-photography .step-title, .demo-photography .zigzag-title, .demo-photography .testimonial cite, .demo-photography .slide-image strong {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  font-weight: 400;
}
.demo-photography .zigzag-title {
  font-size: 2.4rem;
}
.demo-photography .accordion-button {
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}
.demo-photography .post-cat, .demo-photography .plan-badge, .demo-photography .badge-o:not(.badge-soft) {
  color: #0b0b0c;
}
.demo-photography .testimonial-big p, .demo-photography .big-quote {
  letter-spacing: 0.02em;
}

.demo-photography .hero-video .play-btn {
  display: flex;
  width: fit-content;
  margin: 0 auto 1.75rem;
}
.demo-photography .bento-tone-primary {
  --hd: #0b0b0c;
  --brand: #0b0b0c;
  color: rgba(0, 0, 0, 0.72);
}
.demo-photography .bento-tone-primary .bento-icon {
  background: rgba(0, 0, 0, 0.1);
  color: #0b0b0c;
}

.demo-photography .cta-box {
  --hd: #0b0b0c;
  --brand: #0b0b0c;
  color: rgba(0, 0, 0, 0.75);
}
.demo-photography .cta-box .cta-title, .demo-photography .cta-box .cta-text {
  color: #0b0b0c;
}
.demo-photography .cta-box .eyebrow {
  border-color: rgba(0, 0, 0, 0.3);
  color: #0b0b0c;
}
.demo-photography .cta-box .btn-o-light, .demo-photography .cta-box .btn-o-primary {
  --btn-bg: #0b0b0c;
  --btn-fg: #fff;
  --btn-bd: #0b0b0c;
}
.demo-photography .menu-tabs .nav-link.active, .demo-photography .footer-newsletter button, .demo-photography .carousel-dots .active {
  color: #0b0b0c;
}
.demo-photography .menu-item h3 {
  font-size: 1.35rem;
  letter-spacing: 0.03em;
}
.demo-photography .menu-price {
  font-size: 1.3rem;
}

.demo-portfolio {
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --hard: 4px 4px 0 #0d0d0d;
}
.demo-portfolio, .demo-portfolio .tone-light, .demo-portfolio .tone-alt {
  --brand: #0d0d0d;
  --brand-soft: color-mix(in srgb, var(--primary) 55%, transparent);
  --line: rgba(13, 13, 13, 0.14);
}
.demo-portfolio .tone-dark {
  --brand: var(--primary);
  --brand-soft: color-mix(in srgb, var(--primary) 16%, transparent);
}
.demo-portfolio .tone-primary {
  --fg: rgba(13, 13, 13, 0.78);
  --hd: #0d0d0d;
  --muted: rgba(13, 13, 13, 0.6);
  --brand: #0d0d0d;
  --card: rgba(13, 13, 13, 0.06);
  --line: rgba(13, 13, 13, 0.18);
  --brand-soft: rgba(13, 13, 13, 0.08);
}
.demo-portfolio .tone-primary .btn-o-primary {
  --btn-bg: #0d0d0d;
  --btn-fg: var(--primary);
}
.demo-portfolio .tone-primary .btn-o-outline {
  --btn-fg: #0d0d0d;
  --btn-bd: #0d0d0d;
}
.demo-portfolio .tone-primary .btn-o-outline:hover {
  --btn-bg: #0d0d0d;
  --btn-fg: var(--primary);
}
.demo-portfolio .tone-primary .eyebrow {
  background: #0d0d0d;
  color: var(--primary);
}
.demo-portfolio ::selection {
  color: #0d0d0d;
}
.demo-portfolio .eyebrow, .demo-portfolio .hero-eyebrow, .demo-portfolio .post-meta, .demo-portfolio .award-year, .demo-portfolio .timeline-year, .demo-portfolio .service-num, .demo-portfolio .portfolio-cat, .demo-portfolio .crumbs, .demo-portfolio .stat-label, .demo-portfolio .bar-head, .demo-portfolio .plan-badge, .demo-portfolio .job-meta, .demo-portfolio .detail-meta span, .demo-portfolio .fp-meta {
  font-family: var(--mono);
  letter-spacing: 0.02em;
}
.demo-portfolio .eyebrow, .demo-portfolio .hero-eyebrow {
  text-transform: none;
  font-weight: 500;
  font-size: 0.82rem;
  border-radius: 4px;
}
.demo-portfolio .tone-light .eyebrow, .demo-portfolio .tone-alt .eyebrow {
  background: #0d0d0d;
  color: var(--primary);
}
.demo-portfolio .section-title {
  font-size: clamp(2.1rem, 1.2rem + 3vw, 3.8rem);
  line-height: 1;
}
.demo-portfolio .page-title {
  font-size: clamp(2.6rem, 1.2rem + 5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}
.demo-portfolio em {
  color: inherit;
}
.demo-portfolio .tone-light h1 em, .demo-portfolio .tone-light h2 em, .demo-portfolio .tone-alt h1 em, .demo-portfolio .tone-alt h2 em {
  box-shadow: inset 0 -0.32em 0 var(--primary);
}
.demo-portfolio .tone-dark h1 em, .demo-portfolio .tone-dark h2 em, .demo-portfolio .tone-dark .hero-title em {
  color: var(--primary);
}
.demo-portfolio .btn-o-primary {
  --btn-fg: #0d0d0d;
}
.demo-portfolio .tone-light .btn-o-primary, .demo-portfolio .tone-light .btn-o-outline, .demo-portfolio .tone-alt .btn-o-primary, .demo-portfolio .tone-alt .btn-o-outline, .demo-portfolio .sec-detail .btn-o-primary, .demo-portfolio .sec-detail .btn-o-outline, .demo-portfolio .sec-article .btn-o-primary, .demo-portfolio .sec-article .btn-o-outline, .demo-portfolio .sec-person .btn-o-primary, .demo-portfolio .sec-person .btn-o-outline {
  --btn-bd: #0d0d0d;
  box-shadow: var(--hard);
}
.demo-portfolio .tone-light .btn-o-outline, .demo-portfolio .tone-alt .btn-o-outline, .demo-portfolio .sec-detail .btn-o-outline, .demo-portfolio .sec-article .btn-o-outline, .demo-portfolio .sec-person .btn-o-outline {
  --btn-fg: #0d0d0d;
}
.demo-portfolio .tone-light .btn-o-primary:hover, .demo-portfolio .tone-light .btn-o-outline:hover, .demo-portfolio .tone-alt .btn-o-primary:hover, .demo-portfolio .tone-alt .btn-o-outline:hover, .demo-portfolio .sec-detail .btn-o-primary:hover, .demo-portfolio .sec-detail .btn-o-outline:hover, .demo-portfolio .sec-article .btn-o-primary:hover, .demo-portfolio .sec-article .btn-o-outline:hover, .demo-portfolio .sec-person .btn-o-primary:hover, .demo-portfolio .sec-person .btn-o-outline:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #0d0d0d;
}
.demo-portfolio .tone-dark .btn-o-outline {
  --btn-bd: rgba(255, 255, 255, 0.35);
}
.demo-portfolio .header-dark .header-actions .btn-o-primary {
  --btn-fg: #0d0d0d;
}
.demo-portfolio .about-badge, .demo-portfolio .cta-box, .demo-portfolio .post-cat, .demo-portfolio .back-to-top, .demo-portfolio .color-switcher-btn, .demo-portfolio .listing-badge,
.demo-portfolio .feature-boxed .feature-icon, .demo-portfolio .feature:hover .feature-icon, .demo-portfolio .service-card-image .feature-icon,
.demo-portfolio .filters button.active, .demo-portfolio .menu-tabs .nav-link.active, .demo-portfolio .ftab.active, .demo-portfolio .ftab.active i,
.demo-portfolio .service-row:hover .service-arrow, .demo-portfolio .tile:hover .tile-arrow, .demo-portfolio .step:hover .step-marker,
.demo-portfolio .social-links a:hover, .demo-portfolio .footer-newsletter button {
  color: #0d0d0d;
}
.demo-portfolio .cta-box {
  --hd: #0d0d0d;
  --brand: #0d0d0d;
  color: rgba(13, 13, 13, 0.8);
}
.demo-portfolio .bento-tone-primary {
  --hd: #0d0d0d;
  --brand: #0d0d0d;
  color: rgba(13, 13, 13, 0.8);
}
.demo-portfolio .bento-tone-primary .bento-icon {
  background: rgba(13, 13, 13, 0.1);
  color: #0d0d0d;
}
.demo-portfolio .tone-dark .plan.is-featured {
  color: rgba(13, 13, 13, 0.78);
  --hd: #0d0d0d;
  --muted: rgba(13, 13, 13, 0.6);
  --line: rgba(13, 13, 13, 0.18);
}
.demo-portfolio .tone-dark .plan.is-featured .plan-features i {
  color: #0d0d0d;
}
.demo-portfolio .tone-dark .plan.is-featured .btn-o-primary {
  --btn-bg: #0d0d0d;
  --btn-fg: var(--primary);
}
.demo-portfolio .plan.is-featured .plan-features i {
  color: var(--primary);
}
.demo-portfolio .step-marker {
  font-family: var(--mono);
}
.demo-portfolio .site-header.header-dark {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.demo-portfolio .pf-hero .hero-title-xl {
  font-size: clamp(3rem, 1rem + 8vw, 8.8rem);
  max-width: 12ch;
  line-height: 0.9;
  letter-spacing: -0.06em;
}
.demo-portfolio .pf-hero .hero-eyebrow {
  background: transparent;
  color: var(--primary);
  padding-left: 0;
}
.demo-portfolio .pf-hero .hero-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 5px rgba(198, 244, 50, 0.18);
  animation: pf-pulse 2s infinite;
}
.demo-portfolio .pf-hero .hero-media {
  border-radius: var(--radius);
  overflow: hidden;
  outline: 1px solid rgba(255, 255, 255, 0.12);
  outline-offset: 10px;
}
.demo-portfolio .pf-hero .hero-media img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  filter: grayscale(0.2) contrast(1.05);
}
.demo-portfolio .pf-hero-split .hero-media img {
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(1) contrast(1.1);
}
.demo-portfolio .pf-hero-split .hero-badge {
  color: #0d0d0d;
}
@keyframes pf-pulse {
  50% {
    box-shadow: 0 0 0 10px rgba(198, 244, 50, 0);
  }
}
.demo-portfolio .pf-marquee {
  padding: 1.4rem 0;
  border-top: 2px solid #0d0d0d;
  border-bottom: 2px solid #0d0d0d;
}
.demo-portfolio .pf-marquee .marquee-track span {
  font-size: clamp(1.6rem, 1rem + 2.4vw, 3.2rem);
  color: #0d0d0d;
}
.demo-portfolio .pf-marquee .marquee-track i {
  color: #0d0d0d;
}
.demo-portfolio .pf-stats .stat {
  border: 2px solid #0d0d0d;
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  background: #fff;
  box-shadow: var(--hard);
}
.demo-portfolio .pf-stats .stat-number {
  font-size: clamp(2.4rem, 2rem + 2vw, 3.6rem);
}
.demo-portfolio .tone-light .service-card, .demo-portfolio .tone-light .post-card, .demo-portfolio .tone-light .plan:not(.is-featured), .demo-portfolio .tone-light .testimonial, .demo-portfolio .tone-light .contact-form-card, .demo-portfolio .tone-light .feature-boxed, .demo-portfolio .tone-light .feature-cards, .demo-portfolio .tone-light .bento-tile:not(.bento-image), .demo-portfolio .tone-light .newsletter-box, .demo-portfolio .tone-light .side-card, .demo-portfolio .tone-alt .service-card, .demo-portfolio .tone-alt .post-card, .demo-portfolio .tone-alt .plan:not(.is-featured), .demo-portfolio .tone-alt .testimonial, .demo-portfolio .tone-alt .contact-form-card, .demo-portfolio .tone-alt .feature-boxed, .demo-portfolio .tone-alt .feature-cards, .demo-portfolio .tone-alt .bento-tile:not(.bento-image), .demo-portfolio .tone-alt .newsletter-box, .demo-portfolio .tone-alt .side-card {
  border: 2px solid #0d0d0d;
  box-shadow: var(--hard);
}
.demo-portfolio .tone-light .plan.is-featured, .demo-portfolio .tone-alt .plan.is-featured {
  box-shadow: 8px 8px 0 var(--primary);
}
.demo-portfolio .tone-light .accordion-item, .demo-portfolio .tone-alt .accordion-item {
  border: 2px solid #0d0d0d !important;
}
.demo-portfolio .sec-detail .side-card, .demo-portfolio .sec-detail .pd-block, .demo-portfolio .sec-article .side-card, .demo-portfolio .sec-article .pd-block {
  border: 2px solid #0d0d0d;
  box-shadow: var(--hard);
}
.demo-portfolio .pf-work .portfolio-item {
  border-radius: var(--radius);
}
.demo-portfolio .pf-work .portfolio-item img {
  aspect-ratio: 4/3;
}
.demo-portfolio .pf-work .portfolio-item figcaption {
  opacity: 1;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.85), transparent 55%);
}
.demo-portfolio .pf-work .portfolio-item h3 {
  font-size: clamp(1.3rem, 1rem + 1vw, 2rem);
}
.demo-portfolio .pf-work .portfolio-cat {
  color: var(--primary);
}
.demo-portfolio .pf-work .portfolio-arrow {
  background: var(--primary);
  color: #0d0d0d;
}
.demo-portfolio .tone-light .pf-work .portfolio-item, .demo-portfolio .pf-work.tone-light .portfolio-item {
  border: 2px solid #0d0d0d;
  box-shadow: var(--hard);
}
.demo-portfolio .filters button {
  font-family: var(--mono);
}
.demo-portfolio .pf-services .feature-icon, .demo-portfolio .service-card .feature-icon {
  background: var(--primary);
  color: #0d0d0d;
  border-radius: var(--radius);
}
.demo-portfolio .pf-services-list .service-row:hover {
  background: var(--primary);
  --hd: #0d0d0d;
  color: #0d0d0d;
  padding-left: 1.25rem;
  border-radius: var(--radius);
}
.demo-portfolio .gallery-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.demo-portfolio .bar-track span {
  background: var(--primary);
}
.demo-portfolio .tone-light .bar-track span, .demo-portfolio .tone-alt .bar-track span {
  background: #0d0d0d;
}
.demo-portfolio .logo-item {
  font-weight: 800;
  letter-spacing: -0.04em;
}
.demo-portfolio .pf-quote .big-quote {
  font-size: clamp(1.6rem, 1rem + 2.2vw, 3rem);
  letter-spacing: -0.03em;
}
.demo-portfolio .pf-quote .big-quote-author span {
  color: rgba(13, 13, 13, 0.7);
}
.demo-portfolio .pf-cta .cta-title {
  font-size: clamp(2.2rem, 1rem + 4vw, 4.6rem);
  line-height: 0.95;
}
.demo-portfolio .timeline-year {
  color: #0d0d0d;
  background: var(--primary);
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
  font-size: 0.85rem;
}

.demo-restaurant .hero-slider > .carousel {
  width: 100%;
}

.demo-restaurant .hero-on-image .hero-title em, .demo-restaurant .tone-dark .section-title em {
  color: var(--accent);
}
.demo-restaurant .hero-title em {
  font-style: italic;
}

.demo-saas .gallery-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.demo-travel .hero-on-image .hero-title em,
.demo-travel .sec-cta.tone-dark .cta-title em {
  color: var(--accent);
}
.demo-travel .hero-form .hero-form-card {
  box-shadow: 0 30px 60px -20px rgba(6, 42, 51, 0.55);
}
.demo-travel .listing-price {
  font-family: var(--font-heading);
}

.demo-travel .hero-slider > .carousel {
  width: 100%;
}

.demo-travel .accordion-button .fp-meta {
  margin-left: auto;
  margin-right: 1rem;
  font-size: 0.85rem;
}

.demo-travel .accordion-button:has(.fp-meta)::after {
  margin-left: 0;
}

.demo-travel .gallery-item img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.demo-wedding .sec-countdown:not(.tone-dark) .eyebrow {
  background: var(--brand-soft);
  color: var(--brand);
}
.demo-wedding .hero-on-image .hero-title em {
  color: #f8dde2;
  font-style: italic;
}
.demo-wedding .hero-title em, .demo-wedding .section-title em {
  font-style: italic;
}
