/* ============================================================
   REEVE — Soluções Tecnológicas · Landing
   Brand: orange #FE4900 + slate #2F475D · Montserrat / Roboto
   ============================================================ */

/* ---- Tokens ------------------------------------------------ */
:root {
  --orange: #fe4900;
  --orange-soft: #ff6a2b;
  --orange-deep: #d83f00;
  --orange-tint: #fff1ea;

  --slate: #2f475d;
  --slate-700: #243749;
  --slate-900: #15222e;
  --slate-950: #0d1822;

  --ink: #1b2b38;
  --muted: #5a6b78;
  --muted-2: #8a98a4;

  --bg: #ffffff;
  --bg-soft: #f3f5f7;
  --line: rgba(47, 71, 93, 0.12);
  --line-soft: rgba(47, 71, 93, 0.07);

  --font-head: "Montserrat", system-ui, sans-serif;
  --font-body: "Roboto", system-ui, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, monospace;

  /* density multiplier, overridden by tweaks */
  --dens: 1;
  --section-py: calc(clamp(72px, 9vw, 140px) * var(--dens));

  --maxw: 1240px;
  --radius: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--slate);
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 56px);
}

/* ---- Reusable bits ---------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--orange);
  transform: skewX(-24deg);
}
.eyebrow.center { justify-content: center; }

.hl { color: var(--orange); position: relative; white-space: nowrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease),
    box-shadow 0.4s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 14px 30px -10px rgba(254, 73, 0, 0.55);
}
.btn-primary:hover { background: var(--orange-deep); box-shadow: 0 20px 40px -10px rgba(254, 73, 0, 0.6); }
.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--slate);
}
.btn-ghost:hover { border-color: var(--slate); background: var(--slate); color: #fff; }
.btn-arrow { transition: transform 0.4s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* on dark backgrounds */
.on-dark .btn-ghost { border-color: rgba(255, 255, 255, 0.22); color: #fff; }
.on-dark .btn-ghost:hover { background: #fff; color: var(--slate-900); border-color: #fff; }

.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 800;
  line-height: 1.04;
  margin-top: 18px;
}
.section-sub {
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  max-width: 56ch;
}
.section-head.center .section-sub { margin-inline: auto; }

.idx {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--muted-2);
}

/* ============================================================
   LOGO
   ============================================================ */
.logo { display: inline-flex; align-items: center; gap: 1px; }
.logo svg { display: block; height: 28px; width: auto; }
.logo .r-orange { fill: var(--orange); }
.logo .r-slate { fill: var(--slate); transition: fill 0.3s; }
.logo .wordmark {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 27px;
  letter-spacing: -0.04em;
  color: var(--slate);
  transition: color 0.3s;
}
.on-dark .logo .r-slate { fill: #fff; }
.on-dark .logo .wordmark { color: #fff; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transform: skewX(-20deg);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 22px; }
.nav-cta { padding: 11px 22px; font-size: 14px; }

/* scrolled state → light pill bar */
.nav.scrolled {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line), 0 16px 40px -28px rgba(15, 34, 46, 0.5);
}
.nav.scrolled .logo .r-slate { fill: var(--slate); }
.nav.scrolled .logo .wordmark { color: var(--slate); }
.nav.scrolled .nav-links a { color: var(--slate); }

.nav-burger { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: radial-gradient(120% 120% at 80% -10%, #20384c 0%, var(--slate-900) 45%, var(--slate-950) 100%);
  color: #fff;
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: clamp(80px, 10vw, 150px);
}
/* giant faint R-mark backdrop */
.hero-mark {
  position: absolute;
  right: -6%;
  top: 50%;
  transform: translateY(-50%);
  width: min(58vw, 760px);
  opacity: 0.06;
  pointer-events: none;
  color: #fff;
}
.hero-mark svg { width: 100%; height: auto; display: block; }
/* orange diagonal slash accents */
.hero-slash {
  position: absolute;
  background: var(--orange);
  transform: skewX(-22deg);
  pointer-events: none;
}
.hero-slash.s1 { width: 8px; height: 200px; top: -40px; left: 12%; opacity: 0.7; filter: blur(0.2px); }
.hero-slash.s2 { width: 4px; height: 120px; top: 30%; left: 8%; opacity: 0.4; }

.hero-grid { position: relative; z-index: 2; }
.hero-eyebrow { color: var(--orange-soft); }
.hero-eyebrow::before { background: var(--orange-soft); }

.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.6rem, 6.6vw, 5.6rem);
  line-height: 0.99;
  margin-top: 26px;
  max-width: 16ch;
}
.hero h1 .hl { color: var(--orange-soft); }
.hero-sub {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  max-width: 56ch;
  line-height: 1.62;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 40px; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 64px);
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero-meta .stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #fff;
  line-height: 1;
}
.hero-meta .stat-num span { color: var(--orange-soft); }
.hero-meta .stat-label {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.01em;
}

