/* ArrowShift marketing site — cosmic neon glossy language */

:root {
  --bg: #03050c;
  --bg-mid: #08112a;
  --text: #f7f8ff;
  --muted: #a9b1d4;
  --dim: #6e789d;
  --blue: #2ec5ff;
  --purple: #e14fff;
  --violet: #7c3aed;
  --green: #4ade80;
  --gold: #ffc247;
  --border: rgba(110, 180, 255, 0.28);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --radius: 20px;
  --max: 1120px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

.bg-stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 35% at 50% 0%, rgba(46, 197, 255, 0.14), transparent 70%),
    radial-gradient(ellipse 45% 40% at 70% 90%, rgba(225, 79, 255, 0.1), transparent 65%),
    radial-gradient(ellipse 40% 30% at 10% 60%, rgba(124, 58, 237, 0.08), transparent 60%),
    var(--bg);
}

.bg-stars::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 10%, rgba(255, 255, 255, 0.35), transparent),
    radial-gradient(1px 1px at 28% 6%, rgba(255, 255, 255, 0.22), transparent),
    radial-gradient(1.2px 1.2px at 55% 12%, rgba(255, 255, 255, 0.28), transparent),
    radial-gradient(1px 1px at 78% 8%, rgba(255, 255, 255, 0.32), transparent),
    radial-gradient(1px 1px at 90% 22%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 18% 68%, rgba(255, 255, 255, 0.18), transparent),
    radial-gradient(1.1px 1.1px at 70% 78%, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0.9;
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 68px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, backdrop-filter 0.35s;
}

