:root {
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --black: #000000;
  --gray-900: #0a0a0a;
  --gray-800: #111111;
  --gray-700: #1a1a1a;
  --yak-blue: #3b82f6;
  --yak-light: #60a5fa;
  --yak-glow: #93c5fd;
  --gold: #d4a853;
  --gold-light: #f0d78c;
  --text: #e5e5e5;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --max-width: 72rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  background: var(--black);
  min-height: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
  min-height: 100%;
  background-color: var(--black);
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-bottom: env(safe-area-inset-bottom);
}

html { overflow-x: hidden; }

img { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.25rem; }

.glass {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.text-shimmer {
  background: linear-gradient(90deg, var(--yak-light), var(--gold-light), var(--yak-light));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Header */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  padding-top: calc(0.875rem + env(safe-area-inset-top));
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand img { width: 2.75rem; height: 2.75rem; object-fit: contain; }

.brand-name { font-size: 1.125rem; font-weight: 600; color: #fff; }
.brand-name span { color: var(--yak-light); }

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  color: #fff;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--yak-light); }

.btn {
  display: inline-block;
  border-radius: 9999px;
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--yak-blue);
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-primary:hover { background: var(--yak-light); }

.btn-primary-lg {
  background: var(--yak-blue);
  color: #fff;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(59, 130, 246, 0.25);
}

.btn-primary-lg:hover { background: var(--yak-light); }

.btn-outline {
  background: transparent;
  color: #cbd5e1;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.menu-toggle {
  display: block;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.menu-toggle svg { width: 1.5rem; height: 1.5rem; }

.mobile-menu {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.mobile-menu a { color: #fff; display: block; padding: 0.375rem 0; }
.mobile-menu a:hover { color: var(--yak-light); }
.mobile-menu .btn { display: block; text-align: center; width: 100%; margin-top: 0.25rem; }

/* Hero */
.hero {
  min-height: 80vh;
  min-height: 80dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(5rem + env(safe-area-inset-top)) 1.25rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  width: min(72vw, 38rem);
  height: auto;
  opacity: 0.07;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 56rem;
}

.hero-logo { width: 8rem; height: 8rem; margin: 0 auto 2rem; object-fit: contain; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.1);
  padding: 0.375rem 1rem;
  font-size: 0.875rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.badge-dot {
  width: 0.375rem; height: 0.375rem;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
}

.hero h1 em { font-style: italic; }

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 42rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-actions .btn { width: 100%; max-width: 18rem; text-align: center; }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

.stat-value { font-size: 1.375rem; font-weight: 700; color: #fff; }
.stat-label { font-size: 0.7rem; color: var(--text-dim); margin-top: 0.25rem; line-height: 1.3; }

/* Sections */
.section {
  padding: 3rem 0;
  position: relative;
  scroll-margin-top: 5rem;
}

.section-label {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yak-light);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
}

.section-title em { font-style: italic; color: var(--yak-glow); }

.section-desc { color: var(--text-muted); line-height: 1.7; }

#about .section-desc {
  line-height: 1.55;
}

#about .section-desc.mb-6 {
  margin-bottom: 1.125rem;
}

.text-center { text-align: center; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2.5rem; }

/* About */
.about-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-grid > div:first-child {
  max-width: 34rem;
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image img {
  width: 12rem;
  height: 12rem;
  object-fit: contain;
}

.features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  grid-column: 1 / -1;
}

.feature-card {
  border-radius: 1rem;
  padding: 1.25rem;
  transition: border-color 0.2s;
}

.feature-card:hover { border-color: rgba(59, 130, 246, 0.3); }

.feature-icon { color: var(--yak-light); font-size: 1.25rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-weight: 600; color: #fff; margin-bottom: 0.375rem; }
.feature-card p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }

/* Tokenomics */
.allocation-card { border-radius: 1.5rem; padding: 2rem; }

.supply-number { font-size: 3.75rem; font-weight: 700; color: #fff; }
.supply-label { color: var(--text-muted); margin-top: 0.5rem; }

.bar { display: flex; height: 1rem; border-radius: 9999px; overflow: hidden; margin: 1.5rem 0; }
.bar-segment { height: 100%; }
.bar-blue { background: var(--yak-blue); }
.bar-light { background: var(--yak-light); }
.bar-glow { background: var(--yak-glow); }
.bar-gold { background: var(--gold); }
.bar-gold-light { background: var(--gold-light); }
.bar-advisor { background: #a78bfa; }
.bar-stake { background: #34d399; }

.legend { display: flex; flex-direction: column; gap: 0.75rem; }
.legend-item { display: flex; align-items: center; justify-content: space-between; }
.legend-left { display: flex; align-items: center; gap: 0.75rem; }
.legend-dot { width: 0.75rem; height: 0.75rem; border-radius: 50%; flex-shrink: 0; }
.legend-label { font-size: 0.875rem; color: #cbd5e1; }
.legend-pct { font-size: 0.875rem; font-weight: 500; color: #fff; flex-shrink: 0; }

.allocation-table-wrap {
  margin-top: 2rem;
  margin-inline: auto;
  max-width: 52rem;
  padding: 1.75rem 2rem 0;
  overflow-x: auto;
}

.allocation-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.allocation-table th,
.allocation-table td {
  padding: 0.375rem 1.25rem;
  text-align: left;
  vertical-align: middle;
  border: none;
}

.allocation-table thead th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding-top: 0;
  padding-bottom: 0.625rem;
}

.allocation-table td:first-child {
  font-weight: 500;
  color: #fff;
  padding-right: 2rem;
}

.allocation-table .col-num {
  width: 6rem;
  white-space: nowrap;
  text-align: center;
  font-variant-numeric: tabular-nums;
  padding-inline: 1.5rem;
}

.allocation-table thead .col-num {
  text-align: center;
}

.allocation-table td:last-child {
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 2rem;
}

.allocation-table-note {
  margin: 0;
  padding: 0.875rem 1.25rem 0.25rem;
  font-size: 0.8125rem;
  color: var(--text-dim);
  line-height: 1.6;
  text-align: center;
  border: none;
}

.tokenomics-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 1.5rem;
  padding: 1.5rem 2rem;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 0;
}
.spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.spec-row:first-child { padding-top: 0; }
.spec-row span:first-child { color: var(--text-dim); }
.spec-row span:last-child { font-weight: 500; color: #fff; }

/* Exclusivity */
.exclusivity-card {
  border-radius: 1.5rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.gold-badge {
  display: inline-flex;
  border-radius: 9999px;
  border: 1px solid rgba(212, 168, 83, 0.3);
  background: rgba(212, 168, 83, 0.1);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.exclusivity-grid { display: grid; gap: 2rem; align-items: center; }

.step-card {
  display: flex;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--gray-800);
  padding: 1.25rem;
}

.step-num { font-family: var(--font-serif); font-size: 1.5rem; color: var(--gold); }
.step-card h3 { font-weight: 600; color: #fff; margin-bottom: 0.25rem; }
.step-card p { font-size: 0.875rem; color: var(--text-dim); }

.steps { display: flex; flex-direction: column; gap: 1rem; }

/* How it works */
.steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.how-card {
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s;
}

.how-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 130, 246, 0.3);
}

.step-circle {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.2);
  color: var(--yak-light);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.how-card h3 { font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.how-card p { font-size: 0.875rem; color: var(--text-dim); line-height: 1.6; }

/* CTA */
.cta { text-align: center; }
.cta-inner { max-width: 42rem; margin: 0 auto; }

#join {
  padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
}

#join .section-desc {
  margin-bottom: 1.25rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--gray-800);
  padding: 0.875rem 1.25rem;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

.waitlist-form input:focus { border-color: rgba(59, 130, 246, 0.5); }
.waitlist-form input::placeholder { color: var(--text-dim); }

.success-card { border-radius: 1rem; padding: 2rem; }
.success-card .check { font-size: 2.5rem; margin-bottom: 1rem; }
.success-card h3 { font-size: 1.25rem; font-weight: 600; color: #fff; margin-bottom: 0.5rem; }
.success-card p { color: var(--text-muted); }

.error-msg { color: #f87171; font-size: 0.875rem; margin-top: 1rem; }
.fine-print { font-size: 0.875rem; color: #fff; margin-top: 1.5rem; }

.hidden { display: none !important; }

/* Join + footer block — solid layer avoids Chrome iPad paint/compositing bugs */
.site-bottom {
  position: relative;
  z-index: 2;
  isolation: isolate;
  background: var(--gray-900);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.site-bottom #join {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}

.site-bottom .footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer */
.footer {
  background: var(--gray-900);
  padding: 2rem 0;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { width: 2.5rem; height: 2.5rem; object-fit: contain; }

.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; font-size: 0.875rem; }
.footer-nav a { color: #fff; }
.footer-nav a:hover { color: var(--yak-light); }

.footer-copy { font-size: 0.875rem; color: #fff; }

.disclaimer {
  text-align: center;
  font-size: 0.875rem;
  color: #fff;
  line-height: 1.7;
  max-width: 42rem;
  margin: 0 auto;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(17, 17, 17, 0.6);
  padding: 1rem 1.25rem;
}

.disclaimer strong { font-weight: 500; }

/* Launch details */
.details-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.detail-card {
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

.detail-card h3 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--yak-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.detail-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.detail-note {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Roadmap */
.timeline {
  display: grid;
  gap: 1.25rem;
  max-width: 40rem;
  margin: 0 auto;
}

.timeline-item {
  border-radius: 1rem;
  padding: 1.5rem;
  border-left: 3px solid var(--yak-blue);
}

.timeline-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--yak-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Benefits */
.benefits-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.benefit-card {
  border-radius: 1rem;
  padding: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* FAQ */
.faq-list {
  max-width: 40rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-radius: 0.75rem;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  padding: 1.125rem 1.25rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  float: right;
  color: var(--yak-light);
  font-weight: 400;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  padding: 0 1.25rem 1.125rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.link { color: var(--yak-light); }
.link:hover { text-decoration: underline; }

/* Tablet — disable backdrop-filter (Chrome iPad paint bug) */
@media (max-width: 1100px) {
  .glass,
  .header.scrolled,
  .mobile-menu.open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(17, 17, 17, 0.94);
  }

  .header.scrolled {
    background: rgba(17, 17, 17, 0.96);
  }

  body {
    padding-bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  }

  .site-bottom #join {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .site-bottom .footer {
    padding-top: 1.5rem;
    padding-bottom: calc(1.5rem + env(safe-area-inset-bottom, 0px));
  }

  .footer-top {
    gap: 1rem;
    margin-bottom: 1rem;
  }

  .footer-nav {
    gap: 1rem 1.25rem;
  }

  #join .fine-print {
    margin-top: 1rem;
    font-size: 0.8125rem;
  }
}

/* Responsive — phone */
@media (max-width: 639px) {
  .hero-desc { font-size: 1rem; }

  .badge { font-size: 0.8125rem; padding: 0.375rem 0.875rem; }

  .allocation-card { padding: 1.25rem; }

  .supply-number { font-size: 2.75rem; }

  .allocation-table-wrap {
    padding: 1.25rem 0.75rem 0;
    margin-top: 1.5rem;
  }

  .allocation-table {
    font-size: 0.8125rem;
  }

  .allocation-table th,
  .allocation-table td {
    padding: 0.375rem 0.5rem;
  }

  .allocation-table td:first-child {
    padding-right: 0.75rem;
    min-width: 6.5rem;
  }

  .allocation-table .col-num {
    width: 3rem;
    padding-inline: 0.375rem;
  }

  .allocation-table td:last-child {
    padding-left: 0.75rem;
    font-size: 0.75rem;
  }

  .allocation-table-note {
    padding: 0.75rem 0.5rem 0.25rem;
    font-size: 0.75rem;
  }

  .legend-label { font-size: 0.8125rem; }

  .legend-item { gap: 0.5rem; }

  .specs { padding: 1.25rem; }

  .spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding: 0.875rem 0;
  }

  .exclusivity-card { padding: 1.25rem; }

  .section-title { font-size: clamp(1.75rem, 7vw, 2.25rem); }

  .waitlist-form .btn { width: 100%; }

  .waitlist-form { flex-direction: column; }

  .faq-item summary { padding: 1rem; font-size: 0.9375rem; }

  .disclaimer { font-size: 0.8125rem; padding: 0.875rem 1rem; }
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; justify-content: center; }
  .hero-actions .btn { width: auto; max-width: none; }
  .hero-logo { width: 10rem; height: 10rem; }
  .waitlist-form { flex-direction: row; }
  .stat-value { font-size: 1.75rem; }
  .stat-label { font-size: 0.8rem; }
  .stats { gap: 1.5rem; }
  .about-image img { width: 14rem; height: 14rem; }
  .features { grid-template-columns: 1fr 1fr; }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.5rem; }
}

/* iPad — keep waitlist stacked until wider screens */
@media (min-width: 640px) and (max-width: 1100px) {
  .waitlist-form {
    flex-direction: column;
    max-width: 24rem;
  }

  .waitlist-form .btn {
    width: 100%;
  }
}

@media (min-width: 1101px) {
  .waitlist-form {
    flex-direction: row;
    max-width: 28rem;
  }

  .waitlist-form .btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  .tokenomics-grid { grid-template-columns: 1fr 1fr; }
  .exclusivity-grid { grid-template-columns: 1fr 1fr; }
  .exclusivity-card { padding: 2rem; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1101px) {
  .footer-top { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .mobile-menu { display: none !important; }

  .about-grid {
    grid-template-columns: minmax(0, 24rem) 1fr;
    gap: 2rem 4rem;
    align-items: stretch;
  }

  .about-grid > div:first-child {
    max-width: 24rem;
  }

  .about-image {
    justify-content: center;
    align-items: center;
    min-height: 100%;
  }

  .about-image img {
    width: 100%;
    max-width: 28rem;
    height: auto;
    max-height: 32rem;
  }

  .exclusivity-card { padding: 3rem; }
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
  .details-grid { grid-template-columns: repeat(4, 1fr); }
}

/* Admin */
.btn-sm {
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
}

.btn-danger {
  background: rgba(248, 113, 113, 0.15);
  color: #fca5a5;
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.btn-danger:hover {
  background: rgba(248, 113, 113, 0.25);
  color: #fecaca;
}

.admin-logout-form {
  display: inline;
  margin: 0;
}

.admin-page {
  min-height: 100vh;
  padding: 6rem 0 3rem;
}

.admin-panel {
  max-width: 52rem;
  margin: 0 auto;
}

.admin-header {
  margin-bottom: 1.5rem;
}

.admin-card {
  border-radius: 1.5rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.admin-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.admin-label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.admin-login-form,
.admin-add-form,
.edit-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.admin-login-form input,
.admin-add-form input,
.edit-form input,
.admin-search {
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--gray-800);
  padding: 0.875rem 1.25rem;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
}

.admin-login-form input:focus,
.admin-add-form input:focus,
.edit-form input:focus,
.admin-search:focus {
  border-color: rgba(59, 130, 246, 0.5);
}

.admin-add-form {
  flex-direction: row;
  align-items: center;
}

.admin-add-form input {
  flex: 1;
}

.admin-success {
  color: #86efac;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

.admin-table-toolbar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.admin-search {
  border-radius: 0.75rem;
  max-width: 18rem;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.admin-table th,
.admin-table td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  vertical-align: middle;
  border: none;
}

.admin-table thead th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  padding-bottom: 0.625rem;
}

.admin-table .col-date {
  white-space: nowrap;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.admin-table .col-email {
  color: #fff;
  min-width: 12rem;
}

.admin-table .col-actions {
  white-space: nowrap;
  text-align: right;
}

.admin-table .col-actions .btn + .btn {
  margin-left: 0.5rem;
}

.edit-form {
  flex-direction: row;
  align-items: center;
}

.edit-form input {
  flex: 1;
  min-width: 10rem;
}

.admin-empty,
.admin-no-results {
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9375rem;
  padding: 1.5rem 0;
}

@media (min-width: 640px) {
  .admin-card { padding: 2rem; }
  .admin-table-toolbar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
