@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Plus+Jakarta+Sans:wght@500;600;700;800&family=Poppins:wght@500;600;700&display=swap");

/**
 * Timezer landing v2 — light, product-led SaaS layout.
 * Everything is scoped under .tz2 so it cannot leak into other hotsite pages.
 * The header/footer overrides are prefixed with `html` to outrank landing-2025.css.
 */

html {
  color-scheme: only light;
}

.tz2 {
  color-scheme: only light;
  --tz-font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --tz-display: "Plus Jakarta Sans", var(--tz-font);

  --tz-ink: #0d1220;
  --tz-ink-2: #2b3346;
  --tz-muted: #626d84;
  --tz-faint: #8b94a7;

  --tz-bg: #ffffff;
  --tz-surface: #f6f7fb;
  --tz-surface-2: #fbfcff;
  --tz-border: #e7eaf1;
  --tz-border-strong: #d8dde8;

  --tz-brand: #4f46e5;
  --tz-brand-strong: #4338ca;
  --tz-brand-soft: #eef1fe;
  --tz-violet: #7c3aed;
  --tz-teal: #0d9488;
  --tz-amber: #b45309;
  --tz-rose: #be123c;
  --tz-green: #059669;

  --tz-radius: 14px;
  --tz-radius-lg: 22px;
  --tz-radius-xl: 30px;

  --tz-shadow-xs: 0 1px 2px rgba(13, 18, 32, 0.05);
  --tz-shadow-sm: 0 2px 6px rgba(13, 18, 32, 0.05), 0 1px 2px rgba(13, 18, 32, 0.04);
  --tz-shadow-md: 0 12px 28px -12px rgba(13, 18, 32, 0.16), 0 2px 6px rgba(13, 18, 32, 0.04);
  --tz-shadow-lg: 0 40px 80px -32px rgba(13, 18, 32, 0.32), 0 8px 24px -12px rgba(13, 18, 32, 0.12);

  --tz-ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  font-family: var(--tz-font);
  color: var(--tz-ink-2);
  background: var(--tz-bg);
  line-height: 1.65;
  font-size: 16px;
  padding-top: 74px;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  position: relative;
  z-index: 0;
}

.tz2 *,
.tz2 *::before,
.tz2 *::after {
  box-sizing: border-box;
}

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

/* Neutralize Arsha's global `section { padding: 60px 0 }` */
.tz2 section {
  padding: 0;
}

.tz2 .tz2-brand-banner {
  position: relative;
  width: 100%;
  /* Full-bleed brand strip. Prefer height (not aspect-ratio+max-height),
     otherwise browsers shrink width to preserve the ratio — leaving white space. */
  height: 34vh;
  overflow: hidden;
  line-height: 0;
  padding: 0;
  background: #0b1020;
}

.tz2 .tz2-brand-banner picture {
  display: block;
  width: 100%;
  height: 100%;
}

.tz2 .tz2-brand-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 767px) {
  .tz2 .tz2-brand-banner {
    height: auto;
    overflow: visible;
  }

  .tz2 .tz2-brand-banner picture,
  .tz2 .tz2-brand-banner img {
    height: auto;
    object-fit: contain;
  }
}

/* ============================================================
   Niche picker (/hotsite/v2) — photo cards
   ============================================================ */

.tz2.tz2--choose {
  padding-top: 0;
}

.tz2 .tz2-choose {
  padding: clamp(2rem, 5vw, 3.25rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.tz2 h1.tz2-h2.tz3-choose-title {
  font-family: "Poppins", var(--tz-font);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #2d3446;
  text-align: center;
  margin: 0 0 clamp(1.5rem, 3.6vw, 2.25rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.tz2 .tz2-choose--hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
}

.tz2 .tz2-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}

.tz2 .tz2-choose-grid--photo {
  max-width: 960px;
  gap: clamp(1.35rem, 2.8vw, 2rem);
}

.tz2 .tz2-choose-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--tz-radius-lg);
  background: #fff;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-xs);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s var(--tz-ease), box-shadow 0.22s var(--tz-ease), border-color 0.22s var(--tz-ease);
}

.tz2 .tz2-choose-card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.28);
  box-shadow: var(--tz-shadow-md);
  text-decoration: none;
  color: inherit;
}

.tz2 .tz2-choose-card:focus-visible {
  outline: 3px solid var(--tz-brand);
  outline-offset: 3px;
}

.tz2 .tz2-choose-card .tz2-use-art {
  height: 112px;
}

.tz2 .tz2-choose-card--photo .tz2-choose-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--tz-surface);
  border-radius: var(--tz-radius-lg) var(--tz-radius-lg) 0 0;
  border-top: 4px solid #4f46e5;
  box-shadow: inset 0 1px 0 rgba(11, 16, 32, 0.9);
}

.tz2 .tz2-choose-fallback {
  position: absolute;
  inset: 0;
  height: 100% !important;
}

.tz2 .tz2-choose-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.45s var(--tz-ease);
}

.tz2 .tz2-choose-card--photo:hover .tz2-choose-img {
  transform: scale(1.04);
}

.tz2 .tz2-choose-overlay {
  display: none;
}

.tz2 .tz2-choose-body {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 1.15rem 1.2rem 1.2rem;
}

.tz2 .tz2-choose-body .tz2-h3 {
  margin: 0 0 0.15rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tz-brand);
}

.tz2 .tz2-choose-body p {
  font-size: 0.8rem;
  color: var(--tz-muted);
  margin: 0;
  line-height: 1.4;
}

.tz2 .tz2-choose-tagline {
  font-weight: 600;
  color: var(--tz-ink-2) !important;
  font-size: 0.8125rem !important;
}

.tz2 .tz2-choose-examples {
  font-size: 0.75rem !important;
  color: var(--tz-faint) !important;
}

.tz2 .tz2-choose-cta {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--tz-brand);
  font-size: 0.8125rem;
}

/* ============================================================
   Discovery / profession & resource cards
   ============================================================ */

.tz2 .tz2-disc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tz2 .tz2-disc-rail {
  margin-top: 0.25rem;
}

.tz2 .tz2-disc-rail .tz2-disc-rail-nav {
  justify-content: flex-end;
  margin-bottom: 0.85rem;
}

.tz2 .tz2-disc-rail .tz2-rail {
  grid-auto-columns: minmax(232px, 72%);
}

.tz2 .tz2-disc-rail .tz2-disc-card {
  min-height: 240px;
}

@media (min-width: 1025px) {
  .tz2 .tz2-disc-rail .tz2-disc-rail-nav,
  .tz2 .tz2-disc-rail .tz2-rail-fade {
    display: none;
  }

  .tz2 .tz2-disc-rail .tz2-rail {
    display: grid;
    grid-auto-flow: unset;
    grid-auto-columns: unset;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
    padding: 0;
    margin: 0;
    gap: 1rem;
  }
}

.tz2 .tz2-disc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  border-radius: var(--tz-radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--tz-ink);
  box-shadow: var(--tz-shadow-xs);
  transition: transform 0.22s var(--tz-ease), box-shadow 0.22s var(--tz-ease);
}

