@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;700&display=swap');

/* =============================================
   VARIABLES & RESET
   ============================================= */
:root {
  --black:       #080808;
  --dark:        #0F0F0F;
  --dark-mid:    #181818;
  --steel:       #242424;
  --gray-deep:   #3A3A3A;
  --gray:        #666666;
  --gray-light:  #999999;
  --silver:      #CCCCCC;
  --off-white:   #F4F4F2;
  --white:       #FFFFFF;
  --amber:       #F07830;
  --amber-dim:   #C05C18;
  --amber-pale:  #FDEBD8;
  --font:        'Space Grotesk', -apple-system, 'Segoe UI', sans-serif;
  --nav-h:       60px;
  --max-w:       1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--white);
  color: var(--black);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* =============================================
   UTILITY
   ============================================= */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2.25rem;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  white-space: nowrap;
}

.btn-solid-dark {
  background: var(--black);
  color: var(--white);
}
.btn-solid-dark:hover { background: var(--steel); }

.btn-solid-light {
  background: var(--white);
  color: var(--black);
}
.btn-solid-light:hover { background: var(--off-white); }

.btn-ghost-light {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.06);
}

.btn-ghost-dark {
  border: 1px solid rgba(0,0,0,0.25);
  color: var(--black);
}
.btn-ghost-dark:hover {
  border-color: var(--black);
  background: rgba(0,0,0,0.04);
}

.btn-amber {
  background: var(--amber);
  color: var(--white);
}
.btn-amber:hover { background: var(--amber-dim); }

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  transition: background 0.3s, backdrop-filter 0.3s;
}
.nav.dark-bg { background: transparent; }
.nav.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.nav__logo img { height: 36px; width: auto; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.72);
  padding: 0.5rem 1rem;
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--white); }

.nav__right {
  display: flex;
  align-items: center;
  gap: 0;
}

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.2);
  margin-right: 1.25rem;
}
.lang-toggle button {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.65rem;
  color: rgba(255,255,255,0.45);
  transition: background 0.15s, color 0.15s;
}
.lang-toggle button.active {
  background: var(--amber);
  color: var(--white);
}
.lang-toggle button:not(.active):hover { color: var(--white); }

.nav__cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  background: var(--white);
  color: var(--black);
  transition: background 0.15s;
}
.nav__cta:hover { background: var(--off-white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  margin-left: 0.5rem;
}
.nav__burger span {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--white);
  transition: transform 0.2s, opacity 0.2s;
}

/* =============================================
   HERO — full viewport, dark, pipeline animation
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__pipeline {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: calc(var(--nav-h) + 3rem) 2.5rem 5rem;
  max-width: 900px;
}

.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 2rem;
}

.hero__title {
  font-size: clamp(3rem, 7.5vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.hero__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.2);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Pipeline animation */
.pipe-grid { opacity: 0.1; }
.pipe-amber { opacity: 0.65; }
.pipe-node { fill: var(--black); stroke-width: 1.2; }
.pipe-node-amber { fill: var(--amber); stroke: var(--amber); }

.flow-line {
  stroke-dasharray: 18 900;
  stroke-dashoffset: 0;
  animation: pipeFlow 5s linear infinite;
}
.flow-line-2 {
  stroke-dasharray: 14 700;
  stroke-dashoffset: 0;
  animation: pipeFlow2 7s linear infinite 1.5s;
}

@keyframes pipeFlow {
  to { stroke-dashoffset: -918; }
}
@keyframes pipeFlow2 {
  to { stroke-dashoffset: -714; }
}

.pipe-draw {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: drawPipe 2s ease-out 0.5s forwards;
}
.pipe-draw-2 {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: drawPipe 1.8s ease-out 1s forwards;
}
@keyframes drawPipe {
  to { stroke-dashoffset: 0; }
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  background: var(--white);
  padding: 5rem 0;
  border-bottom: 1px solid #E8E8E6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid #E8E8E6;
}

.stat-item {
  padding: 3rem 2rem;
  text-align: center;
  border-right: 1px solid #E8E8E6;
}

.stat-num {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 0.6rem;
}

.stat-label {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
}

/* =============================================
   SERVICE SECTIONS — Tesla-style full viewport
   Each has an SVG illustration + centered text below
   ============================================= */
.service-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-section--dark { background: var(--dark); }
.service-section--light { background: var(--off-white); }

.service-section__visual {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  min-height: 55vh;
}

.service-section__visual svg {
  width: 100%;
  max-width: 860px;
  height: auto;
}

.service-section__text {
  text-align: center;
  padding: 0 2.5rem 5rem;
  max-width: 640px;
  margin: 0 auto;
}