/* ---- Marquee (tech) --------------------------------------- */
.marquee {
  background: var(--slate-950);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--slate-950), transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, var(--slate-950), transparent); }
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: scroll-x 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  transition: color 0.3s;
}
.marquee-item:hover { color: #fff; }
.marquee-item .dot { width: 7px; height: 7px; background: var(--orange); transform: skewX(-20deg); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding-block: var(--section-py); background: var(--bg); }
.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.card {
  position: relative;
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 38px 36px 40px;
  overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
    background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  width: 64px;
  height: 6px;
  background: var(--orange);
  transform: skewX(-22deg);
  transform-origin: left;
  transition: width 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 30px 60px -34px rgba(15, 34, 46, 0.45);
}
.card:hover::before { width: 120px; }
.card-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.12em;
}
.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--orange-tint);
  color: var(--orange);
  margin: 22px 0 22px;
}
.card-icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.5rem; font-weight: 700; }
.card p { color: var(--muted); margin-top: 12px; font-size: 1rem; }
.card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--slate);
  background: rgba(47, 71, 93, 0.07);
  padding: 5px 11px;
  border-radius: 7px;
  letter-spacing: 0.02em;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding-block: var(--section-py); background: var(--bg-soft); position: relative; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 28px 30px 0;
  border-top: 2px solid var(--line);
}
.step::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 46px;
  height: 2px;
  background: var(--orange);
}
.step-no {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--orange);
  line-height: 1;
  opacity: 0.9;
}
.step h4 { font-size: 1.22rem; font-weight: 700; margin-top: 16px; }
.step p { color: var(--muted); margin-top: 10px; font-size: 0.98rem; }

/* ============================================================
   STATS BAND (orange)
   ============================================================ */
.band {
  background: var(--orange);
  color: #fff;
  padding-block: clamp(56px, 7vw, 88px);
  position: relative;
  overflow: hidden;
}
.band::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  bottom: -40px;
  width: 320px;
  background: var(--orange-deep);
  transform: skewX(-18deg);
  opacity: 0.55;
}
.band-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.band-stat .n {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}
.band-stat .l { margin-top: 12px; font-size: 1rem; color: rgba(255, 255, 255, 0.9); max-width: 22ch; }

/* ============================================================
   TECH STACK
   ============================================================ */
.tech { padding-block: var(--section-py); background: var(--slate-900); color: #fff; position: relative; overflow: hidden; }
.tech .section-title { color: #fff; }
.tech .section-sub { color: rgba(255, 255, 255, 0.66); }
.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 56px;
}
.tech-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 28px 26px 30px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), border-color 0.45s var(--ease);
}
.tech-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.05); border-color: rgba(255, 122, 43, 0.5); }
.tech-card .mono { font-family: var(--font-mono); font-size: 12px; color: var(--orange-soft); letter-spacing: 0.1em; }
.tech-card h4 { color: #fff; font-size: 1.3rem; margin-top: 16px; font-weight: 700; }
.tech-card p { color: rgba(255, 255, 255, 0.6); font-size: 0.94rem; margin-top: 10px; line-height: 1.55; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding-block: var(--section-py); background: var(--bg); }
.faq-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.18rem;
  color: var(--slate);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--orange); }