.nav.solid {
  background: rgba(3, 5, 12, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(110, 180, 255, 0.12);
}

.nav-inner {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 0 18px rgba(225, 79, 255, 0.35);
}

.brand span {
  background: linear-gradient(180deg, #fff, #c5d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand em {
  font-style: italic;
  background: linear-gradient(180deg, #f5d9ff, #c026ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

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

.btn-primary {
  background: linear-gradient(135deg, #6d28d9, #4c1d95 55%, #2e1065);
  border-color: rgba(167, 139, 250, 0.55);
  color: #fff;
  box-shadow: 0 10px 28px rgba(124, 58, 237, 0.4);
}

.btn-ghost {
  background: rgba(12, 20, 48, 0.55);
  border-color: var(--border);
  color: var(--text);
}

.ham {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: rgba(12, 20, 48, 0.65);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.ham span {
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Hero */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 79, 255, 0.22), transparent 68%);
  top: 18%;
  right: -8%;
  filter: blur(8px);
  animation: drift 10s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-glow.alt {
  background: radial-gradient(circle, rgba(46, 197, 255, 0.18), transparent 68%);
  left: -12%;
  right: auto;
  top: 42%;
  animation-delay: -3s;
}

@keyframes drift {
  from {
    transform: translateY(0) scale(1);
  }
  to {
    transform: translateY(-24px) scale(1.06);
  }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 5.6rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.02em;
  font-style: italic;
  margin-bottom: 8px;
}

.hero-title .line1 {
  display: block;
  background: linear-gradient(180deg, #ffffff, #c5d4ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(107, 163, 255, 0.25);
}

.hero-title .line2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, #f5d9ff, #c026ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.o-circle {
  display: inline-flex;
  width: 0.72em;
  height: 0.72em;
  border-radius: 50%;
  border: 3px solid #e879f9;
  background: rgba(162, 28, 175, 0.4);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-style: normal;
  font-size: 0.38em;
  box-shadow: 0 0 18px #e879f9;
  -webkit-text-fill-color: #fff;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 14px #e879f9;
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 24px #e879f9;
  }
}

.tagline {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(56, 189, 248, 0.35);
}

.hero-copy {
  margin-top: 14px;
  max-width: 36ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

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

.phone {
  width: min(100%, 320px);
  aspect-ratio: 9 / 18.2;
  border-radius: 36px;
  padding: 11px;
  background: linear-gradient(160deg, #243556, #152038, #0b1230);
  border: 1.75px solid rgba(167, 139, 250, 0.45);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06) inset,
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 48px rgba(124, 58, 237, 0.28);
  position: relative;
  overflow: hidden;
  animation: floatIn 1s ease-out both;
  scroll-margin-top: 96px;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 42%);
  pointer-events: none;
  z-index: 2;
}

.phone::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  border-radius: 999px;
  background: #050817;
  border: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 3;
  pointer-events: none;
}

.phone-screen {
  height: 100%;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(46, 197, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 40% at 70% 100%, rgba(225, 79, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #08112a 0%, #050817 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
  padding: 36px 10px 12px;
}

.phone-game {
  position: relative;
  z-index: 1;
}

.phone-game .demo-hud {
  margin-bottom: 8px;
  gap: 8px;
}

.phone-game .demo-eyebrow {
  font-size: 8px;
  letter-spacing: 1.6px;
}

.phone-game .demo-hud-top h3 {
  font-size: 1.05rem;
}

.phone-game .demo-icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  font-size: 1rem;
}

.phone-game .demo-stats {
  gap: 6px;
  margin-bottom: 8px;
}

.phone-game .demo-stat {
  padding: 8px 4px;
  border-radius: 12px;
  gap: 4px;
}

.phone-game .demo-stat-label {
  font-size: 0.55rem;
}

.phone-game .demo-stat strong {
  font-size: 0.95rem;
}

.phone-game .demo-stat-rule {
  font-size: 0.72rem !important;
}

.phone-game .demo-hearts svg {
  width: 13px;
  height: 13px;
}

.phone-game .demo-board-wrap {
  flex: 1;
  align-items: center;
  min-height: 0;
  padding: 2px 0;
}

.phone-game .demo-status {
  margin: 8px 2px 6px;
  font-size: 0.68rem;
  line-height: 1.35;
}

.phone-game .demo-progress {
  margin: 0 2px;
  height: 3px;
}

/* Sections */
section {
  padding: 88px 0;
  position: relative;
}

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

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

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

.glass {
  position: relative;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: linear-gradient(145deg, rgba(26, 42, 76, 0.88), rgba(10, 16, 36, 0.92));
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 1px;
}

.glass::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 40%);
  pointer-events: none;
}

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

.feature {
  padding: 24px 20px 22px;
  min-height: 210px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border: 1.5px solid rgba(110, 180, 255, 0.35);
  background: rgba(10, 16, 36, 0.75);
  font-size: 1.35rem;
  position: relative;
  z-index: 1;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.feature p {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  z-index: 1;
}

.feature.play .feature-icon {
  box-shadow: 0 0 18px rgba(192, 132, 252, 0.35);
}
.feature.daily .feature-icon {
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.3);
}
.feature.rewards .feature-icon {
  box-shadow: 0 0 18px rgba(251, 146, 60, 0.3);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: step;
}

.step {
  padding: 26px 22px;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  color: var(--blue);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.step p {
  color: var(--muted);
  position: relative;
  z-index: 1;
}

.download {
  text-align: center;
}

.download-panel {
  padding: 48px 28px;
  max-width: 760px;
  margin: 0 auto;
}

.download-panel h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.download-panel p {
  color: var(--muted);
  max-width: 42ch;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.store {
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 16px;
  border: 1.5px solid var(--border);
  background: rgba(8, 14, 32, 0.7);
  text-align: left;
}

.store small {
  display: block;
  color: var(--dim);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store strong {
  display: block;
  margin-top: 2px;
  font-size: 1.05rem;
}

footer {
  border-top: 1px solid rgba(110, 180, 255, 0.12);
  padding: 36px 0 48px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.footer-links a:hover {
  color: #fff;
}

.legal-note {
  color: var(--dim);
  font-size: 0.85rem;
}

/* Playable demo — matches in-app GameScreen look */
.demo-section {
  padding-top: 40px;
}

.demo-shell {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 28px;
  align-items: center;
}

.demo-shell-solo {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.demo-copy h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 12px;
}

.demo-copy p {
  color: var(--muted);
  margin-bottom: 18px;
  max-width: 40ch;
}

.demo-tips {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.demo-tips li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.95rem;
}

.demo-tips li::before {
  content: "◇";
  color: var(--blue);
  font-weight: 800;
  margin-top: 1px;
}

.demo-game {
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(46, 197, 255, 0.14), transparent 55%),
    radial-gradient(ellipse 70% 45% at 70% 100%, rgba(225, 79, 255, 0.1), transparent 50%),
    linear-gradient(180deg, #08112a 0%, #050817 100%);
  border: 1px solid rgba(110, 180, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 24px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.demo-game-glow {
  position: absolute;
  inset: auto -20% -30% -20%;
  height: 55%;
  background: radial-gradient(circle, rgba(139, 92, 255, 0.18), transparent 65%);
  pointer-events: none;
}

.demo-hud {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
}

.demo-hud-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.demo-eyebrow {
  margin: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.2px;
  color: #2ec5ff;
  text-transform: uppercase;
}

.demo-hud-top h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: #f7f8ff;
  letter-spacing: 0.02em;
}

.demo-title-line {
  width: 36px;
  height: 1.5px;
  margin-top: 4px;
  background: rgba(46, 197, 255, 0.55);
  border-radius: 2px;
}

.demo-controls {
  display: flex;
  gap: 8px;
}

.demo-icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(110, 180, 255, 0.4);
  background: linear-gradient(160deg, #243556, #0b1230);
  color: #f5f7ff;
  font-size: 1.25rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.15s, border-color 0.15s;
}

.demo-icon-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(62, 224, 208, 0.55);
}

.demo-icon-btn.primary {
  border-color: rgba(139, 92, 255, 0.65);
  background: linear-gradient(160deg, #3a2a68, #1a1238);
}

.demo-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.demo-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 16px;
  background: linear-gradient(160deg, #243556, #152038 55%, #0b1230);
  border: 1px solid rgba(110, 180, 255, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 -1px 0 rgba(46, 197, 255, 0.25) inset;
}

.demo-stat-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a9b1d4;
}

.demo-stat strong {
  font-size: 1.15rem;
  color: #f7f8ff;
  font-weight: 800;
}

.demo-stat-rule {
  font-size: 0.85rem !important;
  color: #3ee0d0 !important;
}

.demo-hearts {
  display: flex;
  gap: 4px;
  align-items: center;
  min-height: 18px;
}

.demo-heart {
  display: inline-flex;
  line-height: 0;
}

.demo-board-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  padding: 8px 0 4px;
}

.demo-board {
  position: relative;
  border-radius: 24px;
  background: transparent;
  overflow: visible;
  touch-action: manipulation;
  filter: drop-shadow(0 10px 28px rgba(139, 92, 255, 0.22));
}

.demo-board.shake {
  animation: boardShake 0.35s ease;
}

.demo-svg {
  display: block;
  overflow: visible;
}

.demo-piece {
  outline: none;
}

.demo-piece:focus-visible .demo-stroke,
.demo-piece:focus-visible .demo-head {
  filter: drop-shadow(0 0 6px rgba(62, 224, 208, 0.7));
}

@keyframes boardShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  75% {
    transform: translateX(6px);
  }
}

.demo-status {
  margin: 14px 8px 10px;
  min-height: 1.4em;
  text-align: center;
  color: #a9b1d4;
  font-size: 0.88rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.demo-status[data-kind="good"] {
  color: #50e3a4;
}

.demo-status[data-kind="bad"] {
  color: #ff5d7a;
}

.demo-status[data-kind="win"] {
  color: #50e3a4;
}

.demo-progress {
  height: 4px;
  border-radius: 999px;
  background: #1a243c;
  overflow: hidden;
  margin: 0 8px 4px;
  position: relative;
  z-index: 1;
}

.demo-progress span {
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: #8b5cff;
  box-shadow: 0 0 12px rgba(139, 92, 255, 0.55);
}

@media (max-width: 900px) {
  .demo-shell {
    grid-template-columns: 1fr;
  }
}

/* Inner pages */
.page {
  padding: 120px 0 80px;
}

.page h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 12px;
}

.page .lead {
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 60ch;
}

.prose {
  max-width: 720px;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 28px 0 10px;
}

.prose p,
.prose li {
  color: var(--muted);
  margin-bottom: 12px;
}

.prose ul {
  padding-left: 1.2rem;
  margin-bottom: 16px;
}

.contact-card {
  padding: 28px;
  max-width: 520px;
}

.contact-card a {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 900px) {
  .hero-inner,
  .features,
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    min-height: 480px;
  }

  .phone {
    width: min(100%, 280px);
  }

  .nav-links {
    display: none;
  }

  .ham {
    display: inline-flex;
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 68px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 18px;
    border: 1.5px solid var(--border);
    background: rgba(6, 10, 24, 0.96);
    backdrop-filter: blur(16px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
