/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Apr 14 2026 | 16:17:29 */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;700;800&display=swap');

.taxik-hero,
.taxik-hero * {
  box-sizing: border-box;
}

.taxik-hero {
  --hero-bg: #050816;
  --hero-bg-soft: #0b1430;
  --hero-blue: #6ddcff;
  --hero-blue-strong: #15c3ff;
  --hero-gold: #ffd45c;
  --hero-text: #f7fbff;
  --hero-muted: rgba(230, 239, 252, 0.78);
  --hero-border: rgba(255, 255, 255, 0.12);
  --hero-shadow: 0 28px 90px rgba(0, 0, 0, 0.34);
  --mx: 50%;
  --my: 50%;
  --img-x: 0px;
  --img-y: 0px;
  --card-rx: 0deg;
  --card-ry: 0deg;
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 14% 16%, rgba(109, 220, 255, 0.18), transparent 30%),
    radial-gradient(circle at 82% 14%, rgba(255, 212, 92, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(5, 8, 22, 0.52) 0%, rgba(5, 8, 22, 0.7) 55%, rgba(5, 8, 22, 0.98) 100%),
    #050816;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.taxik-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(5, 8, 22, 0), rgba(5, 8, 22, 0.95));
  z-index: 2;
  pointer-events: none;
}

.taxik-hero__media,
.taxik-hero__media-overlay,
.taxik-hero__cursor,
.taxik-hero__grid,
.taxik-hero__noise {
  position: absolute;
  inset: 0;
}

.taxik-hero__media {
  z-index: 0;
  pointer-events: none;
}

.taxik-hero__media img {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.82;
  transform: translate3d(var(--img-x), var(--img-y), 0) scale(1.05);
  transition: transform 0.32s ease-out;
  filter: saturate(1.06) contrast(1.05);
}

.taxik-hero__media-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(5, 8, 22, 1) 0%,
      rgba(5, 8, 22, 0.96) 24%,
      rgba(5, 8, 22, 0.84) 40%,
      rgba(5, 8, 22, 0.6) 55%,
      rgba(5, 8, 22, 0.22) 72%,
      rgba(5, 8, 22, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 8, 22, 0.1) 0%,
      rgba(5, 8, 22, 0.28) 100%
    );
}

.taxik-hero__glow,
.taxik-hero__cursor {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 1;
  filter: blur(70px);
}

.taxik-hero__glow--blue {
  width: 360px;
  height: 360px;
  left: -70px;
  top: 90px;
  background: rgba(63, 190, 255, 0.22);
  animation: taxikFloatGlow 10s ease-in-out infinite;
}

.taxik-hero__glow--gold {
  width: 420px;
  height: 420px;
  right: -120px;
  top: -80px;
  background: rgba(255, 208, 92, 0.18);
  animation: taxikFloatGlow 13s ease-in-out infinite reverse;
}

.taxik-hero__cursor {
  width: 420px;
  height: 420px;
  left: var(--mx);
  top: var(--my);
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle, rgba(109, 220, 255, 0.26) 0%, rgba(109, 220, 255, 0.08) 38%, rgba(109, 220, 255, 0) 70%);
  transition: left 0.18s linear, top 0.18s linear;
}

.taxik-hero__grid {
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.12;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 72%, transparent 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.5) 72%, transparent 100%);
}

.taxik-hero__noise {
  z-index: 1;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.9) 0 0.7px, transparent 1px),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.8) 0 0.7px, transparent 1px),
    radial-gradient(circle at 60% 75%, rgba(255, 255, 255, 0.72) 0 0.8px, transparent 1px),
    radial-gradient(circle at 82% 65%, rgba(255, 255, 255, 0.72) 0 0.8px, transparent 1px);
  background-size: 180px 180px;
}

.taxik-hero__shell {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  min-height: 100svh;
  margin: 0 auto;
  padding: 110px 24px 90px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 430px);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}

.taxik-content {
  max-width: 760px;
  position: relative;
  z-index: 5;
}

