.calendar__inline {
  border-radius: 12px;
  overflow: hidden;
  background: rgba(9, 12, 23, .85);
  border: 1px solid rgba(255, 255, 255, .08);
  padding: 8px;
}

.calendar__inline.is-disabled {
  opacity: .4;
  pointer-events: none;
}

.calendar__selected {
  font-size: .95rem;
  font-weight: 600;
  margin: 4px 0 0;
}

.calendar-ghost-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border: 0;
  padding: 0;
}

/* Flatpickr overrides – neon vaporwave theme */
.flatpickr-calendar {
  background: transparent;
  box-shadow: none;
  border: none;
  font-family: 'Inter', system-ui, sans-serif;
  width: 100%;
}

.flatpickr-months {
  background: rgba(12, 19, 36, .85);
  border-radius: 10px;
  margin: 0 0 4px;
  padding: 4px;
}

.flatpickr-months .flatpickr-month {
  color: var(--dj-text-100);
  height: 32px;
}

.flatpickr-months .flatpickr-current-month {
  font-size: .95rem;
  font-weight: 600;
  padding-top: 4px;
}

.flatpickr-current-month .flatpickr-monthDropdown-months {
  background: var(--dj-bg-800);
  color: var(--dj-text-100);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .1);
}

.flatpickr-current-month .numInputWrapper input {
  color: var(--dj-text-100);
}

.flatpickr-prev-month,
.flatpickr-next-month {
  padding: 6px 10px;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
  fill: var(--dj-text-400);
}

.flatpickr-prev-month:hover svg,
.flatpickr-next-month:hover svg {
  fill: var(--dj-neon);
}

.flatpickr-weekdays {
  background: transparent;
  margin: 0;
}

.flatpickr-weekday {
  color: var(--dj-text-400);
  font-weight: 500;
  font-size: .75rem;
}

.flatpickr-days {
  width: 100%;
}

.dayContainer {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
}

.flatpickr-day {
  color: var(--dj-text-100);
  border-radius: 8px;
  border: 1px solid transparent;
  max-width: none;
  height: 36px;
  line-height: 34px;
  transition: all .15s ease;
}

.flatpickr-day:hover {
  border-color: var(--dj-neon);
  background: rgba(0, 229, 255, .1);
  color: #fff;
}

.flatpickr-day.today {
  color: #fcd34d;
  border-color: rgba(252, 211, 77, .5);
  background: rgba(252, 211, 77, .08);
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--dj-neon);
  color: #020617;
  border-color: transparent;
  box-shadow: 0 0 12px rgba(0, 229, 255, .5);
  font-weight: 600;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  color: rgba(255, 255, 255, .15);
  background: transparent;
  border-color: transparent;
  cursor: not-allowed;
}

.flatpickr-day.flatpickr-disabled {
  color: rgba(255, 255, 255, .12);
}

.flatpickr-day.nextMonthDay,
.flatpickr-day.prevMonthDay {
  color: rgba(255, 255, 255, .2);
}

.flatpickr-innerContainer {
  padding: 0;
}

.flatpickr-rContainer {
  padding: 0;
  width: 100%;
}

/* DiscordGenius — Neon Tron theme on Discord grey */

:root {
  --dj-bg-900: #1f2229;
  --dj-bg-800: #23272a;
  --dj-text-100: #e7ecff;
  --dj-text-400: #a9b2d0;
  --dj-neon: #00e5ff;
  --dj-neon-2: #6a00ff;
  --dj-accent: #14f195;
  --radius: 12px;
  --radius-lg: 16px;
  --space-1: 8px;
  --space-2: 12px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --shadow-neon: 0 0 16px rgba(0, 229, 255, .35), 0 0 2px rgba(0, 229, 255, .9);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--dj-text-100);
  background: var(--dj-bg-900);
  line-height: 1.5;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
  background: var(--dj-bg-800);
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 9999;
}

/* Top bar CTA */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 51;
  background-color: rgba(15, 17, 21, 0.15);
  background-image: linear-gradient(90deg, rgba(0, 229, 255, 0.15), rgba(106, 0, 255, 0.15));
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid rgba(0, 229, 255, .3);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease, background-color .3s ease;
}

.topbar.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.topbar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  gap: 12px;
}

.topbar__text {
  color: var(--dj-text-100);
  font-weight: 600;
  letter-spacing: .2px;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar__actions .btn {
  font-size: 13.5px;
  padding: 8px 14px;
}

.topbar__or {
  color: var(--dj-text-400);
  font-size: 13px;
}

@media (max-width: 600px) {
  .topbar__wrap {
    justify-content: center;
    padding: 10px 0;
  }
}

.nav {
  position: relative;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  background: linear-gradient(to bottom, rgba(35, 39, 42, 0.9), rgba(35, 39, 42, 0.7));
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  overflow: visible;
}

.nav::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg,
      #ff00ff 0%,
      #ff00ff 5%,
      #8800ff 10%,
      #4400ff 15%,
      #0088ff 20%,
      #00ffff 25%,
      #00ff88 30%,
      #00ffff 35%,
      #0088ff 40%,
      #4400ff 45%,
      #8800ff 50%,
      #ff00ff 55%,
      #8800ff 60%,
      #4400ff 65%,
      #0088ff 70%,
      #00ffff 75%,
      #00ff88 80%,
      #00ffff 85%,
      #8800ff 90%,
      #ff00ff 100%);
  background-size: 200% 100%;
  animation: vaporwaveFlow 10s linear infinite, rainbowPulse 3s ease-in-out infinite;
  opacity: 0.75;
  filter: blur(0.5px);
  box-shadow: 0 0 8px rgba(255, 0, 128, 0.4), 0 0 16px rgba(0, 255, 255, 0.3);
}

.card::before,
.step::before,
.faq__item::before,
.pricecard::before,
.btn--primary::before,
.btn--neon::before {
  animation-play-state: paused;
}

.card:hover::before,
.step:hover::before,
.faq__item:hover::before,
.pricecard:hover::before,
.btn--primary:hover::before,
.btn--neon:hover::before {
  animation-play-state: running;
}

@keyframes vaporwaveFlow {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 200% 0%;
  }
}

@keyframes rainbowPulse {

  0%,
  100% {
    opacity: 0.8;
    box-shadow:
      0 0 12px rgba(255, 0, 128, 0.5),
      0 0 24px rgba(0, 255, 255, 0.4),
      0 0 36px rgba(138, 56, 236, 0.3);
  }

  50% {
    opacity: 1;
    box-shadow:
      0 0 24px rgba(255, 0, 128, 0.8),
      0 0 48px rgba(0, 255, 255, 0.7),
      0 0 72px rgba(138, 56, 236, 0.6),
      0 0 96px rgba(255, 170, 0, 0.4),
      0 0 120px rgba(255, 0, 255, 0.3);
  }
}

.nav__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--dj-text-100);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  position: relative;
}

.brand::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 8px;
  background: conic-gradient(from var(--angle),
      transparent 0deg,
      rgba(255, 0, 110, 0.3) 90deg,
      rgba(131, 56, 236, 0.3) 180deg,
      rgba(58, 134, 255, 0.3) 270deg,
      transparent 360deg);
  opacity: 0;
  transition: opacity .3s ease;
  z-index: -1;
  animation: vaporwaveRotate 4s linear infinite;
  filter: blur(8px);
}

.brand:hover::after {
  opacity: 1;
}

.brand img {
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, .7));
}

.brand__logo {
  display: block;
  width: 96px;
  height: 96px;
  filter: drop-shadow(0 0 6px rgba(0, 229, 255, .7));
}

.brand__title {
  display: block;
  width: 200px;
  height: 48px;
}

.footer__logo {
  display: block;
  width: 72px;
  height: 72px;
}

