/* wetzo.io — editorial / brutalist / techy redesign */

:root {
  --bg: #0A0A0B;
  --bg-2: #111114;
  --paper: #F2EFE9;
  --ink: #E8E5DD;
  --muted: rgba(232, 229, 221, 0.45);
  --rule: rgba(232, 229, 221, 0.14);
  --accent: oklch(0.78 0.14 75);     /* warm amber */
  --accent-2: oklch(0.86 0.05 80);
  --serif: "Instrument Serif", "Times New Roman", serif;
  --sans: "Inter", -apple-system, system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  cursor: none;
  overflow-x: hidden;
}
@media (pointer: coarse) {
  body { cursor: auto; }
}

a, button { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #0A0A0B; }

.serif { font-family: var(--serif); font-weight: 400; }
.mono { font-family: var(--mono); font-weight: 400; font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; }
.muted { color: var(--muted); }
.italic { font-style: italic; }

/* ───────── BACKGROUND GRID ───────── */
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(to right, rgba(232,229,221,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(232,229,221,.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 30%, transparent 80%);
}
.bg-noise {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ───────── NAV ───────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  color: white;
}
.nav .brand { display: flex; align-items: center; gap: 12px; }
.nav .brand-logo {
  display: block;
  width: 34px;
  height: auto;
  object-fit: contain;
  opacity: .9;
  filter: drop-shadow(0 0 10px rgba(232,229,221,.10));
  transition: opacity .25s, filter .25s, transform .25s;
}
.nav .brand:hover .brand-logo {
  opacity: 1;
  filter: drop-shadow(0 0 16px rgba(232,179,106,.22));
  transform: translateY(-1px);
}
.nav .brand .mark {
  width: 22px; height: 22px;
  border: 1px solid currentColor;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 14px;
}
.nav .links { display: flex; gap: 22px; }
.nav .links a { opacity: .8; transition: opacity .2s; }
.nav .links a:hover { opacity: 1; }
.nav .right { display: flex; align-items: center; gap: 10px; }
.nav .right .dot { width: 6px; height: 6px; border-radius: 50%; background: #5DD879; box-shadow: 0 0 10px #5DD879; }

/* ───────── CURSOR ───────── */
.cursor-root { position: fixed; inset: 0; pointer-events: none; z-index: 9999; }
.cur-dot {
  position: fixed; left: 0; top: 0; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  pointer-events: none; mix-blend-mode: difference;
  will-change: transform;
}
.cur-ring {
  position: fixed; left: 0; top: 0; width: 36px; height: 36px;
  border: 1px solid rgba(242,239,233,.35);
  border-radius: 50%;
  pointer-events: none;
  transition: width .2s, height .2s, border-color .2s, background .2s;
  will-change: transform;
}
.cur-x, .cur-y {
  position: fixed; pointer-events: none;
  background: rgba(232, 179, 106, .2);
  transition: opacity .2s;
}
.cur-x { left: 0; right: 0; height: 1px; }
.cur-y { top: 0; bottom: 0; width: 1px; }
.cur-label {
  position: fixed; left: 0; top: 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); opacity: 0; transition: opacity .2s;
  white-space: nowrap; pointer-events: none;
  background: rgba(10,10,11,.6); padding: 3px 7px;
  border: 1px solid rgba(232,179,106,.2);
  backdrop-filter: blur(8px);
}

/* ───────── HERO ───────── */
.hero-wrap {
  position: relative; height: 140vh;
  z-index: 5;
}
.hero-sticky {
  position: sticky; top: 0; height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  width: min(1400px, calc(100vw - 56px));
  height: calc(100vh - 56px);
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  will-change: transform, opacity, filter;
}

.hero-status {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
}
.hs-col { display: flex; align-items: center; gap: 8px; }
.hs-col.center { justify-content: center; }
.hs-col.right { justify-content: flex-end; }

.dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }
.dot.live { background: #5DD879; box-shadow: 0 0 8px #5DD879; animation: pulse 2s ease-in-out infinite; }
.dot.open { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.dot.private { background: rgba(232,229,221,.4); }
@keyframes pulse { 50% { opacity: .35; } }

.hero-grid {
  display: grid;
  align-content: center;
  justify-items: center;
  position: relative;
  padding: 30px 0;
}
.hero-meta {
  position: absolute; top: 0; left: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-display {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(80px, 17vw, 280px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-align: center;
  margin: 0;
}
.hero-display .line { display: block; }
.hero-display .serif.outline {
  -webkit-text-stroke: 1.5px var(--ink);
  color: transparent;
}
.hero-display .tag {
  font-family: var(--sans);
  font-size: clamp(16px, 1.6vw, 22px);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 400;
  margin-top: 28px;
  color: var(--muted);
}
.hero-display .tag em {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4em;
  color: var(--accent);
  letter-spacing: 0;
  text-transform: none;
  margin-right: 6px;
}

.hero-foot {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: end;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
}
.hero-foot > div .muted { display: block; margin-bottom: 4px; }

.hero-cta-wrap { display: flex; justify-content: flex-end; }
.hero-cta {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 14px 22px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(242,239,233,.02);
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s, color .3s;
}
.hero-cta:hover { background: var(--accent); color: #0A0A0B; border-color: var(--accent); }
.hero-cta .ar { font-family: var(--serif); font-size: 18px; }

.corners { position: absolute; inset: 12px; pointer-events: none; }
.corners .c {
  position: absolute; color: var(--muted); font-family: var(--mono); font-size: 16px;
  width: 20px; height: 20px; display: grid; place-items: center;
}
.corners .tl { top: 0; left: 0; }
.corners .tr { top: 0; right: 0; }
.corners .bl { bottom: 0; left: 0; }
.corners .br { bottom: 0; right: 0; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 10px; letter-spacing: .25em;
  color: var(--muted);
}
.scroll-hint .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(0.4); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ───────── ABOUT ───────── */
.about {
  position: relative; z-index: 6;
  padding: 72px 56px 96px;
  max-width: 1400px;
  margin: 0 auto;
}
.about-rule {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 48px;
}
.about-rule .line { flex: 1; height: 1px; background: var(--rule); }
.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: start;
}
.big-quote {
  font-family: var(--sans);
  font-size: clamp(28px, 3.4vw, 52px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  font-weight: 300;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
.big-quote .serif {
  font-family: var(--serif);
  font-weight: 400;
}
.big-quote .serif.italic { font-style: italic; color: var(--accent); }

.about-side { display: flex; flex-direction: column; gap: 18px; padding-top: 12px; }
.kv {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule);
}
.live-line { display: inline-flex; align-items: center; gap: 8px; color: var(--accent); }

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1);
}
[data-reveal].in { opacity: 1; transform: none; }

/* ───────── PROJECTS — HORIZONTAL SHOWCASE ───────── */
.show-wrap {
  position: relative;
  min-height: 220vh;
  z-index: 7;
  scroll-margin-top: 88px;
}
.show-pin {
  position: sticky; top: 0; height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px 0 28px;
  overflow: hidden;
  border-top: 1px solid var(--rule);
}
.show-head { padding: 0 56px; }
.show-head-row {
  display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 32px;
  margin-top: 16px;
}
.show-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 0.95; letter-spacing: -0.03em;
  margin: 0;
}
.show-h em { font-style: italic; color: var(--accent); }
.show-counter { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.show-counter .hint { font-size: 11px; }

.show-track-clip {
  position: relative;
  overflow: hidden;
  margin-top: 32px;
  display: flex;
  align-items: center;
}
.show-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 0 56px;
  will-change: transform;
}

.tile {
  flex: 0 0 460px;
  height: 64vh;
  min-height: 480px;
  position: relative;
  border: 1px solid var(--rule);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(242,239,233,.025), rgba(242,239,233,.005));
  transition: flex-basis .7s cubic-bezier(.22,.8,.2,1), border-color .5s, background .5s;
  scroll-snap-align: center;
}
.tile-active {
  flex-basis: 820px;
  border-color: rgba(232, 179, 106, 0.35);
  background: linear-gradient(180deg, rgba(232,179,106,.05), rgba(242,239,233,.01));
}
.tile-yolo {
  border-color: rgba(255,255,255,0.72);
  border-radius: 0;
  background-color: #000;
  image-rendering: pixelated;
  background:
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.10) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px),
    radial-gradient(circle at 76% 28%, rgba(255,255,255,.14), transparent 18%),
    #000;
  background-size: 24px 24px, 24px 24px, 100% 10px, auto, auto;
  box-shadow: inset 0 0 0 6px #000, inset 0 0 0 9px rgba(255,255,255,.9);
}
.tile-yolo::before,
.tile-yolo::after,
.tile-excelleron::before,
.tile-excelleron::after,
.tile-qwendash::before,
.tile-qwendash::after,
.tile-earth::before,
.tile-earth::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.tile-yolo::before {
  inset: 28px;
  border: 3px solid rgba(255,255,255,.62);
  background:
    linear-gradient(90deg, #fff 0 54px, transparent 54px calc(100% - 54px), #fff calc(100% - 54px)),
    linear-gradient(#fff 0 3px, transparent 3px calc(100% - 3px), #fff calc(100% - 3px)),
    linear-gradient(45deg, rgba(255,255,255,.16) 25%, transparent 25% 50%, rgba(255,255,255,.16) 50% 75%, transparent 75%);
  background-size: 100% 100%, 100% 100%, 18px 18px;
  opacity: .45;
}
.tile-yolo::after {
  content: "HEAD 0.97";
  right: 46px;
  top: 78px;
  width: 168px;
  height: 132px;
  border: 4px solid #fff;
  color: #000;
  background:
    linear-gradient(#fff 0 30px, transparent 30px),
    repeating-linear-gradient(0deg, transparent 0 6px, rgba(255,255,255,.10) 6px 8px);
  font-family: "Courier New", var(--mono);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .12em;
  padding: 5px 8px;
  text-shadow: none;
  animation: yolo-step 1.4s steps(2, end) infinite;
}
.tile-yolo.tile-active {
  border-color: #fff;
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.10) 1px, transparent 1px),
    radial-gradient(circle at 50% 46%, rgba(255,255,255,.16), transparent 23%),
    #000;
  background-size: 24px 24px, 24px 24px, 100% 10px, auto, auto;
}
.tile-excelleron {
  border-color: rgba(247, 147, 26, .38);
  background:
    linear-gradient(90deg, rgba(247,147,26,.12) 1px, transparent 1px),
    linear-gradient(rgba(98,126,234,.10) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(98,126,234,.20), transparent 24%),
    linear-gradient(180deg, rgba(247,147,26,.08), rgba(242,239,233,.01));
  background-size: 36px 36px, 36px 36px, auto, auto;
}
.tile-excelleron::before {
  inset: 32px 44px auto auto;
  width: 170px;
  height: 102px;
  border: 1px solid rgba(247,147,26,.48);
  border-radius: 10px;
  background:
    linear-gradient(90deg, transparent 0 44%, rgba(247,147,26,.55) 44% 46%, transparent 46%),
    linear-gradient(145deg, transparent 0 48%, rgba(98,126,234,.42) 48% 50%, transparent 50%),
    radial-gradient(circle at 18% 22%, rgba(247,147,26,.85) 0 5px, transparent 6px),
    radial-gradient(circle at 50% 50%, rgba(98,126,234,.85) 0 5px, transparent 6px),
    radial-gradient(circle at 82% 78%, rgba(247,147,26,.85) 0 5px, transparent 6px);
}
.tile-excelleron::after {
  content: "ORACLE / FLASH LOAN / FOUNDRY";
  right: 44px;
  top: 148px;
  color: rgb(255, 196, 118);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
}
.tile-excelleron.tile-active {
  border-color: rgba(247, 147, 26, .72);
  background:
    linear-gradient(90deg, rgba(247,147,26,.14) 1px, transparent 1px),
    linear-gradient(rgba(98,126,234,.12) 1px, transparent 1px),
    radial-gradient(circle at 72% 18%, rgba(98,126,234,.28), transparent 26%),
    linear-gradient(180deg, rgba(247,147,26,.13), rgba(242,239,233,.01));
  background-size: 36px 36px, 36px 36px, auto, auto;
}
.tile-qwendash {
  border-color: rgba(255,255,255,.12);
  background:
    radial-gradient(circle at 28% 24%, rgba(102,199,255,.18), transparent 22%),
    radial-gradient(circle at 74% 34%, rgba(179,166,242,.16), transparent 20%),
    radial-gradient(circle at 64% 78%, rgba(255,133,173,.14), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(22,23,27,.86)),
    rgb(22,23,27);
  backdrop-filter: blur(18px);
}
.tile-qwendash::before {
  inset: 34px 44px auto auto;
  width: 178px;
  height: 118px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 28%, rgb(102,199,255) 0 4px, transparent 5px),
    radial-gradient(circle at 46% 58%, rgb(179,166,242) 0 4px, transparent 5px),
    radial-gradient(circle at 78% 30%, rgb(255,133,173) 0 4px, transparent 5px),
    linear-gradient(23deg, transparent 0 38%, rgba(102,199,255,.42) 38% 40%, transparent 40%),
    linear-gradient(151deg, transparent 0 46%, rgba(255,133,173,.34) 46% 48%, transparent 48%),
    rgba(255,255,255,.035);
  box-shadow: 0 18px 36px rgba(0,0,0,.28);
}
.tile-qwendash::after {
  content: "SYNAPSE MAP";
  right: 62px;
  top: 166px;
  color: rgba(255,255,255,.72);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
}
.tile-qwendash.tile-active {
  border-color: rgba(76,168,255,.45);
  background:
    radial-gradient(circle at 28% 24%, rgba(102,199,255,.24), transparent 22%),
    radial-gradient(circle at 74% 34%, rgba(179,166,242,.22), transparent 20%),
    radial-gradient(circle at 64% 78%, rgba(255,133,173,.18), transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(22,23,27,.88)),
    rgb(22,23,27);
}
/* — CrackedClawd: neon green, hacker/rebel terminal — */
.tile-clawd {
  border-color: rgba(57,255,20,.30);
  background:
    radial-gradient(circle at 68% 22%, rgba(57,255,20,.12), transparent 24%),
    linear-gradient(180deg, rgba(57,255,20,.04), rgba(242,239,233,.005));
}
.tile-clawd.tile-active {
  border-color: rgba(57,255,20,.55);
  background:
    radial-gradient(circle at 68% 22%, rgba(57,255,20,.18), transparent 26%),
    linear-gradient(180deg, rgba(57,255,20,.07), rgba(242,239,233,.01));
}
.tile-clawd .tile-glyph { color: rgba(57,255,20,.08); }
.tile-clawd.tile-active .tile-glyph { color: rgba(57,255,20,.16); text-shadow: 0 0 28px rgba(57,255,20,.12); }
.tile-clawd .tile-repo { border-color: rgba(57,255,20,.40); color: rgb(130,255,100); background: rgba(57,255,20,.05); }
.tile-clawd .tile-repo:hover { border-color: rgb(57,255,20); background: rgb(57,255,20); color: #050E02; }

/* — apiTicker: cyan, live data streams — */
.tile-ticker {
  border-color: rgba(6,182,212,.30);
  background:
    radial-gradient(circle at 72% 26%, rgba(6,182,212,.14), transparent 22%),
    linear-gradient(180deg, rgba(6,182,212,.04), rgba(242,239,233,.005));
}
.tile-ticker.tile-active {
  border-color: rgba(6,182,212,.55);
  background:
    radial-gradient(circle at 72% 26%, rgba(6,182,212,.20), transparent 24%),
    linear-gradient(180deg, rgba(6,182,212,.07), rgba(242,239,233,.01));
}
.tile-ticker .tile-glyph { color: rgba(6,182,212,.08); }
.tile-ticker.tile-active .tile-glyph { color: rgba(6,182,212,.16); text-shadow: 0 0 28px rgba(6,182,212,.12); }
.tile-ticker .tile-repo { border-color: rgba(6,182,212,.40); color: rgb(110,220,240); background: rgba(6,182,212,.05); }
.tile-ticker .tile-repo:hover { border-color: rgb(6,182,212); background: rgb(6,182,212); color: #021416; }

/* — stateTypes: violet, structured/academic — */
.tile-state {
  border-color: rgba(139,92,246,.30);
  background:
    radial-gradient(circle at 30% 28%, rgba(139,92,246,.12), transparent 24%),
    linear-gradient(180deg, rgba(139,92,246,.04), rgba(242,239,233,.005));
}
.tile-state.tile-active {
  border-color: rgba(139,92,246,.52);
  background:
    radial-gradient(circle at 30% 28%, rgba(139,92,246,.18), transparent 26%),
    linear-gradient(180deg, rgba(139,92,246,.07), rgba(242,239,233,.01));
}
.tile-state .tile-glyph { color: rgba(139,92,246,.08); }
.tile-state.tile-active .tile-glyph { color: rgba(139,92,246,.16); text-shadow: 0 0 28px rgba(139,92,246,.12); }
.tile-state .tile-repo { border-color: rgba(139,92,246,.40); color: rgb(180,160,255); background: rgba(139,92,246,.05); }
.tile-state .tile-repo:hover { border-color: rgb(139,92,246); background: rgb(139,92,246); color: #0E061E; }

/* — Vectorizer: pink, ML clusters/scatter — */
.tile-vector {
  border-color: rgba(236,72,153,.28);
  background:
    radial-gradient(circle at 62% 32%, rgba(236,72,153,.12), transparent 22%),
    linear-gradient(180deg, rgba(236,72,153,.04), rgba(242,239,233,.005));
}
.tile-vector.tile-active {
  border-color: rgba(236,72,153,.50);
  background:
    radial-gradient(circle at 62% 32%, rgba(236,72,153,.18), transparent 24%),
    linear-gradient(180deg, rgba(236,72,153,.07), rgba(242,239,233,.01));
}
.tile-vector .tile-glyph { color: rgba(236,72,153,.08); }
.tile-vector.tile-active .tile-glyph { color: rgba(236,72,153,.16); text-shadow: 0 0 28px rgba(236,72,153,.12); }
.tile-vector .tile-repo { border-color: rgba(236,72,153,.40); color: rgb(255,140,190); background: rgba(236,72,153,.05); }
.tile-vector .tile-repo:hover { border-color: rgb(236,72,153); background: rgb(236,72,153); color: #1A050E; }

/* — Lblock: gold, blockchain/mining — */
.tile-lblock {
  border-color: rgba(234,179,8,.32);
  background:
    radial-gradient(circle at 50% 24%, rgba(234,179,8,.14), transparent 22%),
    linear-gradient(180deg, rgba(234,179,8,.04), rgba(242,239,233,.005));
}
.tile-lblock.tile-active {
  border-color: rgba(234,179,8,.55);
  background:
    radial-gradient(circle at 50% 24%, rgba(234,179,8,.20), transparent 24%),
    linear-gradient(180deg, rgba(234,179,8,.07), rgba(242,239,233,.01));
}
.tile-lblock .tile-glyph { color: rgba(234,179,8,.08); }
.tile-lblock.tile-active .tile-glyph { color: rgba(234,179,8,.16); text-shadow: 0 0 28px rgba(234,179,8,.12); }
.tile-lblock .tile-repo { border-color: rgba(234,179,8,.42); color: rgb(255,210,80); background: rgba(234,179,8,.05); }
.tile-lblock .tile-repo:hover { border-color: rgb(234,179,8); background: rgb(234,179,8); color: #140F02; }

/* — SentimentAnalysis: coral, emotion/NLP — */
.tile-sentiment {
  border-color: rgba(248,113,113,.28);
  background:
    radial-gradient(circle at 40% 30%, rgba(248,113,113,.12), transparent 24%),
    linear-gradient(180deg, rgba(248,113,113,.04), rgba(242,239,233,.005));
}
.tile-sentiment.tile-active {
  border-color: rgba(248,113,113,.50);
  background:
    radial-gradient(circle at 40% 30%, rgba(248,113,113,.18), transparent 26%),
    linear-gradient(180deg, rgba(248,113,113,.07), rgba(242,239,233,.01));
}
.tile-sentiment .tile-glyph { color: rgba(248,113,113,.08); }
.tile-sentiment.tile-active .tile-glyph { color: rgba(248,113,113,.16); text-shadow: 0 0 28px rgba(248,113,113,.12); }
.tile-sentiment .tile-repo { border-color: rgba(248,113,113,.40); color: rgb(255,165,165); background: rgba(248,113,113,.05); }
.tile-sentiment .tile-repo:hover { border-color: rgb(248,113,113); background: rgb(248,113,113); color: #1A0808; }

/* — tweetProcessor: sky blue, social/twitter — */
.tile-tweet {
  border-color: rgba(56,189,248,.28);
  background:
    radial-gradient(circle at 58% 20%, rgba(56,189,248,.12), transparent 22%),
    linear-gradient(180deg, rgba(56,189,248,.04), rgba(242,239,233,.005));
}
.tile-tweet.tile-active {
  border-color: rgba(56,189,248,.52);
  background:
    radial-gradient(circle at 58% 20%, rgba(56,189,248,.18), transparent 24%),
    linear-gradient(180deg, rgba(56,189,248,.07), rgba(242,239,233,.01));
}
.tile-tweet .tile-glyph { color: rgba(56,189,248,.08); }
.tile-tweet.tile-active .tile-glyph { color: rgba(56,189,248,.16); text-shadow: 0 0 28px rgba(56,189,248,.12); }
.tile-tweet .tile-repo { border-color: rgba(56,189,248,.40); color: rgb(130,215,255); background: rgba(56,189,248,.05); }
.tile-tweet .tile-repo:hover { border-color: rgb(56,189,248); background: rgb(56,189,248); color: #041218; }

/* — miniShell: zinc/steel, cold systems-level — */
.tile-shell {
  border-color: rgba(161,161,170,.30);
  background:
    radial-gradient(circle at 44% 26%, rgba(161,161,170,.10), transparent 22%),
    linear-gradient(180deg, rgba(161,161,170,.04), rgba(242,239,233,.005));
}
.tile-shell.tile-active {
  border-color: rgba(161,161,170,.52);
  background:
    radial-gradient(circle at 44% 26%, rgba(161,161,170,.16), transparent 24%),
    linear-gradient(180deg, rgba(161,161,170,.06), rgba(242,239,233,.01));
}
.tile-shell .tile-glyph { color: rgba(161,161,170,.08); }
.tile-shell.tile-active .tile-glyph { color: rgba(161,161,170,.18); text-shadow: 0 0 28px rgba(161,161,170,.10); }
.tile-shell .tile-repo { border-color: rgba(161,161,170,.40); color: rgb(200,200,210); background: rgba(161,161,170,.05); }
.tile-shell .tile-repo:hover { border-color: rgb(161,161,170); background: rgb(161,161,170); color: #101012; }

/* — Vaultec: teal, secure/knowledge — */
.tile-vault {
  border-color: rgba(20,184,166,.28);
  background:
    radial-gradient(circle at 36% 34%, rgba(20,184,166,.12), transparent 24%),
    linear-gradient(180deg, rgba(20,184,166,.04), rgba(242,239,233,.005));
}
.tile-vault.tile-active {
  border-color: rgba(20,184,166,.52);
  background:
    radial-gradient(circle at 36% 34%, rgba(20,184,166,.18), transparent 26%),
    linear-gradient(180deg, rgba(20,184,166,.07), rgba(242,239,233,.01));
}
.tile-vault .tile-glyph { color: rgba(20,184,166,.08); }
.tile-vault.tile-active .tile-glyph { color: rgba(20,184,166,.16); text-shadow: 0 0 28px rgba(20,184,166,.12); }

/* — Earth-Drone: ocean blue, photoreal globe / FPV aerial — */
.tile-earth {
  border-color: rgba(96,165,250,.38);
  background:
    radial-gradient(circle at 78% 24%, rgba(125,211,252,.22), transparent 24%),
    radial-gradient(circle at 64% 42%, rgba(34,197,94,.13), transparent 21%),
    radial-gradient(circle at 22% 84%, rgba(14,165,233,.14), transparent 28%),
    linear-gradient(145deg, rgba(7,16,36,.82), rgba(5,12,26,.38) 42%, rgba(242,239,233,.012));
  box-shadow: inset 0 0 0 1px rgba(125,211,252,.08);
}
.tile-earth.tile-active {
  border-color: rgba(125,211,252,.78);
  background:
    radial-gradient(circle at 76% 22%, rgba(125,211,252,.36), transparent 26%),
    radial-gradient(circle at 60% 42%, rgba(34,197,94,.22), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(14,165,233,.22), transparent 30%),
    linear-gradient(145deg, rgba(8,22,48,.9), rgba(5,12,26,.48) 44%, rgba(242,239,233,.018));
  box-shadow:
    inset 0 0 0 1px rgba(125,211,252,.14),
    0 28px 90px rgba(14,165,233,.16);
}
.tile-earth::before {
  inset: 28px 36px auto auto;
  width: 206px;
  height: 206px;
  border: 1.5px solid rgba(125,211,252,.68);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, rgba(186,230,253,.28), transparent 11%),
    radial-gradient(circle at 58% 62%, rgba(34,197,94,.34), transparent 15%),
    radial-gradient(circle at 34% 68%, rgba(22,163,74,.22), transparent 12%),
    linear-gradient(0deg, transparent 49.4%, rgba(125,211,252,.48) 49.4% 50.6%, transparent 50.6%),
    linear-gradient(90deg, transparent 49.4%, rgba(125,211,252,.42) 49.4% 50.6%, transparent 50.6%),
    linear-gradient(0deg, transparent 23%, rgba(125,211,252,.22) 23% 24%, transparent 24% 76%, rgba(125,211,252,.22) 76% 77%, transparent 77%),
    linear-gradient(60deg, transparent 49.5%, rgba(34,197,94,.36) 49.5% 50.5%, transparent 50.5%),
    linear-gradient(120deg, transparent 49.5%, rgba(14,165,233,.28) 49.5% 50.5%, transparent 50.5%),
    radial-gradient(circle at 36% 38%, rgba(14,165,233,.36), transparent 58%),
    conic-gradient(from 210deg, rgba(5,12,26,.3), rgba(14,165,233,.22), rgba(34,197,94,.18), rgba(5,12,26,.36));
  box-shadow:
    inset -28px -22px 52px rgba(1,8,20,.62),
    inset 0 0 0 1px rgba(34,197,94,.22),
    0 0 0 12px rgba(14,165,233,.035),
    0 22px 58px rgba(0,0,0,.32);
  animation: earth-breathe 5.5s ease-in-out infinite;
}
.tile-earth::after {
  content: "ALT 12.4KM / FPV / 3D TILES";
  right: 52px;
  top: 248px;
  color: rgb(186,230,253);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .17em;
  text-shadow: 0 0 18px rgba(125,211,252,.32);
}
.tile-earth.tile-active::before {
  border-color: rgba(186,230,253,.92);
  box-shadow:
    inset -32px -24px 58px rgba(1,8,20,.58),
    inset 0 0 0 1px rgba(34,197,94,.34),
    0 0 0 16px rgba(14,165,233,.055),
    0 26px 72px rgba(14,165,233,.24);
}
.tile-earth .tile-frame::before,
.tile-earth .tile-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.tile-earth .tile-frame::before {
  inset: 74px 34px auto auto;
  width: 260px;
  height: 116px;
  border-top: 1px solid rgba(186,230,253,.34);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow:
    0 -18px 0 -17px rgba(34,197,94,.42),
    0 18px 0 -17px rgba(14,165,233,.46),
    0 0 34px rgba(125,211,252,.14);
  animation: earth-orbit 7s ease-in-out infinite;
}
.tile-earth .tile-frame::after {
  right: 74px;
  top: 84px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, rgba(242,239,233,.9) 44% 53%, transparent 53%),
    radial-gradient(circle, rgba(242,239,233,.88) 0 2px, transparent 3px);
  filter: drop-shadow(0 0 14px rgba(186,230,253,.46));
  transform: rotate(-22deg);
}
.tile-earth .tile-glyph {
  color: rgba(125,211,252,.11);
  font-style: normal;
  font-weight: 400;
  text-shadow: 0 0 42px rgba(14,165,233,.12);
}
.tile-earth.tile-active .tile-glyph {
  color: rgba(125,211,252,.22);
  text-shadow: 0 0 48px rgba(14,165,233,.24);
  transform: translate(-58%, -58%) rotate(-2deg);
}
.tile-earth .tile-title {
  text-shadow: 0 0 30px rgba(14,165,233,.16);
}
.tile-earth .tile-stack li {
  border-color: rgba(125,211,252,.22);
  background: rgba(14,165,233,.045);
}
.tile-earth .tile-repo {
  border-color: rgba(125,211,252,.5);
  color: rgb(186,230,253);
  background: rgba(14,165,233,.08);
}
.tile-earth .tile-repo:hover {
  border-color: rgb(125,211,252);
  background: rgb(125,211,252);
  color: #02091A;
}

/* — TickerToy: red, high-stakes markets — */
.tile-tickertoy {
  border-color: rgba(239,68,68,.28);
  background:
    radial-gradient(circle at 70% 28%, rgba(239,68,68,.12), transparent 22%),
    linear-gradient(180deg, rgba(239,68,68,.04), rgba(242,239,233,.005));
}
.tile-tickertoy.tile-active {
  border-color: rgba(239,68,68,.52);
  background:
    radial-gradient(circle at 70% 28%, rgba(239,68,68,.18), transparent 24%),
    linear-gradient(180deg, rgba(239,68,68,.07), rgba(242,239,233,.01));
}
.tile-tickertoy .tile-glyph { color: rgba(239,68,68,.08); }
.tile-tickertoy.tile-active .tile-glyph { color: rgba(239,68,68,.16); text-shadow: 0 0 28px rgba(239,68,68,.12); }

@keyframes earth-breathe {
  50% { transform: translateY(-3px) scale(1.025); }
}
@keyframes earth-orbit {
  50% { transform: rotate(-18deg) translateY(7px); opacity: .72; }
}
@keyframes yolo-step { 50% { opacity: .58; } }
.tile-frame {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 20px;
}
.tile-strip {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
}
.tile-strip .dot-status { margin-left: auto; display: inline-flex; gap: 6px; align-items: center; }

.tile-glyph {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: var(--serif); font-style: italic;
  font-size: clamp(280px, 38vh, 420px);
  line-height: 1;
  color: rgba(232, 179, 106, 0.06);
  pointer-events: none;
  transition: color .6s, transform .8s cubic-bezier(.2,.7,.2,1);
}
.tile-active .tile-glyph { color: rgba(232, 179, 106, 0.14); transform: translate(-58%, -58%) rotate(-3deg); }
.tile-yolo .tile-glyph {
  color: rgba(255,255,255,.07);
  font-family: "Courier New", var(--mono);
  font-style: normal;
  font-weight: 900;
  text-shadow: 8px 8px 0 rgba(255,255,255,.03);
}
.tile-yolo.tile-active .tile-glyph { color: rgba(255,255,255,.10); transform: translate(-58%, -58%) rotate(0); }
.tile-excelleron .tile-glyph { color: rgba(247,147,26,.10); }
.tile-excelleron.tile-active .tile-glyph { color: rgba(247,147,26,.19); text-shadow: 0 0 28px rgba(247,147,26,.16); }
.tile-qwendash .tile-glyph { color: rgba(102,199,255,.10); }
.tile-qwendash.tile-active .tile-glyph { color: rgba(102,199,255,.18); text-shadow: 0 0 28px rgba(102,199,255,.14); }

.tile-bottom {
  align-self: end;
  position: relative; z-index: 2;
}
.tile-yolo .tile-bottom {
  margin: 0 -4px -4px;
  padding: 18px;
  border: 2px solid rgba(255,255,255,.72);
  background:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    rgba(0,0,0,.88);
  background-size: 100% 8px, auto;
}
.tile-yolo .tile-title,
.tile-yolo .tile-sub,
.tile-yolo .tile-purpose,
.tile-yolo .tile-role {
  color: #fff;
  text-shadow: 0 1px 0 #000, 0 0 12px rgba(255,255,255,.18);
}
.tile-yolo .tile-stack li {
  border-color: rgba(255,255,255,.55);
  background: rgba(0,0,0,.75);
  color: #fff;
}
.tile-num { margin-bottom: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.tile-title {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin: 0;
}
.tile-sub {
  font-family: var(--mono); font-size: 10px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--muted);
  margin: 10px 0 0;
}

.tile-expand {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition: grid-template-rows .7s cubic-bezier(.22,.8,.2,1), opacity .4s, margin-top .7s;
}
.tile-expand > * { min-height: 0; }
.tile-active .tile-expand {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 22px;
}
.tile-expand .tile-purpose {
  font-size: 15px; line-height: 1.55; color: var(--ink); margin: 0 0 16px;
  max-width: 540px;
  overflow: hidden;
}
.tile-stack {
  list-style: none; padding: 0; margin: 0 0 14px;
  display: flex; flex-wrap: wrap; gap: 6px;
  overflow: hidden;
}
.tile-stack li {
  display: inline-flex; gap: 8px; align-items: center;
  font-family: var(--mono); font-size: 11px;
  text-transform: none; letter-spacing: 0;
  padding: 6px 10px;
  border: 1px solid var(--rule);
  border-radius: 6px;
}
.tile-role {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  display: flex; gap: 8px;
  overflow: hidden;
}
.tile-repo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: 14px;
  padding: 8px 11px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--ink);
  overflow: hidden;
  transition: border-color .25s, background .25s, color .25s, transform .25s;
}
.tile-repo:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #0A0A0B;
  transform: translateY(-1px);
}
.repo-arrow { font-size: 12px; }
.tile-yolo .tile-repo {
  border-color: #fff;
  border-radius: 0;
  color: #fff;
  background: #000;
  font-family: "Courier New", var(--mono);
  font-weight: 900;
}
.tile-yolo .tile-repo:hover {
  border-color: #fff;
  background: #fff;
  color: #000;
}
.tile-excelleron .tile-repo {
  border-color: rgba(247,147,26,.46);
  color: rgb(255, 196, 118);
  background: rgba(247,147,26,.06);
}
.tile-excelleron .tile-repo:hover {
  border-color: rgb(247,147,26);
  background: rgb(247,147,26);
  color: #120A02;
}
.tile-qwendash .tile-repo {
  border-color: rgba(102,199,255,.35);
  color: rgb(160, 217, 255);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(12px);
}
.tile-qwendash .tile-repo:hover {
  border-color: rgb(102,199,255);
  background: rgb(102,199,255);
  color: #071018;
}

/* End card */
.tile-end {
  flex: 0 0 460px;
  background: transparent;
  border: 1px dashed var(--rule);
  display: grid;
  place-items: center;
}
.end-block { text-align: center; padding: 40px; }
.end-line {
  font-family: var(--serif); font-size: clamp(32px, 4vw, 56px);
  margin: 16px 0 0; letter-spacing: -0.02em;
}
.end-line a { color: var(--accent); border-bottom: 1px solid var(--accent); }

.show-foot {
  padding: 16px 56px 0;
  border-top: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.show-bar {
  display: flex; gap: 4px;
}
.show-bar .b {
  width: 28px; height: 2px; background: var(--rule);
  transition: background .5s;
}
.show-bar .b.on { background: var(--accent); }
.show-foot-meta {
  display: flex; gap: 12px; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
}

@media (max-width: 900px) {
  .show-head { padding: 0 24px; }
  .show-track { padding: 0 24px; gap: 16px; }
  .tile, .tile-end { flex-basis: 78vw; }
  .tile-active { flex-basis: 88vw; }
  .show-foot { padding: 12px 24px 0; }
  .show-head-row { grid-template-columns: 1fr; }
}

/* ───────── CONTACT MODAL ───────── */
.modal-bg {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(8,8,9,.78);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  display: grid; place-items: center;
  padding: 24px;
  animation: m-fade .35s ease;
}
@keyframes m-fade { from { opacity: 0; } }
.modal {
  width: min(560px, 100%);
  background: linear-gradient(180deg, rgba(28,28,32,.95), rgba(16,16,18,.95));
  border: 1px solid var(--rule);
  border-radius: 18px;
  padding: 26px;
  box-shadow:
    0 1px 0 rgba(255,255,255,.05) inset,
    0 30px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(232,179,106,.06);
  animation: m-rise .55s cubic-bezier(.2,.8,.2,1);
}
@keyframes m-rise {
  from { opacity: 0; transform: translateY(20px) scale(.97); }
}
.modal-strip {
  display: flex; align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 22px;
}
.modal-x {
  margin-left: auto;
  appearance: none;
  background: transparent; border: 1px solid var(--rule);
  width: 28px; height: 28px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 18px; line-height: 1;
  transition: background .25s, border-color .25s, color .25s;
}
.modal-x:hover { background: rgba(242,239,233,.06); border-color: var(--accent); color: var(--accent); }
.modal-h {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  padding-bottom: 0.16em;
}
.modal-h .italic { color: var(--accent); }
.modal-body {
  font-size: 15px; line-height: 1.55; color: var(--ink);
  margin: 0 0 20px;
}
.modal-addr {
  display: flex; gap: 12px; align-items: center;
  padding: 12px 14px;
  border: 1px dashed var(--rule);
  border-radius: 8px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 22px;
}
.modal-actions { display: flex; gap: 10px; align-items: center; }
.btn-primary {
  appearance: none; border: 0;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 13px 20px;
  background: var(--accent); color: #0A0A0B;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  border-radius: 999px;
  transition: filter .25s, transform .25s;
  font-weight: 500;
}
.btn-primary:hover { filter: brightness(1.06); }
.btn-primary .ar { font-family: var(--serif); font-size: 16px; }
.btn-ghost {
  appearance: none; background: transparent; border: 1px solid var(--rule);
  color: var(--ink);
  padding: 13px 18px;
  border-radius: 999px;
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  transition: background .25s, border-color .25s, color .25s;
}
.btn-ghost:hover { background: rgba(242,239,233,.05); border-color: var(--accent); color: var(--accent); }

/* ───────── CONTACT ───────── */
.contact {
  position: relative; z-index: 8;
  padding: 200px 56px 56px;
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--rule);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 200px;
}
.contact-h {
  font-family: var(--serif);
  font-size: clamp(56px, 8vw, 144px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 80px;
  padding-bottom: 0.28em;
}
.contact-h .italic { color: var(--accent); }
.contact-sub {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 520px;
  margin: 0 0 56px;
  text-wrap: balance;
}
.contact-cta {
  display: inline-flex; align-items: center; gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  width: 100%;
  font-family: var(--serif);
  transition: padding .3s, color .3s;
}
.contact-cta:hover { color: var(--accent); padding-left: 14px; }
.contact-cta .big {
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.contact-cta .ar { margin-left: auto; font-size: 32px; font-family: var(--serif); }

.contact-right { display: flex; flex-direction: column; gap: 18px; padding-top: 24px; }

.footer {
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted);
}

/* ───────── RESPONSIVE ───────── */
@media (max-width: 900px) {
  .hero-status, .hero-foot { grid-template-columns: 1fr; gap: 12px; }
  .hs-col.center, .hs-col.right { justify-content: flex-start; }
  .hero-cta-wrap { justify-content: flex-start; }
  .about, .contact { padding-left: 24px; padding-right: 24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pp-frame { padding: 24px; }
  .pp-body { grid-template-columns: 1fr; gap: 24px; padding: 16px 0; }
  .pp-card { max-width: 100%; }
  .nav { padding: 14px 18px; }
  .nav .links { display: none; }
}

@media (max-width: 760px) {
  .hero-wrap { height: 118vh; }
  .about { padding-top: 56px; padding-bottom: 72px; }
  .about-rule { margin-bottom: 32px; }
  .show-wrap {
    height: auto !important;
    min-height: 0;
  }
  .show-pin {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 72px 0;
  }
  .show-head,
  .show-foot {
    padding-left: 24px;
    padding-right: 24px;
  }
  .show-head-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .show-counter {
    align-items: flex-start;
  }
  .show-counter .hint {
    display: none;
  }
  .show-track-clip {
    overflow: visible;
    margin-top: 28px;
  }
  .show-track {
    transform: none !important;
    flex-direction: column;
    padding: 0 24px;
    gap: 18px;
  }
  .tile,
  .tile-active,
  .tile-end {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    min-height: 520px;
  }
  .tile-expand,
  .tile-active .tile-expand {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-top: 18px;
  }
  .show-foot {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }
  .show-foot-meta {
    flex-wrap: wrap;
  }
}
