/* ============================================================
   TOOLBOX — Spatial Interface
   ============================================================ */

:root {
  --bg:        #050507;
  --bg-2:      #0A0A0D;
  --glass:     rgba(255,255,255,0.055);
  --glass-2:   rgba(255,255,255,0.09);
  --border:    rgba(255,255,255,0.09);
  --border-2:  rgba(255,255,255,0.16);
  --orange:    #FF5733;
  --blue:      #4A90A4;
  --blue-dim:  rgba(74,144,164,0.18);
  --text:      #F0F0F2;
  --text-2:    rgba(240,240,242,0.50);
  --text-3:    rgba(240,240,242,0.65);
  --text-4:    rgba(240,240,242,0.10);
  --font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --t:     220ms cubic-bezier(0.25,0.1,0.25,1);
  --t-out: 400ms cubic-bezier(0.16,1,0.3,1);
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
}


/* ── Header ─────────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 48px; height: 56px;
  background: rgba(5,5,7,0.85);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex; align-items: center; gap: 10px;
  user-select: none;
}
.logo-text {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,240,242,0.35);
}

.logo-icon {
  display: flex; align-items: center;
}
.logo-icon svg {
  width: 17px; height: 17px;
  filter: drop-shadow(1.2px 1.8px 0 #000) drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}

.header-right {
  display: flex; align-items: center; gap: 14px;
}

/* ── Apple-style Language Toggle ────────────────────────────── */
.lang-toggle {
  display: flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 3px; gap: 2px;
  cursor: pointer; user-select: none;
}
.lt-opt {
  font-family: var(--font);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 16px;
  color: var(--text-3);
  transition: background 0.2s ease, color 0.2s ease;
}
.lt-opt.active {
  background: rgba(255,255,255,0.15);
  color: var(--text);
}
.lang-toggle:hover .lt-opt:not(.active) { color: var(--text-2); }

/* ── Hero ────────────────────────────────────────────────────── */
.hero {
  padding: 52px 48px 44px;
  position: relative;
}

.header-brand {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,240,242,0.35);
  white-space: nowrap;
}
.hero-ig {
  display: flex; align-items: center;
  color: rgba(240,240,242,0.35);
  transition: color 0.2s ease;
  text-decoration: none;
}
.hero-ig:hover { color: rgba(240,240,242,0.85); }

.toolbox-heading {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--text);
  padding: 22px 0 12px;
  margin: 0;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.5),
    0 6px 16px rgba(0,0,0,0.3),
    0 12px 40px rgba(0,0,0,0.2),
    0 0 60px rgba(255,255,255,0.04);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 500;
  color: rgba(240,240,242,0.65);
  letter-spacing: 0.02em;
  line-height: 1.5;
  max-width: 720px;
  margin: 0 0 32px 0;
  padding-bottom: 0;
}

/* ── Grid ────────────────────────────────────────────────────── */
.main { padding: 4px 48px 110px 96px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(15, 1fr);
  gap: 52px 56px;
}

/* ── Tile ────────────────────────────────────────────────────── */
.product-tile {
  position: relative;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: transform 0.12s ease-out;
  display: flex; flex-direction: row;
  min-height: 280px;
  overflow: visible; /* sidebar hangs outside */
  user-select: none;
}

.product-tile::before, .product-tile::after { display: none; }

.product-tile:not(.soon):hover { cursor: none; }

.product-tile.soon { cursor: default; opacity: 0.38; }


/* ── Tile Body — is the actual glass card ────────────────────── */
.tile-body {
  flex: 1; display: flex; flex-direction: column;
  padding: 20px 22px 18px;
  position: relative; z-index: 1; min-width: 0;
  background: rgba(8, 10, 20, 0.46);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    0 8px 40px rgba(0,0,0,0.50),
    0 2px 8px rgba(0,0,0,0.3),
    inset 0 1px 0 rgba(255,255,255,0.48),
    inset 0 -1px 0 rgba(255,255,255,0.10),
    inset 1px 0 0 rgba(255,255,255,0.18),
    inset -1px 0 0 rgba(255,255,255,0.18),
    inset 0 3px 20px rgba(255,255,255,0.07);
  overflow: hidden;
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
}

/* Corner glass highlights on tile-body */
.tile-body::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(255,255,255,0.18) 0%, transparent 42%),
    radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.16) 0%, transparent 42%),
    radial-gradient(ellipse at 100% 100%, rgba(255,255,255,0.05) 0%, transparent 42%),
    radial-gradient(ellipse at 0% 100%, rgba(255,255,255,0.05) 0%, transparent 42%);
  pointer-events: none; z-index: 0;
}