.footer__title {
  display: block;
  width: 160px;
  height: 40px;
}

.nav__links {
  display: none;
  gap: 18px;
}

.nav__link {
  color: var(--dj-text-400);
  text-decoration: none;
  font-weight: 500;
}

.nav__link:hover {
  color: var(--dj-text-100);
}

.nav__ctas {
  display: flex;
  gap: 10px;
  align-items: center;
  /* Ensures the 'or' text respects the vertical center of the buttons */
}

.nav__or {
  color: var(--dj-text-400);
  font-size: 1rem;
  font-weight: 500;
  user-select: none;
  margin: 0 4px;
}

@media (min-width: 840px) {
  .nav__links {
    display: flex;
  }
}

.btn {
  appearance: none;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--dj-bg-800);
  color: var(--dj-text-100);
  padding: 10px 14px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
  box-sizing: border-box;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .28);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(135deg, rgba(0, 229, 255, .15), rgba(106, 0, 255, .15));
  border-color: rgba(0, 229, 255, .6);
  box-shadow: var(--shadow-neon);
}

.btn--primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  padding: 2px;
  background: conic-gradient(from var(--angle),
      #ff006e 0deg,
      #8338ec 90deg,
      #3a86ff 180deg,
      #06ffa5 270deg,
      #ff006e 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.7;
  pointer-events: none;
  animation: vaporwaveRotate 3s linear infinite;
  z-index: -1;
}

.btn--primary:hover::before {
  opacity: 1;
}

.btn--neon {
  border-color: rgba(0, 229, 255, .6);
  box-shadow: var(--shadow-neon);
  background: transparent;
}

.btn--neon::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius);
  padding: 2px;
  background: conic-gradient(from var(--angle),
      #ff006e 0deg,
      #8338ec 90deg,
      #3a86ff 180deg,
      #06ffa5 270deg,
      #ff006e 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
  animation: vaporwaveRotate 3s linear infinite;
  z-index: -1;
}

.btn--neon:hover::before {
  opacity: 1;
  filter: brightness(1.2);
}

.btn--ghost {
  background: transparent;
}

.btn--lg {
  padding: 14px 18px;
  font-weight: 700;
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 229, 255, .2);
  border: 1px solid rgba(0, 229, 255, .5);
  box-shadow: inset 0 0 12px rgba(0, 229, 255, .35), 0 2px 8px rgba(0, 0, 0, 0.6);
  color: var(--dj-text-100);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero {
  position: relative;
  padding: 32px 0 48px;
  overflow: visible;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: -1;
  overflow: visible;
}

.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 40% at 25% 15%, rgba(0, 229, 255, .25), transparent 70%),
    radial-gradient(35% 35% at 75% 25%, rgba(106, 0, 255, .22), transparent 70%),
    radial-gradient(30% 30% at 50% 70%, rgba(20, 241, 149, .15), transparent 65%);
  filter: blur(60px);
  opacity: 0.7;
  z-index: -2;
}

.hero__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: calc(100% + 60px);
  background: linear-gradient(180deg,
      rgba(31, 34, 41, 0) 0%,
        rgba(31, 34, 41, 0) 40%,
        rgba(31, 34, 41, .25) 60%,
        rgba(31, 34, 41, .6) 75%,
        rgba(31, 34, 41, .9) 85%,
        rgba(31, 34, 41, 1) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% + 60px);
  /* REMOVED: was causing compositor bottleneck — re-filters entire canvas every frame */
  /* filter: drop-shadow(0 0 20px rgba(0,229,255,.3)) blur(0.3px); */
  z-index: 1;
}

.hero__content {
  text-align: center;
  position: relative;
  padding: 24px;
  border-radius: 24px;
  background: rgba(31, 34, 41, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero__tagline {
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--dj-text-100);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 229, 255, .3);
  margin: 10px 0 4px;
}

.hero__title {
  font-size: clamp(28px, 5vw, 54px);
  line-height: 1.04;
  margin: 14px 0 10px;
  letter-spacing: -.5px;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 0 24px rgba(0, 229, 255, .25);
}

.hero__sub {
  max-width: 880px;
  margin: 0 auto;
  color: var(--dj-text-100);
  font-size: 1.25rem;
  font-weight: 500;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 18px 0 8px;
  flex-wrap: wrap;
}



.hero__bullets {
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
  color: var(--dj-text-400);
  flex-wrap: wrap;
}

.hero__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.hero__bullets li i {
  position: relative;
  top: 1px;
}

.list--iconless {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.list--iconless li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.section {
  padding: 64px 0;
}

.section.how,
.section.services,
#examples.section {
  padding: 48px 0;
}

.section__title {
  font-size: clamp(22px, 3vw, 34px);
  margin: 0 0 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9), 0 0 16px rgba(0, 229, 255, .2);
}

#pricing .section__title {
  text-align: center;
}

.muted {
  color: var(--dj-text-400);
}

.small {
  font-size: 12px;
}

.note {
  color: var(--dj-text-400);
  font-size: 12px;
  margin-top: 12px;
}

.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 840px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  position: relative;
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.85), rgba(31, 34, 41, 0.78));
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.step:hover {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.25), rgba(31, 34, 41, 0.2));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.step::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: conic-gradient(from var(--angle),
      #ff006e 0deg,
      #8338ec 90deg,
      #3a86ff 180deg,
      #06ffa5 270deg,
      #ff006e 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  animation: vaporwaveRotate 3s linear infinite;
}

.step:hover::before {
  opacity: 1;
}

.step__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(0, 229, 255, .5);
  box-shadow: var(--shadow-neon);
  margin-bottom: 10px;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

@media (min-width: 940px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 640px) and (max-width: 939px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.85), rgba(31, 34, 41, 0.78));
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: visible;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.card:hover {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.25), rgba(31, 34, 41, 0.2));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: conic-gradient(from var(--angle),
      #ff006e 0deg,
      #8338ec 90deg,
      #3a86ff 180deg,
      #06ffa5 270deg,
      #ff006e 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  animation: vaporwaveRotate 3s linear infinite;
}

.card:hover::before {
  opacity: 1;
}

.card[data-accordion]::before {
  background: conic-gradient(from var(--angle),
      #ff1a8c 0deg,
      #a855f7 90deg,
      #60a5fa 180deg,
      #34d399 270deg,
      #ff1a8c 360deg);
}

.card[data-accordion]:hover::before {
  opacity: 1;
  filter: brightness(1.3) saturate(1.2);
}

.card[data-accordion] {
  cursor: pointer;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes vaporwaveRotate {
  0% {
    --angle: 0deg;
  }

  100% {
    --angle: 360deg;
  }
}

.card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  position: relative;
  z-index: 1;
}

.card__head i[data-lucide] {
  flex-shrink: 0;
}

.card--center .card__head {
  justify-content: center;
}

.card--center .card__head h3 {
  text-align: center;
  margin: 0;
}

.card--center .card__head i {
  margin-right: 8px;
}

.card[data-accordion] .card__head::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 229, 255, 0.7);
  border-bottom: 2px solid rgba(0, 229, 255, 0.7);
  transform: rotate(45deg);
  transition: transform .22s ease;
  flex-shrink: 0;
  margin-left: auto;
}

[data-accordion] .card__panel {
  height: 0;
  overflow: visible;
  will-change: height;
  transition: height .26s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  z-index: 1;
}

[data-accordion] .card__panel-inner {
  padding: 2px 0 14px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .18s ease-out, transform .26s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-accordion] .card__panel-inner>* {
  margin: 0;
}

[data-accordion].is-open .card__panel-inner {
  opacity: 1;
  transform: translateY(0);
}

.card__panel-inner>ul {
  list-style-position: outside;
  padding-left: 36px;
  padding-right: 20px;
  line-height: 1.6;
  color: var(--dj-text-100);
}

