@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --tz-bg: #06111a;
  --tz-bg-soft: #0b1620;
  --tz-bg-matte: #090c12;
  --tz-panel: rgba(255, 255, 255, 0.035);
  --tz-panel-strong: rgba(255, 255, 255, 0.06);
  --tz-ink: #f1ede5;
  --tz-muted: rgba(241, 237, 229, 0.74);
  --tz-line: rgba(255, 255, 255, 0.1);
  --tz-sand: #e7dac8;
  --tz-bone: #f3eade;
  --tz-gold: #bea57a;
  --tz-red: #8b2d25;
  --tz-red-bright: #cb6a49;
  --tz-red-deep: #4e1513;
  --tz-blue: #73c9f3;
  --tz-blue-soft: #b7e5ff;
  --tz-blue-deep: #103145;
  --tz-shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
}

body.home,
.home .wp-site-blocks {
  background: var(--tz-bg);
  color: var(--tz-ink);
  font-family: "Manrope", sans-serif;
}

.home .wp-site-blocks {
  overflow-x: clip;
}

.home .wp-block-template-part header,
.home .wp-block-template-part footer {
  position: relative;
  z-index: 20;
}

.home .wp-block-template-part header .wp-block-group {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--tz-ink);
}

.home .wp-block-site-title,
.home .wp-block-navigation-item__content {
  color: var(--tz-ink) !important;
}

.tz-homepage {
  position: relative;
  background:
    radial-gradient(circle at 85% 0%, rgba(115, 201, 243, 0.08), transparent 24rem),
    radial-gradient(circle at 0% 48%, rgba(139, 45, 37, 0.12), transparent 28rem),
    linear-gradient(180deg, #08131e 0%, #07111a 38%, #060b10 100%);
}

.tz-progress {
  position: fixed;
  top: 50%;
  right: clamp(0.8rem, 2vw, 1.8rem);
  z-index: 40;
  display: grid;
  gap: 1.6rem;
  padding: 0.45rem 0;
  transform: translateY(-50%);
  opacity: 0.22;
  transition: opacity 280ms ease, transform 280ms ease;
  --rail-start: 0.7rem;
  --rail-span: calc(100% - 1.4rem);
}

.tz-progress.is-awake {
  opacity: 0.88;
}

.tz-progress__track,
.tz-progress__fill {
  position: absolute;
  right: 0;
  width: 1px;
  pointer-events: none;
}

.tz-progress__track {
  top: var(--rail-start);
  height: var(--rail-span);
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0 2px,
    transparent 2px 8px
  );
}

.tz-progress__fill {
  top: var(--rail-start);
  height: 0;
  max-height: var(--rail-span);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.16);
  transition: height 100ms linear;
}

.tz-progress__item {
  position: relative;
  display: grid;
  min-height: 1.4rem;
  text-decoration: none;
  justify-items: end;
}

.tz-progress__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.34rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 999px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(6, 17, 26, 0.96);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.tz-progress__item:nth-of-type(1)::after {
  width: 0.36rem;
  height: 0.36rem;
  right: -0.18rem;
}

.tz-progress__item:nth-of-type(2)::after {
  width: 0.44rem;
  height: 0.44rem;
  right: -0.22rem;
}

.tz-progress__item:nth-of-type(3)::after {
  width: 0.52rem;
  height: 0.52rem;
  right: -0.26rem;
}

.tz-progress__item:nth-of-type(4)::after {
  width: 0.6rem;
  height: 0.6rem;
  right: -0.3rem;
}

.tz-progress__item:nth-of-type(5)::after {
  width: 0.68rem;
  height: 0.68rem;
  right: -0.34rem;
}

.tz-progress__index,
.tz-progress__label {
  display: none;
}

.tz-progress__item.is-active::after {
  transform: translateY(-50%) scale(1.05);
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.16);
}

.tz-progress__item.is-reached::after {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.92);
}

.tz-progress__item:last-child::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.56rem;
  width: 1.12rem;
  height: 1.12rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0);
  transform: translateY(-50%) scale(0.86);
  opacity: 0;
  pointer-events: none;
}

