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

:root {
  --yellow: #0a0a0f;
  --yellow-deep: #0d0d14;
  --ink: #e0e0e0;
  --ink-soft: #c0c0c0;
  --muted: #8a8a9a;
  --line: rgba(0, 230, 255, 0.15);
  --line-light: rgba(0, 230, 255, 0.1);
  --neon-cyan: #00e6ff;
  --neon-blue: #4d7cff;
  --neon-purple: #a855f7;
  --neon-grad: linear-gradient(135deg, #00e6ff, #4d7cff, #a855f7);
  --display: "Anton", Impact, sans-serif;
  --sans: "Outfit", system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--yellow);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1080px, 90vw);
  margin: 0 auto;
}

.center { text-align: center; }
.sub { color: var(--muted); }

/* ── Header ── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 230, 255, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
  background: var(--yellow);
}

.logo-name {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-ticker {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
  opacity: 0.7;
}

.nav-links {
  display: flex;
  gap: 1.8rem;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.nav-links a:hover { opacity: 0.55; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  background: transparent;
  color: var(--neon-cyan);
  transition: transform 0.15s, background 0.2s, color 0.2s;
}

.nav-icon:hover {
  background: var(--neon-cyan);
  color: var(--yellow);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: var(--neon-cyan);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6.5rem 0 4rem;
  overflow: hidden;
  background: var(--yellow);
}

.hero-stage {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-burst {
  position: absolute;
  top: 48%;
  right: 14%;
  width: min(58vw, 560px);
  height: min(58vw, 560px);
  transform: translate(20%, -50%);
  background:
    radial-gradient(circle at center, rgba(0, 230, 255, 0.25) 0%, transparent 42%),
    repeating-conic-gradient(from 0deg, rgba(0, 230, 255, 0.06) 0deg 8deg, transparent 8deg 22deg);
  border-radius: 50%;
  opacity: 0.7;
  animation: hero-spin-burst 40s linear infinite;
}

.hero-logo-mark {
  position: absolute;
  top: 50%;
  right: 4%;
  width: min(62vw, 620px);
  height: min(62vw, 620px);
  transform: translateY(-48%);
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(28px) saturate(1.1);
}

.hero-logo-glow {
  position: absolute;
  top: 48%;
  right: 14%;
  width: min(42vw, 420px);
  aspect-ratio: 1;
  transform: translate(20%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 230, 255, 0.25) 0%, transparent 68%);
  animation: hero-pulse 3.8s ease-in-out infinite;
}

.hero-orbit {
  position: absolute;
  top: 48%;
  right: 14%;
  aspect-ratio: 1;
  transform: translate(20%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(0, 230, 255, 0.12);
}

.hero-orbit-1 {
  width: min(48vw, 460px);
  animation: hero-spin 22s linear infinite;
}

.hero-orbit-2 {
  width: min(56vw, 540px);
  border-style: dashed;
  border-color: rgba(77, 124, 255, 0.18);
  animation: hero-spin 32s linear infinite reverse;
}

.hero-spark {
  position: absolute;
  width: 14px;
  height: 14px;
  background: var(--neon-cyan);
  clip-path: polygon(50% 0%, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0% 50%, 38% 38%);
  animation: spark-twinkle 2.4s ease-in-out infinite;
}

.hero-spark-1 { top: 22%; right: 28%; animation-delay: 0s; }
.hero-spark-2 { top: 68%; right: 12%; width: 10px; height: 10px; animation-delay: 0.7s; }
.hero-spark-3 { top: 34%; right: 8%; width: 18px; height: 18px; animation-delay: 1.3s; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}

.hero-copy {
  max-width: 540px;
  color: var(--ink);
  animation: hero-rise 0.9s ease-out both;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-pulse {
  0%, 100% { transform: translate(20%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(20%, -50%) scale(1.08); opacity: 0.7; }
}

@keyframes hero-spin {
  from { transform: translate(20%, -50%) rotate(0deg); }
  to { transform: translate(20%, -50%) rotate(360deg); }
}

@keyframes hero-spin-burst {
  from { transform: translate(20%, -50%) rotate(0deg); }
  to { transform: translate(20%, -50%) rotate(360deg); }
}

@keyframes spark-twinkle {
  0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.9; }
  50% { transform: scale(1.35) rotate(20deg); opacity: 0.35; }
}

.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  margin-bottom: 0.85rem;
  animation: hero-rise 0.9s ease-out 0.12s both;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(3.4rem, 10vw, 6.5rem);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  background: linear-gradient(135deg, #00e6ff, #4d7cff, #a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 230, 255, 0.4));
  animation: hero-rise 0.9s ease-out 0.2s both;
}

.hero-ticker {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--neon-cyan);
  margin-bottom: 1.1rem;
  animation: hero-rise 0.9s ease-out 0.28s both;
}

.hero-lead {
  font-size: 1.08rem;
  color: rgba(200, 200, 220, 0.62);
  max-width: 420px;
  margin-bottom: 1.85rem;
  font-weight: 400;
  animation: hero-rise 0.9s ease-out 0.36s both;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  animation: hero-rise 0.9s ease-out 0.44s both;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(280px, 40vw, 440px);
  animation: hero-rise 0.9s ease-out 0.3s both;
}

.hero-logo-frame {
  position: relative;
  z-index: 1;
  width: min(78%, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, #00e6ff, #4d7cff, #a855f7);
  box-shadow:
    0 0 30px rgba(0, 230, 255, 0.3),
    0 0 60px rgba(77, 124, 255, 0.15);
  animation: logo-float 4s ease-in-out infinite;
}

.hero-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--yellow);
}

@keyframes logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.7rem;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, color 0.2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-ink {
  background: var(--neon-cyan);
  color: #0a0a0f;
  border-color: var(--neon-cyan);
}

.btn-ink:hover {
  background: #33ecff;
  box-shadow: 0 0 20px rgba(0, 230, 255, 0.4);
}

.btn-yellow {
  background: var(--neon-cyan);
  color: #0a0a0f;
  border-color: var(--neon-cyan);
}

.btn-yellow:hover { background: #33ecff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost:hover {
  border-color: var(--neon-cyan);
  color: var(--neon-cyan);
}

.btn-outline-ink {
  background: transparent;
  color: var(--neon-cyan);
  border-color: var(--neon-cyan);
}

.btn-outline-ink:hover {
  background: var(--neon-cyan);
  color: #0a0a0f;
}

.btn-lg { padding: 1.05rem 2rem; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.78rem; }
.btn-sm.copied { opacity: 0.65; }

/* ── Ticker bar ── */
.ticker-bar {
  overflow: hidden;
  padding: 0.75rem 0;
  background: #0d0d14;
  border-top: 1px solid rgba(0, 230, 255, 0.2);
  border-bottom: 1px solid rgba(0, 230, 255, 0.2);
}