.card__panel-inner>ul li {
  margin-bottom: 6px;
}

.card__panel-inner>ul li:last-child {
  margin-bottom: 0;
}

.card__panel-inner>p {
  padding-left: 20px;
  padding-right: 20px;
  line-height: 1.6;
  color: var(--dj-text-100);
}

.card__panel-inner>p+p {
  margin-top: 8px;
}

.card[data-accordion].is-open .card__head::after {
  transform: rotate(-135deg);
}

.integrations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .03);
  color: var(--dj-text-400);
}

.pricing {
  background: linear-gradient(180deg, rgba(0, 229, 255, .06), transparent);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 1.25rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle__btn {
  position: relative;
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 0.6rem;
  background: transparent;
  color: var(--dj-text-400);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.pricing-toggle__btn:hover {
  color: var(--dj-text-100);
  background: rgba(255, 255, 255, 0.04);
}

.pricing-toggle__btn.is-active {
  background: rgba(0, 229, 255, 0.12);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0, 229, 255, 0.2);
}

.pricing-toggle__save {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border-radius: 1rem;
}

.pricecard {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.88), rgba(31, 34, 41, 0.82));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  padding: 22px;
  max-width: 640px;
  margin: 0 auto;
  transition: box-shadow .3s ease, background .3s ease;
}

.pricecard:hover {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.3), rgba(31, 34, 41, 0.25));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricecard::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  padding: 2px;
  background: conic-gradient(from var(--angle),
      #ff006e 0deg,
      #8338ec 90deg,
      #3a86ff 180deg,
      #06ffa5 270deg,
      #ff006e 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  animation: vaporwaveRotate 3s linear infinite;
}

.pricecard:hover::before {
  opacity: 1;
}

.pricecard__top {
  text-align: center;
}

.pricecard__price {
  font-weight: 900;
  font-size: 54px;
  letter-spacing: -1px;
}

.price__currency {
  font-size: .6em;
  opacity: .8;
  margin-right: 2px;
}

.price__per {
  font-size: .35em;
  opacity: .7;
  margin-left: 2px;
}

.pricecard__list {
  margin: 10px 0;
  padding-left: 18px;
}

.pricecard__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .pricecard__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .pricecard__actions .nav__or {
    align-self: center;
    margin: 4px 0;
  }
  .pricecard__actions .btn {
    width: 100%;
    margin: 0;
  }
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.85), rgba(31, 34, 41, 0.78));
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}

.faq__item:hover {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.25), rgba(31, 34, 41, 0.2));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.faq__item::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: conic-gradient(from var(--angle),
      #ff006e 0deg,
      #8338ec 90deg,
      #3a86ff 180deg,
      #06ffa5 270deg,
      #ff006e 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
  animation: vaporwaveRotate 3s linear infinite;
}

.faq__item:hover::before {
  opacity: 1;
  filter: brightness(1.3) saturate(1.2);
}

.faq__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px;
}

/* FAQ revamp */
.faq {
  overflow: visible;
  position: relative;
  z-index: 2;
}

.faq .container {
  overflow: visible;
  position: relative;
  z-index: 2;
}

.faq__nav {
  display: grid;
  grid-auto-flow: column;
  gap: 8px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 20px 20px 22px;
  margin: -20px -20px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 229, 255, 0.5) rgba(255, 255, 255, 0.05);
}

.faq__nav::-webkit-scrollbar {
  height: 6px;
}

.faq__nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.faq__nav::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.6), rgba(106, 0, 255, 0.6));
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 229, 255, 0.4);
}

.faq__nav::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, rgba(0, 229, 255, 0.8), rgba(106, 0, 255, 0.8));
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.6);
}

.faq__tab {
  border: 1px solid rgba(0, 229, 255, .35);
  background: rgba(0, 229, 255, .06);
  color: var(--dj-text-100);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.faq__tab.is-active {
  box-shadow: var(--shadow-neon);
  transform: translateY(-1px);
}

.faq__categories {
  position: relative;
}

.faq__category {
  display: none;
}

.faq__category.is-active {
  display: grid;
  gap: 12px;
}

.faq__item:hover {
  border-color: rgba(0, 229, 255, .35);
  box-shadow: 0 0 0 2px rgba(0, 229, 255, .05) inset;
}

.faq__item .faq__head::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(0, 229, 255, 0.7);
  border-bottom: 2px solid rgba(0, 229, 255, 0.7);
  transform: rotate(45deg);
  transition: transform .3s ease;
  flex-shrink: 0;
}

.faq__item.is-open .faq__head::after {
  transform: rotate(-135deg);
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 840px) {
  .testimonials {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.88), rgba(31, 34, 41, 0.8));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.testimonial__quote {
  font-style: italic;
  margin: 0 0 8px;
  line-height: 1.5;
  color: var(--dj-text-100);
}

.testimonial__author {
  font-size: 14px;
  color: var(--dj-text-400);
  margin: 0;
}

/* Portfolio */
.portfolio {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 940px) {
  .portfolio {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-item {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.85), rgba(31, 34, 41, 0.78));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: transform .2s ease, box-shadow .2s ease;
}

.portfolio-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.portfolio-badge {
  display: inline-block;
  padding: 4px 8px;
  background: rgba(0, 229, 255, 0.15);
  border: 1px solid rgba(0, 229, 255, 0.4);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--dj-neon);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.portfolio-item h4 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--dj-text-100);
}

.portfolio-item p {
  margin: 0;
  line-height: 1.5;
}

/* Guarantees */
.guarantees {
  margin-top: 32px;
}

.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.guarantee-item {
  flex: 1 1 200px;
  max-width: 240px;
  text-align: center;
  padding: 12px;
  background: rgba(0, 229, 255, 0.05);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: var(--radius);
}

.guarantee-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dj-neon);
}

.guarantee-item p {
  font-size: 13px;
  margin: 0;
  color: var(--dj-text-400);
}

.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
  background: var(--dj-bg-800);
}

.footer__about {
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer__about p {
  margin: 0 0 8px;
  line-height: 1.6;
}

.footer__about p:last-child {
  margin: 0;
}

.footer__wrap {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 720px) {
  .footer__wrap {
    grid-template-columns: 1fr auto auto;
  }
}

.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.footer__links {
  display: flex;
  gap: 14px;
}

.footer__links a {
  color: var(--dj-text-400);
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--dj-text-100);
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  z-index: -1;
}

.modal__dialog {
  position: relative;
  width: 100%;
  max-width: 640px;
  max-height: 100%;
  background: var(--dj-bg-900);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .4), var(--shadow-neon);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  flex-shrink: 0;
}

.modal__head h2,
.modal__head h3,
.modal__head h4 {
  margin: 0;
}

.modal__body {
  padding: 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Custom scrollbar for the modal */
.modal__body::-webkit-scrollbar {
  width: 8px;
}

.modal__body::-webkit-scrollbar-track {
  background: var(--dj-bg-900);
  border-radius: 8px;
}

.modal__body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  border: 2px solid var(--dj-bg-900);
}

.modal__body::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.25);
}

.modal__close {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .18);
  color: var(--dj-text-100);
  border-radius: 10px;
  cursor: pointer;
  padding: 6px 10px;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--dj-bg-800);
  color: var(--dj-text-100);
}

.form__actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.form__actions .btn {
  width: 100%;
  justify-content: center;
}

.form__or {
  text-align: center;
  color: var(--dj-text-400);
  font-size: 13px;
}

.success {
  margin-top: 12px;
  padding: 12px;
  border: 1px solid rgba(20, 241, 149, .4);
  background: rgba(20, 241, 149, .08);
  border-radius: 12px;
}

/* Accessibility & motion */
:focus-visible {
  outline: 2px solid var(--dj-neon);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none;
    transition: none;
  }
}