.tz2 .tz2-disc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--tz-shadow-md);
  text-decoration: none;
  color: #fff;
}

.tz2 .tz2-disc-card:focus-visible {
  outline: 3px solid var(--tz-brand);
  outline-offset: 3px;
}

.tz2 .tz2-disc-card-media {
  position: absolute;
  inset: 0;
}

.tz2 .tz2-disc-card-fallback {
  position: absolute;
  inset: 0;
  height: 100% !important;
  opacity: 0.9;
}

.tz2 .tz2-disc-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--tz-ease);
}

.tz2 .tz2-disc-card:hover .tz2-disc-card-img {
  transform: scale(1.05);
}

.tz2 .tz2-disc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 18, 32, 0.15) 20%, rgba(13, 18, 32, 0.82) 100%);
  transition: background 0.22s var(--tz-ease);
}

.tz2 .tz2-disc-card:hover .tz2-disc-card-overlay {
  background: linear-gradient(180deg, rgba(13, 18, 32, 0.25) 10%, rgba(13, 18, 32, 0.9) 100%);
}

.tz2 .tz2-disc-card-arrow {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  transition: transform 0.22s var(--tz-ease);
  z-index: 2;
}

.tz2 .tz2-disc-card:hover .tz2-disc-card-arrow,
.tz2 .tz2-choose-card:hover .tz2-disc-card-arrow {
  transform: translateX(3px);
}

.tz2 .tz2-choose-media .tz2-disc-card-arrow {
  color: #fff;
  z-index: 4;
}

.tz2 .tz2-disc-card-body {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: 1.1rem 1.15rem 1.2rem;
}

.tz2 .tz2-disc-card-title {
  margin: 0 0 0.25rem;
  font-family: var(--tz-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
}

.tz2 .tz2-disc-card-line {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.86);
}

.tz2 .tz2-hero--compact {
  padding-bottom: 1.5rem;
}

.tz2 .tz2-hero--compact .tz2-hero-title {
  max-width: 18ch;
}

.tz2 .tz2-breadcrumbs {
  padding-top: 1rem;
  padding-bottom: 0;
  font-size: 0.85rem;
}

.tz2 .tz2-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: var(--tz-muted);
}

.tz2 .tz2-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.5rem;
  color: var(--tz-faint);
}

.tz2 .tz2-breadcrumbs a {
  color: var(--tz-muted);
  text-decoration: none;
}

.tz2 .tz2-breadcrumbs a:hover {
  color: var(--tz-brand);
}

.tz2 .tz2-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.tz2 .tz2-lifestyle {
  position: relative;
  border-radius: var(--tz-radius-lg);
  overflow: hidden;
  min-height: 280px;
  background: var(--tz-surface);
}

.tz2 .tz2-lifestyle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 280px;
}

.tz2 .tz2-lifestyle-fallback {
  position: absolute;
  inset: 0;
  height: 100% !important;
}

.tz2 .tz2-vertical-hero-art {
  position: relative;
  border-radius: var(--tz-radius-lg);
  overflow: hidden;
  min-height: 320px;
  aspect-ratio: 4 / 5;
}

.tz2 .tz2-vertical-hero-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tz2 .tz2-cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tz2 .tz2-facts {
  margin-top: 1.25rem;
}

@media (max-width: 1024px) {
  .tz2 .tz2-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tz2 .tz2-choose-grid,
  .tz2 .tz2-choose-grid--photo {
    grid-template-columns: 1fr;
    max-width: 420px;
    gap: 2rem;
  }

  .tz2 .tz2-cards--2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .tz2 .tz2-disc-card {
    min-height: 200px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tz2 .tz2-choose-card,
  .tz2 .tz2-disc-card,
  .tz2 .tz2-choose-img,
  .tz2 .tz2-disc-card-img,
  .tz2 .tz2-disc-card-arrow {
    transition: none;
  }

  .tz2 .tz2-choose-card:hover,
  .tz2 .tz2-disc-card:hover {
    transform: none;
  }

  .tz2 .tz2-choose-card:hover .tz2-choose-img,
  .tz2 .tz2-disc-card:hover .tz2-disc-card-img {
    transform: none;
  }

  .tz2 .tz2-tablist-wrap.has-end .tz2-tablist-more {
    animation: none;
  }
}

/* ============================================================
   Niche picker legacy block (kept for specificity order)
   ============================================================ */

.tz2 .tz2-choose-card .tz2-use-art {
  height: 112px;
}


/* ============================================================
   Layout primitives
   ============================================================ */

.tz2 .tz2-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.tz2 .tz2-container--narrow {
  max-width: 820px;
}

.tz2 .tz2-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  position: relative;
}

.tz2 .tz2-section--tight {
  padding: clamp(2.5rem, 4vw, 3.5rem) 0;
}

.tz2 .tz2-section--surface {
  background: var(--tz-surface);
  border-top: 1px solid var(--tz-border);
  border-bottom: 1px solid var(--tz-border);
}

.tz2 .tz2-section--ink {
  background:
    radial-gradient(ellipse 70% 60% at 15% 0%, rgba(124, 58, 237, 0.28), transparent 60%),
    radial-gradient(ellipse 60% 60% at 90% 100%, rgba(79, 70, 229, 0.35), transparent 60%),
    #0d1220;
  color: #eef0f6;
}

.tz2 .tz2-head {
  max-width: 640px;
  margin: 0 auto clamp(2rem, 4vw, 3.25rem);
  text-align: center;
}

.tz2 .tz2-head--left {
  margin-left: 0;
  text-align: left;
}

.tz2 .tz2-head--flush {
  margin-bottom: 0;
}

.tz2 .tz2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--tz-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tz-brand);
  margin: 0 0 0.9rem;
}

.tz2 .tz2-kicker::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--tz-brand), var(--tz-violet));
}

.tz2 .tz2-section--ink .tz2-kicker {
  color: #a5b4fc;
}

.tz2 h1.tz2-h2,
.tz2 h2.tz2-h2 {
  font-family: var(--tz-display);
  font-size: clamp(1.75rem, 3.6vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--tz-ink);
  margin: 0 0 0.85rem;
}

.tz2 .tz2-section--ink h2.tz2-h2 {
  color: #fff;
}

.tz2 h2.tz2-h3,
.tz2 h3.tz2-h3 {
  font-family: var(--tz-display);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tz-ink);
  margin: 0 0 0.4rem;
}

.tz2 .tz2-lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--tz-muted);
  margin: 0;
}

.tz2 .tz2-section--ink .tz2-lead {
  color: #b9c0d4;
}

.tz2 .tz2-note {
  font-size: 0.875rem;
  color: var(--tz-faint);
  margin: 1.5rem 0 0;
  text-align: center;
}

.tz2 .tz2-note--left {
  text-align: left;
}

/* ============================================================
   Buttons
   ============================================================ */

.tz2 .tz2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--tz-display);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 0.85rem 1.4rem;
  border-radius: 11px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s var(--tz-ease), box-shadow 0.18s var(--tz-ease),
    background-color 0.18s var(--tz-ease), border-color 0.18s var(--tz-ease), color 0.18s var(--tz-ease);
}

