/* ================================================================
   EXPLORE.CSS — Brand Showcase Styles
   ================================================================ */

/* ---- RESET ---- */
*,*::before,*::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ---- CSS VARIABLES ---- */
:root {
  --primary: #0066FF;
  --primary-dim: rgba(0,102,255,0.15);
  --primary-glow: rgba(0,102,255,0.35);
  --bg-deep: #050a14;
  --bg-surface: #0A1628;
  --bg-card: #0d1b30;
  --bg-card-hover: #112240;
  --text-primary: #e8edf5;
  --text-secondary: #7a8baa;
  --text-muted: #4a5a78;
  --border: #1a2d4d;
  --border-hover: #2a4060;
  --grain-opacity: 0.035;
  --mesh-color-1: var(--primary);
  --mesh-color-2: #0033aa;
  --transition-speed: 0.5s;

  /* Typography */
  --font-heading: 'JetBrains Mono', monospace;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Shape / Decoration */
  --card-radius: 4px;
  --hero-logo-radius: 24px;
  --heading-transform: none;
  --heading-spacing: -0.01em;
  --glow-spread: 120px;
}

/* ---- BASE ---- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  transition: background var(--transition-speed) cubic-bezier(0.4,0,0.2,1);
}

/* ---- GRAIN OVERLAY ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

/* ---- GRADIENT MESH BACKGROUND ---- */
.mesh-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  transition: opacity var(--transition-speed) ease;
}

.mesh-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(var(--glow-spread));
  opacity: 0.12;
  transition: background var(--transition-speed) ease,
              opacity var(--transition-speed) ease,
              filter var(--transition-speed) ease;
}

.mesh-bg .orb-1 {
  width: 600px; height: 600px;
  background: var(--mesh-color-1);
  top: -200px; right: -100px;
}

.mesh-bg .orb-2 {
  width: 500px; height: 500px;
  background: var(--mesh-color-2);
  bottom: -150px; left: -100px;
  opacity: 0.08;
}

.mesh-bg .orb-3 {
  width: 300px; height: 300px;
  background: var(--primary);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.05;
}

/* ---- LAYOUT ---- */
.page-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ================================================================
   NAV / BRAND SWITCHER
   ================================================================ */
.top-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  background: rgba(5,10,20,0.7);
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition-speed) ease,
              background var(--transition-speed) ease;
}

.brand-switcher {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  transition: border-color var(--transition-speed) ease;
  overflow-x: auto;
  max-width: calc(100vw - 120px);
  scrollbar-width: none;
}

.brand-switcher::-webkit-scrollbar { display: none; }

.back-link {
  position: absolute;
  left: 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.back-link:hover { color: var(--text-primary); }

.back-link svg {
  width: 14px; height: 14px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

.brand-tab {
  padding: 10px 24px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  white-space: nowrap;
}

.brand-tab:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.brand-tab.active {
  color: var(--bg-deep);
  background: var(--primary);
  box-shadow: 0 2px 12px var(--primary-dim);
}

.version-toggle {
  margin-left: 16px;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.version-toggle:hover {
  border-color: var(--border-hover);
  color: var(--text-secondary);
}

.version-toggle .version-label {
  pointer-events: none;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--primary-glow);
  margin-bottom: 32px;
  transition: all var(--transition-speed) ease;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 24px;
  border-radius: var(--hero-logo-radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-speed) ease;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
}

.hero-logo img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.hero-wordmark {
  height: 56px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
  transition: opacity 0.3s ease;
  max-width: 360px;
}

/* ---- 3D BRAND TEXT ---- */
.brand-3d-wrap {
  display: flex;
  justify-content: center;
  margin: -10px auto 20px;
  pointer-events: none;
}

#brand-3d {
  width: 400px;
  height: 180px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 16px;
  letter-spacing: var(--heading-spacing);
  transition: color var(--transition-speed) ease;
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  transition: color var(--transition-speed) ease;
}

/* ================================================================
   SECTION TITLES
   ================================================================ */
.section {
  padding: 80px 0;
}

.section-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  transition: color var(--transition-speed) ease;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.6;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ================================================================
   HOW IT WORKS — STEPS
   ================================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  padding: 36px 28px;
  border-radius: var(--card-radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-speed) ease;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.step-card:hover::before { opacity: 1; }

.step-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary-dim);
  line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition-speed) ease;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
}