.tz-progress.is-complete .tz-progress__item:last-child::before {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.55);
  animation: tz-final-ring 2.6s linear infinite;
}

.tz-scene {
  position: relative;
}

.tz-scene__inner {
  width: min(1220px, calc(100% - 2rem));
  margin: 0 auto;
  position: relative;
}

.tz-kicker {
  margin: 0 0 1rem;
  color: var(--tz-gold);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}

.tz-homepage h1,
.tz-homepage h2,
.tz-homepage h3,
.tz-contact-shell h2,
.tz-contact-shell h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
}

.tz-homepage p,
.tz-homepage li,
.tz-contact-shell p,
.tz-contact-shell span,
.tz-contact-shell input,
.tz-contact-shell textarea,
.tz-contact-shell select,
.tz-button,
.tz-text-link {
  font-family: "Manrope", sans-serif;
}

.tz-homepage p {
  color: var(--tz-muted);
  line-height: 1.62;
}

.tz-glow-heading {
  text-shadow: 0 0 0 rgba(255,255,255,0), 0 0 24px rgba(183, 229, 255, 0.06);
}

[data-drift] {
  transform: translate3d(0, calc(var(--drift-y, 0px)), 0) scale(var(--drift-scale, 1));
  will-change: transform;
}

.tz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.tz-button:hover {
  transform: translateY(-2px);
}

.tz-button--primary {
  background: linear-gradient(135deg, var(--tz-red-bright), #e39471);
  color: #fff;
  box-shadow: 0 18px 44px rgba(203, 106, 73, 0.24);
}

.tz-button--ghost {
  border: 1px solid rgba(183, 229, 255, 0.28);
  color: var(--tz-blue-soft);
  background: rgba(115, 201, 243, 0.07);
  backdrop-filter: blur(8px);
}

.tz-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.8rem;
  color: var(--tz-blue-soft);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tz-text-link::after {
  content: "";
  width: 2.8rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(115, 201, 243, 0.8), transparent);
}

.tz-hero {
  min-height: min(100svh, 980px);
  display: grid;
  align-items: end;
}

.tz-hero__media,
.tz-hero__overlay,
.tz-hero__grain,
.tz-hero__scan {
  position: absolute;
  inset: 0;
}

.tz-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tz-hero__overlay {
  background:
    radial-gradient(circle at 72% 18%, rgba(115, 201, 243, 0.2), transparent 22rem),
    linear-gradient(180deg, rgba(6, 17, 26, 0.12), rgba(6, 17, 26, 0.92) 88%),
    linear-gradient(90deg, rgba(6, 17, 26, 0.82) 0%, rgba(6, 17, 26, 0.3) 52%, rgba(6, 17, 26, 0.78) 100%);
}

.tz-hero__grain {
  opacity: 0.06;
  mix-blend-mode: screen;
  background-image:
    linear-gradient(rgba(255,255,255,0.7) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.7) 1px, transparent 1px);
  background-size: 3px 3px;
}

.tz-hero__scan {
  opacity: 0.12;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0,
      transparent 18px,
      rgba(183, 229, 255, 0.03) 19px,
      transparent 20px
    );
  animation: tz-scan-drift 18s linear infinite;
}

.tz-hero__rings {
  position: absolute;
  inset: 16% 8% auto auto;
  width: min(24rem, 34vw);
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

.tz-hero__rings span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(183, 229, 255, 0.12);
  animation: tz-pulse-ring 8s ease-in-out infinite;
}

.tz-hero__rings span:last-child {
  inset: 18%;
  animation-delay: -3s;
}

.tz-hero__traces {
  position: absolute;
  inset: 12% 0 auto;
  z-index: 1;
  pointer-events: none;
}

.tz-hero__traces span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(183, 229, 255, 0.38), transparent);
  animation: tz-trace-slide 12s linear infinite;
}

.tz-hero__traces span:first-child {
  top: 0;
  left: 12%;
  width: 18rem;
}