.ticker-inner {
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  animation: scroll 24s linear infinite;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(0, 230, 255, 0.35);
}

.ticker-inner span:nth-child(odd) { color: var(--neon-cyan); }

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ── Blocks ── */
.block {
  padding: 5.5rem 0;
  background: var(--yellow);
}

.block-ink {
  background: #0d0d14;
  color: #e0e0e0;
}

.block-ink .tag { color: var(--neon-cyan); }
.block-ink h2 { color: #fff; }
.block-ink .sub { color: rgba(200, 200, 220, 0.55); }

.block-yellow {
  background: var(--yellow);
}

.block-head {
  max-width: 520px;
  margin-bottom: 2.5rem;
}

.block-head.center {
  margin-left: auto;
  margin-right: auto;
}

.tag {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.6rem;
  opacity: 0.65;
}

.tag-ink {
  color: var(--ink);
  opacity: 0.7;
}

.block h2 {
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.block h2 em {
  font-style: normal;
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 6px;
}

.block-ink h2 em {
  color: var(--neon-cyan);
  text-decoration-color: var(--neon-cyan);
}

.block-head p { color: var(--muted); }

/* ── X embed ── */
.embed-wrap {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.embed-frame {
  width: 100%;
  padding: 0.85rem 0.85rem 0.4rem;
  background: #fff;
  border: 1px solid rgba(0, 230, 255, 0.3);
  box-shadow: 0 0 20px rgba(0, 230, 255, 0.1);
  display: flex;
  justify-content: center;
  min-height: 120px;
}

.embed-frame .twitter-tweet {
  margin: 0 auto !important;
}

.embed-fallback {
  color: var(--neon-cyan);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.embed-fallback:hover {
  text-decoration: underline;
}

/* ── Gallery ── */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.gal-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(0, 230, 255, 0.2);
  padding: 0;
  cursor: zoom-in;
  background: #111118;
  box-shadow: 0 0 15px rgba(0, 230, 255, 0.08);
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.gal-item:hover img { transform: scale(1.04); }

.gal-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10, 10, 15, 0.85), transparent);
  pointer-events: none;
}

.gal-item span {
  position: absolute;
  left: 0.85rem;
  bottom: 0.7rem;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.gal-wide {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.gal-wide span {
  font-size: 0.9rem;
  bottom: 1rem;
  left: 1rem;
}

/* ── Lightbox ── */
.lightbox {
  border: none;
  padding: 0;
  background: transparent;
  max-width: min(960px, 92vw);
}

.lightbox::backdrop {
  background: rgba(5, 5, 10, 0.95);
}

.lightbox img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border: 1px solid rgba(0, 230, 255, 0.3);
}

.lightbox-close {
  position: absolute;
  top: -2.2rem;
  right: 0;
  background: none;
  border: none;
  color: var(--neon-cyan);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

.about-img-wrap {
  aspect-ratio: 1;
  max-width: 340px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 25px rgba(0, 230, 255, 0.2);
  animation: logo-bob 3.5s ease-in-out infinite;
}

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

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about-text strong { color: var(--ink); }

.meta {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 3px solid var(--ink);
}

.meta dt {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.meta dd {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ── Contract ── */
.contract-wrap { max-width: 640px; margin: 0 auto; }

.ca-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: #111118;
  border: 1px solid rgba(0, 230, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 230, 255, 0.1);
}

.ca-box code {
  flex: 1;
  font-family: ui-monospace, monospace;
  font-size: clamp(0.75rem, 2vw, 0.92rem);
  letter-spacing: 0.05em;
  word-break: break-all;
  color: var(--neon-cyan);
}

.toast {
  text-align: center;
  min-height: 1.2rem;
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: var(--ink);
  opacity: 0;
  transition: opacity 0.3s;
}

.block-ink .toast { color: var(--neon-cyan); }

.toast.show { opacity: 1; }

/* ── Chart ── */
.chart-box {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  border: 1px solid rgba(0, 230, 255, 0.2);
  background: #000;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 230, 255, 0.1);
}

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

.chart-iframe.hidden,
.chart-ph.hidden { display: none; }

.chart-ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.chart-link {
  display: block;
  text-align: center;
  margin-top: 1.1rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.chart-link:hover { text-decoration: underline; }

@media (min-width: 1000px) {
  .chart-box { padding-bottom: 65%; }
}

/* ── Steps ── */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 2rem 0 2.5rem;
  border: 1px solid rgba(0, 230, 255, 0.2);
  box-shadow: 0 0 15px rgba(0, 230, 255, 0.08);
}

.steps li {
  background: var(--yellow);
  padding: 1.75rem 1.25rem;
  border-right: 1px solid rgba(0, 230, 255, 0.15);
}

.steps li:last-child { border-right: none; }

.steps span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.steps h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.steps p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ── Footer ── */
.footer {
  background: #060610;
  color: #e0e0e0;
  border-top: 1px solid rgba(0, 230, 255, 0.15);
  padding: 2.5rem 0 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--neon-cyan);
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--neon-cyan);
}

.footer-brand span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--neon-cyan); }