.tz2 .tz2-btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.tz2 .tz2-btn:active {
  transform: translateY(0);
}

.tz2 .tz2-btn--primary {
  background: linear-gradient(180deg, #6366f1, var(--tz-brand-strong));
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(79, 70, 229, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.tz2 .tz2-btn--primary:hover {
  color: #fff;
  box-shadow: 0 16px 34px -12px rgba(79, 70, 229, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.tz2 .tz2-btn--ghost {
  background: #fff;
  color: var(--tz-ink);
  border-color: var(--tz-border-strong);
  box-shadow: var(--tz-shadow-xs);
}

.tz2 .tz2-btn--ghost:hover {
  color: var(--tz-brand);
  border-color: #bfc6d8;
}

.tz2 .tz2-btn--light {
  background: #fff;
  color: var(--tz-ink);
}

.tz2 .tz2-btn--light:hover {
  color: var(--tz-brand-strong);
}

.tz2 .tz2-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.32);
}

.tz2 .tz2-btn--outline-light:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.tz2 .tz2-btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.tz2 .tz2-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--tz-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tz-brand);
  text-decoration: none;
}

.tz2 .tz2-link i {
  font-size: 0.75rem;
  transition: transform 0.18s var(--tz-ease);
}

.tz2 .tz2-link:hover {
  color: var(--tz-brand-strong);
  text-decoration: none;
}

.tz2 .tz2-link:hover i {
  transform: translateX(3px);
}

/* ============================================================
   Hero
   ============================================================ */

.tz2 .tz2-hero {
  position: relative;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  overflow: hidden;
}

.tz2 .tz2-hero::before {
  content: "";
  position: absolute;
  inset: -30% -10% auto -10%;
  height: 120%;
  background:
    radial-gradient(ellipse 40% 45% at 18% 12%, rgba(99, 102, 241, 0.16), transparent 65%),
    radial-gradient(ellipse 45% 45% at 88% 8%, rgba(124, 58, 237, 0.12), transparent 62%),
    radial-gradient(ellipse 40% 40% at 60% 90%, rgba(13, 148, 136, 0.07), transparent 65%);
  pointer-events: none;
}

.tz2 .tz2-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.tz2 .tz2-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.85rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-sm);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--tz-ink-2);
  margin-bottom: 1.35rem;
}

.tz2 .tz2-badge span.tz2-badge-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--tz-brand), var(--tz-violet));
  color: #fff;
  font-size: 0.625rem;
}

.tz2 h1.tz2-hero-title {
  font-family: var(--tz-display);
  font-size: clamp(2.25rem, 5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--tz-ink);
  margin: 0 0 1.1rem;
}

.tz2 h1.tz2-hero-title em {
  font-style: normal;
  background: linear-gradient(100deg, var(--tz-brand) 10%, var(--tz-violet) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tz2 .tz2-hero-lead {
  font-size: clamp(1.0625rem, 1.6vw, 1.1875rem);
  color: var(--tz-muted);
  margin: 0 0 1rem;
  max-width: 40ch;
}

.tz2 .tz2-hero-who {
  font-size: 0.9375rem;
  color: var(--tz-muted);
  margin: 0 0 1.75rem;
  max-width: 48ch;
}

.tz2 .tz2-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.tz2 .tz2-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.1rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.tz2 .tz2-trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--tz-muted);
}

.tz2 .tz2-trust i {
  color: var(--tz-green);
  font-size: 0.75rem;
}

/* Gradient stage behind the transparent phone renders */

.tz2 .tz2-hero-media {
  position: relative;
}

.tz2 .tz2-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  border-radius: var(--tz-radius-xl);
  background:
    radial-gradient(ellipse 65% 55% at 50% 12%, rgba(255, 255, 255, 0.55), transparent 70%),
    linear-gradient(150deg, #eef1fe 0%, #f4f1ff 45%, #eaf6f5 100%);
  border: 1px solid rgba(79, 70, 229, 0.12);
  overflow: hidden;
}

.tz2 .tz2-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(79, 70, 229, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000, transparent 75%);
  pointer-events: none;
}

.tz2 .tz2-stage::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 68%;
  height: 34%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(79, 70, 229, 0.22), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}

.tz2 .tz2-stage img {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-height: 520px;
  filter: drop-shadow(0 30px 50px rgba(13, 18, 32, 0.24));
}

.tz2 .tz2-stage--hero img {
  max-height: 540px;
}

.tz2 .tz2-stage--compact {
  padding: 1.5rem;
}

.tz2 .tz2-stage--compact img {
  max-height: 340px;
}

.tz2 .tz2-float {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tz-ink);
  white-space: nowrap;
}

.tz2 .tz2-float i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #fff;
}

.tz2 .tz2-float--paid {
  left: -1.25rem;
  bottom: 18%;
  animation: tz2-bob 5s ease-in-out infinite;
}

.tz2 .tz2-float--paid i {
  background: var(--tz-green);
}

.tz2 .tz2-float--booking {
  right: -1rem;
  top: 12%;
  animation: tz2-bob 6.5s ease-in-out infinite reverse;
}

.tz2 .tz2-float--booking i {
  background: var(--tz-brand);
}

.tz2 .tz2-float small {
  display: block;
  font-weight: 500;
  font-size: 0.6875rem;
  color: var(--tz-faint);
}

@keyframes tz2-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ============================================================
   Stat strip
   ============================================================ */

.tz2 .tz2-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--tz-border);
  border: 1px solid var(--tz-border);
  border-radius: var(--tz-radius-lg);
  overflow: hidden;
  box-shadow: var(--tz-shadow-sm);
}

.tz2 .tz2-stat {
  background: #fff;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.tz2 .tz2-stat-value {
  display: block;
  font-family: var(--tz-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--tz-brand), var(--tz-violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tz2 .tz2-stat-label {
  display: block;
  font-size: 0.8125rem;
  color: var(--tz-muted);
  margin-top: 0.35rem;
  line-height: 1.4;
}

/* ============================================================
   Problem / value comparison
   ============================================================ */

.tz2 .tz2-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.tz2 .tz2-panel {
  border-radius: var(--tz-radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--tz-border);
  background: #fff;
  height: 100%;
}

.tz2 .tz2-panel--before {
  background: var(--tz-surface);
}

.tz2 .tz2-panel--after {
  border-color: rgba(79, 70, 229, 0.28);
  background: linear-gradient(170deg, #fff, #f7f8ff);
  box-shadow: var(--tz-shadow-md);
  position: relative;
}

.tz2 .tz2-panel-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--tz-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--tz-ink);
  margin: 0 0 1.15rem;
}

.tz2 .tz2-panel-title span.tz2-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.tz2 .tz2-panel--before .tz2-tag {
  background: #f1f3f8;
  color: var(--tz-faint);
}

.tz2 .tz2-panel--after .tz2-tag {
  background: var(--tz-brand-soft);
  color: var(--tz-brand-strong);
}

.tz2 .tz2-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.tz2 .tz2-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.tz2 .tz2-checklist i {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 999px;
  font-size: 0.625rem;
}

.tz2 .tz2-panel--before .tz2-checklist {
  color: var(--tz-muted);
}

.tz2 .tz2-panel--before .tz2-checklist i {
  background: #eceff5;
  color: #9aa3b5;
}

.tz2 .tz2-panel--after .tz2-checklist {
  color: var(--tz-ink-2);
  font-weight: 500;
}

.tz2 .tz2-panel--after .tz2-checklist i {
  background: rgba(5, 150, 105, 0.12);
  color: var(--tz-green);
}

/* ============================================================
   Horizontal rail (carousel)
   ============================================================ */

.tz2 .tz2-rail-wrap {
  position: relative;
}

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

.tz2 .tz2-rail-nav {
  display: flex;
  gap: 0.5rem;
  flex: none;
}

.tz2 .tz2-rail-btn {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--tz-border-strong);
  background: #fff;
  color: var(--tz-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--tz-shadow-xs);
  transition: all 0.18s var(--tz-ease);
}