.tz-hero__traces span:last-child {
  top: 4.5rem;
  right: 10%;
  width: 12rem;
  animation-direction: reverse;
  animation-duration: 15s;
}

.tz-hero__inner {
  position: relative;
  z-index: 2;
  padding: 8.8rem 0 6.4rem;
  max-width: 790px;
}

.tz-hero__headline {
  font-size: clamp(4.4rem, 10vw, 8.8rem);
  color: #fff;
  text-wrap: balance;
}

.tz-hero__copy {
  margin: 1.2rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.22rem);
  max-width: 36rem;
}

.tz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.tz-hero__signal {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  max-width: 35rem;
  margin-top: 2.8rem;
}

.tz-hero__signal-line {
  width: 4.75rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(115, 201, 243, 0.98), rgba(115, 201, 243, 0.16));
  box-shadow: 0 0 22px rgba(115, 201, 243, 0.35);
}

.tz-hero__signal p {
  margin: 0;
  color: rgba(231, 242, 250, 0.86);
  font-size: 0.96rem;
}

.tz-hero__horizon {
  position: absolute;
  inset: auto 0 1.8rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(115, 201, 243, 0.42), transparent);
  z-index: 2;
}

.tz-friction {
  padding: clamp(4.25rem, 7vw, 6rem) 0 clamp(5.5rem, 9vw, 7.5rem);
  background:
    radial-gradient(circle at 10% 12%, rgba(139, 45, 37, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(4, 8, 12, 0.35), rgba(4, 7, 10, 0.88));
}

.tz-friction__void,
.tz-friction__texture {
  position: absolute;
  inset: 0;
}

.tz-friction__void {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.12)),
    radial-gradient(circle at 100% 100%, rgba(203, 106, 73, 0.11), transparent 22rem);
}

.tz-friction__texture {
  opacity: 0.1;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,0.85) 25%, rgba(0,0,0,0.85) 75%, rgba(0,0,0,0));
}

.tz-friction__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.tz-friction__copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
  max-width: 10ch;
}

.tz-friction__copy p {
  max-width: 33rem;
}

.tz-friction__copy p + p {
  margin-top: 1rem;
}

.tz-friction__visual {
  position: relative;
  min-height: 30rem;
  display: grid;
  align-items: center;
}

.tz-friction__frame {
  position: relative;
  margin: 0 0 0 auto;
  width: min(34rem, 92%);
  aspect-ratio: 0.9 / 1;
  overflow: hidden;
  border-radius: 40px 8px 40px 8px;
  border: 1px solid rgba(203, 106, 73, 0.18);
  box-shadow: var(--tz-shadow);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03), transparent 16rem);
}

.tz-friction__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(78, 21, 19, 0.08), rgba(78, 21, 19, 0.58)),
    radial-gradient(circle at 20% 30%, rgba(203, 106, 73, 0.18), transparent 18rem);
  pointer-events: none;
}

.tz-friction__image {
  position: absolute;
  inset: 9% 8%;
  display: block;
  width: calc(100% - 16%);
  height: calc(100% - 18%);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.tz-friction__scribble {
  position: absolute;
  inset: 8% 8%;
  overflow: visible;
}

.tz-friction__scribble-path {
  fill: none;
  stroke: rgba(243, 108, 82, 0.96);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter: drop-shadow(0 0 10px rgba(243, 108, 82, 0.26));
}

.tz-friction__scribble-path--two {
  stroke-dashoffset: 1;
}

.tz-friction__markers {
  position: absolute;
  left: 0;
  bottom: 8%;
  display: grid;
  gap: 0.8rem;
}

.tz-friction__markers span {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: max-content;
  padding: 0.65rem 0.9rem;
  border-left: 1px solid rgba(203, 106, 73, 0.46);
  background: rgba(7, 11, 16, 0.82);
  color: rgba(243, 234, 222, 0.84);
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  transform: translateX(calc(var(--friction-marker-shift, 0px)));
  animation: tz-marker-float 6.8s ease-in-out infinite;
}

.tz-friction__markers span:nth-child(2) {
  animation-delay: -1.8s;
}

.tz-friction__markers span:nth-child(3) {
  animation-delay: -3.2s;
}

.tz-friction__markers span::before {
  content: "";
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 999px;
  background: var(--tz-red-bright);
  box-shadow: 0 0 14px rgba(203, 106, 73, 0.45);
}

.tz-builds {
  padding: clamp(5rem, 9vw, 7.5rem) 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.16), rgba(10, 18, 26, 0.7)),
    radial-gradient(circle at 80% 18%, rgba(115, 201, 243, 0.08), transparent 18rem);
}