/* Modal Typography & Spacing Overrides */
#call-title {
  font-size: 1.25rem;
}

.calendar__selected,
.calendar__timezone {
  margin-top: 4px;
  margin-bottom: 4px;
}

.calendar__state {
  margin-top: 4px;
  margin-bottom: 12px;
}

#booking-form {
  margin-bottom: 8px;
}

#booking-form+p.muted.small {
  margin-top: 4px;
  margin-bottom: 4px;
}

/* Booking section */
.section.book {
  position: relative;
  background: linear-gradient(180deg, rgba(8, 12, 24, .96), rgba(2, 6, 18, 1));
  border-top: 1px solid rgba(0, 229, 255, .08);
  box-shadow: inset 0 30px 60px rgba(0, 0, 0, .45);
}

.section.book::before {
  content: "";
  position: absolute;
  top: -140px;
  left: 0;
  right: 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(8, 12, 24, 0), rgba(8, 12, 24, .9));
  pointer-events: none;
  z-index: 0;
}

.section.book>* {
  position: relative;
  z-index: 1;
}

.book__panel {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  padding: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .015));
  display: grid;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}

.book__intro {
  display: grid;
  gap: 12px;
  text-align: center;
}

.booking-form {
  display: grid;
  gap: 18px;
}

.booking-form__row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

.booking-form__calendar {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 0;
  background: rgba(255, 255, 255, .02);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-form__calendar-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: .3px;
}

.booking-form__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin: 0;
}

@media (min-width: 640px) {
  .booking-form__actions {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}

.calendar {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 12px;
  background: rgba(0, 0, 0, .25);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, .25);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calendar__picker {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calendar__picker .field {
  margin-bottom: 0;
}

.calendar__timezone {
  font-size: .85rem;
  color: var(--dj-text-400);
}

.calendar__slots-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calendar__slot {
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(14, 23, 45, .75);
  color: var(--dj-text-100);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease;
}

.calendar__slot:hover {
  border-color: var(--dj-neon);
  color: #fff;
}

.calendar__slot.is-selected {
  background: var(--dj-neon);
  color: #020617;
  border-color: var(--dj-neon);
}

.calendar__state {
  margin: 0;
}

.calendar__empty,
.calendar__error {
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, .02);
}

.calendar__empty p,
.calendar__error p {
  margin: 0;
}

.booking-aside {
  display: grid;
  gap: 16px;
}

.booking-aside__card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 255, 255, .02);
}

.booking-aside__card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--dj-text-400);
}

.calendar__slots {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-gate {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .65);
  border-radius: 20px;
}

.auth-gate__card {
  width: min(520px, 92vw);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: var(--dj-bg-900);
  padding: 16px;
  box-shadow: var(--shadow-neon);
}

.auth-gate__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.auth-gate__email {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
  margin-top: 12px;
}

body.is-auth .auth-gate {
  display: none;
}

/* Timepicker slider */
.timepicker {
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(0, 229, 255, .06), rgba(106, 0, 255, .04));
  border: 1px solid rgba(0, 229, 255, .25);
  box-shadow: 0 0 24px rgba(0, 229, 255, .08), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.timepicker__header {
  text-align: center;
  margin-bottom: 4px;
}

.timepicker__title {
  font-size: .8rem;
  font-weight: 500;
  color: var(--dj-text-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.timepicker__labels {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
}

.timepicker__arrow {
  font-size: 1.5rem;
  color: var(--dj-text-400);
  opacity: .5;
}

.timepicker__slider {
  display: grid;
  gap: 4px;
}

.timepicker__labels>div:not(.timepicker__arrow) {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 90px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(0, 0, 0, .3);
  border: 1px solid rgba(255, 255, 255, .1);
}

.timepicker__labels>div:first-child:not(.timepicker__arrow) {
  border-color: rgba(0, 229, 255, .4);
  box-shadow: 0 0 12px rgba(0, 229, 255, .15);
}

.timepicker__labels>div:last-child {
  border-color: rgba(106, 0, 255, .4);
  box-shadow: 0 0 12px rgba(106, 0, 255, .15);
}

.timepicker__label {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dj-text-400);
}

.timepicker__labels strong {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dj-text-100);
  font-variant-numeric: tabular-nums;
}

.timepicker__labels>div:first-child strong {
  color: var(--dj-neon);
  text-shadow: 0 0 8px rgba(0, 229, 255, .5);
}

.timepicker__labels>div:last-child strong {
  color: #a78bfa;
  text-shadow: 0 0 8px rgba(167, 139, 250, .5);
}

/* Range slider track */
.timepicker__slider input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 229, 255, .25), rgba(106, 0, 255, .25));
  border: 1px solid rgba(255, 255, 255, .12);
  cursor: pointer;
  margin: 0;
}

.timepicker input[type="range"]:focus {
  outline: none;
}

.timepicker input[type="range"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 229, 255, .3);
}

/* Webkit thumb */
.timepicker input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dj-neon), #6a00ff);
  border: 2px solid rgba(255, 255, 255, .9);
  box-shadow: 0 0 16px rgba(0, 229, 255, .6), 0 2px 8px rgba(0, 0, 0, .4);
  cursor: grab;
  transition: transform .15s ease, box-shadow .15s ease;
}

.timepicker input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(0, 229, 255, .8), 0 4px 12px rgba(0, 0, 0, .5);
}

.timepicker input[type="range"]::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.05);
}

/* Firefox thumb */
.timepicker input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dj-neon), #6a00ff);
  border: 2px solid rgba(255, 255, 255, .9);
  box-shadow: 0 0 16px rgba(0, 229, 255, .6), 0 2px 8px rgba(0, 0, 0, .4);
  cursor: grab;
  transition: transform .15s ease, box-shadow .15s ease;
}

.timepicker input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 24px rgba(0, 229, 255, .8), 0 4px 12px rgba(0, 0, 0, .5);
}

/* Firefox track */
.timepicker input[type="range"]::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 229, 255, .2), rgba(106, 0, 255, .2));
  border: 1px solid rgba(255, 255, 255, .1);
}

/* Tick marks */
.timepicker__ticks {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  margin-top: 6px;
}

.timepicker__ticks span {
  font-size: .7rem;
  font-weight: 500;
  color: var(--dj-text-400);
  opacity: .6;
  text-align: center;
  flex: 1;
}

/* Disabled state */
.timepicker input[type="range"]:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.timepicker input[type="range"]:disabled::-webkit-slider-thumb {
  cursor: not-allowed;
  background: rgba(255, 255, 255, .2);
  box-shadow: none;
}

.timepicker input[type="range"]:disabled::-moz-range-thumb {
  cursor: not-allowed;
  background: rgba(255, 255, 255, .2);
  box-shadow: none;
}

/* Rive Branding Fixes */
header .container {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  height: 64px;
}

.brand {
  display: flex !important;
  align-items: center !important;
  text-decoration: none;
  /* remove underline from link */
  height: 64px;
  margin: 0 !important;
}

.brand__logo {
  display: block;
  width: 64px;
  height: 64px;
  position: relative;
  transform: scale(1.25);
  /* Zoom to reduce internal whitespace */
}

.brand__title {
  display: block;
  width: 267px;
  /* Scaled from 200px (48->64) */
  height: 64px;
  margin-left: 12px;
}