.footer-disclaimer {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.65;
  max-width: 600px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .about-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .steps li {
    border-right: none;
    border-bottom: 1px solid rgba(0, 230, 255, 0.15);
  }

  .steps li:last-child { border-bottom: none; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }

  .hero-copy {
    max-width: none;
    margin: 0 auto;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
  }

  .gal-wide {
    grid-column: 1 / -1;
    grid-row: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-burst,
  .hero-logo-mark,
  .hero-logo-glow,
  .hero-orbit {
    right: auto;
    left: 50%;
  }

  .hero-burst,
  .hero-orbit-1,
  .hero-orbit-2 {
    animation-name: hero-spin-center;
  }

  .hero-logo-glow {
    animation-name: hero-pulse-center;
  }

  .hero-logo-mark {
    transform: translate(-50%, -48%);
    width: min(70vw, 420px);
    height: min(70vw, 420px);
  }

  .hero-visual {
    order: -1;
    min-height: 280px;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-spark-1 { right: 18%; left: auto; }
  .hero-spark-2 { left: 16%; right: auto; }
  .hero-spark-3 { right: 28%; left: auto; top: 18%; }
}

@keyframes hero-spin-center {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes hero-pulse-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.7; }
}

@media (max-width: 700px) {
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: var(--yellow);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid rgba(0, 230, 255, 0.2);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .nav-links.open {
    transform: none;
    opacity: 1;
    pointer-events: all;
  }

  .nav-toggle { display: flex; }

  .logo-name { font-size: 1.05rem; }

  .ca-box { flex-direction: column; }
  .ca-box .btn { width: 100%; justify-content: center; }

  .meta { flex-wrap: wrap; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .gal-item { aspect-ratio: 1; }
}