.tz-builds::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1120px, calc(100% - 2rem));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.tz-builds__atmosphere {
  position: absolute;
  inset: 8% 0 0;
  pointer-events: none;
}

.tz-builds__atmosphere span {
  position: absolute;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  border: 1px solid rgba(183, 229, 255, 0.08);
  animation: tz-orbit-float 14s ease-in-out infinite;
}

.tz-builds__atmosphere span:nth-child(1) { left: 6%; top: 0; }
.tz-builds__atmosphere span:nth-child(2) { right: 12%; top: 10rem; width: 7rem; height: 7rem; animation-delay: -4s; }
.tz-builds__atmosphere span:nth-child(3) { left: 40%; bottom: 0; width: 5rem; height: 5rem; animation-delay: -8s; }

.tz-builds__header {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.tz-builds__header h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.tz-builds__cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  overflow: visible;
}

.tz-build-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--tz-shadow);
  min-height: 38.5rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(12, 26, 40, 0.96), rgba(7, 16, 25, 0.98)),
    radial-gradient(circle at 20% 12%, rgba(115, 201, 243, 0.12), transparent 12rem);
  transition: transform 320ms ease, border-color 320ms ease, box-shadow 320ms ease, background-color 320ms ease, z-index 0ms linear 160ms;
  --panel-glow-strength: 0;
  --panel-reached-strength: 0;
  transform: translateY(0) scale(1);
  transform-origin: center center;
  will-change: transform, box-shadow;
}

.tz-build-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.9rem;
  min-height: 100%;
  padding: 2rem 1.55rem 2rem;
}

.tz-build-card__eyebrow {
  margin: 0 0 1rem;
  color: var(--tz-gold);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
}

.tz-build-card h3 {
  font-size: clamp(1.38rem, 2.2vw, 2.02rem);
  max-width: 14ch;
  line-height: 0.98;
}

.tz-build-card__body {
  max-width: none;
  margin: 0;
  font-size: clamp(0.95rem, 1.05vw, 1.02rem);
  line-height: 1.48;
}

.tz-build-card__price {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.6rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(183, 229, 255, 0.16);
}

.tz-build-card__price-main {
  margin: 0;
  color: var(--tz-bone);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.tz-build-card__price-list {
  display: grid;
  gap: 0.32rem;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(241, 237, 229, 0.74);
  font-size: 0.94rem;
  line-height: 1.45;
}

.tz-build-card__price-list li {
  position: relative;
  padding-left: 1rem;
}

.tz-build-card__price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.38rem;
  height: 1px;
  background: rgba(146, 221, 255, 0.72);
}

