/* Contact form styles */
.contact-section {
  padding: 48px 0 64px 0;
}
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  background: var(--panel-2, #232323);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
  padding: 36px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  font-weight: 600;
  color: var(--accent, #7fffd4);
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #181818;
  color: var(--text, #f5f5f5);
  font-size: 1em;
  margin-bottom: 8px;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--accent, #7fffd4);
  border-color: var(--accent, #7fffd4);
}
.contact-form button {
  margin-top: 10px;
  align-self: flex-end;
}
.mission-quote-left {
  /* ...existing code... */
}

/* Stylize the mission quote scrollbar */
.mission-quote-left::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
.mission-quote-left::-webkit-scrollbar-thumb {
  background: var(--accent, #7fffd4);
  border-radius: 6px;
  min-height: 40px;
  box-shadow: none;
}
.mission-quote-left::-webkit-scrollbar-track {
  background: transparent;
}
.mission-quote-left {
  scrollbar-width: thin;
  scrollbar-color: var(--accent, #7fffd4) transparent;
}

/* Hide scrollbar by default, show on hover/scroll */
.mission-quote-left::-webkit-scrollbar {
  opacity: 0;
  transition: opacity 0.2s;
}
.mission-quote-left:hover::-webkit-scrollbar,
.mission-quote-left:focus-within::-webkit-scrollbar {
  opacity: 1;
}
.bg-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: #111 !important;
  pointer-events: none;
}
.bg-video-iframe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.93;
  transition: opacity 0.7s;
  display: block;
  background: #111;
}
.mission-quote-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 38vw;
  min-width: 320px;
  max-width: 540px;
  height: 100vh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  pointer-events: auto;
  background: #000 !important;
  box-shadow: 4px 0 32px rgba(0,0,0,0.22);
  padding-top: 100px;
  padding-bottom: 100px;
  box-sizing: border-box;
  overflow: hidden;
}
.mission-quote-left {
  background: none;
  box-shadow: none;
  border-left: 6px solid var(--accent, #7fffd4);
  border-radius: 0 14px 14px 0;
  padding: 0 1.5vw 0 1.5vw;
  margin: 0;
  max-width: 92%;
  width: 100%;
  font-size: clamp(0.85em, 1.25vw, 1.05em);
  font-style: italic;
  color: var(--text, #f5f5f5);
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2em;
  pointer-events: auto;
  backdrop-filter: none;
  justify-content: flex-start;
  height: calc(100vh - 200px);
  min-height: 0;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  box-sizing: border-box;
}
/* Background video carousel for homepage */
.bg-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  background: #111;
}
.bg-video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  min-width: 100vw;
  min-height: 100vh;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.93;
  transition: opacity 0.7s;
}

/* Overlay quote box at bottom third */

.mission-quote-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  background: none;
}
.mission-quote-centered {
  margin: 0 auto;
  background: #181818;
  border-left: 6px solid var(--accent, #7fffd4);
  border-radius: 0 18px 18px 0;
  padding: 40px 48px 40px 44px;
  max-width: 900px;
  font-size: 1.25em;
  font-style: italic;
  color: var(--text, #f5f5f5);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
  box-shadow: 0 4px 32px rgba(0,0,0,0.18);
}
.mission-quote-centered .quote-mark {
  font-size: 1.5em;
  color: var(--accent, #7fffd4);
  font-family: serif;
  font-style: normal;
  line-height: 1;
  vertical-align: top;
}
.mission-quote-centered .quote-text {
  display: inline;
  font-style: italic;
}
.mission-quote .quote-mark {
  font-size: 1.5em;
  color: var(--accent, #7fffd4);
  font-family: serif;
  font-style: normal;
  line-height: 1;
  vertical-align: top;
}
.mission-quote .quote-text {
  display: inline;
  font-style: italic;
}
/* Mission statement quote style for homepage */
.mission-quote-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: none;
}
.mission-quote-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.mission-quote {
  position: relative;
  font-size: 2.1em;
  font-style: italic;
  color: var(--text, #f5f5f5);
  background: none;
  padding: 36px 48px 36px 44px;
  border-left: 6px solid var(--accent, #7fffd4);
  border-radius: 0 18px 18px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 0.2em;
}
.mission-quote .quote-mark {
  font-size: 1.5em;
  color: var(--accent, #7fffd4);
  font-family: serif;
  font-style: normal;
  line-height: 1;
  vertical-align: top;
}
.mission-quote .quote-text {
  display: inline;
  font-style: italic;
}
/* Brand logo and text size adjustment */
.brand {
  font-size: 1.45em;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  height: 40px !important;
  width: 40px !important;
  min-width: 40px;
  min-height: 40px;
  max-width: 44px;
  max-height: 44px;
}
/* Team biopics with popup descriptors */
.biopics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.biopic {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
  position: relative;
}
.biopic-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent, #7fffd4);
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  color: #fff;
  font-weight: bold;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.biopic-placeholder {
  background: #444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
}
.biopic-name {
  text-align: center;
  font-size: 1.08em;
  margin-top: 0;
  color: var(--text);
  font-weight: 600;
}
.biopic-role {
  text-align: center;
  font-size: 0.98em;
  color: var(--accent);
  margin-bottom: 6px;
}
.biopic-popup-content {
  display: none;
  position: absolute;
  left: 50%;
  top: 120px;
  transform: translateX(-50%);
  min-width: 220px;
  max-width: 320px;
  background: var(--panel-2, #232323);
  color: var(--text);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 18px 22px;
  z-index: 10;
  font-size: 1em;
  line-height: 1.5;
  pointer-events: none;
}
.biopic-popup:hover .biopic-popup-content,
.biopic-popup:focus-within .biopic-popup-content {
  display: block;
}
/* Biopics section for homepage */
.biopics-section {
  margin: 64px 0 32px 0;
}
.biopics-section .section-header {
  text-align: center;
  margin-bottom: 32px;
}
.biopics-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}
.biopic {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
}
.biopic-img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--accent, #7fffd4);
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  color: #fff;
  font-weight: bold;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.biopic-placeholder {
  background: #444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2em;
  font-weight: bold;
}
.biopic-name {
  text-align: center;
  font-size: 1.08em;
  margin-top: 0;
  color: var(--text);
}
.client-projects-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.client-projects-grid .card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  min-height: 220px;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--panel-2);
}
.client-projects-grid .card-media {
  flex: 1 1 50%;
  min-width: 0;
  display: flex;
  align-items: stretch;
  background: #222;
}
.client-projects-grid .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  min-height: 220px;
  display: block;
  aspect-ratio: 1/1;
  max-width: 100%;
  max-height: 100%;
}
.client-projects-grid .card-body {
  flex: 1 1 50%;
  padding: 32px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: none;
}
.client-projects-grid .card-title {
  margin: 0 0 10px 0;
  font-size: 1.4em;
  color: var(--accent);
}
.client-projects-grid .card-sub {
  color: var(--text);
  font-size: 1.08em;
  margin-bottom: 18px;
}
.client-projects-grid .card-actions {
  margin-top: auto;
}
.project-description {
  max-width: 900px;
  margin: 32px auto 48px auto;
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 32px 40px 28px 40px;
  color: var(--text);
  font-size: 1.25em;
  line-height: 1.7;
  text-align: left;
}
.project-description h3 {
  margin-top: 0;
  color: var(--accent);
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.project-description strong {
  color: var(--brand);
}
/* Wide static slideshow for projects page */
/* Wide static slideshow for projects page - full width, no circles, overlay captions */
/* Card-style static slideshow for projects page (reverted, but images larger) */
.wide-slideshow {
  max-width: 700px;
  margin: 0 auto 32px auto;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 0;
  background: var(--panel-2);
  position: relative;
}
.wide-slideshow .slides {
  height: 420px;
  min-height: 320px;
  max-height: 520px;
}
.wide-slideshow .slide img {
  width: 100%;
  max-width: 100%;
  height: 400px;
  min-height: 320px;
  max-height: 500px;
  object-fit: fill;
  border-radius: 18px 18px 0 0;
  box-shadow: none;
  display: block;
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.8em;
  color: rgba(60,60,60,0.25);
  background: none;
  border: none;
  width: auto;
  height: auto;
  padding: 0 18px;
  opacity: 0;
  transition: opacity 0.2s, color 0.2s;
  cursor: pointer;
  z-index: 2;
  box-shadow: none;
  line-height: 1;
}
.arrow.left {
  left: 0;
}
.arrow.right {
  right: 0;
}
.wide-slideshow .slide:hover .arrow,
.wide-slideshow .slide:focus-within .arrow {
  opacity: 1;
}
.arrow:hover {
  color: var(--accent);
  opacity: 1;
}
/* Only one .slide-caption, 1/5th height, bottom of image */
.slide-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20%;
  min-height: 48px;
  max-height: 90px;
  background: rgba(245,245,245,0.7);
  color: #222;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  padding: 0 32px;
  box-sizing: border-box;
  border-radius: 0 0 18px 18px;
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.01em;
  overflow: hidden;
}
/* Static radio slideshow for projects page */
.project-slideshow-block {
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.static-slideshow {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 24px auto;
  background: var(--panel-2);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 0 10px 0;
}
.static-slideshow .slides {
  position: relative;
  height: 260px;
}
.static-slideshow .slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  opacity: 0;
  transition: opacity 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.static-slideshow .slide img {
  max-width: 95%;
  max-height: 240px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  background: #222;
}
/* Duke's Adventure slideshow logic */
#duke-slide1:checked ~ .slides .s1,
#duke-slide2:checked ~ .slides .s2,
#duke-slide3:checked ~ .slides .s3,
#duke-slide4:checked ~ .slides .s4 {
  opacity: 1;
  z-index: 1;
}
/* Wind Rider slideshow logic */
#windrider-slide1:checked ~ .slides .s1,
#windrider-slide2:checked ~ .slides .s2 {
  opacity: 1;
  z-index: 1;
}
.slideshow-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.slideshow-nav label {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--muted);
  cursor: pointer;
  transition: background 0.2s;
  border: 2px solid transparent;
}
#duke-slide1:checked ~ .slideshow-nav label[for="duke-slide1"],
.wide-slideshow .slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
}
#duke-slide2:checked ~ .slideshow-nav label[for="duke-slide2"],
#duke-slide3:checked ~ .slideshow-nav label[for="duke-slide3"],
#duke-slide4:checked ~ .slideshow-nav label[for="duke-slide4"],
#windrider-slide1:checked ~ .slideshow-nav label[for="windrider-slide1"],
#windrider-slide2:checked ~ .slideshow-nav label[for="windrider-slide2"] {
  background: var(--accent);
  border-color: var(--brand);
}
/* Dual project slideshow styles */
.slideshow-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 24px 16px 18px 16px;
  margin: 0 auto;
  max-width: 440px;
}
.slideshow-header h3 {
  margin: 0 0 4px 0;
  font-size: 1.4em;
}
.slideshow-header p {
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 1em;
}
.slideshow-image-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}
.slideshow-img {
  max-width: 320px;
  max-height: 220px;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  background: #222;
}
.slide-arrow {
  background: var(--panel-2);
  color: var(--accent);
  border: none;
  font-size: 1.8em;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.2s;
}
.slide-arrow:hover {
  background: var(--accent);
  color: #222;
}
.slideshow-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.project-arrow {
  background: var(--brand);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.2s;
}
.project-arrow:hover {
  background: var(--accent);
  color: #222;
}
.slide-indicator {
  color: var(--muted);
  font-size: 0.98em;
}
/* Slideshow for home page */
.slideshow-card {
  transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
  opacity: 1;
}
#featured-slideshow.card-grid {
  display: flex;
  justify-content: center;
}
#featured-slideshow .card {
  min-width: 320px;
  max-width: 400px;
  margin: 0 auto;
}
/* Luminary Labs – site styles (non-minimal, interactive, vibrant) */
:root {
  --bg: #0d0f1a;
  --panel: #151a2b;
  --panel-2: #0f1430;
  --text: #e9eefc;
  --muted: #a9b4d9;
  --accent: #ffbb33;
  --accent-2: #6df1ff;
  --brand: #8c6dff;
  --danger: #ff5d73;
  --ok: #3fe0a9;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(120deg, var(--bg), #0b0d18);
  color: var(--text);
  font: 400 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, "Helvetica Neue", Arial, sans-serif;
}

