:root {
  --primary: #6dd0a9;
  --primary-dim: rgba(109, 208, 169, 0.6);
  --rh: #00c805;
  --night: #0b0f0d;
  --night-2: #19191a;
  --gallery-from: #192f26;
  --moon: #f3f6f4;
  --muted: rgba(255, 255, 255, 0.7);
  --glass: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.12);
  --clip-nav: polygon(0% 8px, 10px 0%, calc(100% - 8px) 0%, 100% 8px, 100% calc(100% - 8px), calc(100% - 8px) 100%, 8px 100%, 0 calc(100% - 8px));
  --clip-card: polygon(0% 28px, 28px 0%, calc(100% - 28px) 0%, 100% 28px, 100% calc(100% - 28px), calc(100% - 28px) 100%, 28px 100%, 0 calc(100% - 28px));
  --clip-btn: polygon(0% 9px, 9px 0%, calc(100% - 9px) 0%, 100% 9px, 100% calc(100% - 9px), calc(100% - 9px) 100%, 9px 100%, 0 calc(100% - 9px));
  --clip-hex: polygon(0% 50%, 14% 0%, 86% 0%, 100% 50%, 86% 100%, 14% 100%);
  --clip-tile: polygon(0% 14px, 14px 0%, calc(100% - 14px) 0%, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px));
  --clip-dock: polygon(0 36px, 36px 0, 100% 0%, 100% 100%);
  --clip-origin: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 0 100%, 0 20px);
  --clip-mission: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  --font-orb: "Orbitron", system-ui, sans-serif;
  --font-mono: "Share Tech Mono", "IBM Plex Mono", ui-monospace, monospace;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--night-2);
  color: var(--moon);
  font-family: var(--font-body);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

button { font-family: inherit; cursor: pointer; }

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--primary);
  color: #08110d;
  padding: 8px 14px;
  z-index: 200;
}
.skip:focus { left: 8px; }

/* Ticker */
.ticker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  height: 22px;
  overflow: hidden;
  background: #07110d;
  border-bottom: 1px solid rgba(109, 208, 169, 0.25);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--primary);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker 18s linear infinite;
  padding: 3px 0;
  white-space: nowrap;
  will-change: transform;
}
.ticker-group {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
}
.ticker b { color: var(--rh); font-weight: 700; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Desktop nav */
.nav-desk {
  position: fixed;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  z-index: 99;
  height: 40px;
  width: min(600px, calc(100% - 32px));
  font-family: var(--font-orb);
}
.nav-desk .shell {
  height: 100%;
  background: color-mix(in srgb, var(--primary) 75%, transparent);
  padding: 2px;
  clip-path: var(--clip-nav);
}
.nav-desk .inner {
  height: 100%;
  background: rgba(12, 16, 14, 0.92);
  backdrop-filter: blur(12px);
  clip-path: var(--clip-nav);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
}
.nav-desk nav {
  display: flex;
  height: 100%;
  align-items: center;
  gap: 2px;
}
.nav-desk a {
  position: relative;
  padding: 0 16px;
  text-decoration: none;
  letter-spacing: 0.18em;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--moon);
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-desk a::before {
  content: "";
  position: absolute;
  inset: 8px 4px 6px;
  background: var(--primary);
  opacity: 0;
  clip-path: polygon(0% 5px, 5px 0%, calc(100% - 5px) 0%, 100% 5px, 100% calc(100% - 5px), calc(100% - 5px) 100%, 5px 100%, 0 calc(100% - 5px));
  transition: opacity 0.2s;
  z-index: 0;
}
.nav-desk a:hover::before,
.nav-desk a.is-active::before { opacity: 1; }
.nav-desk a:hover,
.nav-desk a.is-active { color: #08110d; }
.nav-desk a span { position: relative; z-index: 1; }

/* Bottom dock */
.dock {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 99;
  height: 36px;
  width: min(320px, 46vw);
  font-family: var(--font-orb);
}
.dock .shell {
  height: 100%;
  background: color-mix(in srgb, var(--primary) 75%, transparent);
  padding: 1px;
  clip-path: var(--clip-dock);
}
.dock .inner {
  height: 100%;
  background: rgba(12, 16, 14, 0.92);
  clip-path: var(--clip-dock);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px 0 40px;
  gap: 12px;
}
.dock-ca {
  position: relative;
  border: 0;
  background: transparent;
  color: #08110d;
  font-family: var(--font-orb);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 14px;
}
.dock-ca::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--primary);
  transform: skewX(-28deg);
  z-index: -1;
  transition: background 0.2s;
}
.dock-ca:hover::before { background: var(--rh); }
.dock-socials { display: flex; align-items: center; gap: 16px; }
.dock-socials a,
.dock-socials button {
  width: 22px;
  height: 22px;
  opacity: 0.85;
  background: none;
  border: 0;
  padding: 0;
  color: var(--moon);
}
.dock-socials a:hover,
.dock-socials button:hover { opacity: 1; color: var(--primary); }
.dock-socials svg { width: 100%; height: 100%; fill: currentColor; }