.faq-icon {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  transition: background 0.3s, border-color 0.3s, transform 0.4s var(--ease);
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--slate);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.faq-icon::before { width: 13px; height: 2px; }
.faq-icon::after { width: 2px; height: 13px; }
.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); transform: rotate(90deg); }
.faq-item.open .faq-icon::before, .faq-item.open .faq-icon::after { background: #fff; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.45s var(--ease); }
.faq-a-inner { padding: 0 0 28px; color: var(--muted); max-width: 60ch; }

/* ============================================================
   CTA
   ============================================================ */
.cta { padding-block: clamp(20px, 4vw, 60px); background: var(--bg); }
.cta-box {
  position: relative;
  background: radial-gradient(120% 140% at 85% 0%, #20384c 0%, var(--slate-900) 55%, var(--slate-950) 100%);
  border-radius: clamp(20px, 3vw, 34px);
  padding: clamp(48px, 7vw, 90px);
  overflow: hidden;
  color: #fff;
}
.cta-box .hero-mark { opacity: 0.07; width: min(40vw, 460px); }
.cta-content { position: relative; z-index: 2; max-width: 640px; }
.cta-box h2 { color: #fff; font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 800; line-height: 1.03; }
.cta-box h2 .hl { color: var(--orange-soft); }
.cta-box p { color: rgba(255, 255, 255, 0.72); margin-top: 20px; font-size: 1.12rem; max-width: 48ch; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--slate-950); color: rgba(255, 255, 255, 0.6); padding-top: clamp(56px, 7vw, 90px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer-brand p { margin-top: 22px; max-width: 30ch; font-size: 0.96rem; line-height: 1.6; }
.footer h5 {
  font-family: var(--font-head);
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.footer ul a { font-size: 0.97rem; transition: color 0.25s; }
.footer ul a:hover { color: var(--orange-soft); }
.socials { display: flex; gap: 12px; margin-top: 26px; }
.socials a {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s var(--ease), color 0.3s;
  color: rgba(255, 255, 255, 0.7);
}
.socials a:hover { background: var(--orange); border-color: var(--orange); color: #fff; transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .cards { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
  .band-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .tech-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-burger {
    display: inline-flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px;
  }
  .nav-burger span { width: 26px; height: 2px; background: #fff; transition: background 0.3s; }
  .nav.scrolled .nav-burger span { background: var(--slate); }
  .hero { padding-top: 120px; }
  .hero-meta { gap: 28px 36px; }
  .band::after { display: none; }
}
@media (max-width: 540px) {
  .process-steps { grid-template-columns: 1fr; }
  .band-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}

/* ============================================================
   LIGHT HERO VARIANT (tweak)
   ============================================================ */
body.light-hero .hero {
  background: radial-gradient(120% 120% at 85% -10%, #ffffff 0%, var(--bg-soft) 58%, #e7ecef 100%);
  color: var(--ink);
}
body.light-hero .hero h1 { color: var(--slate); }
body.light-hero .hero h1 .hl { color: var(--orange); }
body.light-hero .hero-sub { color: var(--muted); }
body.light-hero .hero-eyebrow { color: var(--orange); }
body.light-hero .hero-eyebrow::before { background: var(--orange); }
body.light-hero .hero-mark { color: var(--slate); opacity: 0.05; }
body.light-hero .hero-meta { border-top-color: var(--line); }
body.light-hero .hero-meta .stat-num { color: var(--slate); }
body.light-hero .hero-meta .stat-num span { color: var(--orange); }
body.light-hero .hero-meta .stat-label { color: var(--muted); }
body.light-hero .hero .btn-ghost { border-color: var(--line); color: var(--slate); }
body.light-hero .hero .btn-ghost:hover { background: var(--slate); color: #fff; border-color: var(--slate); }
/* nav sitting over a light hero, before scroll */
body.light-hero .nav:not(.scrolled) .logo .r-slate { fill: var(--slate); }
body.light-hero .nav:not(.scrolled) .logo .wordmark { color: var(--slate); }
body.light-hero .nav:not(.scrolled) .nav-links a { color: var(--slate); }
body.light-hero .nav:not(.scrolled) .nav-burger span { background: var(--slate); }

/* ---- Mobile drawer ---------------------------------------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: var(--slate-950);
  display: flex;
  flex-direction: column;
  padding: 28px clamp(20px, 6vw, 40px);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease);
}
.drawer.open { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-close { background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; line-height: 1; }
.drawer nav { margin-top: 48px; display: flex; flex-direction: column; gap: 6px; }
.drawer nav a {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.drawer nav a:hover { color: var(--orange-soft); }
.drawer .btn { margin-top: 32px; justify-content: center; }