.container {
  width: min(1100px, 94%);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: linear-gradient(
    180deg,
    rgba(21, 26, 43, 0.95),
    rgba(21, 26, 43, 0.75)
  );
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.logo-spark {
  color: var(--accent);
}
.nav-toggle {
  display: none;
  background: var(--panel);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 10px;
}
.site-nav {
  display: flex;
  gap: 14px;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid transparent;
  transition: 0.2s;
}
.site-nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.site-nav a.active {
  color: #0b0d18;
  background: var(--accent);
  border-color: transparent;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero-inner {
  padding: 80px 0 40px;
}
.hero h1 {
  font-size: clamp(28px, 4.6vw, 54px);
  line-height: 1.1;
  margin: 0 0 10px;
}
.hero .accent {
  color: var(--accent);
}
.hero p {
  max-width: 700px;
  color: var(--muted);
  margin: 0 0 24px;
}
.hero .cta-row {
  display: flex;
  gap: 12px;
}
.btn {
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.2s;
}
.btn.primary {
  background: linear-gradient(90deg, var(--brand), var(--accent));
  color: #0a0b14;
  border: 0;
  font-weight: 700;
}
.btn.ghost {
  background: transparent;
  color: var(--text);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      600px 200px at 20% -10%,
      rgba(255, 187, 51, 0.25),
      transparent
    ),
    radial-gradient(
      600px 200px at 90% 10%,
      rgba(141, 109, 255, 0.15),
      transparent
    );
}

/* Sections */
.section-header h2 {
  margin: 0 0 6px;
}
.section-header p {
  margin: 0 0 16px;
  color: var(--muted);
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateZ(0);
}
.card-media {
  aspect-ratio: 16/9;
  background: linear-gradient(120deg, #303b6a, #1d2347);
  position: relative;
}
.card-media .badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.card-body {
  padding: 14px;
}
.card-title {
  margin: 0 0 6px;
  font-weight: 700;
}
.card-sub {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.card-actions {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.08);
}
.card-actions a {
  color: var(--accent-2);
  text-decoration: none;
}

/* Capabilities */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.cap-card {
  background: linear-gradient(180deg, var(--panel), #10162d);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  border-radius: 14px;
}

/* Page hero */
.page-hero {
  padding: 36px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(
    180deg,
    rgba(21, 26, 43, 0.6),
    rgba(21, 26, 43, 0)
  );
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.team-card {
  background: linear-gradient(180deg, var(--panel), var(--panel-2));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}
.team-avatar {
  aspect-ratio: 1/1;
  background: radial-gradient(60% 60% at 50% 40%, #334, #111);
  display: grid;
  place-items: center;
  font-size: 42px;
}
.team-body {
  padding: 12px;
}
.team-role {
  color: var(--muted);
  margin: 0;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  margin-top: 40px;
  color: var(--muted);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Responsive nav */
@media (max-width: 760px) {
  .nav-toggle {
    display: inline-block;
  }
  .site-nav {
    position: absolute;
    right: 3%;
    top: 64px;
    background: var(--panel);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    display: none;
    flex-direction: column;
    min-width: 180px;
  }
  .site-nav.open {
    display: flex;
  }
}
