/**
 * QuantumXn landing — deep black, monochrome, scroll fade, minimal chrome.
 */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

/* Qurova — place .otf files in Reactor/ (see Reactor/Quantumlogo.html) */
@font-face {
  font-family: 'Qurova';
  src: url('../Reactor/QurovaDEMO-Bold-BF67a5c637eed62.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Qurova';
  src: url('../Reactor/QurovaDEMO-Regular-BF67a5c637a5dc9.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Qurova';
  src: url('../Reactor/QurovaDEMO-Light-BF67a5c6380ebd4.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

:root {
  --black: #000000;
  --black-soft: #050505;
  --white: #ffffff;
  --muted: #8a8a8a;
  --dim: #4a4a4a;
  --border: rgba(255, 255, 255, 0.06);
  --font-sans: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Fira Code', monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.font-mono {
  font-family: var(--font-mono);
}

::selection {
  background: var(--white);
  color: var(--black);
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: #2a2a2a;
}

/* Ambient particles (no grid) */
#simulationCanvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.22;
}

/* Scroll vignette — content dissolves into dark */
.scroll-vignette {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: min(42vh, 420px);
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(to top, var(--black) 0%, rgba(0, 0, 0, 0.85) 35%, transparent 100%);
}

/* Site chrome */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-nav-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 1.5rem 2rem;
  flex-wrap: wrap;
  flex: 1;
  min-width: 0;
}

.nav-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.nav-atom-host,
.qx-atom-mark {
  width: 1.65rem;
  height: 1.65rem;
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.15));
}

.qx-atom-three-host {
  display: inline-block;
  width: 1.65rem;
  height: 1.65rem;
  min-width: 1.65rem;
  min-height: 1.65rem;
  vertical-align: middle;
  position: relative;
  overflow: visible;
}

.qx-atom-three-host .qx-atom-canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none;
}

.brand-wordmark {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.02em;
}

/* Styled Q mark (Logo.md spec) — replaces Qurova Q in wordmarks
   logo.html wordmark: logoScale 120%, letterScale 78%, Q = letter × 1.08 × 1.20 */
.qx-logo-q-host {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 0;
}

.qx-logo-q-canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.qx-logo-q-wordmark {
  height: 1.296em;
  width: 1.296em;
  margin-right: 0.07em;
  transform: translateY(0.03em);
}

.hero-brand .qx-logo-q-wordmark {
  height: 1.296em;
  width: 1.296em;
  margin-right: 0.06em;
  transform: translateY(0.04em);
}

.nav-brand-text .qx-logo-q-wordmark {
  height: 1.296em;
  width: 1.296em;
  margin-right: 0.06em;
}

.branding-footer .qx-logo-q-wordmark {
  height: 1.296em;
  width: 1.296em;
  margin-right: 0.06em;
}

.qx-logo-q-hero {
  width: clamp(11rem, 30vw, 17rem);
  height: clamp(11rem, 30vw, 17rem);
}

.product-mark {
  display: inline;
  white-space: inherit;
}

.brand-qurova-regular {
  font-family: 'Qurova', 'IBM Plex Sans', sans-serif;
  font-weight: 400;
}

.brand-qurova-light {
  font-family: 'Qurova', 'IBM Plex Sans', sans-serif;
  font-weight: 300;
}

.brand-x,
.regular-x {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.cap-item h3 .product-mark,
.narrative h2 .product-mark {
  color: var(--white);
}

.nav-brand-text {
  font-size: 0.75rem;
}

/* Slash-nav — backup style: mono, zinc, hover white */
.nav-slugs {
  display: none;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.nav-slug-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: #a1a1aa;
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-slug-link:hover,
.nav-pillar:hover .nav-slug-link,
.nav-pillar:focus-within .nav-slug-link {
  color: var(--white);
}

a.nav-slug-link .nav-slug-prefix {
  font-family: var(--font-mono);
}

a.nav-slug-link .product-mark {
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.nav-pillar {
  position: relative;
}

.nav-pillar-trigger {
  display: inline-block;
}

.nav-dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  top: calc(100% + 0.45rem);
  min-width: 15rem;
  max-width: 18rem;
  padding: 0.85rem 1rem;
  background: #080808;
  border: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 60;
  line-height: 1.55;
  text-align: left;
}

.nav-pillar:hover .nav-dropdown,
.nav-pillar:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown strong {
  display: block;
  color: var(--white);
  font-weight: 500;
  font-size: 0.58rem;
  margin-bottom: 0.35rem;
  font-family: var(--font-mono);
}

.nav-dropdown p {
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 0.56rem;
  font-family: var(--font-mono);
}

.nav-dropdown a {
  color: var(--white);
  text-decoration: none;
}

.nav-dropdown a:hover {
  text-decoration: underline;
}

.nav-dropdown .sub {
  margin-top: 0.45rem;
  padding-top: 0.45rem;
  border-top: 1px solid var(--border);
}


.nav-contact {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.04em;
}

.nav-contact:hover {
  color: var(--white);
}

.menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 0.25rem;
}

.menu-btn:hover {
  color: var(--white);
}

.mobile-drawer {
  display: none;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  background: var(--black);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.mobile-drawer.is-open {
  display: block;
}

.mobile-drawer a {
  display: block;
  padding: 0.5rem 0;
  color: var(--muted);
  text-decoration: none;
}

.mobile-drawer a:hover {
  color: var(--white);
}

.mobile-slug-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--white);
  margin: 0.75rem 0 0.2rem;
}