.step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.price-card {
  padding: 36px 28px;
  border-radius: var(--card-radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all var(--transition-speed) ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px var(--primary-dim);
  transform: scale(1.03);
}

.price-card.featured .price-badge {
  display: inline-block;
}

.price-badge {
  display: none;
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--primary);
  white-space: nowrap;
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.price-card.featured:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 40px var(--primary-dim);
}

.price-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
}

.price-best-for {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}

.price-type {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.price-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
  transition: background var(--transition-speed) ease;
}

.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.price-features li .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  transition: background var(--transition-speed) ease;
}

.price-features li .check svg {
  width: 10px;
  height: 10px;
  stroke: var(--primary);
  stroke-width: 3;
  fill: none;
  transition: stroke var(--transition-speed) ease;
}

.bonus-text {
  color: var(--primary);
  font-weight: 600;
  margin-left: 4px;
}

.price-cta {
  margin-top: 28px;
  padding: 14px 24px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  text-align: center;
}

.price-cta:hover {
  border-color: var(--primary);
  background: var(--primary-dim);
  color: var(--primary);
}

.price-card.featured .price-cta {
  background: var(--primary);
  color: var(--bg-deep);
  border-color: var(--primary);
}

.price-card.featured .price-cta:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 20px var(--primary-dim);
}

/* ---- Subscription Callout ---- */
.sub-callout {
  border-radius: var(--card-radius);
  padding: 36px 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: all var(--transition-speed) ease;
}

.sub-callout:hover {
  border-color: var(--border-hover);
}

.sub-left { flex: 1; }

.sub-label {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color var(--transition-speed) ease;
}

.sub-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
}

.sub-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.sub-price-block {
  text-align: right;
  flex-shrink: 0;
}

.sub-price {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.sub-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.sub-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ================================================================
   DATA QUALITY / WHY US
   ================================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 36px 28px;
  border-radius: var(--card-radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--transition-speed) ease;
}

.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  transition: color var(--transition-speed) ease;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ================================================================
   CTA / CONTACT
   ================================================================ */
.cta-section {
  text-align: center;
  padding: 80px 0 100px;
}

.cta-box {
  border-radius: 24px;
  padding: 64px 40px;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-surface));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-speed) ease;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, var(--primary-dim), transparent 70%);
  opacity: 0.3;
  transition: opacity var(--transition-speed) ease;
}

.cta-box > * { position: relative; z-index: 1; }

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: var(--heading-spacing);
  text-transform: var(--heading-transform);
}

.cta-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: 12px;
  background: var(--primary);
  color: var(--bg-deep);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.cta-btn:hover {
  filter: brightness(1.15);
  box-shadow: 0 6px 30px var(--primary-dim);
  transform: translateY(-2px);
}

.cta-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
}

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  transition: border-color var(--transition-speed) ease;
}

/* ================================================================
   FADE-IN ANIMATION
   ================================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
  .steps-grid, .pricing-grid, .stats-grid {
    grid-template-columns: 1fr;
  }
  .price-card.featured {
    transform: none;
    order: -1;
  }
  .price-card.featured:hover {
    transform: translateY(-2px);
  }
  .sub-callout {
    flex-direction: column;
    text-align: center;
  }
  .sub-price-block { text-align: center; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 50px 0; }
  .brand-tab { padding: 8px 16px; font-size: 13px; }
  .cta-box { padding: 48px 24px; }
}

/* ================================================================
   BRAND OVERRIDES — data-brand attribute selectors
   ================================================================ */