.tz2 .tz2-rail-btn:hover:not(:disabled) {
  color: var(--tz-brand);
  border-color: var(--tz-brand);
  transform: translateY(-1px);
}

.tz2 .tz2-rail-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.tz2 .tz2-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(252px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0.25rem 0.25rem 1.25rem;
  margin: -0.25rem -0.25rem 0;
}

.tz2 .tz2-rail::-webkit-scrollbar {
  display: none;
}

.tz2 .tz2-rail > * {
  scroll-snap-align: start;
}

.tz2 .tz2-rail-fade {
  position: absolute;
  top: 0;
  bottom: 1.25rem;
  width: 56px;
  pointer-events: none;
  z-index: 1;
}

.tz2 .tz2-rail-fade--right {
  right: -1px;
  background: linear-gradient(90deg, rgba(246, 247, 251, 0), var(--tz-surface) 70%);
}

.tz2 .tz2-section:not(.tz2-section--surface) .tz2-rail-fade--right {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff 70%);
}

/* Segment cards */

.tz2 .tz2-seg {
  display: block;
  height: 100%;
  padding: 1.4rem;
  border-radius: var(--tz-radius);
  background: #fff;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-xs);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s var(--tz-ease), box-shadow 0.2s var(--tz-ease), border-color 0.2s var(--tz-ease);
}

.tz2 .tz2-seg:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: var(--tz-shadow-md);
  text-decoration: none;
}

.tz2 .tz2-seg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.0625rem;
  margin-bottom: 0.9rem;
  background: var(--tz-brand-soft);
  color: var(--tz-brand);
}

.tz2 .tz2-seg:nth-child(3n + 2) .tz2-seg-icon {
  background: rgba(13, 148, 136, 0.1);
  color: var(--tz-teal);
}

.tz2 .tz2-seg:nth-child(3n + 3) .tz2-seg-icon {
  background: rgba(124, 58, 237, 0.1);
  color: var(--tz-violet);
}

.tz2 .tz2-seg-name {
  font-family: var(--tz-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tz-ink);
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}

.tz2 .tz2-seg-desc {
  font-size: 0.8125rem;
  color: var(--tz-muted);
  margin: 0;
  line-height: 1.5;
}

/* ============================================================
   Feature tabs
   ============================================================ */

.tz2 .tz2-tablist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.35rem;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  background: var(--tz-surface);
  border: 1px solid var(--tz-border);
}

.tz2 .tz2-tablist-wrap {
  position: relative;
  margin: 0 auto 2rem;
  max-width: 100%;
}

.tz2 .tz2-tablist-fade,
.tz2 .tz2-tablist-more {
  display: none;
}

.tz2 .tz2-tab {
  border: 0;
  background: transparent;
  font-family: var(--tz-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--tz-muted);
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: all 0.18s var(--tz-ease);
  white-space: nowrap;
  flex-shrink: 0;
}

.tz2 .tz2-tab i {
  font-size: 0.8125rem;
  opacity: 0.75;
}

.tz2 .tz2-tab:hover {
  color: var(--tz-ink);
}

.tz2 .tz2-tab[aria-selected="true"] {
  background: #fff;
  color: var(--tz-brand-strong);
  box-shadow: var(--tz-shadow-sm);
}

.tz2 .tz2-tabpanel[hidden] {
  display: none;
}

.tz2 .tz2-tabpanel {
  animation: tz2-fade-up 0.35s var(--tz-ease) both;
}

@keyframes tz2-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.tz2 .tz2-tab-hint {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--tz-muted);
  margin: -0.75rem 0 1.75rem;
}

.tz2 .tz2-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 1rem;
}

.tz2 .tz2-cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tz2 .tz2-mt {
  margin-top: 0.9rem;
}

.tz2 .tz2-card {
  padding: 1.5rem;
  border-radius: var(--tz-radius);
  background: #fff;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-xs);
  transition: transform 0.2s var(--tz-ease), box-shadow 0.2s var(--tz-ease), border-color 0.2s var(--tz-ease);
}

.tz2 .tz2-card:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 70, 229, 0.26);
  box-shadow: var(--tz-shadow-md);
}

.tz2 .tz2-card p {
  font-size: 0.875rem;
  color: var(--tz-muted);
  margin: 0;
  line-height: 1.6;
}

.tz2 .tz2-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  font-size: 1rem;
  margin-bottom: 1rem;
  background: linear-gradient(140deg, var(--tz-brand-soft), #f5f0ff);
  color: var(--tz-brand);
  border: 1px solid rgba(79, 70, 229, 0.12);
}

.tz2 .tz2-tab-media {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.tz2 .tz2-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem 1.4rem;
  border-radius: var(--tz-radius);
  background: var(--tz-surface);
  border: 1px solid var(--tz-border);
}

.tz2 .tz2-logos img {
  height: 26px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(1);
  transition: all 0.2s var(--tz-ease);
}

.tz2 .tz2-logos img:hover {
  opacity: 1;
  filter: none;
}

.tz2 .tz2-logos span {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--tz-faint);
}

/* ============================================================
   Disclosure (accordion / expandable card)
   ============================================================ */

.tz2 .tz2-acc {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.tz2 details.tz2-disclose {
  border: 1px solid var(--tz-border);
  border-radius: var(--tz-radius);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s var(--tz-ease), box-shadow 0.2s var(--tz-ease);
}

.tz2 details.tz2-disclose[open] {
  border-color: rgba(79, 70, 229, 0.28);
  box-shadow: var(--tz-shadow-sm);
}

.tz2 details.tz2-disclose > summary {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.3rem;
  cursor: pointer;
  font-family: var(--tz-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--tz-ink);
  list-style: none;
}

.tz2 details.tz2-disclose > summary::-webkit-details-marker {
  display: none;
}

.tz2 details.tz2-disclose > summary::after {
  content: "\f067";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: auto;
  font-size: 0.6875rem;
  color: var(--tz-brand);
  transition: transform 0.22s var(--tz-ease);
}

.tz2 details.tz2-disclose[open] > summary::after {
  transform: rotate(45deg);
}

.tz2 details.tz2-disclose .tz2-disclose-body {
  padding: 0 1.3rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--tz-muted);
  animation: tz2-fade-up 0.28s var(--tz-ease) both;
}