.taxik-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid rgba(109, 220, 255, 0.22);
  border-radius: 999px;
  background: rgba(109, 220, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 0 35px rgba(109, 220, 255, 0.12);
  color: #8dddff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.taxik-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6ddcff, #ffd45c);
  box-shadow: 0 0 18px rgba(109, 220, 255, 0.45);
}

.taxik-title {
  margin: 26px 0 0;
  max-width: 920px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #fff;
}

.taxik-title-line {
  display: block;
}

.taxik-gradient {
  display: block;
  margin-top: 8px;
  background: linear-gradient(90deg, #ffffff 0%, #8dddff 42%, #ffd45c 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.taxik-word-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 0 10px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.taxik-word {
  display: inline-block;
  text-shadow: 0 0 32px rgba(109, 220, 255, 0.16);
  animation: taxikWordIn 0.55s ease;
}

.taxik-subtitle {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--hero-muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.72;
}

.taxik-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

.taxik-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 62px;
  padding: 0 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.taxik-btn-primary {
  color: #07101d;
  background: linear-gradient(135deg, #ffffff 0%, #dff6ff 100%);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.16);
}

.taxik-btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 24px 84px rgba(255, 255, 255, 0.2);
}

.taxik-btn-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.taxik-btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
}

.taxik-btn-arrow {
  font-size: 18px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.taxik-btn-primary:hover .taxik-btn-arrow {
  transform: translateX(4px);
}

.taxik-helper {
  margin-top: 16px;
  color: rgba(233, 241, 255, 0.62);
  font-size: 14px;
  letter-spacing: 0.02em;
}

.taxik-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.taxik-pill {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.taxik-pill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 24%, rgba(255, 255, 255, 0.16) 50%, transparent 76%);
  transform: translateX(-120%);
  transition: transform 0.8s ease;
}

.taxik-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
}

.taxik-pill:hover::before {
  transform: translateX(120%);
}

.taxik-pill-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--hero-blue);
}

.taxik-hero__panel {
  position: relative;
  z-index: 4;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.taxik-trip-card {
  position: relative;
  width: min(100%, 410px);
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(19, 32, 68, 0.78) 0%, rgba(8, 14, 36, 0.84) 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: var(--hero-shadow);
  transform:
    perspective(1200px)
    rotateX(var(--card-rx))
    rotateY(var(--card-ry))
    rotateZ(-5deg);
  transform-style: preserve-3d;
  transition: transform 0.3s ease-out;
}

.taxik-trip-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.taxik-trip-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.taxik-trip-card__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.56);
}

.taxik-trip-card__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
}

.taxik-trip-card__status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5df49a;
  box-shadow: 0 0 0 5px rgba(93, 244, 154, 0.15);
  animation: taxikPulse 1.9s ease infinite;
}

.taxik-trip-card__route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.taxik-stop {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.taxik-stop__code {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #fff;
}

.taxik-stop small {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.taxik-line {
  position: relative;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.3);
}

.taxik-line::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 36%;
  height: 2px;
  background: linear-gradient(90deg, rgba(109, 220, 255, 0), rgba(109, 220, 255, 1), rgba(255, 212, 92, 0));
  animation: taxikRouteShine 3.8s ease-in-out infinite;
}

.taxik-line__plane {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -58%) rotate(9deg);
  font-size: 20px;
  color: var(--hero-gold);
  animation: taxikFly 4.8s ease-in-out infinite;
}

.taxik-trip-card__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.taxik-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.35;
}

.taxik-step span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.taxik-step.is-active {
  background: rgba(109, 220, 255, 0.12);
  border-color: rgba(109, 220, 255, 0.18);
  color: #f6fbff;
}

.taxik-step.is-active span {
  background: linear-gradient(135deg, #6ddcff, #15c3ff);
  color: #04101f;
}

.taxik-trip-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.taxik-trip-card__facts div {
  padding: 14px 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.taxik-trip-card__facts span {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.54);
}

.taxik-trip-card__facts strong {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #fff;
}

.taxik-float-note {
  position: absolute;
  z-index: 5;
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  animation: taxikSoftFloat 6s ease-in-out infinite;
}

.taxik-float-note span {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.58);
}