/* Mobile header */
.nav-mob {
  display: none;
  position: fixed;
  top: 22px;
  left: 0;
  right: 0;
  z-index: 99;
  height: 36px;
  background: rgba(12, 16, 14, 0.95);
}
.nav-mob .row {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.brand-mob {
  font-family: var(--font-orb);
  font-weight: 900;
  letter-spacing: 0.28em;
  color: var(--primary);
  text-decoration: none;
  font-size: 18px;
}
.menu-btn {
  position: absolute;
  right: 8px;
  top: 0;
  height: 36px;
  width: 40px;
  background: none;
  border: 0;
  color: var(--moon);
}
.menu-btn svg { width: 28px; height: 28px; }

.drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}
.drawer.is-open { pointer-events: auto; }
.drawer .veil {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 10, 0.6);
  opacity: 0;
  transition: opacity 0.2s;
}
.drawer.is-open .veil { opacity: 1; }
.drawer .panel {
  position: absolute;
  left: 50%;
  top: 58px;
  transform: translate(-50%, -12px);
  width: min(100%, 420px);
  background: rgba(12, 16, 14, 0.96);
  padding: 28px 16px 32px;
  opacity: 0;
  transition: 0.2s ease;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}
.drawer.is-open .panel {
  opacity: 1;
  transform: translate(-50%, 0);
}
.drawer nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.drawer nav a {
  position: relative;
  font-family: var(--font-orb);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 18px;
  text-decoration: none;
  padding: 6px 28px;
}
.drawer nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 240px;
  height: 28px;
  border: 1px solid var(--primary-dim);
  transform: translate(-50%, -50%) skewX(-28deg);
  z-index: -1;
}
.drawer .socials {
  margin-top: 18px;
  display: flex;
  gap: 20px;
  justify-content: center;
}
.drawer .socials a,
.drawer .socials button {
  width: 28px;
  height: 28px;
  background: none;
  border: 0;
  color: var(--moon);
  padding: 0;
}
.drawer .socials svg { width: 100%; height: 100%; fill: currentColor; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg.desk { display: block; }
.hero-bg.tab,
.hero-bg.mob { display: none; }
.hero-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  padding: 88px 32px 48px;
}
@media (min-width: 861px) {
  .hero-inner { align-items: center; }
}
.hero-card {
  width: min(100%, 560px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  padding: 28px 30px 32px;
  clip-path: var(--clip-card);
  animation: rise 0.8s ease both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.logo {
  height: 56px;
  width: auto;
  margin-bottom: 14px;
}
.tag {
  margin: 8px 0 0;
  color: var(--primary);
  font-family: var(--font-orb);
  letter-spacing: 0.22em;
  font-weight: 500;
  font-size: 18px;
}
.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn-buy,
.btn-chart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--font-orb);
  font-weight: 650;
  font-size: 13px;
  padding: 10px 22px;
  transition: 0.2s background, 0.2s filter;
}
.btn-buy {
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  clip-path: var(--clip-btn);
}
.btn-buy:hover { background: rgba(255, 255, 255, 0.72); }
.btn-chart {
  background: var(--primary);
  color: #08110d;
  min-width: 108px;
  clip-path: var(--clip-hex);
}
.btn-chart:hover { background: var(--rh); }

.ca-block { margin-top: 22px; }
.ca-label {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-family: var(--font-orb);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}
.ca-row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(12, 16, 14, 0.4);
  padding: 8px 8px 8px 16px;
  clip-path: polygon(0% 10px, 10px 0%, calc(100% - 10px) 0%, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px));
}
.ca-row code {
  flex: 1;
  min-width: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  word-break: break-all;
  white-space: normal;
}
.ca-copy {
  flex-shrink: 0;
  border: 0;
  background: var(--primary);
  color: #08110d;
  font-family: var(--font-orb);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  clip-path: var(--clip-nav);
}
.ca-copy:hover { background: var(--rh); }