.tz2 details.tz2-disclose .tz2-disclose-body p:last-child {
  margin-bottom: 0;
}

/* Benefit card with inline disclosure */

.tz2 .tz2-benefit {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  border-radius: var(--tz-radius);
  background: #fff;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-xs);
  transition: transform 0.2s var(--tz-ease), box-shadow 0.2s var(--tz-ease), border-color 0.2s var(--tz-ease);
}

.tz2 .tz2-benefit:hover {
  transform: translateY(-3px);
  border-color: rgba(79, 70, 229, 0.26);
  box-shadow: var(--tz-shadow-md);
}

.tz2 .tz2-benefit-line {
  font-size: 0.9375rem;
  color: var(--tz-muted);
  margin: 0 0 0.9rem;
  flex: 1;
}

.tz2 .tz2-benefit details {
  border-top: 1px dashed var(--tz-border);
  padding-top: 0.75rem;
}

.tz2 .tz2-benefit details > summary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  cursor: pointer;
  font-family: var(--tz-display);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--tz-brand);
}

.tz2 .tz2-benefit details > summary::-webkit-details-marker {
  display: none;
}

.tz2 .tz2-benefit details > summary::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.5625rem;
  transition: transform 0.22s var(--tz-ease);
}

.tz2 .tz2-benefit details[open] > summary::after {
  transform: rotate(180deg);
}

.tz2 .tz2-benefit details p {
  margin: 0.7rem 0 0;
  font-size: 0.875rem;
  color: var(--tz-muted);
  animation: tz2-fade-up 0.28s var(--tz-ease) both;
}

/* ============================================================
   Product showcase
   ============================================================ */

.tz2 .tz2-shots {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
}

.tz2 .tz2-shot-list {
  display: grid;
  gap: 0.4rem;
}

.tz2 .tz2-shot-btn {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all 0.18s var(--tz-ease);
}

.tz2 .tz2-shot-btn i {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: #fff;
  border: 1px solid var(--tz-border);
  color: var(--tz-faint);
  font-size: 0.8125rem;
  transition: all 0.18s var(--tz-ease);
}

.tz2 .tz2-shot-btn strong {
  display: block;
  font-family: var(--tz-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--tz-ink);
  letter-spacing: -0.01em;
}

.tz2 .tz2-shot-btn small {
  display: block;
  font-size: 0.75rem;
  color: var(--tz-muted);
  line-height: 1.45;
  margin-top: 0.1rem;
}

.tz2 .tz2-shot-btn:hover {
  background: #fff;
  border-color: var(--tz-border);
}

.tz2 .tz2-shot-btn[aria-current="true"] {
  background: #fff;
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: var(--tz-shadow-sm);
}

.tz2 .tz2-shot-btn[aria-current="true"] i {
  background: linear-gradient(140deg, var(--tz-brand), var(--tz-violet));
  border-color: transparent;
  color: #fff;
}

.tz2 .tz2-shot-stage {
  min-height: 560px;
}

.tz2 .tz2-shot-stage img {
  animation: tz2-fade-in 0.35s var(--tz-ease) both;
}

.tz2 .tz2-shot-caption {
  position: absolute;
  z-index: 2;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--tz-ink-2);
  text-align: center;
}

.tz2 .tz2-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--tz-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-lg);
  background: #0d1220;
}

.tz2 .tz2-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.tz2 .tz2-split-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
}

.tz2 .tz2-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@keyframes tz2-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ============================================================
   How it works
   ============================================================ */

.tz2 .tz2-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
}

.tz2 .tz2-steps::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--tz-border-strong) 0 8px, transparent 8px 16px);
}

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

.tz2 .tz2-step-num {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-family: var(--tz-display);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(150deg, var(--tz-brand), var(--tz-violet));
  box-shadow: 0 8px 20px -8px rgba(79, 70, 229, 0.75), 0 0 0 6px #fff;
  margin-bottom: 1.1rem;
}

.tz2 .tz2-step p {
  font-size: 0.875rem;
  color: var(--tz-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   Use cases
   ============================================================ */

.tz2 .tz2-use {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--tz-radius-lg);
  background: #fff;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-xs);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.22s var(--tz-ease), box-shadow 0.22s var(--tz-ease), border-color 0.22s var(--tz-ease);
}

.tz2 .tz2-use:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.28);
  box-shadow: var(--tz-shadow-md);
  text-decoration: none;
}

.tz2 .tz2-use-art {
  position: relative;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  overflow: hidden;
}

.tz2 .tz2-use-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.55;
}

.tz2 .tz2-use-art i {
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.22));
}