.taxik-float-note--top {
  top: 10%;
  left: -4%;
  transform: rotate(-7deg);
}

.taxik-float-note--bottom {
  right: 0;
  bottom: 10%;
  transform: rotate(7deg);
  animation-delay: 0.8s;
}

.taxik-scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 4;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.taxik-scroll-circle {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  animation: taxikBounceDown 2s ease-in-out infinite;
}

@keyframes taxikWordIn {
  from {
    opacity: 0;
    transform: translateY(18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes taxikBounceDown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

@keyframes taxikSoftFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-7deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

.taxik-float-note--bottom {
  animation-name: taxikSoftFloatAlt;
}

@keyframes taxikSoftFloatAlt {
  0%,
  100% {
    transform: translateY(0) rotate(7deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@keyframes taxikFloatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(22px, -18px, 0) scale(1.05);
  }
}

@keyframes taxikPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.78;
  }
}

@keyframes taxikFly {
  0%,
  100% {
    left: 0;
    transform: translate(-50%, -58%) rotate(9deg);
  }
  50% {
    left: 100%;
    transform: translate(-50%, -42%) rotate(12deg);
  }
}

@keyframes taxikRouteShine {
  0% {
    left: -12%;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  70% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@media (max-width: 1180px) {
  .taxik-hero__media img {
    width: 64%;
  }

  .taxik-float-note--top {
    left: 2%;
  }
}

@media (max-width: 991px) {
  .taxik-hero {
    min-height: auto;
  }

  .taxik-hero__shell {
    min-height: auto;
    padding: 104px 20px 92px;
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .taxik-hero__media img {
    width: 100%;
    opacity: 0.34;
    object-position: 72% center;
  }

  .taxik-hero__media-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(5, 8, 22, 0.52) 0%,
        rgba(5, 8, 22, 0.8) 46%,
        rgba(5, 8, 22, 0.98) 100%
      ),
      linear-gradient(
        90deg,
        rgba(5, 8, 22, 0.92) 0%,
        rgba(5, 8, 22, 0.72) 55%,
        rgba(5, 8, 22, 0.45) 100%
      );
  }

  .taxik-hero__panel {
    min-height: auto;
    justify-content: flex-start;
  }

  .taxik-trip-card {
    width: min(100%, 440px);
    transform: none;
  }

  .taxik-float-note {
    display: none;
  }
}

@media (max-width: 767px) {
  .taxik-hero__shell {
    padding: 92px 18px 104px;
  }

  .taxik-badge {
    padding: 11px 15px;
    letter-spacing: 0.18em;
    font-size: 10px;
  }

  .taxik-title {
    font-size: clamp(38px, 13vw, 58px);
    line-height: 0.96;
  }

  .taxik-word-wrap {
    min-width: 134px;
    padding: 0 6px 4px;
  }

  .taxik-subtitle {
    line-height: 1.68;
    font-size: 17px;
  }

  .taxik-actions {
    flex-direction: column;
  }

  .taxik-btn,
  .taxik-pill {
    width: 100%;
  }

  .taxik-trip-card {
    padding: 20px;
    border-radius: 24px;
  }

  .taxik-trip-card__route {
    gap: 10px;
  }

  .taxik-step {
    font-size: 12px;
    padding: 11px 10px;
  }

  .taxik-trip-card__facts {
    grid-template-columns: 1fr;
  }

  .taxik-scroll {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .taxik-hero__glow,
  .taxik-trip-card__status i,
  .taxik-line::before,
  .taxik-line__plane,
  .taxik-float-note,
  .taxik-scroll-circle,
  .taxik-word {
    animation: none !important;
  }

  .taxik-hero__cursor,
  .taxik-hero__media img,
  .taxik-trip-card {
    transition: none !important;
  }
}