/* Gallery */
.gallery {
  position: relative;
  background: radial-gradient(circle at 50% 0%, var(--gallery-from), var(--night-2) 70%);
  padding: 56px 0 96px;
}
.gallery-head {
  max-width: 920px;
  margin: 0 auto;
  padding: 24px 16px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.gallery-head h2 {
  margin: 0;
  font-family: var(--font-orb);
  letter-spacing: 0.22em;
  font-size: clamp(26px, 4vw, 48px);
  font-weight: 650;
}
.hex-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 8px 22px;
  background: var(--primary);
  color: #08110d;
  text-decoration: none;
  font-family: var(--font-orb);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  clip-path: var(--clip-hex);
  transition: background 0.25s;
}
.hex-btn:hover { background: var(--rh); }
.hex-ghost {
  min-width: 140px;
  visibility: hidden;
}

.grid {
  max-width: 920px;
  margin: 36px auto 0;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
  aspect-ratio: 1;
  clip-path: var(--clip-tile);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.3s;
  cursor: zoom-in;
  padding: 0;
}
.tile.is-in {
  opacity: 1;
  transform: none;
}
.tile.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tile:hover { filter: brightness(1.12); transform: scale(1.015); }
.tile.is-in:hover { transform: scale(1.015); }

/* Origin */
.origin {
  position: relative;
  overflow: hidden;
  padding: 96px 20px 48px;
  color: var(--moon);
}
section[id] { scroll-margin-top: 64px; }
.origin-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.origin-shade {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.origin-wrap {
  position: relative;
  z-index: 2;
  max-width: 1480px;
  margin: 0 auto;
}
@media (min-width: 1536px) {
  .orb-float { display: block; }
}
.origin-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 8px;
  align-items: start;
}
.origin h2,
.origin h3 {
  font-family: var(--font-orb);
  font-weight: 650;
  font-size: clamp(28px, 3.4vw, 48px);
  margin: 0;
}
.origin h2 span,
.origin h3 span { color: var(--primary); }

.panel-origin,
.panel-mission {
  margin-top: 22px;
  background: color-mix(in srgb, var(--primary) 15%, transparent);
  backdrop-filter: blur(7px);
  padding: 20px 28px;
  max-width: 720px;
}
.panel-origin { clip-path: var(--clip-origin); }
.panel-mission { clip-path: var(--clip-mission); }
.origin p {
  margin: 0;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(243, 246, 244, 0.92);
}
.mission { margin-top: 72px; max-width: 690px; margin-left: auto; }

.orb-float {
  display: none;
  position: absolute;
  left: 40px;
  bottom: -36px;
  width: 340px;
  pointer-events: none;
  transform: rotate(-8deg);
  animation: floaty 6s ease-in-out infinite;
  z-index: 1;
}
.orb-float.mob { display: none; }
@keyframes floaty {
  0%, 100% { transform: rotate(-8deg) translateY(0); }
  50% { transform: rotate(-6deg) translateY(-12px); }
}

.mascot-col {
  position: relative;
  min-height: 640px;
  display: flex;
  justify-content: center;
}
.mascot-stand {
  width: min(100%, 520px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
}

/* FAQ */
.faq {
  background: radial-gradient(circle at 50% 0%, var(--gallery-from), var(--night-2) 70%);
  padding: 88px 20px;
}
.faq-inner { max-width: 920px; margin: 0 auto; }
.faq h2 {
  text-align: center;
  font-family: var(--font-orb);
  font-weight: 650;
  font-size: clamp(28px, 4vw, 48px);
  margin: 0 0 36px;
}
.faq-shell {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: none;
  border: 0;
  color: #fff;
  text-align: left;
  padding: 18px 16px;
  font-family: var(--font-mono);
  font-size: 18px;
}
.faq-item .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s, border-color 0.2s;
}
.faq-item.is-open .icon { transform: rotate(180deg); border-color: var(--primary); }
.faq-item .body {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: 0.3s ease;
}
.faq-item.is-open .body {
  grid-template-rows: 1fr;
  opacity: 1;
}
.faq-item .body > div { overflow: hidden; }
.faq-item .body p,
.faq-item .body .ca-mini {
  padding: 0 16px 20px;
  margin: 0;
  color: #ebe6ff;
  font-family: var(--font-mono);
  line-height: 1.65;
  font-size: 16px;
}
.ca-mini {
  margin-top: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 12px !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ca-mini small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
}
.ca-mini code { color: var(--primary); font-size: 15px; word-break: break-all; white-space: normal; }
.ca-mini button {
  width: auto;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

/* Footer / socials */
.socials-sec {
  position: relative;
  overflow: hidden;
  padding: 120px 24px;
}
.socials-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.socials-shade {
  position: absolute;
  inset: 0;
  background: #040806dc;
}
.foot-card {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  padding: 2px;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  clip-path: var(--clip-card);
}
.foot-inner {
  background: var(--night);
  clip-path: var(--clip-card);
  padding: 22px 36px 28px;
}
.foot-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.foot-brand .zen { width: 110px; height: auto; flex-shrink: 0; }
.foot-brand .word { flex: 1; min-width: 0; width: auto; max-width: 700px; height: auto; }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.4fr 1.3fr;
  gap: 20px;
  padding-bottom: 12px;
}
.blurb {
  max-width: 280px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}