/* Ensure canvas takes up the space */
.brand__logo canvas,
.brand__title canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

  /* Header adjustments: minimize padding */
  header .container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
    justify-content: space-between !important;
  }

  .nav__links {
    display: none !important;
  }

  /* Show CTA container but hide secondary button */
  .nav__ctas {
    display: flex !important;
    align-items: center;
    gap: 0;
  }

  .nav__ctas .btn--primary,
  .nav__ctas .nav__or {
    display: none !important;
  }

  .hide-mobile {
    display: none;
  }

  /* Brand Title: Fill available space using flex grow */
  .brand__title {
    display: block !important;
    flex: 1 !important;
    width: auto !important;
    height: 100% !important;
    min-width: 0 !important;
    /* Critical for flex shrinking */
    margin-left: 4px !important;
    /* Add space on left */
  }

 

  /* Compact button on mobile */
  .nav__ctas .btn {
    padding: 6px 10px !important;
    font-size: 0.85rem !important;
    height: 36px;
  }

  /* Adjust logo layout width to save space, scale visual up */
  .brand .brand__logo {
    width: 56px !important;
    /* Reduced layout width */
    height: 56px !important;
    transform: scale(1.15);
    /* Visual compensation */
    flex-shrink: 0;
  }

  /* Button container: fixed size, don't shrink */
  .nav__ctas {
    flex-shrink: 0;
  }

  /* Hero Section */
  .hero__title {
    font-size: 2.25rem !important;
    /* Smaller font */
    line-height: 1.2;
    word-wrap: break-word;
    /* Prevent text overflow */
  }

  .hero__tagline {
    font-size: 1.125rem;
    padding: 0 1rem;
  }

  .hero__actions {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 12px;
    padding: 0;
    box-sizing: border-box;
    justify-content: center;
  }

  .hero__actions .btn {
    width: auto;
    flex: 0 1 auto;
    justify-content: center;
    font-size: 1rem;
    padding: 12px 14px;
    text-align: center;
    white-space: nowrap;
  }

  .hero__bullets {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .hero__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .hero__bullets li i,
  .hero__bullets li svg {
    flex-shrink: 0;
    margin-top: 3px;
  }

  .badge {
    white-space: normal !important;
    /* Allow wrapping */
    height: auto !important;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 12px;
  }

  /* Layout Fixes */
  .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    margin-inline: auto;
  }

  .hero__content {
    width: 100%;
    padding: 20px 16px;
    box-sizing: border-box;
  }

  /* FAQ Overflow Fix */
  .faq__tab {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0 !important;
  }

  /* Prevent side scroll */
  html,
  body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
  }

  /* Stack grid items */
  .how__grid,
  .footer__wrap {
    grid-template-columns: 1fr !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .footer__links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .footer__brand {
    margin-bottom: 1rem;
  }

  .spoke-hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .spoke-hero__or {
    width: 100%;
    justify-content: center;
  }

  .comparison-table {
    font-size: .85rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 10px 8px;
  }

  .footer__columns {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ============================================================
   RESPONSIVE FIXES — Intermediate breakpoints
   ============================================================ */

/* 480-768px: 2-column footer */
@media (min-width: 480px) and (max-width: 768px) {
  .footer__columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 640px and below: FAQ tabs wrap into grid */
@media (max-width: 640px) {
  .faq__nav {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, 1fr);
    overflow-x: visible;
    padding: 12px 0;
  }

  .faq__tab {
    width: auto !important;
    text-align: center;
    font-size: 0.82rem;
  }

  /* Stack services to single column on small screens */
  .services__grid {
    grid-template-columns: 1fr !important;
  }
}

/* 600px and below: additional mobile fixes */
@media (max-width: 600px) {
  /* Topbar: show context text, stack vertically */
  .topbar__text {
    display: block;
    font-size: 0.78rem;
    text-align: center;
    width: 100%;
    margin-bottom: 4px;
  }

  .topbar__wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
  }

  .topbar__or {
    display: none;
  }

  .topbar__actions {
    width: 100%;
    justify-content: center;
    gap: 8px;
  }

  /* Guarantee grid: 2-column on mobile */
  .guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .guarantee-item {
    max-width: none;
  }

  /* Pricing card "or" spacing */
  .pricecard__actions .nav__or {
    margin: 2px 0;
  }

  /* Pricing toggle: stack on very small screens */
  .pricing-toggle {
    flex-direction: row;
  }

  /* Step padding on mobile */
  .step {
    padding: 14px 16px;
  }

  .step h3 {
    font-size: 1rem;
  }
}

/* 400px and below: walkthrough banner fix */
@media (max-width: 400px) {
  .pwb-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pwb-item {
    flex-direction: column;
    gap: 8px;
  }

  .premium-walkthrough-banner {
    padding: 20px 16px;
  }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--dj-text-400);
  margin-bottom: 12px;
}

.breadcrumb a {
  color: var(--dj-neon);
  text-decoration: none;
  transition: color .2s;
}

.breadcrumb a:hover {
  color: var(--dj-text-100);
}

.breadcrumb__sep {
  opacity: .4;
}

/* Spoke Hero — lightweight hero without canvas bg */
.spoke-hero {
  position: relative;
  padding: 32px 0 48px;
  text-align: center;
  overflow: hidden;
}

.spoke-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 25% 20%, rgba(0, 229, 255, .12), transparent 70%),
    radial-gradient(35% 45% at 75% 30%, rgba(106, 0, 255, .10), transparent 70%),
    radial-gradient(30% 40% at 50% 80%, rgba(20, 241, 149, .08), transparent 65%);
  filter: blur(40px);
  z-index: -1;
}

.spoke-hero .badge {
  margin-bottom: 16px;
}

.spoke-hero__title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.spoke-hero__tagline {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--dj-text-400);
  max-width: 680px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.spoke-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.spoke-hero__or {
  display: inline-flex;
  align-items: center;
  color: var(--dj-text-400);
  font-size: 13px;
  font-weight: 600;
}

/* Feature Grid — for spoke page features */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.feature-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.85), rgba(31, 34, 41, 0.75));
  padding: 24px;
  transition: border-color .3s ease, box-shadow .3s ease;
}

.feature-card:hover {
  border-color: rgba(0, 229, 255, .3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3), 0 0 12px rgba(0, 229, 255, .1);
}

.feature-card i,
.feature-card svg {
  color: var(--dj-neon);
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.feature-card p {
  color: var(--dj-text-400);
  font-size: .95rem;
  margin: 0;
  line-height: 1.5;
}

/* Use-case list with icons */
.usecase-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.usecase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.5;
}

.usecase-list li i,
.usecase-list li svg {
  color: var(--dj-neon);
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTA Banner — reusable call-to-action section */
.cta-banner {
  text-align: center;
  padding: 48px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(0, 229, 255, .04), rgba(106, 0, 255, .04));
  margin: 32px 0;
}

.cta-banner h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 12px;
}

.cta-banner p {
  color: var(--dj-text-400);
  margin: 0 0 24px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-banner .btn {
  font-size: 1.05rem;
}

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: .95rem;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.comparison-table thead th {
  font-weight: 700;
  color: var(--dj-text-100);
  background: rgba(0, 229, 255, .06);
  border-bottom: 2px solid rgba(0, 229, 255, .2);
}

.comparison-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.comparison-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.comparison-table tbody td {
  color: var(--dj-text-400);
}

.comparison-table tbody tr:hover td {
  background: rgba(255, 255, 255, .02);
}

.comparison-table .check {
  color: var(--dj-accent);
  font-weight: 700;
}

.comparison-table .cross {
  color: #f87171;
  opacity: .7;
}

.comparison-table .highlight-col {
  background: rgba(0, 229, 255, .03);
  color: var(--dj-text-100);
  font-weight: 600;
}

/* Spoke section spacing */
.spoke-section {
  padding: 48px 0;
}

.spoke-section__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 8px;
}

.spoke-section__subtitle {
  color: var(--dj-text-400);
  font-size: 1rem;
  margin: 0 0 24px;
  max-width: 640px;
}

/* Footer columns for internal linking */
.footer__columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer__col-title {
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--dj-text-400);
  margin: 0 0 12px;
}

.footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer__col-links a {
  color: var(--dj-text-400);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}

.footer__col-links a:hover {
  color: var(--dj-neon);
}



/* ============================================================
   TUTORIAL / CASE-STUDY PAGE STYLES
   ============================================================ */

/* Request card — styled block showing the client's original request */
.request-card {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.88), rgba(31, 34, 41, 0.78));
  padding: 28px 28px 24px;
  margin: 24px 0;
  position: relative;
  overflow: hidden;
}

.request-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--dj-neon), var(--dj-accent));
  border-radius: 4px 0 0 4px;
}

.request-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: .85rem;
  color: var(--dj-text-400);
}

.request-card__label {
  background: rgba(0, 229, 255, .12);
  color: var(--dj-neon);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.request-card__from {
  font-weight: 600;
  color: var(--dj-text-200);
}

.request-card__body {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--dj-text-300);
  white-space: pre-wrap;
}

.request-card__body p {
  margin: 0 0 12px;
}

.request-card__body p:last-child {
  margin-bottom: 0;
}

.request-card__body ul,
.request-card__body ol {
  padding-left: 20px;
  margin: 8px 0 12px;
}

.request-card__body li {
  margin-bottom: 6px;
}

.request-card__body strong {
  color: var(--dj-text-100);
}

/* Complexity badge */
.complexity-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.complexity-badge--simple {
  background: rgba(20, 241, 149, .12);
  color: var(--dj-accent);
}

.complexity-badge--moderate {
  background: rgba(255, 200, 50, .12);
  color: #ffc832;
}

.complexity-badge--complex {
  background: rgba(168, 85, 247, .12);
  color: #a855f7;
}

/* Delivery timeline */
.timeline {
  display: grid;
  gap: 0;
  margin: 24px 0;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--dj-neon), var(--dj-accent));
  opacity: .3;
}

.timeline__item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  position: relative;
}

.timeline__dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 229, 255, .1);
  border: 2px solid rgba(0, 229, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  font-weight: 700;
  color: var(--dj-neon);
  z-index: 1;
}

.timeline__dot--done {
  background: rgba(20, 241, 149, .15);
  border-color: var(--dj-accent);
  color: var(--dj-accent);
}

.timeline__content {
  flex: 1;
  padding-top: 6px;
}

.timeline__title {
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 4px;
  color: var(--dj-text-100);
}

.timeline__desc {
  color: var(--dj-text-400);
  font-size: .9rem;
  margin: 0;
  line-height: 1.5;
}

.timeline__time {
  font-size: .8rem;
  color: var(--dj-neon);
  font-weight: 600;
  margin-top: 4px;
}

/* Bot result showcase */
.bot-showcase {
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(0, 229, 255, .03), rgba(106, 0, 255, .03));
  padding: 32px;
  margin: 24px 0;
}

.bot-showcase__title {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.bot-showcase__title i,
.bot-showcase__title svg {
  color: var(--dj-neon);
}

.bot-showcase__commands {
  display: grid;
  gap: 12px;
}

.bot-command {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, .2);
  border: 1px solid rgba(255, 255, 255, .06);
}

.bot-command__name {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  color: var(--dj-neon);
  white-space: nowrap;
  font-size: .9rem;
  min-width: 180px;
}

.bot-command__desc {
  flex: 1 1;
  color: var(--dj-text-400);
  font-size: .9rem;
  line-height: 1.5;
}

.bot-command__images {
  flex: 1 1 100%;
  width: 100%;
}

/* Tutorial nav — links between tutorial pages */
.tutorial-nav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

.tutorial-nav__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  background: rgba(31, 34, 41, .2);
  text-decoration: none;
  transition: border-color .3s, box-shadow .3s;
}

.tutorial-nav__card:hover {
  border-color: rgba(0, 229, 255, .3);
  box-shadow: 0 4px 24px rgba(0, 0, 0, .3), 0 0 12px rgba(0, 229, 255, .1);
}

.tutorial-nav__card-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-weight: 600;
  color: var(--dj-text-400);
}

.tutorial-nav__card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dj-text-100);
}

.tutorial-nav__card-desc {
  font-size: .85rem;
  color: var(--dj-text-400);
  line-height: 1.5;
  margin: 0 0 8px 0;
}

.tutorial-nav__card-complexity {
  margin-top: auto;
}

/* Iteration card — shows a follow-up request */
.iteration-card {
  border: 1px solid rgba(255, 200, 50, .15);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 200, 50, .04), transparent);
  padding: 24px 24px 20px;
  margin: 16px 0;
  position: relative;
}

.iteration-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #ffc832, #f59e0b);
  border-radius: 4px 0 0 4px;
}

.iteration-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.iteration-card__label {
  background: rgba(255, 200, 50, .12);
  color: #ffc832;
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.iteration-card__title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dj-text-100);
}

.iteration-card__body {
  font-size: .92rem;
  line-height: 1.65;
  color: var(--dj-text-300);
}

.iteration-card__body p {
  margin: 0 0 8px;
}

/* Tutorial intro stats */
.tutorial-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.tutorial-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px;
  border-radius: var(--radius);
  background: rgba(0, 229, 255, .06);
  border: 1px solid rgba(0, 229, 255, .12);
  min-width: 120px;
}

.tutorial-stat__value {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dj-text-100);
}

.tutorial-stat__label {
  font-size: .78rem;
  color: var(--dj-text-400);
  text-transform: uppercase;
  letter-spacing: .3px;
}

/* Responsive tutorial adjustments */
@media (max-width: 640px) {
  .request-card {
    padding: 20px 16px 16px;
  }

  .bot-showcase {
    padding: 20px;
  }

  .bot-command {
    flex-direction: column;
    gap: 4px;
  }

  .bot-command__name {
    min-width: unset;
  }

  .timeline::before {
    left: 15px;
  }

  .timeline__dot {
    width: 32px;
    height: 32px;
    font-size: .7rem;
  }

  .tutorial-stats {
    flex-direction: column;
  }
}

.walkthrough-guide-section {
  padding-bottom: 40px;
}

.walkthrough-guide__header {
  max-width: 820px;
  margin: 0 auto 32px;
  text-align: center;
}

.walkthrough-guide__badge {
  margin-bottom: 14px;
}

.walkthrough-guide__desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--dj-text-400);
  line-height: 1.7;
}

.walkthrough-shot {
  display: grid;
  gap: 28px;
  align-items: start;
  margin: 32px 0;
  padding: clamp(18px, 2.4vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(10, 16, 30, .9), rgba(9, 12, 23, .82));
  box-shadow: 0 16px 48px rgba(0, 0, 0, .28), 0 0 0 1px rgba(0, 229, 255, .04);
}

.walkthrough-shot__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(2, 6, 23, .9);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .4);
}

.walkthrough-shot__frame img {
  display: block;
  width: 100%;
  height: auto;
}

.walkthrough-shot__notes {
  display: grid;
  gap: 14px;
  align-content: start;
}

.walkthrough-shot__eyebrow {
  margin: 0;
  color: var(--dj-neon);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.walkthrough-shot__lead {
  margin: 0;
  color: var(--dj-text-200);
  font-size: 0.95rem;
  line-height: 1.6;
}

a.link-neon,
a.link-neon-underline {
  color: var(--dj-neon);
  text-decoration: none;
  position: relative;
  display: inline-block;
  text-shadow: 0 0 2px rgba(0, 229, 255, 0.3);
  transition: text-shadow 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

a.link-neon:hover,
a.link-neon-underline:hover {
  text-shadow: 0 0 5px rgba(0, 229, 255, 0.6), 0 0 8px rgba(0, 229, 255, 0.4);
}

a.link-neon-underline::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--dj-neon);
  box-shadow: 0 0 8px 1px rgba(0, 229, 255, 0.8), 0 0 4px 0px rgba(0, 229, 255, 0.6);
  transition: all 0.2s ease-in-out;
}

