/* Octavius Industries public site — self-hosted. No Tailwind CDN (blocked by project CSP). */
/* Design language: dark slate, lime neon, small brand-logo (36px), card grid. Mobile-first. */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: #020617;
  color: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }

/* Layout */
.wrap {
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
  min-width: 0;
}

.wrap-narrow {
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.wrap-mid {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .wrap, .wrap-narrow, .wrap-mid { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .wrap, .wrap-narrow, .wrap-mid { padding: 0 2rem; }
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(2, 6, 23, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1e293b;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 3.75rem;
  height: auto;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.65rem 1rem;
}

@media (min-width: 640px) {
  .nav-inner {
    min-height: 4.5rem;
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-inner {
    min-height: 5rem;
    padding: 0 2rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
  flex-shrink: 1;
}

.brand-logo {
  width: 2.25rem; /* 36px — locked */
  height: 2.25rem;
  object-fit: cover;
  border-radius: 0.35rem;
  flex-shrink: 0;
}

.brand-text {
  min-width: 0;
}

.brand-name {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.04em;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .brand-name { font-size: 1.5rem; }
}

.brand-tag {
  font-size: 0.55rem;
  color: #64748b;
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 11rem;
}

@media (min-width: 400px) {
  .brand-tag {
    font-size: 0.625rem;
    max-width: none;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .nav-actions {
    gap: 0.75rem;
    font-size: 0.875rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 1.5rem;
  border: 1px solid #334155;
  font-weight: 500;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  white-space: nowrap;
}

@media (min-width: 640px) {
  .btn {
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
  }
}

.btn:hover {
  background: #0f172a;
  border-color: #475569;
}

/* Collapse long labels on narrow phones */
.btn .btn-label-long { display: none; }
.btn .btn-label-short { display: inline; }

@media (min-width: 480px) {
  .btn .btn-label-long { display: inline; }
  .btn .btn-label-short { display: none; }
}

.btn-solid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border: 1px solid #fff;
  border-radius: 1.5rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  min-height: 2.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .btn-solid {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.btn-solid:hover {
  background: #39FF14;
  border-color: #39FF14;
  color: #000;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  border: 1px solid #475569;
  border-radius: 1.5rem;
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  min-height: 2.75rem;
  text-align: center;
}

@media (min-width: 640px) {
  .btn-ghost { padding: 1rem 2rem; }
}

.btn-ghost:hover {
  border-color: #39FF14;
}

/* Dropdown */
.drop { position: relative; }

.drop-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 0.5rem);
  width: min(16rem, calc(100vw - 2rem));
  border-radius: 1.25rem;
  background: #0f172a;
  border: 1px solid #334155;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  padding: 0.5rem 0;
  z-index: 60;
}

.drop-menu.open { display: block; }

.drop-menu a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.15rem;
  font-size: 0.875rem;
  min-height: 2.75rem;
}

.drop-menu a:hover { background: #1e293b; }

.drop-menu .fa-solid { width: 1rem; color: #39FF14; flex-shrink: 0; }

/* Hero */
.hero {
  padding: 1.75rem 0 1rem;
}

@media (min-width: 640px) {
  .hero { padding: 2.5rem 0 1.25rem; }
}

@media (min-width: 1024px) {
  .hero { padding: 3rem 0 1.5rem; }
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

@media (min-width: 640px) {
  .pills { gap: 0.75rem; margin-bottom: 1rem; }
}

.pill {
  padding: 0.25rem 0.75rem;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.65rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  color: #94a3b8;
}

@media (min-width: 640px) {
  .pill {
    padding: 0.25rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
  }
}

.hero h1,
.page h1 {
  font-size: clamp(1.85rem, 7.5vw, 3.25rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin: 0 0 0.5rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.neon {
  color: #39FF14;
  text-shadow: 0 0 10px #39FF14;
  font-size: clamp(1.25rem, 5vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 0;
  line-height: 1.2;
}

.lead {
  max-width: 36rem;
  margin: 1.5rem 0 2rem;
  font-size: 1.05rem;
  color: #cbd5e1;
}

@media (min-width: 640px) {
  .lead {
    margin: 2rem 0 2.5rem;
    font-size: 1.25rem;
  }
}

.lead p { margin: 0 0 1rem; }
.lead p:last-child { margin-bottom: 0; }

/* Cards grid */
.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.15rem;
  padding-bottom: 3.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .grid-2 {
    gap: 1.5rem;
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .grid-2 { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}

.card {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 1.25rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
}

@media (min-width: 640px) {
  .card { border-radius: 1.5rem; }
}

@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.25);
  }
}

.card-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .card-row { flex-direction: row; }
  .card-art {
    width: 40%;
    max-width: 40%;
    min-height: 100%;
    flex: 0 0 40%;
  }
  .card-body {
    width: 60%;
    max-width: 60%;
    flex: 1 1 60%;
    min-width: 0;
  }
}

.card-art {
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  max-height: 240px;
  padding: 0.85rem;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow: hidden;
}

@media (min-width: 640px) {
  .card-art {
    min-height: 220px;
    max-height: none;
    padding: 1rem;
  }
}

@media (min-width: 768px) {
  .card-art {
    max-height: none;
    min-height: 100%;
  }
}

.card-art img {
  max-width: 100%;
  max-height: 200px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .card-art img { max-height: 260px; }
}

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  max-width: calc(100% - 1.5rem);
  padding: 0.2rem 0.6rem;
  background: rgba(0,0,0,0.75);
  font-size: 0.65rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.1em;
  border-radius: 0.25rem;
  color: #e2e8f0;
  z-index: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .badge {
    top: 1rem;
    left: 1rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
  }
}

.card-body {
  padding: 1.15rem 1.15rem 1.35rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
  overflow-wrap: anywhere;
  word-wrap: break-word;
}

@media (min-width: 640px) {
  .card-body { padding: 1.75rem 2rem; }
}

.card-body h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .card-body h3 { font-size: 1.75rem; line-height: 1.15; }
}

.card-sub {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.4;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.card-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: #39FF14;
  font-size: 0.8125rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
  padding: 0.15rem 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

@media (min-width: 640px) {
  .card-link { font-size: 0.875rem; }
}

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

.bullets {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .bullets {
    margin: 1.5rem 0 0;
    gap: 0.65rem;
  }
}

.bullets li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #cbd5e1;
  max-width: 100%;
  min-width: 0;
}

@media (min-width: 640px) {
  .bullets li { font-size: 0.875rem; gap: 0.6rem; }
}

.bullets .dot {
  flex-shrink: 0;
  width: 0.75rem;
  text-align: center;
  color: #94a3b8;
}

.bullets .txt {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.bullets a { color: #39FF14; }
.bullets a:hover { text-decoration: underline; }

/*
 * Mobile panel shrink (~88–92% visual density): keep every product card
 * fully inside the viewport on phones / small browsers. No right-edge bleed.
 */
@media (max-width: 767px) {
  .wrap {
    padding-left: max(0.7rem, env(safe-area-inset-left));
    padding-right: max(0.7rem, env(safe-area-inset-right));
    overflow-x: clip;
  }

  .grid-2 {
    gap: 0.85rem;
    padding-bottom: 2.75rem;
  }

  .card {
    border-radius: 1rem;
  }

  .card-art {
    min-height: 9.25rem;
    max-height: 10.5rem;
    padding: 0.55rem;
  }

  .card-art img {
    max-height: 8rem;
  }

  .badge {
    top: 0.5rem;
    left: 0.5rem;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    padding: 0.15rem 0.45rem;
    max-width: calc(100% - 1rem);
  }

  .card-body {
    padding: 0.85rem 0.85rem 1rem;
  }

  .card-body h3 {
    font-size: 1.12rem;
    letter-spacing: -0.015em;
  }

  .card-sub {
    font-size: 0.78rem;
    margin-top: 0.3rem;
  }

  .card-link {
    font-size: 0.72rem;
    margin-top: 0.4rem;
  }

  .bullets {
    margin-top: 0.85rem;
    gap: 0.42rem;
  }

  .bullets li {
    font-size: 0.74rem;
    gap: 0.4rem;
    line-height: 1.4;
  }

  .bullets .dot {
    width: 0.65rem;
  }

  .video-slot-home {
    margin: 0 0 1.5rem;
    min-height: 10rem;
    padding: 1rem 0.85rem;
  }
}

/* Extra-narrow phones (≤360px): another ~8% tighten */
@media (max-width: 360px) {
  .wrap {
    padding-left: max(0.55rem, env(safe-area-inset-left));
    padding-right: max(0.55rem, env(safe-area-inset-right));
  }

  .card-body {
    padding: 0.72rem 0.72rem 0.9rem;
  }

  .card-body h3 { font-size: 1.02rem; }
  .card-sub { font-size: 0.72rem; }
  .card-link { font-size: 0.68rem; }
  .bullets li { font-size: 0.7rem; }
  .card-art {
    min-height: 8.25rem;
    max-height: 9.25rem;
  }
  .card-art img { max-height: 7.25rem; }
}

/* Footer */
.footer {
  border-top: 1px solid #1e293b;
  padding: 1.25rem 0;
  padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
}

.footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.6rem;
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  text-align: center;
  line-height: 1.4;
}

@media (min-width: 640px) {
  .footer-inner {
    padding: 0 1.5rem;
    font-size: 0.625rem;
  }
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 0 2rem;
  }
}

/* Info / booking pages */
.page {
  padding: 2rem 0 3rem;
}

@media (min-width: 640px) {
  .page { padding: 3rem 0 4rem; }
}

@media (min-width: 1024px) {
  .page { padding: 4rem 0; }
}

.prose p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0 0 1.25rem;
}

@media (min-width: 640px) {
  .prose p {
    font-size: 1.25rem;
    line-height: 1.75;
    margin: 0 0 1.5rem;
  }
}

.video-slot {
  aspect-ratio: 16 / 9;
  border-radius: 1.15rem;
  border: 1px solid #334155;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(124, 58, 237, 0.25), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(57, 255, 20, 0.08), transparent 45%),
    #0f172a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem;
  margin: 0 0 2.5rem;
}

/* Home: video sits between hero lead and product grid */
.video-slot-home {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0 0 2rem;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .video-slot-home { margin: 0 0 2.5rem; }
}

.video-play {
  font-size: 1.75rem;
  opacity: 0.4;
  margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
  .video-slot {
    border-radius: 1.5rem;
    padding: 2rem;
    margin: 0 0 3.5rem;
  }
  .video-slot-home { margin: 0 0 2.5rem; }
  .video-play { font-size: 2rem; }
}

.video-slot .label {
  font-size: 0.7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.15em;
  color: #94a3b8;
}

@media (min-width: 640px) {
  .video-slot .label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
  }
}

.video-slot .hint {
  font-size: 0.8125rem;
  color: #64748b;
  margin-top: 0.5rem;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .cta-row {
    flex-direction: row;
    gap: 1rem;
    margin-top: 3rem;
  }
}

/* Portfolio tiles */
.tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .tiles {
    gap: 1rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 768px) {
  .tiles { grid-template-columns: 1fr 1fr; }
}

.tile {
  display: block;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 1.15rem;
  padding: 1.15rem;
  transition: border-color 0.15s;
}

@media (min-width: 640px) {
  .tile {
    border-radius: 1.5rem;
    padding: 1.5rem;
  }
}

.tile:hover { border-color: #39FF14; }

.tile .k {
  font-size: 0.65rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.12em;
  color: #64748b;
  margin-bottom: 0.4rem;
}

@media (min-width: 640px) {
  .tile .k {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
  }
}

.tile .t {
  font-size: 1.2rem;
  font-weight: 600;
  word-break: break-word;
}

@media (min-width: 640px) {
  .tile .t { font-size: 1.5rem; }
}

.tile .d {
  font-size: 0.875rem;
  color: #94a3b8;
  margin-top: 0.45rem;
  line-height: 1.4;
}

/* Booking form */
.panel {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 1.15rem;
  padding: 1.25rem;
}

@media (min-width: 640px) {
  .panel {
    border-radius: 1.5rem;
    padding: 2rem;
  }
}

@media (min-width: 768px) {
  .panel { padding: 2.5rem; }
}

.panel h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 600;
}

@media (min-width: 640px) {
  .panel h2 { font-size: 1.75rem; }
}

.panel .hint {
  color: #94a3b8;
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (min-width: 640px) {
  .panel .hint {
    margin: 0 0 2rem;
    font-size: 0.95rem;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}

@media (min-width: 768px) {
  .form-grid.two {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #cbd5e1;
  margin-bottom: 0.45rem;
}

.input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: #020617;
  border: 1px solid #334155;
  color: #fff;
  font: inherit;
  font-size: 16px; /* iOS: avoid zoom on focus */
  min-height: 2.75rem;
  -webkit-appearance: none;
  appearance: none;
}

textarea.input {
  min-height: 5rem;
  resize: vertical;
}

.input:focus {
  outline: none;
  border-color: #39FF14;
  box-shadow: 0 0 0 1px #39FF14;
}

select.input {
  background-image: linear-gradient(45deg, transparent 50%, #94a3b8 50%),
    linear-gradient(135deg, #94a3b8 50%, transparent 50%);
  background-position: calc(100% - 1.1rem) calc(50% - 0.15rem), calc(100% - 0.75rem) calc(50% - 0.15rem);
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.25rem;
}

.form-stack { display: flex; flex-direction: column; gap: 1.15rem; }

@media (min-width: 640px) {
  .form-stack { gap: 1.5rem; }
}

.form-stack .submit {
  width: 100%;
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 1.5rem;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  min-height: 3rem;
}

@media (min-width: 640px) {
  .form-stack .submit { font-size: 1.125rem; }
}

.form-stack .submit:hover { background: #39FF14; }

.success {
  display: none;
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: #022c22;
  border: 1px solid #064e3b;
  border-radius: 1.15rem;
  text-align: center;
}

@media (min-width: 640px) {
  .success {
    padding: 1.5rem;
    border-radius: 1.5rem;
  }
}

.success.show { display: block; }

.trust-badge {
  display: inline-block;
  background: linear-gradient(#FFD700, #DAA520);
  color: #111;
  font-weight: 700;
  padding: 2px 8px;
  border: 2px solid #B8860B;
  border-radius: 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
  font-size: 0.9em;
  vertical-align: baseline;
}

.nerd-badge {
  color: #FF1493;
  font-weight: 700;
  font-family: monospace;
  text-shadow: 1px 1px 2px #00FF00;
}

.meta-note {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1.4;
  padding: 0 0.5rem;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .card { transition: none; }
  .card:hover { transform: none; }
}