.tz2 .tz2-use-art--1 {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
}
.tz2 .tz2-use-art--2 {
  background: linear-gradient(135deg, #0f766e, #10b981);
}
.tz2 .tz2-use-art--3 {
  background: linear-gradient(135deg, #1d4ed8, #0ea5e9);
}
.tz2 .tz2-use-art--4 {
  background: linear-gradient(135deg, #7c3aed, #db2777);
}
.tz2 .tz2-use-art--5 {
  background: linear-gradient(135deg, #334155, #64748b);
}
.tz2 .tz2-use-art--6 {
  background: linear-gradient(135deg, #b45309, #f59e0b);
}

.tz2 .tz2-use-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.tz2 .tz2-use-body p {
  font-size: 0.875rem;
  color: var(--tz-muted);
  margin: 0 0 0.9rem;
  flex: 1;
}

.tz2 .tz2-demos {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px dashed var(--tz-border-strong);
}

.tz2 .tz2-demos-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 1.5rem;
}

.tz2 .tz2-demos-head h3 {
  font-size: 1.25rem;
}

.tz2 .tz2-demos-head p {
  font-size: 0.9375rem;
  color: var(--tz-muted);
  margin: 0;
}

/* ============================================================
   Social proof
   ============================================================ */

.tz2 .tz2-proof {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.tz2 .tz2-quote {
  padding: 2rem;
  border-radius: var(--tz-radius-lg);
  background: #fff;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-sm);
  position: relative;
}

.tz2 .tz2-quote-mark {
  font-family: var(--tz-display);
  font-size: 3.5rem;
  line-height: 0.6;
  color: rgba(79, 70, 229, 0.16);
}

.tz2 .tz2-quote blockquote {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.65;
  color: var(--tz-ink-2);
  margin: 0.75rem 0 1.5rem;
  border: 0;
  padding: 0;
}

.tz2 .tz2-quote-stars {
  color: #f59e0b;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.tz2 .tz2-quote-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.tz2 .tz2-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--tz-brand), var(--tz-violet));
  color: #fff;
  font-family: var(--tz-display);
  font-weight: 800;
  font-size: 0.9375rem;
}

.tz2 .tz2-quote-author strong {
  display: block;
  font-family: var(--tz-display);
  font-size: 0.9375rem;
  color: var(--tz-ink);
}

.tz2 .tz2-quote-author small {
  display: block;
  font-size: 0.8125rem;
  color: var(--tz-faint);
}

.tz2 .tz2-quote-author .tz2-link {
  margin-left: auto;
}

.tz2 .tz2-proof-side {
  display: grid;
  gap: 1.25rem;
  align-content: start;
}

.tz2 .tz2-proof-card {
  padding: 1.6rem;
  border-radius: var(--tz-radius-lg);
  border: 1px solid var(--tz-border);
  background: linear-gradient(170deg, #fff, var(--tz-surface));
}

/* ============================================================
   Pricing (wraps the shared SubscriptionPlans component)
   ============================================================ */

.tz2 .tz2-pricing .plans,
.tz2 .tz2-pricing .plans.section-bg {
  background: transparent !important;
  padding: 0;
}

.tz2 .tz2-pricing .plans .container {
  padding: 0;
  max-width: none;
}

.tz2 .tz2-pricing .card {
  border: 1px solid var(--tz-border);
  border-radius: var(--tz-radius-lg);
  box-shadow: var(--tz-shadow-sm);
  background: #fff;
  transition: transform 0.2s var(--tz-ease), box-shadow 0.2s var(--tz-ease), border-color 0.2s var(--tz-ease);
}

.tz2 .tz2-pricing .card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.28);
  box-shadow: var(--tz-shadow-md);
}

.tz2 .tz2-pricing .tz2-price-offer {
  margin: 0.65rem 0.65rem 0;
  padding: 0.45rem 0.75rem;
  border-radius: 10px;
  text-align: center;
  font-family: var(--tz-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #9a3412;
  background: #fff7ed;
  border: 1px solid #fed7aa;
}

.tz2 .tz2-pricing .card-title {
  background: transparent !important;
  padding-top: 0.65rem;
}

.tz2 .tz2-pricing .card-title h2 {
  font-family: var(--tz-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tz-ink);
  margin: 0;
}

.tz2 .tz2-pricing .custom-check-list li {
  font-size: 0.875rem;
  color: var(--tz-muted);
}

.tz2 .tz2-pricing .custom-check-list li strong {
  font-weight: 500;
}

.tz2 .tz2-pricing .custom-check-list li::before {
  color: var(--tz-green) !important;
}

.tz2 .tz2-pricing .price-container {
  font-family: var(--tz-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tz-brand-strong);
  text-align: center;
  padding: 0.25rem 1.25rem 0.35rem;
}

.tz2 .tz2-pricing .tz2-price-col {
  max-width: 400px;
}

.tz2 .tz2-pricing .tz2-price-stack {
  padding: 0.25rem 1.25rem 0.5rem;
}

.tz2 .tz2-pricing .tz2-price-was {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--tz-faint);
  text-decoration: line-through;
  letter-spacing: 0;
}

.tz2 .tz2-pricing .tz2-price-now {
  display: block;
  font-size: clamp(1.85rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--tz-brand-strong);
  line-height: 1.15;
}

.tz2 .tz2-pricing .tz2-price-now small {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--tz-muted);
  margin-left: 0.15rem;
}

.tz2 .tz2-pricing .tz2-price-save {
  display: inline-flex;
  margin-top: 0.65rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

/* ============================================================
   Final CTA
   ============================================================ */

.tz2 .tz2-final {
  text-align: center;
  max-width: 660px;
  margin: 0 auto;
}

.tz2 .tz2-final h2 {
  font-family: var(--tz-display);
  font-size: clamp(1.85rem, 4vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 0.9rem;
}

.tz2 .tz2-final p {
  color: #b9c0d4;
  margin: 0 0 0.35rem;
}

.tz2 .tz2-final .tz2-final-urgency {
  color: #a5b4fc;
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.tz2 .tz2-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.tz2 .tz2-final-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.25rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
  color: #98a1b8;
}

.tz2 .tz2-final-trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tz2 .tz2-final-trust i {
  color: #34d399;
  font-size: 0.6875rem;
}

/* ============================================================
   Scroll reveal
   ============================================================ */

.tz2 [data-tz-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--tz-ease), transform 0.6s var(--tz-ease);
  will-change: opacity, transform;
}

.tz2 [data-tz-reveal].tz2-in {
  opacity: 1;
  transform: none;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1100px) {
  .tz2 .tz2-shots {
    grid-template-columns: 220px minmax(0, 1fr);
  }
}

@media (max-width: 992px) {
  .tz2 .tz2-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    text-align: center;
  }

  .tz2 .tz2-hero-lead,
  .tz2 .tz2-hero-who {
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
  }

  .tz2 .tz2-hero-actions,
  .tz2 .tz2-trust {
    justify-content: center;
  }

  .tz2 .tz2-float {
    display: none;
  }

  .tz2 .tz2-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.25rem;
  }

  .tz2 .tz2-steps::before {
    display: none;
  }

  .tz2 .tz2-shots,
  .tz2 .tz2-proof,
  .tz2 .tz2-tab-media,
  .tz2 .tz2-split-visual {
    grid-template-columns: minmax(0, 1fr);
  }

  .tz2 .tz2-shot-list {
    grid-auto-flow: column;
    grid-auto-columns: minmax(200px, 1fr);
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }

  .tz2 .tz2-shot-list::-webkit-scrollbar {
    display: none;
  }

  .tz2 .tz2-shot-btn {
    border-color: var(--tz-border);
    background: #fff;
  }

  .tz2 .tz2-cards--3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .tz2 {
    padding-top: 66px;
  }

  .tz2 .tz2-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tz2 .tz2-compare {
    grid-template-columns: minmax(0, 1fr);
  }

  .tz2 .tz2-rail-head {
    flex-direction: column;
    align-items: stretch;
  }

  .tz2 .tz2-rail-nav {
    display: none;
  }

  .tz2 .tz2-disc-rail .tz2-disc-rail-nav {
    display: flex;
  }

  .tz2 .tz2-rail {
    grid-auto-columns: minmax(232px, 78%);
  }

  .tz2 .tz2-tablist-wrap {
    width: 100%;
  }

  .tz2 .tz2-tablist {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    border-radius: 14px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-right: 2.75rem;
  }

  .tz2 .tz2-tab {
    scroll-snap-align: start;
  }

  .tz2 .tz2-tablist::-webkit-scrollbar {
    display: none;
  }

  .tz2 .tz2-tablist-fade {
    display: block;
    position: absolute;
    top: 1px;
    bottom: 1px;
    width: 44px;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.2s var(--tz-ease);
  }

  .tz2 .tz2-tablist-fade--left {
    left: 1px;
    border-radius: 14px 0 0 14px;
    background: linear-gradient(90deg, var(--tz-surface) 20%, rgba(246, 247, 251, 0));
  }

  .tz2 .tz2-tablist-fade--right {
    right: 1px;
    border-radius: 0 14px 14px 0;
    background: linear-gradient(90deg, rgba(246, 247, 251, 0), var(--tz-surface) 55%);
  }

  .tz2 .tz2-tablist-wrap.has-start .tz2-tablist-fade--left,
  .tz2 .tz2-tablist-wrap.has-end .tz2-tablist-fade--right {
    opacity: 1;
  }

  .tz2 .tz2-tablist-more {
    display: inline-flex;
    position: absolute;
    right: 8px;
    top: 50%;
    z-index: 2;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: var(--tz-brand);
    box-shadow: var(--tz-shadow-sm);
    transform: translateY(-50%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s var(--tz-ease);
  }

  .tz2 .tz2-tablist-wrap.has-end .tz2-tablist-more {
    opacity: 1;
    pointer-events: auto;
    animation: tz2-tab-nudge 1.5s ease-in-out infinite;
  }

  @keyframes tz2-tab-nudge {
    0%,
    100% {
      transform: translateY(-50%) translateX(0);
    }
    50% {
      transform: translateY(-50%) translateX(3px);
    }
  }

  .tz2 .tz2-panel,
  .tz2 .tz2-quote {
    padding: 1.35rem;
  }

  .tz2 .tz2-shot-stage {
    min-height: 0;
  }

  .tz2 .tz2-stage {
    padding: 1.5rem 1rem 4.5rem;
  }

  .tz2 .tz2-stage img,
  .tz2 .tz2-stage--hero img {
    max-height: 400px;
  }

  .tz2 .tz2-cards,
  .tz2 .tz2-cards--3 {
    grid-template-columns: minmax(0, 1fr);
  }

  .tz2 .tz2-choose-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tz2 *,
  .tz2 *::before,
  .tz2 *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .tz2 [data-tz-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Shared header / footer, retuned for a light page.
   `html` prefix raises specificity above landing-2025.css.
   ============================================================ */

html,
html body.hs-lp {
  color-scheme: only light;
  background: #fff !important;
  color: #2b3346;
}

html[data-bs-theme="light"] {
  color-scheme: only light;
  --bs-body-bg: #ffffff;
  --bs-body-color: #2b3346;
}

@media (prefers-color-scheme: dark) {
  html,
  html[data-bs-theme="light"],
  html body.hs-lp,
  .tz2 {
    color-scheme: only light;
  }

  html,
  html body.hs-lp {
    background: #fff !important;
  }
}

.tz2 input,
.tz2 textarea,
.tz2 select,
.tz2 button {
  color-scheme: only light;
}

html body.hs-lp #header,
html body.hs-lp #header.header-scrolled,
html body.hs-lp #header.header-inner-pages {
  background: rgba(255, 255, 255, 0.85) !important;
  border-bottom: 1px solid rgba(13, 18, 32, 0.07);
  box-shadow: 0 6px 24px -18px rgba(13, 18, 32, 0.3);
  padding: 12px 0;
  z-index: 10000;
}

/* Frosted glass on a pseudo-element so backdrop-filter does not become
   a containing block for the position:fixed mobile nav overlay. */
html body.hs-lp #header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
}

html body.hs-lp #header .logo a,
html body.hs-lp .navbar a,
html body.hs-lp .navbar a:focus {
  color: #1c2333 !important;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
}

html body.hs-lp #header .logo a.app-title-navbar {
  font-family: "Ephesis", cursive;
  font-size: 2.5rem;
  font-weight: 400;
  background: linear-gradient(100deg, #4f46e5, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

html body.hs-lp .navbar a:hover,
html body.hs-lp .navbar .active,
html body.hs-lp .navbar .active:focus,
html body.hs-lp .navbar li:hover > a {
  color: #4f46e5 !important;
}

html body.hs-lp .navbar .dropdown ul {
  background: #fff;
  border: 1px solid #e7eaf1;
  border-radius: 12px;
  box-shadow: 0 18px 40px -18px rgba(13, 18, 32, 0.3);
}

html body.hs-lp .navbar .dropdown ul a {
  color: #1c2333 !important;
}

html body.hs-lp .mobile-nav-toggle {
  color: #1c2333 !important;
}

html body.hs-lp .navbar-mobile {
  background: rgba(13, 18, 32, 0.55);
  z-index: 10001;
}

html body.hs-lp .navbar-mobile ul {
  background: #fff;
  border: 1px solid #e7eaf1;
}

html body.hs-lp .navbar-mobile a,
html body.hs-lp .navbar-mobile a:focus,
html body.hs-lp .navbar-mobile .dropdown ul a {
  color: #1c2333 !important;
}

html body.hs-lp .navbar-mobile a:hover,
html body.hs-lp .navbar-mobile li:hover > a {
  color: #4f46e5 !important;
}

/* Dark footer stays dark, but the long link list reads as a tidy chip row. */
html body.hs-lp #footer {
  background: #0d1220 !important;
  border-top: 0;
  padding-top: 2.25rem;
}

html body.hs-lp #footer .footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

html body.hs-lp #footer .credits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1rem;
  font-size: 0.8125rem;
}

html body.hs-lp #footer .credits a {
  color: #8b94a7;
  text-decoration: none;
}

html body.hs-lp #footer .credits a:hover {
  color: #fff;
}