.mobile-slug-label:first-child {
  margin-top: 0;
}

.mobile-slug-detail {
  font-size: 0.58rem;
  color: var(--dim);
  margin: 0 0 0.25rem;
  line-height: 1.5;
}

.mobile-slug-detail a {
  color: var(--muted);
  text-decoration: none;
}

.mobile-slug-detail a:hover {
  color: var(--white);
}

.mobile-divider {
  height: 1px;
  background: var(--border);
  margin: 1rem 0;
}

@media (min-width: 900px) {
  .nav-slugs {
    display: flex;
  }
}

@media (min-width: 900px) {
  .menu-btn {
    display: none;
  }
}

@media (max-width: 899px) {
  .nav-pillar-trigger {
    cursor: pointer;
  }
  .nav-slugs.is-open {
    display: flex;
    width: 100%;
    order: 4;
    padding: 0.5rem 0 0.25rem;
    border-top: 1px solid var(--border);
  }
  .nav-pillar.is-open .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin: 0.25rem 0 0.5rem;
  }
}

/* Hero — name left, logo right */
.hero {
  max-width: 72rem;
  margin: 0 auto;
  padding: 5rem 1.5rem 3rem;
}

.hero-row {
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-start;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .hero-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
  }
}

.hero-copy {
  flex: 1;
  min-width: 0;
}

.hero-status {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: var(--dim);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-status .pulse {
  width: 5px;
  height: 5px;
  background: var(--white);
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(2.25rem, 7vw, 4.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
}

.hero-brand {
  display: block;
  font-size: clamp(2.5rem, 8vw, 4.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.15em;
}

.hero-brand .brand-qurova-regular,
.hero-brand .brand-qurova-light,
.hero-brand .brand-x,
.hero-brand .regular-x {
  font-size: inherit;
}

.hero-title .muted {
  color: var(--muted);
  display: block;
  font-size: 0.42em;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-top: 0.35em;
}

.hero-lead {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 36rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 0.15rem;
}

.hero-cta:hover {
  border-color: var(--white);
}

.hero-logo-wrap {
  flex-shrink: 0;
  align-self: center;
}

@media (min-width: 768px) {
  .hero-logo-wrap {
    align-self: flex-end;
  }
}

/* Hero: PNG only (white on black — sits flush on page) */
.logo-raster-hero {
  width: clamp(11rem, 30vw, 17rem);
  height: auto;
  display: block;
  object-fit: contain;
  /* PNG ships with black field — page is black so logo reads as native mark */
}

/* Scroll-fade sections */
.fade-section {
  transition: opacity 0.55s ease, transform 0.55s ease, filter 0.55s ease;
  will-change: opacity, transform;
}

.fade-section.is-faded {
  opacity: 0.22;
  transform: translateY(12px);
  filter: blur(0.3px);
}

.page-wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 2rem;
  text-transform: none;
}

/* Architecture — no box grid */
.cap-grid {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .cap-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.cap-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0.5rem 0 0.6rem;
}

.cap-item .idx {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--dim);
  letter-spacing: 0.1em;
}

.cap-item p {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.cap-item p strong {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.cap-footnote {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--dim);
  text-align: center;
  padding-bottom: 3rem;
  letter-spacing: 0.04em;
  max-width: 36rem;
  margin: -1rem auto 0;
  line-height: 1.6;
}

/* Simulation panel — light frame only */
.sim-panel {
  margin: 0 0 4rem;
  border: 1px solid var(--border);
  background: rgba(5, 5, 5, 0.6);
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--dim);
}

.sim-live {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
}

.sim-live .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  animation: ping 1.5s ease infinite;
}