.tz-build-card__shades {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tz-build-card__shades span {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  transition: transform 360ms ease, opacity 360ms ease, box-shadow 360ms ease;
}

.tz-build-card__shades span:nth-child(1) {
  inset: -8% auto auto -14%;
  width: 72%;
  height: 34%;
  background: linear-gradient(135deg, rgba(49, 104, 148, 0.42), rgba(14, 37, 59, 0.1));
}

.tz-build-card__shades span:nth-child(2) {
  inset: auto -10% 20% auto;
  width: 66%;
  height: 38%;
  background: linear-gradient(135deg, rgba(92, 170, 219, 0.22), rgba(16, 41, 66, 0.08));
}

.tz-build-card__shades span:nth-child(3) {
  inset: auto auto -12% 18%;
  width: 56%;
  height: 28%;
  background: linear-gradient(135deg, rgba(17, 48, 79, 0.72), rgba(7, 20, 33, 0.16));
}

.tz-build-card--service::before,
.tz-build-card--store::before,
.tz-build-card--booking::before {
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.tz-build-card--service::before {
  inset: 1.2rem auto auto 1.2rem;
  width: 5.2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(146, 221, 255, 0.9), transparent);
}

.tz-build-card--service .tz-build-card__shades span:nth-child(1) {
  inset: -5% auto auto -8%;
  width: 82%;
  height: 28%;
  background: linear-gradient(135deg, rgba(90, 180, 240, 0.34), rgba(17, 45, 70, 0.1));
}

.tz-build-card--service .tz-build-card__shades span:nth-child(2) {
  inset: auto auto 16% 58%;
  width: 26%;
  height: 26%;
  background: radial-gradient(circle at 34% 34%, rgba(134, 212, 255, 0.26), rgba(14, 39, 62, 0.06));
}

.tz-build-card--service .tz-build-card__shades span:nth-child(3) {
  inset: auto 12% -10% auto;
  width: 48%;
  height: 22%;
  background: linear-gradient(135deg, rgba(19, 55, 89, 0.8), rgba(7, 20, 33, 0.12));
}

.tz-build-card--store::before {
  inset: 1.15rem 1.2rem auto auto;
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 999px;
  border: 1px solid rgba(156, 223, 255, 0.22);
}

.tz-build-card--store::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 78% 16%, rgba(160, 221, 255, 0.12), transparent 10rem),
    radial-gradient(circle at 26% 76%, rgba(130, 206, 255, 0.08), transparent 9rem);
}

.tz-build-card--store .tz-build-card__shades span:nth-child(1) {
  inset: -2% auto auto -2%;
  width: 58%;
  height: 36%;
  background: radial-gradient(circle at 52% 46%, rgba(73, 149, 214, 0.22), rgba(13, 34, 55, 0.08));
}

.tz-build-card--store .tz-build-card__shades span:nth-child(2) {
  inset: 12% 8% auto auto;
  width: 20%;
  height: 20%;
  background: transparent;
  border: 1px solid rgba(129, 206, 255, 0.24);
  box-shadow: inset 0 0 18px rgba(115, 201, 243, 0.06);
}

.tz-build-card--store .tz-build-card__shades span:nth-child(3) {
  inset: auto -8% 18% auto;
  width: 62%;
  height: 42%;
  background: radial-gradient(circle at 36% 42%, rgba(126, 201, 255, 0.18), rgba(14, 38, 62, 0.06));
}

.tz-build-card--booking .tz-build-card__shades span:nth-child(1) {
  inset: 12% auto auto -12%;
  width: 74%;
  height: 18%;
  background: linear-gradient(135deg, rgba(33, 76, 118, 0.72), rgba(10, 24, 40, 0.08));
  transform: rotate(-18deg);
  border-radius: 22px;
}

.tz-build-card--booking .tz-build-card__shades span:nth-child(2) {
  inset: auto 10% 11% auto;
  width: 20%;
  height: 44%;
  background: linear-gradient(180deg, rgba(103, 185, 247, 0.18), rgba(13, 33, 53, 0.08));
  border-radius: 24px;
}

.tz-build-card--booking .tz-build-card__shades span:nth-child(3) {
  inset: auto auto -10% 20%;
  width: 48%;
  height: 24%;
  background: linear-gradient(135deg, rgba(31, 83, 131, 0.82), rgba(10, 25, 42, 0.14));
}

.tz-build-card--booking::before {
  inset: auto auto 1.5rem 1.2rem;
  width: 1px;
  height: 5rem;
  background: linear-gradient(180deg, rgba(114, 198, 255, 0.74), transparent);
}

.tz-build-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 82% 18%, rgba(160, 221, 255, 0.16), transparent 12rem);
  opacity: 0.55;
  pointer-events: none;
}