html body.hs-lp #footer .copyright {
  color: #626d84;
  font-size: 0.8125rem;
}

html body.hs-lp #footer .hs-social {
  margin-bottom: 0;
}

/* ============================================================
   Guides + Replay landings
   ============================================================ */

.tz2[data-tz-page="learn"] h1.tz2-hero-title,
.tz2[data-tz-page="learn_article"] h1.tz2-hero-title,
.tz2[data-tz-page="directory"] h1.tz2-hero-title {
  font-size: clamp(1.85rem, 4vw, 2.65rem);
}

.tz2[data-tz-page="learn"] .tz2-hero-lead,
.tz2[data-tz-page="learn_article"] .tz2-hero-lead {
  max-width: 52ch;
}

.tz2 a.tz2-card--link {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.tz2 a.tz2-card--link .tz2-h3 {
  margin-bottom: 0.35rem;
}

.tz2 a.tz2-card--link p {
  flex: 1;
  margin-bottom: 0.85rem;
}

.tz2 a.tz2-card--link:hover {
  text-decoration: none;
  color: inherit;
}

.tz2 .tz2-related-head {
  margin-top: 2.75rem;
  margin-bottom: 1.25rem;
}

.tz2 .tz2-article-meta {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  color: var(--tz-faint);
}

.tz2 .tz2-hero-photo {
  position: relative;
  border-radius: var(--tz-radius-lg);
  overflow: hidden;
  min-height: 360px;
  aspect-ratio: 4 / 5;
  box-shadow: var(--tz-shadow-lg);
  background: var(--tz-surface);
}

.tz2 .tz2-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tz2 .tz2-roi {
  max-width: 480px;
  margin: 0 auto;
}

.tz2 .tz2-roi p {
  margin: 0 0 0.45rem;
  font-size: 0.9375rem;
  color: var(--tz-muted);
}

.tz2 .tz2-roi p strong {
  color: var(--tz-ink);
}

.tz2 .tz2-field {
  margin-bottom: 1rem;
}

.tz2 .tz2-field label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--tz-ink-2);
  margin-bottom: 0.4rem;
}

.tz2 .tz2-field input,
.tz2 .tz2-field select {
  width: 100%;
  border: 1px solid var(--tz-border-strong);
  border-radius: 11px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--tz-ink);
  background: #fff;
}

.tz2 .tz2-field input:focus,
.tz2 .tz2-field select:focus {
  outline: 2px solid rgba(79, 70, 229, 0.28);
  border-color: var(--tz-brand);
}