/* ---- VOXEL DATA: Geometric / Terminal ---- */
[data-brand="voxel"] .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, var(--border) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.3;
  pointer-events: none;
}

[data-brand="voxel"] .step-number {
  font-variant-numeric: tabular-nums;
}

[data-brand="voxel"] .step-card {
  clip-path: polygon(16px 0, 100% 0, 100% 100%, 0 100%, 0 16px);
  transition: clip-path 0s, background var(--transition-speed) ease,
              border-color var(--transition-speed) ease,
              box-shadow var(--transition-speed) ease,
              transform 0.3s ease;
}

/* ---- LEADSTREAM: Flowing / Organic ---- */
[data-brand="leadstream"] .hero-logo {
  border-radius: 50%;
}

[data-brand="leadstream"] .step-number {
  background: linear-gradient(135deg, var(--primary), var(--mesh-color-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 1;
  color: transparent;
}

[data-brand="leadstream"] .mesh-bg .orb {
  opacity: 0.18;
}

/* ---- APEX LEADS: Bold / Angular ---- */
[data-brand="apex"] .step-card,
[data-brand="apex"] .price-card,
[data-brand="apex"] .stat-card,
[data-brand="apex"] .sub-callout {
  border: none;
  border-left: 3px solid var(--primary);
}

[data-brand="apex"] .price-card.featured {
  border: none;
  border-left: 3px solid var(--primary);
  box-shadow: 0 0 40px var(--primary-dim);
}

[data-brand="apex"] .step-number {
  color: var(--primary);
  font-weight: 800;
  opacity: 1;
}

[data-brand="apex"] .cta-box {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%);
  transition: clip-path 0s, background var(--transition-speed) ease,
              border-color var(--transition-speed) ease;
}

/* ---- TESSERA: Architectural Luxury ---- */
[data-brand="tessera"] .step-card,
[data-brand="tessera"] .price-card,
[data-brand="tessera"] .stat-card,
[data-brand="tessera"] .sub-callout {
  border-style: double;
  border-width: 3px;
}

[data-brand="tessera"] .price-card.featured {
  border-style: double;
  border-width: 3px;
}

[data-brand="tessera"] .step-number {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 700;
}

[data-brand="tessera"] .hero-logo {
  border-radius: 0;
}

[data-brand="tessera"] .section {
  border-bottom: 1px solid #D4A853;
  padding-bottom: 79px;
}

[data-brand="tessera"] .section:last-of-type {
  border-bottom: none;
}

/* ---- PULSEPOINT: Clinical / Terminal ---- */
[data-brand="pulsepoint"] .hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(255,255,255,0.015) 3px,
    rgba(255,255,255,0.015) 4px
  );
  pointer-events: none;
}

[data-brand="pulsepoint"] .step-number {
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

[data-brand="pulsepoint"] .cta-btn {
  border-radius: 0;
  box-shadow: none;
}

[data-brand="pulsepoint"] .cta-btn:hover {
  box-shadow: none;
}

/* ---- NIGHTFALL: Premium Minimal ---- */
[data-brand="nightfall"] .mesh-bg .orb-1,
[data-brand="nightfall"] .mesh-bg .orb-2 {
  opacity: 0;
}

[data-brand="nightfall"] .mesh-bg .orb-3 {
  width: 800px;
  height: 800px;
  opacity: 0.08;
  background: radial-gradient(circle, var(--primary), transparent 70%);
}

[data-brand="nightfall"] .step-card,
[data-brand="nightfall"] .price-card,
[data-brand="nightfall"] .stat-card,
[data-brand="nightfall"] .sub-callout {
  border-color: rgba(255,255,255,0.06);
}

[data-brand="nightfall"] .step-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 64px;
  opacity: 0.25;
  font-weight: 400;
}

[data-brand="nightfall"] .hero-badge {
  display: none;
}

[data-brand="nightfall"] .cta-box {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 80px 48px;
}

[data-brand="nightfall"] .cta-box::before {
  opacity: 0;
}