.tz-build-card--service::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 22% 16%, rgba(171, 228, 255, 0.16), transparent 11rem);
}

.tz-build-card--store::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 26%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(circle at 78% 16%, rgba(160, 221, 255, 0.12), transparent 10rem),
    radial-gradient(circle at 26% 76%, rgba(130, 206, 255, 0.08), transparent 9rem);
}

.tz-build-card--booking::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 30%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(circle at 70% 82%, rgba(160, 221, 255, 0.16), transparent 12rem);
}

.tz-build-card.is-panel-active {
  z-index: 6;
  border-color: rgba(179, 226, 255, calc(0.26 + (0.42 * var(--panel-glow-strength))));
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(145, 210, 255, calc(0.22 + (0.28 * var(--panel-glow-strength)))),
    0 0 0 2px rgba(188, 236, 255, calc(0.12 + (0.22 * var(--panel-glow-strength)))),
    0 0 calc(62px + (92px * var(--panel-glow-strength))) rgba(116, 197, 255, calc(0.28 + (0.32 * var(--panel-glow-strength)))),
    0 0 calc(18px + (20px * var(--panel-glow-strength))) rgba(225, 246, 255, calc(0.12 + (0.18 * var(--panel-glow-strength)))),
    inset 0 0 0 1px rgba(214, 242, 255, calc(0.18 + (0.24 * var(--panel-glow-strength))));
  background:
    linear-gradient(180deg, rgba(20, 44, 66, 0.98), rgba(10, 22, 34, 0.98)),
    radial-gradient(circle at 20% 12%, rgba(146, 221, 255, 0.22), transparent 14rem);
}

.tz-build-card.is-panel-active::after {
  opacity: 1;
}

.tz-build-card.is-panel-active .tz-build-card__shades span:nth-child(1) {
  transform: translate3d(10px, -8px, 0) scale(1.03);
  box-shadow: 0 0 28px rgba(103, 190, 255, 0.16);
}

.tz-build-card.is-panel-active .tz-build-card__shades span:nth-child(2) {
  transform: translate3d(-12px, 10px, 0) scale(1.04);
  box-shadow: 0 0 36px rgba(146, 221, 255, 0.16);
}

.tz-build-card.is-panel-active .tz-build-card__shades span:nth-child(3) {
  transform: translate3d(8px, 8px, 0) scale(1.02);
}

.tz-build-card.is-panel-reached {
  border-color: rgba(148, 207, 245, 0.26);
  background:
    linear-gradient(180deg, rgba(16, 35, 53, 0.98), rgba(8, 19, 29, 0.98)),
    radial-gradient(circle at 18% 10%, rgba(113, 190, 245, 0.14), transparent 12rem);
  box-shadow:
    0 22px 78px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(116, 191, 245, calc(0.12 + (0.1 * var(--panel-reached-strength)))),
    0 0 42px rgba(109, 188, 255, calc(0.1 + (0.16 * var(--panel-reached-strength)))),
    inset 0 0 0 1px rgba(173, 223, 255, calc(0.08 + (0.12 * var(--panel-reached-strength))));
}

.tz-director {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    linear-gradient(180deg, rgba(6, 9, 13, 0.92), rgba(9, 14, 20, 0.86)),
    radial-gradient(circle at 15% 85%, rgba(115, 201, 243, 0.06), transparent 20rem);
}

.tz-director__grid {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,0.7), transparent 75%);
  animation: tz-grid-drift 18s linear infinite;
}

.tz-director__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.tz-director__visual {
  position: relative;
  min-height: 34rem;
}

.tz-director__portrait,
.tz-director__detail {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--tz-shadow);
}

.tz-director__portrait {
  position: absolute;
  inset: 0 10% 6% 0;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #06090d;
}

.tz-director__detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(16rem, 42%);
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  border: 1px solid rgba(115, 201, 243, 0.14);
  background: #081018;
  animation: tz-detail-breathe 7.4s ease-in-out infinite;
}