/* Cursor glow on tile-body */
.tile-body::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 16px;
  background: radial-gradient(
    circle at var(--gx, 50%) var(--gy, 50%),
    var(--tile-glow, rgba(74,144,164,0.16)) 0%,
    transparent 62%
  );
  pointer-events: none; opacity: 0;
  transition: opacity 0.2s ease; z-index: 0;
}
.product-tile:not(.soon):hover .tile-body::after { opacity: 1; }
.product-tile:not(.soon):hover .tile-body {
  background: rgba(8, 10, 20, 0.55);
  border-color: rgba(255,255,255,0.20);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 4px 12px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.58),
    inset 0 -1px 0 rgba(255,255,255,0.12),
    inset 1px 0 0 rgba(255,255,255,0.22),
    inset -1px 0 0 rgba(255,255,255,0.22),
    inset 0 3px 24px rgba(255,255,255,0.08);
}
.product-tile.soon .tile-body {
  border-color: rgba(255,255,255,0.08);
}

/* ── Label Tag — physical module / cartridge spine ────────────── */
.tile-label {
  position: absolute;
  left: -32px;
  top: 28%; bottom: 28%;
  width: 32px;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  border-radius: 8px 0 0 8px;
  /* depth: left highlight edge + right shadow edge */
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.22) 0%,
    transparent 18%,
    rgba(0,0,0,0.18) 85%,
    rgba(0,0,0,0.35) 100%
  );
  box-shadow:
    /* ambient glow — soft, spread, natural */
    -2px 0 12px var(--label-glow),
    -6px 0 28px var(--label-glow-soft),
    -12px 0 48px var(--label-glow-soft),
    /* subtle drop shadow below */
    0 6px 18px rgba(0,0,0,0.45),
    0 12px 32px rgba(0,0,0,0.25),
    /* gentle junction bleed into card */
    2px 0 8px var(--label-glow-soft);
  /* left edge highlight line */
  border-left: 1.5px solid rgba(255,255,255,0.30);
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(0,0,0,0.5);
}
/* color bleed into card */
.tile-label::after {
  content: '';
  position: absolute;
  right: -12px; top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(to right, var(--label-glow-soft), transparent);
  pointer-events: none;
}
/* top corner notch — cartridge feel */
.tile-label::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: 0;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border-radius: 8px 0 0 0;
  pointer-events: none;
}
.tile-label-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 9px; font-weight: 900;
  letter-spacing: 0.18em; text-transform: uppercase;
  white-space: nowrap;
  color: var(--label-text-color, rgba(0,0,0,0.85));
  position: relative; z-index: 1;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* 1. Header */