.tz2 .tz2-hr {
  border: 0;
  border-top: 1px solid var(--tz-border);
  margin: 1.1rem 0 1rem;
}

.tz2 .tz2-roi-result {
  font-family: var(--tz-display);
  font-size: 1.35rem;
  font-weight: 800;
  margin: 0.75rem 0 0 !important;
}

.tz2 .tz2-roi-ok {
  color: var(--tz-green);
}

.tz2 .tz2-roi-bad {
  color: var(--tz-rose);
}

.tz2 .tz2-price {
  font-family: var(--tz-display);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--tz-brand);
  margin: 0.35rem 0 0.55rem;
}

.tz2 .tz2-price small {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--tz-muted);
  margin-left: 0.2rem;
}

.tz2 .tz2-price--muted {
  color: var(--tz-ink-2);
}

.tz2 .tz2-prose {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--tz-ink-2);
}

.tz2 .tz2-prose h2 {
  font-family: var(--tz-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--tz-ink);
  margin: 2rem 0 0.75rem;
}

.tz2 .tz2-prose h3 {
  font-family: var(--tz-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--tz-ink);
  margin: 1.5rem 0 0.5rem;
}

.tz2 .tz2-prose p,
.tz2 .tz2-prose li {
  color: var(--tz-ink-2);
}

.tz2 .tz2-prose a {
  color: var(--tz-brand);
  font-weight: 600;
}

.tz2 .tz2-prose blockquote {
  margin: 1.25rem 0;
  padding: 0.15rem 0 0.15rem 1rem;
  border-left: 3px solid var(--tz-brand);
  color: var(--tz-ink);
}

.tz2 .tz2-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.tz2 .tz2-prose th,
.tz2 .tz2-prose td {
  border: 1px solid var(--tz-border);
  padding: 0.5rem 0.65rem;
  text-align: left;
}

.tz2 .tz2-prose th {
  background: var(--tz-surface);
  font-weight: 700;
}

@media (max-width: 992px) {
  .tz2 .tz2-hero-photo {
    max-width: 420px;
    margin: 0 auto;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

/* ============================================================
   Business directory
   ============================================================ */

.tz2 .tz2-dir-filters,
.tz2 .tz2-dir-summary {
  margin-bottom: 1.25rem;
}

.tz2 .tz2-dir-filters .tz2-card {
  padding: 1.25rem 1.35rem;
}

.tz2 .tz2-dir-fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  align-items: end;
}

.tz2 .tz2-dir-fields .tz2-btn {
  width: 100%;
}

.tz2 .tz2-dir-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.tz2 .tz2-dir-count {
  margin: 0;
  font-family: var(--tz-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--tz-ink);
}

.tz2 .tz2-dir-count strong {
  color: var(--tz-brand);
}

.tz2 .tz2-dir-filters-note {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--tz-muted);
}

.tz2 .tz2-chip {
  display: inline-flex;
  align-items: center;
  margin: 0.15rem 0.2rem 0 0;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: var(--tz-brand-soft);
  color: var(--tz-brand-strong);
  font-weight: 600;
  font-size: 0.75rem;
}

.tz2 .tz2-dir-toggle {
  display: flex;
  gap: 0.5rem;
}

.tz2 .tz2-dir-toggle .tz2-btn.is-active {
  background: linear-gradient(180deg, #6366f1, var(--tz-brand-strong));
  color: #fff;
  border-color: transparent;
}

.tz2 .tz2-dir-list,
.tz2 .tz2-dir-map {
  display: none;
}

.tz2 .tz2-dir-list.is-active,
.tz2 .tz2-dir-map.is-active {
  display: block;
}

.tz2 .tz2-dir-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.tz2 .tz2-dir-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  border-radius: var(--tz-radius-lg);
  overflow: hidden;
  background: var(--tz-ink);
  box-shadow: var(--tz-shadow-xs);
  transition: transform 0.2s var(--tz-ease), box-shadow 0.2s var(--tz-ease);
}

.tz2 .tz2-dir-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tz-shadow-md);
}

.tz2 .tz2-dir-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #312e81;
}

.tz2 .tz2-dir-card-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 18, 32, 0.2) 0%, rgba(13, 18, 32, 0.82) 100%);
}

.tz2 .tz2-dir-card-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem;
  color: #fff;
}

.tz2 .tz2-dir-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
  padding: 4px;
}

.tz2 .tz2-dir-logo-fallback {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: #fff;
  color: var(--tz-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--tz-display);
  font-weight: 800;
  font-size: 1.1rem;
}

.tz2 .tz2-dir-cat {
  display: inline-flex;
  margin: 0.7rem 0 0.45rem;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.75rem;
  font-weight: 600;
}

.tz2 .tz2-dir-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--tz-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
}

.tz2 .tz2-dir-card p,
.tz2 .tz2-dir-loc {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.tz2 .tz2-dir-loc {
  margin-top: 0.55rem;
}

.tz2 .tz2-dir-actions {
  display: flex;
  gap: 0.5rem;
}

.tz2 .tz2-dir-actions .tz2-btn {
  flex: 1;
  justify-content: center;
  padding: 0.7rem 0.85rem;
}

.tz2 .tz2-dir-empty {
  text-align: center;
  padding: 3rem 1.25rem;
}

.tz2 .tz2-dir-empty i {
  font-size: 2rem;
  color: var(--tz-brand);
  margin-bottom: 0.75rem;
}

.tz2 .tz2-dir-map-box {
  height: 560px;
  border-radius: var(--tz-radius-lg);
  overflow: hidden;
  border: 1px solid var(--tz-border);
  box-shadow: var(--tz-shadow-xs);
}

.tz2 .tz2-dir-map-box #businessMap {
  height: 100%;
  width: 100%;
}

.tz2 .tz2-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
}

.tz2 .tz2-pager a,
.tz2 .tz2-pager span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: 11px;
  background: #fff;
  border: 1px solid var(--tz-border);
  color: var(--tz-ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
}

.tz2 .tz2-pager a:hover {
  border-color: rgba(79, 70, 229, 0.3);
  color: var(--tz-brand);
}

.tz2 .tz2-pager .is-active a {
  background: linear-gradient(180deg, #6366f1, var(--tz-brand-strong));
  border-color: transparent;
  color: #fff;
}

.tz2 .tz2-pager .is-disabled span {
  color: var(--tz-faint);
  background: var(--tz-surface);
}

.tz2 .map-popup h5 {
  margin: 0 0 0.4rem;
  font-family: var(--tz-display);
  font-weight: 700;
}

.tz2 .map-popup p {
  margin: 0.2rem 0;
  color: var(--tz-muted);
  font-size: 0.875rem;
}

.tz2 .map-popup .tz2-btn {
  margin-top: 0.65rem;
  padding: 0.45rem 0.75rem;
  font-size: 0.8125rem;
}

@media (max-width: 992px) {
  .tz2 .tz2-dir-fields {
    grid-template-columns: 1fr 1fr;
  }

  .tz2 .tz2-dir-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .tz2 .tz2-dir-fields,
  .tz2 .tz2-dir-grid {
    grid-template-columns: 1fr;
  }

  .tz2 .tz2-dir-map-box {
    height: 400px;
  }
}