@keyframes ping {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.sim-body {
  display: grid;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

@media (min-width: 1024px) {
  .sim-body {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .sim-col + .sim-col {
    border-left: 1px solid var(--border);
  }
}

.sim-col {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
}

@media (min-width: 1024px) {
  .sim-col {
    border-top: none;
  }
}

.sim-col h4 {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  color: var(--dim);
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.sim-label {
  font-size: 0.55rem;
  color: var(--dim);
  display: block;
  margin-bottom: 0.35rem;
}

.mode-btns {
  display: flex;
  gap: 0.5rem;
}

.mode-btn {
  flex: 1;
  padding: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.mode-btn.is-active {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.mode-btn:not(.is-active):hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.sim-range {
  width: 100%;
  accent-color: var(--white);
  height: 2px;
  margin-top: 0.35rem;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.metric-row span:last-child {
  color: var(--white);
  font-weight: 500;
}

.terminal-view {
  height: 10rem;
  position: relative;
  border: 1px solid var(--border);
  background: var(--black);
  overflow: hidden;
}

#terminalCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.terminal-tag {
  position: absolute;
  bottom: 0.35rem;
  right: 0.5rem;
  font-size: 0.5rem;
  color: var(--dim);
}

/* Narrative blocks — typography only */
.narrative {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
}

.narrative h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}

.narrative p,
.narrative li {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted);
  max-width: 42rem;
}

.narrative ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.narrative li {
  margin-bottom: 0.5rem;
}

.narrative .highlight {
  color: var(--white);
}

/* Footer — centered only */
.site-footer {
  margin-top: 4rem;
  border-top: 1px solid var(--border);
  background: var(--black-soft);
  position: relative;
  z-index: 10;
}

.footer-center {
  max-width: 72rem;
  margin: 0 auto;
  padding: 2rem 1.5rem 2.5rem;
  text-align: center;
}

.footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin-bottom: 1.25rem;
}

.footer-store {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  color: var(--dim);
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
}

.footer-store a {
  color: var(--muted);
  text-decoration: none;
}

.footer-store a:hover {
  color: var(--white);
}

.branding-footer {
  font-size: 0.65rem;
  color: var(--dim);
  line-height: 1.65;
  font-family: var(--font-mono);
}

.branding-footer .branding-line {
  color: var(--muted);
  font-weight: 600;
}

.branding-footer .branding-copyright {
  margin-top: 0.35rem;
}

.branding-footer a {
  color: var(--muted);
  text-decoration: none;
}

.branding-footer a:hover {
  color: var(--white);
}

.branding-footer .brand-qurova-regular,
.branding-footer .brand-qurova-light,
.branding-footer .brand-x,
.branding-footer .regular-x {
  font-size: inherit;
}

.hero-tagline {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-offices {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: left;
  max-width: 42rem;
  margin: 0 auto 1.75rem;
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--muted);
}

@media (min-width: 640px) {
  .footer-offices {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-office-block strong {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 0.35rem;
}

.footer-contact {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

.footer-contact a {
  color: var(--muted);
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--white);
}

/* Cookies · Privacy — quarter-page modal on first visit */
body.consent-open {
  overflow: hidden;
}

.consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 1rem clamp(1rem, 4vh, 2rem);
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}

.consent-overlay[hidden] {
  display: none !important;
}

.consent-panel {
  width: min(36rem, 100%);
  max-height: 25vh;
  min-height: min(220px, 42vh);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background: var(--black-soft);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.55);
}

.consent-panel-head {
  padding: 0.85rem 1.1rem 0.65rem;
  border-bottom: 1px solid var(--border);
}

.consent-panel-head h2 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.consent-panel-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem 1.1rem;
  font-size: 0.72rem;
  line-height: 1.6;
  color: var(--muted);
}

.consent-panel-body p {
  margin: 0 0 0.65rem;
}

.consent-panel-body p:last-child {
  margin-bottom: 0;
}

.consent-panel-body strong {
  color: var(--white);
  font-weight: 600;
}

.consent-panel-body code {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--dim);
}

.consent-panel-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.65rem;
  padding: 0.75rem 1.1rem 1rem;
  border-top: 1px solid var(--border);
}

.consent-btn {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.55rem 1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.consent-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.consent-btn-primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}

.consent-btn-primary:hover {
  background: transparent;
  color: var(--white);
}

.consent-reopen {
  font: inherit;
  font-family: var(--font-mono);
  font-size: inherit;
  color: var(--dim);
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.consent-reopen:hover {
  color: var(--white);
}

@media (max-width: 640px) {
  .consent-panel {
    max-height: 38vh;
    min-height: 240px;
  }
}

.sim-header-brand .product-mark {
  color: var(--white);
}

.nav-dropdown .product-mark,
.mobile-slug-detail .product-mark,
.footer-store .product-mark {
  color: inherit;
}

@media (max-width: 640px) {
  .hero-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-logo-wrap {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 1rem;
  }
  .nav-contact {
    display: none;
  }
}