.tz-director__portrait img,
.tz-director__detail img,
.tz-director__portrait video,
.tz-director__detail video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tz-director__portrait::after,
.tz-director__detail::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 17, 26, 0.08), rgba(6, 17, 26, 0.44)),
    radial-gradient(circle at 74% 18%, rgba(115, 201, 243, 0.12), transparent 30%);
  pointer-events: none;
}

.tz-director__copy h2 {
  font-size: clamp(3rem, 5vw, 4.9rem);
  max-width: 11ch;
}

.tz-director__copy p {
  max-width: 34rem;
}

.tz-director__copy p + p {
  margin-top: 1rem;
}

.tz-director__note {
  margin-top: 1.5rem;
  color: rgba(241, 237, 229, 0.84);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  line-height: 1.6;
  max-width: 28rem;
}

.tz-contact-shell {
  padding: clamp(5.2rem, 10vw, 8rem) 0 7rem;
  background:
    linear-gradient(180deg, rgba(11, 17, 24, 0.96), rgba(12, 19, 26, 1)),
    radial-gradient(circle at 85% 0%, rgba(115, 201, 243, 0.05), transparent 20rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.tz-contact-shell__mist,
.tz-contact-shell__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tz-contact-shell__mist {
  background:
    radial-gradient(circle at 80% 20%, rgba(115, 201, 243, 0.09), transparent 18rem),
    radial-gradient(circle at 15% 100%, rgba(255, 255, 255, 0.03), transparent 24rem);
  animation: tz-mist-breathe 16s ease-in-out infinite;
}

.tz-contact-shell__scan {
  opacity: 0.06;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: translateY(calc(var(--contact-progress, 0) * 18px));
}

.tz-contact-shell__inner {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.tz-contact-shell__intro h2 {
  font-size: clamp(3rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.tz-contact-shell__intro p:last-child {
  max-width: 28rem;
}

.tz-contact-card {
  border-radius: 34px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.038), rgba(255,255,255,0.022));
  box-shadow: 0 20px 72px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  animation: tz-card-breathe 8s ease-in-out infinite;
}

.tz-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tz-contact-form label,
.tz-contact-form__message {
  display: grid;
  gap: 0.45rem;
}

.tz-contact-form__trap {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.tz-contact-form span {
  color: rgba(241, 237, 229, 0.82);
  font-size: 0.92rem;
}

.tz-contact-form input,
.tz-contact-form select,
.tz-contact-form textarea {
  box-sizing: border-box;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(241, 237, 229, 0.94);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  font: inherit;
  line-height: 1.4;
  appearance: none;
}

.tz-contact-form select {
  color: rgba(241, 237, 229, 0.92);
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(241, 237, 229, 0.82) 50%),
    linear-gradient(135deg, rgba(241, 237, 229, 0.82) 50%, transparent 50%);
  background-position:
    calc(100% - 1.4rem) calc(50% - 0.1rem),
    calc(100% - 1rem) calc(50% - 0.1rem);
  background-size: 0.45rem 0.45rem, 0.45rem 0.45rem;
  background-repeat: no-repeat;
  padding-right: 3rem;
}

.tz-contact-form select option {
  color: #112131;
  background: #efe3d7;
}

.tz-contact-form textarea {
  resize: vertical;
  min-height: 11rem;
}

.tz-contact-form__footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-top: 1.2rem;
}

.tz-contact-form__status {
  flex: 1 1 auto;
  margin: 0;
  min-height: 1.2em;
  color: rgba(242, 236, 225, 0.72);
}

.tz-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  min-width: 14rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid rgba(219, 160, 115, 0.38);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(201, 104, 73, 0.96), rgba(224, 140, 103, 0.96));
  box-shadow: 0 16px 40px rgba(201, 104, 73, 0.22);
  color: #fff;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.tz-contact-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(201, 104, 73, 0.28);
}

.tz-contact-submit:disabled {
  cursor: wait;
}