.service-section__label {
  display: block;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.service-section--dark .service-section__label { color: var(--amber); }
.service-section--light .service-section__label { color: var(--amber-dim); }

.service-section__title {
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.service-section--dark .service-section__title { color: var(--white); }
.service-section--light .service-section__title { color: var(--black); }

.service-section__body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2.25rem;
  letter-spacing: 0.01em;
}
.service-section--dark .service-section__body { color: rgba(255,255,255,0.5); }
.service-section--light .service-section__body { color: var(--gray); }

/* =============================================
   SPLIT SECTION — Companies / Applicants
   ============================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}

.split-panel {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-panel--light { background: var(--white); }
.split-panel--dark  { background: var(--dark); }

.split-panel__num {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.split-panel--light .split-panel__num { color: var(--amber-dim); }
.split-panel--dark  .split-panel__num { color: var(--amber); }

.split-panel__num::after {
  content: '';
  flex: 1;
  height: 1px;
  max-width: 40px;
  background: currentColor;
}

.split-panel__title {
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.split-panel--light .split-panel__title { color: var(--black); }
.split-panel--dark  .split-panel__title { color: var(--white); }

.split-panel__text {
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 2rem;
}
.split-panel--light .split-panel__text { color: var(--gray); }
.split-panel--dark  .split-panel__text { color: rgba(255,255,255,0.5); }

.split-panel__list {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.split-panel__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.6;
}
.split-panel--light .split-panel__item { color: var(--black); }
.split-panel--dark  .split-panel__item { color: rgba(255,255,255,0.7); }

.split-panel__item::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  background: var(--amber);
  margin-top: 0.55rem;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  background: var(--dark);
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-section__bg-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.03;
  pointer-events: none;
}

.about-section__content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.about-section__quote {
  font-size: clamp(1.5rem, 3vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 3rem;
}

.about-section__quote span { color: var(--amber); }

.about-section__divider {
  width: 1px;
  height: 48px;
  background: var(--amber);
  margin: 0 auto 3rem;
  opacity: 0.6;
}

.about-section__body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.9;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.about-kpis {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.about-kpi__num {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.about-kpi__label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  background: var(--off-white);
  padding: 7rem 2.5rem;
}

.contact-section__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.contact-section__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1rem;
}

.contact-section__sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.contact-form {
  text-align: left;
}

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-deep);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--white);
  border: 1px solid #DDDDD8;
  border-bottom: 2px solid #DDDDD8;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--black);
  outline: none;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--amber);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--amber);
}
.form-checkbox-label {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.65;
}
.form-checkbox-label a { color: var(--amber-dim); text-decoration: underline; }

.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.18s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.form-submit:hover { background: var(--amber); }
.form-submit:disabled { opacity: 0.45; cursor: not-allowed; }

.form-message {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  font-size: 0.85rem;
  display: none;
}
.form-message.success { background: #E8F5E9; color: #2E7D32; border: 1px solid #C8E6C9; }
.form-message.error   { background: #FEECEC; color: #C62828; border: 1px solid #FFCDD2; }

/* Contact info strip */
.contact-info-strip {
  background: var(--black);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-info-item {
  padding: 2.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.contact-info-item:last-child { border-right: none; }

.contact-info-label {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.6rem;
}

.contact-info-value {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
}
.contact-info-value a { color: rgba(255,255,255,0.6); transition: color 0.15s; }
.contact-info-value a:hover { color: var(--white); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 2.5rem 2.5rem;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__logo { height: 32px; width: auto; margin-bottom: 1.25rem; }

.footer__tagline {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  line-height: 1.7;
  max-width: 240px;
}

.footer__col-head {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  transition: color 0.15s;
}
.footer__links a:hover { color: var(--white); }

.footer__address {
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
}
.footer__address a { color: rgba(255,255,255,0.45); transition: color 0.15s; }
.footer__address a:hover { color: var(--white); }

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.22);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}
.footer__legal a {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(255,255,255,0.28);
  transition: color 0.15s;
}
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   INNER PAGES
   ============================================= */
.page-hero {
  background: var(--dark);
  padding: calc(var(--nav-h) + 5rem) 2.5rem 5rem;
  text-align: center;
}

.page-hero__label {
  display: block;
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.25rem;
}

.page-hero__title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.page-content {
  padding: 5rem 0;
  background: var(--white);
}

.prose {
  max-width: 760px;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--gray-deep);
  line-height: 1.9;
}

.prose h2 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin: 2.5rem 0 0.85rem;
}
.prose h2:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; }
.prose a { color: var(--amber-dim); }
.prose strong { font-weight: 600; color: var(--black); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 1024px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-panel { padding: 4rem 2.5rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1),
  .stat-item:nth-child(2) { border-bottom: 1px solid #E8E8E6; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero__title { font-size: clamp(2.4rem, 10vw, 4rem); }

  .service-section__visual { min-height: 40vh; padding-top: calc(var(--nav-h) + 1rem); }

  .contact-info-strip { grid-template-columns: 1fr; }
  .contact-info-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .form-row { grid-template-columns: 1fr; }
  .about-kpis { gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__ctas { flex-direction: column; align-items: center; }
}

/* Nav open state (mobile) */
.nav.open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: rgba(8,8,8,0.97);
  padding: 2rem 2.5rem;
  align-items: flex-start;
  gap: 0;
  z-index: 299;
}
.nav.open .nav__links a {
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
}