.blurb b {
  color: #fff;
  font-family: var(--font-orb);
  font-weight: 650;
}
.foot-grid h3 {
  margin: 0 0 14px;
  font-family: var(--font-orb);
  letter-spacing: 0.14em;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.foot-grid ul { list-style: none; margin: 0; padding: 0; }
.foot-grid li { margin: 0 0 10px; }
.foot-grid a,
.foot-grid button.linkish {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  background: none;
  border: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.foot-grid a:hover,
.foot-grid button.linkish:hover { color: var(--primary); text-decoration: underline; }
.foot-grid svg { width: 18px; height: 18px; fill: currentColor; }
.ca-chip {
  width: 100%;
  max-width: 280px;
  border: 0;
  padding: 2px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.9);
  clip-path: var(--clip-btn);
  position: relative;
}
.ca-chip .inner {
  background: rgba(12, 16, 14, 0.9);
  clip-path: var(--clip-btn);
  padding: 10px 12px;
  text-align: left;
}
.ca-chip code {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.45;
  word-break: break-all;
  white-space: normal;
  transition: 0.2s;
}
.ca-chip .hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0;
  font-family: var(--font-orb);
  font-size: 13px;
  color: #fff;
  transition: 0.15s;
}
.ca-chip:hover code { opacity: 0.4; filter: blur(2px); }
.ca-chip:hover .hint { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(4, 8, 6, 0.88);
  display: none;
  place-items: center;
  padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 86vh;
  object-fit: contain;
  clip-path: var(--clip-tile);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}
.lightbox button {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 0;
  background: var(--primary);
  color: #08110d;
  font-size: 22px;
  clip-path: var(--clip-btn);
}

/* Toast */
.toast {
  position: fixed;
  left: 50%;
  bottom: 52px;
  transform: translateX(-50%) translateY(20px);
  background: var(--primary);
  color: #08110d;
  font-family: var(--font-orb);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 10px 18px;
  clip-path: var(--clip-btn);
  opacity: 0;
  pointer-events: none;
  z-index: 140;
  transition: 0.25s ease;
}
.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 1100px) {
  .orb-float.mob {
    display: block;
    position: relative;
    left: auto;
    bottom: auto;
    width: 220px;
    margin: 16px auto 0;
    transform: rotate(-12deg);
  }
  .origin-layout { grid-template-columns: 1fr; }
  .mission { margin: 28px 0 0; }
  .mascot-col { min-height: 0; }
}

@media (max-width: 860px) {
  .nav-desk, .dock { display: none; }
  .nav-mob, .drawer { display: block; }
  .hero-inner { justify-content: center; padding: 72px 16px 32px; }
  .origin { padding: 64px 16px 28px; }
  .hero-bg.desk, .hero-bg.tab { display: none; }
  .hero-bg.mob { display: block; }
  .grid { grid-template-columns: 1fr 1fr; }
  .hex-ghost { display: none; }
  .gallery-head { justify-content: space-between; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px 16px; }
  .foot-brand .zen { width: 64px; }
  .nav-mob { top: 0; }
  .drawer .panel { top: 36px; }
  .ticker {
    top: auto;
    bottom: 0;
    border-bottom: 0;
    border-top: 1px solid rgba(109, 208, 169, 0.25);
  }
}

@media (min-width: 640px) and (max-width: 860px) {
  .hero-bg.mob { display: none; }
  .hero-bg.tab { display: block; }
}

@media (max-width: 520px) {
  .hero-card { padding: 18px 14px 20px; }
  .logo { height: 36px; }
  .tag { font-size: 13px; letter-spacing: 0.14em; }
  .ca-row { padding: 6px 6px 6px 10px; gap: 6px; }
  .ca-row code { font-size: 12px; }
  .ca-copy { padding: 7px 10px; font-size: 10px; }
  .foot-inner { padding: 16px 14px 20px; }
  .blurb { max-width: 160px; font-size: 11px; }
  .hero-inner { padding: 56px 12px 24px; }
  .foot-grid h3 { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  html { scroll-behavior: auto; }
}