.tz-contact-submit__signal {
  position: absolute;
  inset: 0 auto 0 -35%;
  width: 35%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  opacity: 0;
  transform: skewX(-20deg);
}

.tz-contact-form.is-submitting .tz-contact-submit {
  transform: scale(0.98);
  opacity: 0.92;
}

.tz-contact-form.is-submitting .tz-contact-submit__label {
  opacity: 0.88;
}

.tz-contact-form.is-submitting .tz-contact-submit__signal {
  opacity: 1;
  animation: tz-signal-send 900ms ease forwards;
}

.tz-contact-success {
  display: grid;
  gap: 0.7rem;
}

.tz-contact-success[hidden] {
  display: none !important;
}

.tz-contact-card.is-success .tz-contact-form {
  display: none;
}

.tz-contact-card.is-success .tz-contact-success {
  animation: tz-fade-up 500ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.tz-contact-success h3 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.tz-reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1), transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.tz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes tz-scan-drift {
  from { transform: translateY(-2%); }
  to { transform: translateY(2%); }
}

@keyframes tz-pulse-ring {
  0%, 100% { transform: scale(0.96); opacity: 0.32; }
  50% { transform: scale(1.04); opacity: 0.58; }
}

@keyframes tz-trace-slide {
  from { transform: translateX(-10px); opacity: 0.15; }
  50% { opacity: 0.62; }
  to { transform: translateX(22px); opacity: 0.15; }
}

@keyframes tz-marker-float {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -7px; }
}

@keyframes tz-orbit-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

@keyframes tz-grid-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(18px, 12px, 0); }
}

@keyframes tz-orbit-breathe {
  0%, 100% { opacity: 0.72; filter: blur(0); }
  50% { opacity: 1; filter: blur(2px); }
}

@keyframes tz-detail-breathe {
  0%, 100% { box-shadow: 0 28px 100px rgba(0, 0, 0, 0.42); }
  50% { box-shadow: 0 34px 112px rgba(0, 0, 0, 0.52); }
}

@keyframes tz-mist-breathe {
  0%, 100% { opacity: 0.92; filter: blur(0); }
  50% { opacity: 1; filter: blur(6px); }
}

@keyframes tz-card-breathe {
  0%, 100% { box-shadow: 0 20px 72px rgba(0, 0, 0, 0.28); }
  50% { box-shadow: 0 26px 86px rgba(0, 0, 0, 0.34); }
}

@keyframes tz-final-ring {
  from {
    transform: translateY(-50%) rotate(0deg) scale(0.9);
  }

  to {
    transform: translateY(-50%) rotate(360deg) scale(1.08);
  }
}

@media (max-width: 1080px) {
  .tz-builds__cluster {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .tz-friction__inner,
  .tz-director__inner,
  .tz-contact-shell__inner {
    grid-template-columns: 1fr;
  }

  .tz-friction__visual,
  .tz-director__visual {
    min-height: 26rem;
  }

  .tz-friction__markers {
    left: 1rem;
    bottom: 1rem;
  }
}

@media (max-width: 720px) {
  .tz-progress {
    display: none;
  }

  .tz-scene__inner,
  .tz-contact-shell__inner {
    width: min(100% - 1.2rem, 100%);
  }

  .tz-hero__inner {
    padding: 7.6rem 0 4.6rem;
  }

  .tz-hero__headline {
    font-size: clamp(3.4rem, 16vw, 5.4rem);
  }

  .tz-hero__signal {
    grid-template-columns: 1fr;
  }

  .tz-friction,
  .tz-builds,
  .tz-director,
  .tz-contact-shell {
    padding-top: 4.25rem;
    padding-bottom: 4.5rem;
  }

  .tz-friction__frame,
  .tz-build-card--service,
  .tz-director__portrait {
    border-radius: 26px;
  }

  .tz-friction__frame {
    width: 100%;
  }

  .tz-director__portrait {
    inset: 0 0 18% 0;
  }

  .tz-director__detail {
    width: 40%;
  }

  .tz-contact-card {
    padding: 1.25rem;
  }
}