a.link-neon-underline:hover::after {
  box-shadow: 0 0 12px 2px rgba(0, 229, 255, 1), 0 0 6px 1px rgba(0, 229, 255, 0.8);
  height: 2px;
}

.walkthrough-marker {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(0, 229, 255, .95), rgba(20, 241, 149, .92));
  color: #03111f;
  font-size: .8rem;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 229, 255, 0.3);
  z-index: 2;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease, width 0.2s, height 0.2s;
}

@media (max-width: 600px) {
  .walkthrough-marker {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(0, 229, 255, 0.4);
  }
}

.walkthrough-marker:hover {
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(0, 229, 255, 0.6);
}

/* Board overview markers */
.walkthrough-marker--backlog {
  top: 13.6%;
  left: 38.2%;
}

.walkthrough-marker--active {
  top: 13.6%;
  left: 55.0%;
}

.walkthrough-marker--approved {
  top: 13.6%;
  left: 72.0%;
}

.walkthrough-marker--add-card {
  top: 91.3%;
  left: 39.0%;
}

.walkthrough-marker--board-tools {
  top: 2.5%;
  left: 90.2%;
}

/* Card detail markers */
.walkthrough-marker--card-title {
  top: 9.6%;
  left: 56.2%;
}

.walkthrough-marker--composer {
  top: 26.9%;
  left: 67.5%;
}

.walkthrough-marker--attachments {
  top: 49.2%;
  left: 41.6%;
}

.walkthrough-marker--submit {
  top: 48.8%;
  left: 69.5%;
}

.walkthrough-marker--thread {
  top: 60.8%;
  left: 66.7%;
}

.walkthrough-marker--chat {
  top: 87.5%;
  left: 66.9%;
}

.walkthrough-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}

.walkthrough-flow__step {
  min-width: 148px;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, .22);
}

.walkthrough-flow__step strong {
  color: var(--dj-text-100);
  font-size: .95rem;
}

.walkthrough-flow__step span {
  color: var(--dj-text-400);
  font-size: .86rem;
}

.walkthrough-flow__arrow {
  color: var(--dj-neon);
  font-size: 1.2rem;
  font-weight: 800;
}

.walkthrough-note-list,
.walkthrough-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.walkthrough-note-list li,
.walkthrough-bullet-list li {
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
  color: var(--dj-text-300);
  font-size: 0.9rem;
  line-height: 1.5;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.walkthrough-note-list li.highlight-active {
  border-color: rgba(0, 229, 255, 0.6);
  background: rgba(0, 229, 255, 0.08);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
}

.walkthrough-note-list strong,
.walkthrough-bullet-list strong {
  color: var(--dj-text-100);
}

.walkthrough-process {
  display: grid;
  gap: 8px;
}

.walkthrough-process__step {
  position: relative;
  padding: 10px 14px 10px 42px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 229, 255, .08), rgba(106, 0, 255, .08));
  border: 1px solid rgba(0, 229, 255, .12);
  color: var(--dj-text-200);
  font-size: 0.9rem;
  line-height: 1.5;
}

.walkthrough-process__step::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: linear-gradient(180deg, var(--dj-neon), var(--dj-accent));
  box-shadow: 0 0 16px rgba(0, 229, 255, .28);
}

.walkthrough-guide__cards {
  display: grid;
  gap: 24px;
  margin-top: 16px;
}

.walkthrough-info-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, .1);
  background: linear-gradient(180deg, rgba(10, 16, 30, .88), rgba(9, 12, 23, .78));
}

.walkthrough-info-card__footer {
  margin: 18px 0 0;
  color: var(--dj-text-300);
  line-height: 1.65;
}

.walkthrough-info-card--help {
  text-align: center;
  background: linear-gradient(180deg, rgba(0, 229, 255, .06), rgba(106, 0, 255, .05));
}

.ownership-grid {
  display: grid;
  gap: 20px;
  margin-top: 18px;
}

.ownership-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .03);
}

.ownership-card--recommended {
  border-color: rgba(20, 241, 149, .2);
  background: linear-gradient(180deg, rgba(20, 241, 149, .08), rgba(0, 229, 255, .04));
}

.ownership-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.ownership-card__title {
  margin: 0;
  color: var(--dj-text-100);
  font-size: 1.1rem;
  font-weight: 800;
}

.ownership-card__tag {
  display: inline-flex;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 241, 149, .12);
  color: var(--dj-accent);
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ownership-card__tag--muted {
  background: rgba(255, 255, 255, .08);
  color: var(--dj-text-300);
}

.ownership-card__desc,
.ownership-card__footnote {
  margin: 0;
  color: var(--dj-text-300);
  line-height: 1.65;
}

.ownership-card__footnote {
  margin-top: 16px;
  color: var(--dj-text-400);
  font-size: .92rem;
}

@media (min-width: 980px) {
  .walkthrough-shot {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, .9fr);
  }

  .walkthrough-guide__cards {
    grid-template-columns: 1fr;
  }

  .ownership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  .walkthrough-shot {
    gap: 22px;
  }


}

@media (max-width: 720px) {
  .walkthrough-shot {
    padding: 18px;
  }

  .walkthrough-shot__frame {
    border-radius: 16px;
  }

  .walkthrough-marker {
    display: none;
  }

  .walkthrough-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .walkthrough-flow__arrow {
    align-self: center;
    transform: rotate(90deg);
  }

  .walkthrough-info-card,
  .ownership-card {
    padding: 18px;
  }

  .walkthrough-process__step {
    padding-left: 44px;
  }
}

@media (max-width: 520px) {
  .walkthrough-guide__header {
    margin-bottom: 24px;
  }

  .walkthrough-shot {
    margin: 24px 0;
    padding: 16px;
  }

  .walkthrough-shot__lead {
    font-size: .96rem;
  }

  .walkthrough-note-list li,
  .walkthrough-bullet-list li,
  .walkthrough-process__step {
    padding: 12px 14px;
  }

  .walkthrough-process__step {
    padding-left: 40px;
  }

  .walkthrough-process__step::before {
    left: 14px;
    width: 16px;
    height: 16px;
  }
}

/* App Screenshot Showcase */
.app-screenshot {
  margin: 32px auto;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(0, 229, 255, 0.06);
  position: relative;
  max-width: 800px;
  width: 100%;
}

.app-screenshot img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.app-screenshot__label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.82);
  color: var(--dj-cyan, #00e5ff);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(0, 229, 255, 0.2);
  z-index: 2;
}

@media (max-width: 768px) {
  .app-screenshot {
    margin: 24px auto;
  }
}

@media (max-width: 600px) {
  .app-screenshot {
    margin: 16px 0;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .app-screenshot img {
    border-radius: 8px;
  }
}

/* ============================================================
   HOVER PAN IMAGE ZOOM
   ============================================================ */

[data-hover-zoom] {
  overflow: hidden;
  cursor: crosshair;
}

[data-hover-zoom] img {
  pointer-events: none;
}

@media (max-width: 600px) {
  [data-hover-zoom] {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
  }

  .walkthrough-shot__inner,
  .walkthrough-shot__inner img {
    -webkit-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-drag: none;
  }
}

[data-hover-zoom].is-zooming .walkthrough-marker {
  transform: translate(-50%, -50%) scale(0.6);
}

[data-hover-zoom].is-zooming .walkthrough-marker:hover {
  transform: translate(-50%, -50%) scale(0.7);
}

.walkthrough-shot__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 0.4s cubic-bezier(0.2, 0, 0.2, 1);
  will-change: transform;
}

[data-hover-zoom].is-zooming .walkthrough-shot__inner {
  transform: scale(1.8);
}