.tile-header {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 10px; gap: 8px;
}
.tile-index {
  font-size: 16px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(240,240,242,0.65);
  font-variant-numeric: tabular-nums;
  white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; min-width: 0;
}
.tile-status-tag {
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240,240,242,0.70);
  padding: 3px 9px;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  line-height: 1; flex-shrink: 0;
}
.tile-status-tag.st-free { color: #30D158; border-color: rgba(48,209,88,0.40); }
.tile-status-tag.st-open { color: #30D158; border-color: rgba(48,209,88,0.40); }
.tile-status-tag.st-soon { color: var(--text-3); border-color: rgba(255,255,255,0.12); }
.tile-status-tag.st-noframe { border-color: transparent; background: transparent; padding: 0; }
.lock-open svg { filter: drop-shadow(0 0 6px rgba(0,255,102,0.9)) drop-shadow(0 0 14px rgba(0,255,102,0.5)); }

/* 2. Rule */
.tile-rule {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 0 0 14px;
}

/* 3. Main */
.tile-main {
  flex: 1; display: flex; flex-direction: column;
}
.tile-shortname {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(30px, 3.8vw, 60px);
  font-weight: 700;
  letter-spacing: -0.01em; text-transform: uppercase;
  line-height: 0.95;
  width: 100%; display: block;
  word-break: normal;
  overflow-wrap: break-word;
  margin-bottom: 12px;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.5),
    0 6px 16px rgba(0,0,0,0.3),
    0 12px 40px rgba(0,0,0,0.2),
    0 0 50px var(--tile-glow, rgba(255,255,255,0.04));
}

/* Bullets — always visible */
.tile-desc-wrap {
  width: 100%; flex: 1;
}
.tile-bullet {
  display: flex; align-items: flex-start;
  gap: 8px;
  font-size: 13px; font-weight: 700;
  line-height: 1.4;
  color: rgba(255,255,255,0.90);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.tile-bullet:last-child { border-bottom: none; }
.tile-bullet span:first-child {
  color: rgba(255,255,255,0.40); flex-shrink: 0;
  font-size: 15px; font-weight: 900;
  line-height: 1;
}
/* ── Icon System — CSS 3D Objects ───────────────────────────── */
.icon-scene {
  width: 72px; height: 72px;
  perspective: 600px;
  display: flex; align-items: center; justify-content: center;
}

.icon-3d {
  width: 0; height: 0;
  transform-style: preserve-3d;
  animation: obj-spin 18s linear infinite;
}

.product-tile:hover .icon-3d { animation-duration: 6s; }

@keyframes obj-spin {
  from { transform: rotateX(var(--rx, 18deg)) rotateY(0deg);   }
  to   { transform: rotateX(var(--rx, 18deg)) rotateY(360deg); }
}

/* Base face — all faces share this */
.f3 { position: absolute; backface-visibility: hidden; }

/* Allow these to show from both sides */
.gb-sphere, .gb-ring, .bk-left, .bk-right { backface-visibility: visible; }

/* ── THE SIGNAL — Holographic Card (W=42 H=58 D=5) ── */
.cd-front, .cd-back {
  width: 42px; height: 58px; top: -29px; left: -21px;
  border-radius: 4px;
}
.cd-front {
  transform: translateZ(2.5px);
  background: url('assets/signal-card.jpg') center/cover no-repeat;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2);
  overflow: hidden;
}
.cd-front::after {
  content: ''; position: absolute; inset: 0; border-radius: 4px;
  background: linear-gradient(
    115deg,
    transparent 10%,
    rgba(255,220,80,0.4) 32%,
    rgba(80,200,255,0.4) 50%,
    rgba(200,80,255,0.25) 66%,
    transparent 80%
  );
  animation: holo 3.5s ease-in-out infinite;
}
@keyframes holo {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1;  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .icon-3d { animation: none !important; }
  @keyframes holo { from, to { background-position: 0% 50%; } }
}

/* ── A11y helpers ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #FF5733;
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  z-index: 9999;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: top 0.15s;
}
.skip-link:focus {
  top: 8px;
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cd-back {
  transform: rotateY(180deg) translateZ(2.5px);
  background: radial-gradient(circle at 42% 38%, #2a1f52 0%, #100c28 100%);
}
.cd-back::after {
  content: ''; position: absolute; inset: 5px;
  border: 1px solid rgba(140,100,240,0.35); border-radius: 2px;
}
.cd-top  { width: 42px; height: 5px; top: -2.5px; left: -21px; transform: rotateX( 90deg) translateZ(29px); background: #c8c8d0; }
.cd-bot  { width: 42px; height: 5px; top: -2.5px; left: -21px; transform: rotateX(-90deg) translateZ(29px); background: #9898a0; }
.cd-left { width: 5px; height: 58px; top: -29px; left: -2.5px; transform: rotateY(-90deg) translateZ(21px); background: linear-gradient(to bottom, #dcdce4, #acacb4); }
.cd-right{ width: 5px; height: 58px; top: -29px; left: -2.5px; transform: rotateY( 90deg) translateZ(21px); background: linear-gradient(to bottom, #b4b4bc, #848490); }

/* ── GEO — World Globe (r=24 dia=48) ── */
.gb-sphere {
  width: 48px; height: 48px; top: -24px; left: -24px;
  border-radius: 50%;
  background: radial-gradient(circle at 33% 28%,
    #90d8f0 0%, #2a88b8 35%, #1a5a80 65%, #0c2840 100%);
  box-shadow: inset -10px -7px 20px rgba(0,0,0,0.65),
              inset 6px 5px 14px rgba(140,220,255,0.25);
}
.gb-ring {
  width: 48px; height: 48px; top: -24px; left: -24px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45);
  background: transparent;
}
.gr-eq   { transform: rotateX(90deg); }
.gr-n30  { transform: rotateX(60deg);  border-color: rgba(255,255,255,0.25); }
.gr-s30  { transform: rotateX(120deg); border-color: rgba(255,255,255,0.25); }
.gr-lon0 { border-color: rgba(255,255,255,0.32); }
.gr-lon60{ transform: rotateY(60deg);  border-color: rgba(255,255,255,0.2); }

/* ── NORM — Blueprint Cylinder (r=16 h=46 8 faces 13×46) ── */
.cyl-face { width: 13px; height: 46px; top: -23px; left: -6.5px; }
.cyl-cap  { width: 32px; height: 32px; top: -16px; left: -16px; border-radius: 50%; }
.cyl-top-cap { transform: rotateX( 90deg) translateZ(23px); background: radial-gradient(circle at 36% 33%, #6090ff, #0e2ea8); }
.cyl-bot-cap { transform: rotateX(-90deg) translateZ(23px); background: #0a1e60; }
.cf0 { transform: rotateY(  0deg) translateZ(16px); background: #3870ff; }
.cf1 { transform: rotateY( 45deg) translateZ(16px); background: #2860ee; }
.cf2 { transform: rotateY( 90deg) translateZ(16px); background: #1a50d0; }
.cf3 { transform: rotateY(135deg) translateZ(16px); background: #1038a8; }
.cf4 { transform: rotateY(180deg) translateZ(16px); background: #081e68; }
.cf5 { transform: rotateY(225deg) translateZ(16px); background: #1038a8; }
.cf6 { transform: rotateY(270deg) translateZ(16px); background: #1a50d0; }
.cf7 { transform: rotateY(315deg) translateZ(16px); background: #2860ee; }

/* ── ARCHIPEDIA — Open Book (page 32×46, spine 6) ── */
.bk-left {
  width: 32px; height: 46px; top: -23px; left: -32px;
  transform-origin: right center;
  transform: rotateY(30deg);
  background: linear-gradient(to right, #c8c8c0, #f0f0e8);
}
.bk-left::after {
  content: ''; position: absolute; top: 10px; left: 5px; right: 5px; bottom: 10px;
  background: repeating-linear-gradient(180deg,
    transparent 0, transparent 5px,
    rgba(0,0,0,0.15) 5px, rgba(0,0,0,0.15) 6px);
}
.bk-right {
  width: 32px; height: 46px; top: -23px; left: 0;
  transform-origin: left center;
  transform: rotateY(-30deg);
  background: linear-gradient(to left, #b8b8b0, #e8e8e0);
}
.bk-right::after {
  content: ''; position: absolute; top: 10px; left: 5px; right: 5px; bottom: 10px;
  background: repeating-linear-gradient(180deg,
    transparent 0, transparent 5px,
    rgba(0,0,0,0.12) 5px, rgba(0,0,0,0.12) 6px);
}
.bk-spine {
  width: 6px; height: 46px; top: -23px; left: -3px;
  background: linear-gradient(to right, #2a2a3a, #4a4a5a, #2a2a3a);
}

/* ── BUNDLE — Steel Cube (42×42×42) ── */
.bx-face { width: 42px; height: 42px; top: -21px; left: -21px; }
.bx-front { transform: translateZ(21px);            background: linear-gradient(to bottom, #c0c0c8, #9a9aa2); }
.bx-back  { transform: rotateY(180deg) translateZ(21px); background: #606068; }
.bx-left  { transform: rotateY(-90deg) translateZ(21px); background: linear-gradient(to bottom, #a8a8b0, #808088); }
.bx-right { transform: rotateY( 90deg) translateZ(21px); background: linear-gradient(to bottom, #787880, #585860); }
.bx-top   { transform: rotateX( 90deg) translateZ(21px); background: linear-gradient(135deg, #e2e2ea, #c2c2ca); }
.bx-bot   { transform: rotateX(-90deg) translateZ(21px); background: #505058; }

/* Energy — Lightning bolt + rings */
.en-bolt-top, .en-bolt-mid, .en-bolt-bot {
  width: 18px; height: 14px; left: -9px;
  background: #FBBF24;
}
.en-bolt-top {
  top: -20px;
  clip-path: polygon(60% 0%, 100% 50%, 50% 50%);
  transform: translateZ(6px);
}
.en-bolt-mid {
  top: -10px;
  clip-path: polygon(50% 0%, 100% 50%, 40% 50%);
  transform: translateZ(6px);
  background: #F59E0B;
}
.en-bolt-bot {
  top: 0px;
  clip-path: polygon(60% 0%, 40% 100%, 0% 50%);
  transform: translateZ(6px);
  background: #D97706;
}
.en-ring {
  width: 36px; height: 36px; top: -18px; left: -18px;
  border: 2px solid rgba(251,191,36,0.35);
  border-radius: 50%;
  background: transparent;
}
.en-r1 { transform: rotateX(65deg) translateZ(2px); }
.en-r2 { transform: rotateX(65deg) rotateY(90deg) translateZ(2px); border-color: rgba(251,191,36,0.2); }

/* 6. Commerce zone */
.tile-commerce {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 12px; gap: 10px;
  min-width: 0;
}
.tile-price {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: 34px; font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1; flex-shrink: 0;
}
.tile-price-sub {
  font-size: 7px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(240,240,242,0.65);
  margin-top: 4px;
}
.tile-cta-btn {
  font-family: var(--font);
  font-size: 14px; font-weight: 900;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all var(--t);
  white-space: nowrap; flex-shrink: 1; min-width: 0;
  max-width: 100%;
}
.product-tile:hover .tile-cta-btn {
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}
.product-tile.soon .tile-cta-btn {
  color: var(--text-3);
  border-color: rgba(255,255,255,0.12);
  cursor: default;
}

/* ── Custom cursor bubble ────────────────────────────────────── */
.cursor-bubble {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  background: rgba(240,240,242,0.95);
  color: #0A0A0D;
  font-family: var(--font);
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.20em; text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 20px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.12s ease;
  transform: translate(-50%, calc(-100% - 10px));
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.cursor-bubble::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: rgba(240,240,242,0.95);
}
.cursor-bubble.visible { opacity: 1; }

/* ── Unlock Modal ────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.modal-backdrop.active { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -46%);
  z-index: 201;
  width: 100%; max-width: 420px;
  background: rgba(8,10,20,0.92);
  backdrop-filter: blur(40px) saturate(1.6);
  -webkit-backdrop-filter: blur(40px) saturate(1.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 44px 40px 36px;
  text-align: center;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t), transform var(--t);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.7),
    inset 0 1px 0 rgba(255,255,255,0.32),
    inset 0 -1px 0 rgba(255,255,255,0.06),
    inset 1px 0 0 rgba(255,255,255,0.08),
    inset -1px 0 0 rgba(255,255,255,0.08);
}
.modal.active {
  opacity: 1; pointer-events: all;
  transform: translate(-50%, -50%);
}

.modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); transition: all var(--t);
}
.modal-close:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.modal-close svg { width: 12px; height: 12px; }

.modal-icon {
  width: 64px; height: 64px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.15);
}

.modal-title {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(28px, 3.5vw, 36px); font-weight: 700;
  letter-spacing: -0.02em; text-transform: uppercase;
  color: var(--text);
  line-height: 1; margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5), 0 6px 16px rgba(0,0,0,0.3);
}
.modal-sub {
  font-size: 13px; font-weight: 400;
  color: rgba(240,240,242,0.60);
  line-height: 1.65; margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.modal-input {
  width: 100%;
  background: rgba(8,10,20,0.46);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 2px 8px rgba(0,0,0,0.3);
  color: var(--text); font-family: var(--font);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.28em; text-align: center;
  text-transform: uppercase;
  padding: 14px 16px; outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  -webkit-appearance: none;
  margin-bottom: 8px;
}
.modal-input::placeholder { color: var(--text-3); letter-spacing: 0.20em; font-weight: 500; }
.modal-input:focus {
  border-color: rgba(255,255,255,0.28);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.06),
    inset 0 2px 8px rgba(0,0,0,0.3),
    0 0 0 2px rgba(255,255,255,0.06);
}
.modal-input.error {
  border-color: rgba(255,69,58,0.55);
  animation: shake 0.32s ease;
}
@keyframes shake {
  0%,100%{transform:translateX(0)} 25%,75%{transform:translateX(-5px)} 50%{transform:translateX(5px)}
}

.modal-error {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; color: #FF453A;
  min-height: 16px; opacity: 0;
  transition: opacity var(--t); margin-bottom: 12px;
}
.modal-error.visible { opacity: 1; }

.btn-unlock {
  width: 100%; padding: 16px;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: 18px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: #fff;
  background: var(--modal-accent, var(--blue));
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.28),
    0 0 32px var(--modal-glow, rgba(74,144,164,0.3));
  transition: all var(--t); margin-bottom: 12px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.btn-unlock:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 40px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.30),
    0 0 50px var(--modal-glow, rgba(74,144,164,0.45));
  filter: brightness(1.1);
}

.modal-or {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 12px;
}
.modal-or::before, .modal-or::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.08);
}
.modal-or span { font-size: 10px; font-weight: 600; color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase; }

.btn-buy {
  display: flex; align-items: center;
  justify-content: center; gap: 6px;
  width: 100%; padding: 14px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.22);
  color: rgba(240,240,242,0.70); text-decoration: none;
  font-family: var(--font);
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  border-radius: 50px; cursor: pointer;
  transition: all var(--t);
}
.btn-buy:hover { border-color: rgba(255,255,255,0.50); color: var(--text); background: rgba(255,255,255,0.04); }

/* ── Detail Overlay ──────────────────────────────────────────── */
#detail-overlay {
  position: fixed; inset: 0; z-index: 300;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
#detail-overlay.active { opacity: 1; pointer-events: all; }
#detail-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
#detail-panel {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
}
#detail-close { display: none; }
#detail-frame { flex: 1; width: 100%; border: none; }

/* ── Icon Glow Animations ────────────────────────────────────── */
@keyframes glow-signal {
  0%,100% { filter: drop-shadow(0 0 5px rgba(255,87,51,0.6)) drop-shadow(0 0 2px rgba(255,87,51,1)); }
  50%      { filter: drop-shadow(0 0 14px rgba(255,87,51,0.9)) drop-shadow(0 0 28px rgba(255,87,51,0.3)); }
}
.icon-glow-signal { animation: glow-signal 2.8s ease-in-out infinite; }

/* ── Footer ──────────────────────────────────────────────────── */
.footer {
  padding: 22px 48px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center;
  justify-content: space-between;
}
.footer span, .footer a {
  font-size: 10px; letter-spacing: 0.12em;
  color: var(--text-3); text-decoration: none;
  transition: color var(--t);
}
.footer a:hover { color: var(--text-2); }
/* ── Tile: Keyboard Focus ────────────────────────────────────── */
.product-tile:not(.soon):focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}


/* ── Preview Architektur: Document-Flow ─────────────────────────
   Wenn preview open: Dashboard wird fixed+blurred aus dem Flow gehoben,
   Preview-Panel ist das einzige Layout-Kind im Body → window scroll
   = panel scroll, nativ, Safari-proof. */
body.preview-open #dashboard-layout {
  position: fixed;
  left: 0; right: 0;
  top: calc(-1 * var(--saved-scroll-y, 0px));
  width: 100%;
  filter: blur(8px) brightness(0.55);
  pointer-events: none;
  z-index: 1;
}

/* Preview-Panel: IN FLOW, display:none/block, transparent wrapper */
#preview-panel {
  display: none;
  width: 100%;
  min-height: 100vh;
  background: transparent;
  position: relative;
  z-index: 2;
}
#preview-panel.active { display: block; }

/* Sichtbare Panel-Box: rechts 55vw, mit Chrome. Slide-in via transform. */
#pp-inner {
  margin-left: auto;
  width: 55vw;
  min-height: 100vh;
  background: rgba(8,8,11,0.92);
  border-left: 1px solid var(--border-2);
  box-shadow: -24px 0 72px rgba(0,0,0,0.6);
  transform: translateX(105%);
  transition: transform var(--t-out);
}
#preview-panel.active #pp-inner { transform: translateX(0); }

/* Close button — fixed to viewport, not a child of the scroll area */
.pp-close-x {
  position: fixed; top: 72px; right: 16px; z-index: 151;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text-3); cursor: pointer;
  display: none; align-items: center; justify-content: center;
  transition: background var(--t), color var(--t);
}
#preview-panel.active ~ .pp-close-x { display: flex; }
.pp-close-x:hover { background: rgba(255,255,255,0.12); color: var(--text); }
.pp-close-x:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
.pp-close-x svg { width: 11px; height: 11px; }

/* Back button (mobile only) — Apple-style, inside hero */
.pp-back-mobile {
  display: none;
  align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: none;
  color: #fff;
  cursor: pointer;
  margin-bottom: 16px;
  -webkit-tap-highlight-color: transparent;
  transition: background var(--t);
}
.pp-back-mobile svg { width: 18px; height: 18px; flex-shrink: 0; }
.pp-back-mobile:active { background: rgba(255,255,255,0.20); }

/* ── Preview Panel Content ───────────────────────────────────── */

/* Hero */
.pp-hero {
  padding: 40px 44px 32px;
  position: relative;
}
.pp-code {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(240,240,242,0.50);
  margin-bottom: 12px;
}
.pp-title {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-shadow:
    0 2px 4px rgba(0,0,0,0.5),
    0 6px 20px rgba(0,0,0,0.3);
}
.pp-killer {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(240,240,242,0.92);
  max-width: 440px;
  letter-spacing: 0.01em;
}

/* Screenshots */
.pp-screens {
  padding: 0 44px 36px;
}
.pp-screens--mockup {
  padding: 0 44px 36px;
}

/* Features */
.pp-features {
  padding: 36px 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pp-section-label {
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(240,240,242,0.55);
  margin-bottom: 20px;
}
.pp-feature-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(240,240,242,0.90);
  line-height: 1.5;
}
.pp-feature-item:last-child { border-bottom: none; }
.pp-feature-arrow {
  font-size: 18px; flex-shrink: 0;
  margin-top: 1px; line-height: 1;
}

/* About */
.pp-desc {
  padding: 36px 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex: 1;
}
.pp-summary {
  font-size: 16px; line-height: 1.80;
  color: rgba(240,240,242,0.75);
}

/* Footer */
.pp-footer {
  padding: 32px 44px;
  flex-shrink: 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.pp-price-row {
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
}
.pp-price-big {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(40px, 4vw, 64px);
  font-weight: 700; letter-spacing: -0.02em;
  color: #fff; line-height: 1;
}
.pp-price-sub {
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4); margin-left: 8px; text-transform: uppercase;
}
.pp-cta {
  padding: 16px 32px; border: none; border-radius: 50px;
  font-family: var(--font); font-size: 13px; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: all var(--t);
  white-space: nowrap;
}
.pp-cta:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.4); filter: brightness(1.08); }
.pp-cta:disabled {
  background: rgba(255,255,255,0.06) !important; color: var(--text-3) !important;
  cursor: default; border: 1px solid rgba(255,255,255,0.10);
}
.pp-cta-secondary {
  display: block; text-align: center; margin-top: 14px;
  font-size: 11px; color: var(--text-3);
  letter-spacing: 0.10em; text-decoration: none; text-transform: uppercase;
  transition: color var(--t);
}
.pp-cta-secondary:hover { color: var(--text-2); }

/* ── Blueprint Preview: Screenshots ─────────────────────────── */
.pp-shots {
  display: flex; flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}
.pp-shots--mockup .pp-shot-mock { position: relative; }

.pp-shot-row {
  display: flex; flex-direction: column;
  gap: 20px;
}
.pp-shot-cell {
  position: relative; overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pp-shot-img {
  width: 100%; display: block;
  height: auto;
}
.pp-shot-img--hero,
.pp-shot-img--sub { height: auto; }

.pp-shot-label {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 8px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.80);
  background: rgba(0,0,0,0.65);
  padding: 3px 8px; border-radius: 4px;
  backdrop-filter: blur(6px);
  pointer-events: none;
}

/* ── Blueprint Preview: Stats Bar ────────────────────────────── */
.pp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: 28px 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pp-stat {
  display: flex; flex-direction: column;
  align-items: center; gap: 5px;
  padding: 0 8px;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.pp-stat:last-child { border-right: none; }
.pp-stat-n {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700; letter-spacing: -0.02em; line-height: 1;
}
.pp-stat-l {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(240,240,242,0.55);
  text-align: center;
}

/* ── Blueprint Preview: How It Works ─────────────────────────── */
.pp-steps {
  padding: 36px 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pp-steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 20px;
}
.pp-step-n {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: 52px; font-weight: 700;
  line-height: 1; letter-spacing: -0.03em;
  color: rgba(255,255,255,0.05);
  margin-bottom: 10px;
}
.pp-step-t {
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.pp-step-d {
  font-size: 14px; font-weight: 400;
  line-height: 1.65; color: rgba(240,240,242,0.78);
}

/* ── Blueprint Preview: Data Layers ─────────────────────────── */
.pp-layers {
  padding: 36px 44px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pp-layers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px; margin-top: 16px;
}
.pp-layer-cell {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(240,240,242,0.70);
}
.pp-layer-dot {
  width: 5px; height: 5px; border-radius: 50%;
  flex-shrink: 0; opacity: 0.75;
}

/* ── Blueprint Preview: Closing Section ─────────────────────── */
.pp-closing {
  padding: 52px 44px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pp-closing-n {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 8px;
}
.pp-closing-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(240,240,242,0.55);
  margin-bottom: 22px;
}
.pp-closing-head {
  font-family: 'Clash Display', 'Helvetica Neue', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700; line-height: 1.25;
  letter-spacing: -0.01em;
  color: rgba(240,240,242,0.95);
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(15, 1fr); }
}
@media (max-width: 820px) {
  .header  { padding: 0 24px; }
  .hero    { padding: 40px 24px 40px; }
  .main    { padding: 4px 24px 80px 50px; }
  .footer  { padding: 20px 24px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid .product-tile { grid-column: span 1 !important; }
  .tile-body { padding: 18px 16px 16px; }
  .tile-cta-btn { padding: 7px 12px; font-size: 12px; letter-spacing: 0.10em; }
  .tile-price { font-size: 26px; }
}
/* ── Touch devices ── */
@media (hover: none) {
  .cursor-bubble { display: none !important; }
}

/* ── Preview panel — mobile: normal fullscreen page ────────── */
@media (max-width: 768px) {
  /* Mobile: Dashboard komplett ausblenden statt blurren */
  body.preview-open #dashboard-layout {
    display: none;
    filter: none;
    position: static;
  }
  #preview-panel {
    background: var(--bg);
    min-height: 100dvh;
  }
  /* Mobile: pp-inner verliert die Desktop-Chrome-Styles */
  #pp-inner {
    margin: 0; width: 100%; min-height: 100dvh;
    background: var(--bg);
    border-left: 0;
    box-shadow: none;
    transform: none !important;
  }

  /* Hide desktop X, show mobile back button */
  #preview-panel.active ~ .pp-close-x,
  .pp-close-x { display: none !important; }
  .pp-back-mobile { display: flex; }

  /* Mobile padding overrides */
  .pp-hero { padding: max(20px, env(safe-area-inset-top, 20px)) 20px 24px; }
  .pp-desc { padding: 24px 20px; }
  .pp-stats { padding: 20px 20px; }
  .pp-features { padding: 24px 20px; }
  .pp-steps { padding: 24px 20px; }
  .pp-layers { padding: 24px 20px; }
  .pp-closing { padding: 40px 20px; }
  .pp-footer { padding: 20px 20px calc(20px + env(safe-area-inset-bottom, 0px)); }

  /* Back button in iframe fullscreen view */
  #detail-close {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    padding-top: max(14px, env(safe-area-inset-top, 14px));
    background: rgba(8,8,11,0.98);
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text-2);
    font-family: var(--font);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.12em; text-transform: uppercase;
    cursor: pointer;
    width: 100%;
    flex-shrink: 0;
    z-index: 1;
  }
  #detail-close svg { width: 20px; height: 20px; }
  #detail-close:active { background: rgba(255,255,255,0.06); }
}

/* ── Small mobile (≤580px) ───────────────────────────────────── */
@media (max-width: 580px) {
  .header  { height: 48px; padding: 0 16px; }
  .hero    { padding: 32px 20px 36px; }
  .main    { padding: 4px 12px 80px 38px; }
  .footer  { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .toolbox-heading { font-size: clamp(56px, 14vw, 80px); letter-spacing: -0.02em; padding: 18px 0 16px; }
  .hero-subtitle { font-size: 14px; max-width: 100%; }
  .products-grid { grid-template-columns: 1fr; gap: 12px; }
  .products-grid .product-tile { grid-column: 1 / -1 !important; }
  .product-tile { min-height: 240px; }
  .tile-body { padding: 18px 18px 16px; }
  .tile-sidebar { width: 20px; }
  .tile-shortname { font-size: clamp(28px, 9vw, 48px); }
  .tile-commerce { padding-top: 12px; }
  .tile-price { font-size: 22px; }
  .modal { max-width: calc(100vw - 32px); padding: 32px 24px 24px; border-radius: 22px; }
  .logo { font-size: 11px; letter-spacing: 0.22em; }
  .lang-toggle { padding: 2px; }
  .lt-opt { padding: 3px 9px; font-size: 9px; }
}

/* ── Focus-Visible — Keyboard Accessibility (WCAG 2.4.7) ── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.lt-opt:focus-visible,
.btn-unlock:focus-visible,
.btn-buy:focus-visible,
.tile-cta-btn:focus-visible,
.pp-cta:focus-visible,
.pp-cta-secondary:focus-visible,
#detail-close:focus-visible,
.modal-close:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.modal-input:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 0;
}

/* ── Footer Legal Link ──────────────────────────────────────── */
.footer-legal {
  font-size: 10px;
  letter-spacing: 0.10em;
  color: var(--text-3);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.footer-legal:hover { color: var(--text-2); }

/* ── Touch Targets — Invisible 44px Hit Areas (WCAG 2.5.8) ── */
.lt-opt,
.modal-close,
.tile-cta-btn,
#detail-close {
  position: relative;
}
.lt-opt::after,
.modal-close::after,
.tile-cta-btn::after,
#preview-close::after,
#detail-close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 44px;
  min-height: 44px;
  width: 100%;
  height: 100%;
}
