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

:root {
  --bg: #08080f;
  --bg-elevated: #11111c;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --text: #f4f4f8;
  --text-muted: #8b8ba3;
  --amber: #ffb020;
  --amber-dim: #e8940a;
  --green: #14f195;
  --green-dim: #0bc978;
  --coral: #ff6b4a;
  --purple: #9945ff;
  --gradient: linear-gradient(135deg, var(--amber) 0%, var(--coral) 50%, var(--purple) 100%);
  --font-display: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --radius: 16px;
  --radius-lg: 24px;
  --container: 1180px;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Ambient ── */
.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--amber);
  top: -10%;
  right: -5%;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: var(--purple);
  bottom: 20%;
  left: -10%;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: var(--green);
  top: 50%;
  right: 30%;
  opacity: 0.15;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(8, 8, 15, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.brand img {
  border-radius: 12px;
  border: 1px solid var(--border);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: 0.2s;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 20px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: var(--bg);
  box-shadow: 0 4px 24px rgba(255, 176, 32, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 176, 32, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--border-hover);
  background: var(--bg-card);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 10px 16px;
}

.btn-ghost:hover {
  color: var(--text);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 0.95rem;
}

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding-bottom: 64px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pill-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--amber);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.ca-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 4px 4px 16px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 400px;
}

.ca-row code {
  flex: 1;
  font-family: 'SF Mono', 'Fira Code', monospace;
  font-size: 0.9rem;
  color: var(--green);
  overflow: hidden;
  text-overflow: ellipsis;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-copy:hover {
  background: rgba(255, 255, 255, 0.08);
}

.ca-toast {
  font-size: 0.8rem;
  color: var(--green);
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.2s;
}

.ca-toast.show { opacity: 1; }

.hero-hint {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-frame {
  position: relative;
  width: min(100%, 380px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mascot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: float 5s ease-in-out infinite;
  cursor: pointer;
  filter: drop-shadow(0 24px 48px rgba(255, 176, 32, 0.2));
  transition: opacity 0.2s, transform 0.2s;
}

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

.hero-ring {
  position: absolute;
  inset: -20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.hero-ring::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--amber);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 16px var(--amber);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero-badge-float {
  position: absolute;
  top: 10%;
  right: 5%;
  font-size: 2rem;
  z-index: 3;
  animation: float 4s ease-in-out infinite reverse;
}

.float-card {
  position: absolute;
  padding: 12px 18px;
  background: rgba(17, 17, 28, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  z-index: 3;
}

.fc-label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.float-card strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.fc-1 { bottom: 20%; left: -5%; animation: float 6s ease-in-out infinite; }
.fc-2 { top: 15%; left: 0; animation: float 5s ease-in-out infinite 1s; }
.fc-3 { top: 8%; right: -8%; animation: float 4.5s ease-in-out infinite 0.5s; }

.hero-banner-wrap {
  width: 100%;
  line-height: 0;
  border-top: 1px solid var(--border);
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
}

/* ── Ticker ── */
.ticker-strip {
  border-block: 1px solid var(--border);
  background: var(--bg-elevated);
  overflow: hidden;
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.ticker-track span:nth-child(odd) {
  color: var(--amber);
}

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

/* ── Stats ── */
.stats {
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

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

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── Features ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 36px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(255, 176, 32, 0.3);
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── Gallery ── */
.section-gallery {
  background: linear-gradient(180deg, transparent 0%, rgba(17, 17, 28, 0.5) 50%, transparent 100%);
}

.gallery-feature {
  margin-bottom: 32px;
}

.gallery-hero .gallery-img-wrap {
  aspect-ratio: 21/9;
  max-height: 480px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-piece {
  margin: 0;
  cursor: pointer;
}

.gallery-img-wrap {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.3s, transform 0.3s;
}

.gallery-piece:hover .gallery-img-wrap {
  border-color: rgba(255, 176, 32, 0.4);
  transform: scale(1.02);
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-piece:hover img {
  transform: scale(1.06);
}

.gallery-piece figcaption {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 16px 4px 0;
}

.g-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  opacity: 0.8;
}

.g-title {
  font-weight: 600;
  font-size: 0.95rem;
}

/* ── Quotes ── */
.section-quotes {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 107, 74, 0.04) 50%, transparent 100%);
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.quote-card {
  margin: 0;
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, transform 0.2s;
}

.quote-card:hover {
  border-color: rgba(255, 176, 32, 0.35);
  transform: translateY(-4px) rotate(-0.5deg);
}

.quote-card:nth-child(2):hover { transform: translateY(-4px) rotate(0.5deg); }

.quote-card p {
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 16px;
  color: var(--text);
}

.quote-card cite {
  font-size: 0.8rem;
  font-style: normal;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── Tokenomics split ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 32px;
}

.token-list {
  list-style: none;
}

.token-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.token-list li span {
  color: var(--text-muted);
}

.token-list li strong {
  font-family: var(--font-display);
  font-weight: 700;
}

.roadmap-card {
  padding: 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.roadmap-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 28px;
}

.roadmap {
  list-style: none;
}

.roadmap li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-left: 2px solid var(--border);
  margin-left: 12px;
  padding-left: 24px;
  position: relative;
}

.roadmap li span {
  position: absolute;
  left: -13px;
  top: 14px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
}

.roadmap li.done {
  color: var(--text);
}

.roadmap li.done span {
  border-color: var(--green);
  color: var(--green);
}

.roadmap li.active {
  color: var(--amber);
  font-weight: 600;
}

.roadmap li.active span {
  border-color: var(--amber);
  color: var(--amber);
  box-shadow: 0 0 16px rgba(255, 176, 32, 0.4);
}

/* ── How to buy ── */
.section-buy {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.step {
  padding: 32px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  border-radius: 12px;
  margin-bottom: 20px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.buy-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── CTA Banner ── */
.cta-banner {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.cta-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 56px 64px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 176, 32, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-mascot {
  width: 180px;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
  position: relative;
  z-index: 1;
}

.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
}

.cta-inner p {
  color: var(--text-muted);
  margin-bottom: 24px;
  position: relative;
}

.cta-inner .btn {
  position: relative;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand img {
  border-radius: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.footer-note {
  color: var(--text-muted) !important;
  font-size: 0.85rem !important;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(8, 8, 15, 0.95);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-content {
  text-align: center;
  max-width: 92vw;
}

.lb-content img {
  max-height: 78vh;
  max-width: 90vw;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.lb-content p {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
}

.lb-close,
.lb-nav {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.lb-close {
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 1.8rem;
  line-height: 1;
}

.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 1.8rem;
}

.lb-prev { left: 24px; }
.lb-next { right: 24px; }

.lb-close:hover,
.lb-nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Mobile nav ── */
.site-header.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  padding: 24px;
  background: rgba(8, 8, 15, 0.98);
  border-bottom: 1px solid var(--border);
  gap: 20px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .ca-field { display: flex; flex-direction: column; align-items: center; }
  .ca-row { width: 100%; max-width: 400px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .quotes-grid { grid-template-columns: 1fr; }
  .split-section { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-visual { min-height: 320px; }
  .hero-frame { width: 280px; }
  .float-card { display: none; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-hero .gallery-img-wrap { aspect-ratio: 4/3; max-height: none; }

  .footer-grid { flex-direction: column; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 32px, var(--container)); }
  .nav-actions .btn-ghost { display: none; }
  .stats-grid { grid-template-columns: 1fr; }
}