@media (max-width: 600px) {
  [data-hover-zoom].is-zooming .walkthrough-shot__inner {
    transform: scale(2.8);
  }
}

/* ============================================================
   APPLE-ONLY FROSTED GLASS (iOS / macOS)
   Activated by .gpu-blur class on <html> — set via JS platform
   detection. These platforms GPU-accelerate backdrop-filter.
   Android stays on the solid/opaque fallbacks above.
   ============================================================ */

.gpu-blur .hero__content {
  background: rgba(31, 34, 41, 0.15);
  backdrop-filter: blur(3px) saturate(150%);
  -webkit-backdrop-filter: blur(3px) saturate(150%);
}

.gpu-blur .step {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.2), rgba(31, 34, 41, 0.15));
  backdrop-filter: blur(2px) saturate(150%);
  -webkit-backdrop-filter: blur(2px) saturate(150%);
}

.gpu-blur .card {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.2), rgba(31, 34, 41, 0.15));
  backdrop-filter: blur(2px) saturate(150%);
  -webkit-backdrop-filter: blur(2px) saturate(150%);
}

.gpu-blur .pricecard {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.25), rgba(31, 34, 41, 0.2));
  backdrop-filter: blur(3px) saturate(150%);
  -webkit-backdrop-filter: blur(3px) saturate(150%);
}

.gpu-blur .faq__item {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.2), rgba(31, 34, 41, 0.15));
  backdrop-filter: blur(2px) saturate(150%);
  -webkit-backdrop-filter: blur(2px) saturate(150%);
}

.gpu-blur .testimonial {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.3), rgba(31, 34, 41, 0.25));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gpu-blur .portfolio-item {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.25), rgba(31, 34, 41, 0.2));
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.gpu-blur .modal__overlay {
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.gpu-blur .auth-gate {
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.gpu-blur .feature-card {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.2), rgba(31, 34, 41, 0.15));
  backdrop-filter: blur(2px) saturate(150%);
  -webkit-backdrop-filter: blur(2px) saturate(150%);
}

.gpu-blur .request-card {
  background: linear-gradient(180deg, rgba(31, 34, 41, 0.35), rgba(31, 34, 41, 0.25));
  backdrop-filter: blur(2px) saturate(150%);
  -webkit-backdrop-filter: blur(2px) saturate(150%);
}

.gpu-blur .app-screenshot__label {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ============================================================
   MOBILE LIGHTBOX  (pinch-to-zoom + double-tap + pan)
   ============================================================ */
.mobile-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.96);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.3s ease;
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

.mobile-lightbox.active {
  opacity: 1;
}

.mobile-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10001;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  color: #00e5ff;
  font-size: 28px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.mobile-lightbox__hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  padding: 8px 18px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.mobile-lightbox__hint.hidden {
  opacity: 0;
}

.mobile-lightbox__viewport {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: none;
  padding: 16px;
}

.mobile-lightbox__canvas {
  transform-origin: center center;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-lightbox__img {
  display: block;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  width: auto;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  -webkit-user-drag: none;
}

/* Mobile fullscreen button */
.mobile-fullscreen-btn {
  display: none;
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  z-index: 10;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 229, 255, 0.2);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}
@media (max-width: 768px) {
  .mobile-fullscreen-btn {
    display: flex;
  }
}

/* Premium Walkthrough Banner */
.premium-walkthrough-banner {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31, 34, 41, 0.9), rgba(18, 20, 24, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.premium-walkthrough-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at top right, rgba(124, 92, 252, 0.15), transparent 60%);
  pointer-events: none;
}

.premium-walkthrough-banner:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 92, 252, 0.4);
  box-shadow: 0 12px 48px rgba(124, 92, 252, 0.2), 0 4px 12px rgba(0,0,0,0.5);
}

.premium-walkthrough-banner:hover .pwb-icon-box {
  background: rgba(124, 92, 252, 0.2);
  color: #fff;
  transform: scale(1.05);
}

.premium-walkthrough-banner:hover .pwb-arrow {
  transform: translateX(6px);
  color: #fff;
}

.pwb-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.pwb-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}

.pwb-desc {
  font-size: 1.05rem;
  color: var(--dj-text-400);
  max-width: 600px;
  line-height: 1.5;
}

.pwb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.pwb-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pwb-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--dj-accent);
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pwb-item-content strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.pwb-item-content span {
  color: var(--dj-text-400);
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
}

.pwb-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

@media (min-width: 768px) {
  .pwb-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.pwb-instruction {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--dj-text-400);
  background: rgba(0, 0, 0, 0.2);
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.pwb-instruction strong {
  color: #fff;
  font-weight: 500;
}

.pwb-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--dj-accent);
  font-weight: 600;
  font-size: 1.05rem;
  transition: color 0.3s ease;
}

.pwb-arrow {
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav .container {
  height: auto !important;
}

.nav__wrap {
  min-height: 76px;
  height: auto;
  padding: 10px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  height: 56px !important;
  gap: 12px !important;
  flex: 0 0 auto;
  min-width: 0;
}

.brand__mark,
.brand__wordmark {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand__mark {
  width: 58px;
  height: 58px;
}

.brand__wordmark {
  width: clamp(150px, 19vw, 230px);
  height: 54px;
}

.brand__rive {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity .2s ease;
}

.brand__rive--logo {
  transform: scale(1.12);
}

.brand__fallback-logo,
.brand__fallback-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.brand__fallback-logo {
  width: 52px;
  height: 52px;
  margin: auto;
  filter: drop-shadow(0 0 10px rgba(0, 229, 255, .7));
}

.brand__fallback-text {
  color: var(--dj-text-100);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  font-weight: 900;
  letter-spacing: -.04em;
  text-shadow: 0 0 18px rgba(0, 229, 255, .38);
}

.is-rive-ready .brand__rive {
  opacity: 1;
}

.is-rive-ready .brand__fallback-logo,
.is-rive-ready .brand__fallback-text {
  display: none;
}

.hero {
  padding: clamp(36px, 5vw, 62px) 0 clamp(56px, 7vw, 88px);
  overflow: visible;
}

.hero .container {
  width: min(1160px, calc(100% - 40px));
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.hero__content {
  padding: clamp(28px, 5vw, 56px) clamp(20px, 6vw, 72px);
  border-radius: 30px;
}

.hero__title {
  max-width: 920px;
  margin: 18px auto 14px;
  font-size: clamp(2.55rem, 6.3vw, 4.85rem);
  letter-spacing: -.065em;
}

.hero__sub {
  max-width: 780px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero__actions {
  margin: 24px 0 14px;
  gap: 14px;
}

.hero__bullets {
  margin-top: 18px;
  gap: 12px 22px;
}

.hero__bullets li {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.chat-preview {
  margin-top: 34px;
}

@media (max-width: 980px) {
  .nav__wrap {
    gap: 14px;
  }

  .brand__wordmark {
    width: 180px;
  }

  .nav__links {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .nav .container {
    height: auto !important;
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .nav__wrap {
    min-height: 68px;
  }

  .brand {
    display: flex !important;
    align-items: center;
    flex: 1 1 auto;
    height: 54px !important;
    padding-right: 6px;
  }

  .brand__mark {
    width: 52px;
    height: 52px;
  }

  .brand__wordmark {
    width: min(46vw, 178px) !important;
    height: 48px !important;
    margin-left: 0 !important;
    flex: 0 1 auto !important;
  }

  .hero .container {
    width: min(100% - 24px, 720px);
    padding-left: 0 !important;
    padding-right: 0 !important;
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: 24px 18px;
  }

  .hero__title {
    font-size: clamp(2.2rem, 10vw, 3.15rem) !important;
    line-height: 1.03;
  }

  .hero__sub {
    font-size: 1rem;
  }
}

