/* RoboRental — v3 UI.
   Black with atmosphere: a cyan/violet aurora over true black, glass
   panels, gradient accents, and an upgraded CSS humanoid (now with a torso,
   a pulsing core, and eyes that follow the cursor — see app.js).
   Orbitron for display, Share Tech Mono for readouts, Exo 2 for body.
   Everything animated respects prefers-reduced-motion at the bottom. */

[data-bs-theme=dark] {
  --bs-body-bg: #050508;
  --bs-body-color: #e9ecf4;
  --bs-secondary-color: #8f97a8;
  --bs-border-color: rgba(255, 255, 255, 0.08);

  --panel: rgba(14, 17, 26, 0.55);
  --panel-solid: #0d1019;
  --edge: rgba(255, 255, 255, 0.10);
  --cy: #45e3ff;
  --vi: #8b7bff;
  --cy-dim: #1b7f8f;
  --ok: #4be3a4;
  --err: #ff5d6c;
  --grad: linear-gradient(120deg, var(--cy), var(--vi));
}

* { scrollbar-width: thin; scrollbar-color: #2a3040 transparent; }
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-thumb { background: #232a3a; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #2f3a52; }

::selection { background: rgba(69, 227, 255, 0.35); color: #fff; }

body {
  font-family: 'Exo 2', system-ui, sans-serif;
  background-image: radial-gradient(circle at 1px 1px, rgba(130, 160, 210, 0.06) 1px, transparent 0);
  background-size: 26px 26px;
  position: relative;
}

/* the aurora: two soft glows fixed behind everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(52% 42% at 12% -6%, rgba(69, 227, 255, 0.10), transparent 60%),
    radial-gradient(48% 40% at 96% 104%, rgba(139, 123, 255, 0.10), transparent 60%);
  pointer-events: none;
}

h1, h2, h3, .wordmark, .price, .payable-row strong {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
}

.mono { font-family: 'Share Tech Mono', monospace; letter-spacing: 0.4px; }

.section { padding: 64px 0; }

h2 {
  font-size: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
}
h2::before {
  content: "";
  flex: 0 0 5px;
  height: 22px;
  border-radius: 3px;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(69, 227, 255, 0.5);
}
.panel h2, .price-card h2, .claim-band h2, .cta-band h2 { justify-content: flex-start; }
.cta-band h2 { justify-content: center; }

/* ---------- navbar: sticky glass ---------- */

.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(5, 5, 8, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bs-border-color);
}

.wordmark {
  font-weight: 900;
  font-size: 21px;
  letter-spacing: 1.5px;
  color: #fff;
}
.wordmark:hover { color: #fff; }
.wordmark span {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links { display: flex; gap: 18px; margin-left: 26px; flex-wrap: wrap; }
.nav-links a {
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  color: var(--bs-secondary-color);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.nav-links a:hover { color: var(--cy); }
.nav-links a.is-here { color: var(--cy); border-color: var(--cy); }

/* ---------- buttons: gradient solid + glow outline, with a shine sweep ---------- */

.btn-bot, .btn-bot-solid {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.25s ease;
}

.btn-bot {
  --bs-btn-color: var(--cy);
  --bs-btn-border-color: rgba(69, 227, 255, 0.6);
  --bs-btn-bg: rgba(69, 227, 255, 0.05);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgba(69, 227, 255, 0.14);
  --bs-btn-hover-border-color: var(--cy);
  --bs-btn-active-bg: rgba(69, 227, 255, 0.2);
  --bs-btn-active-color: #fff;
}
.btn-bot:hover { box-shadow: 0 0 24px rgba(69, 227, 255, 0.35); transform: translateY(-1px); }

.btn-bot-solid {
  border: 0;
  background: var(--grad);
  color: #06121c;
}
.btn-bot-solid:hover, .btn-bot-solid:active {
  color: #06121c;
  background: var(--grad);
  filter: brightness(1.12);
  box-shadow: 0 6px 30px rgba(69, 227, 255, 0.4);
  transform: translateY(-1px);
}
/* the shine that sweeps across on hover */
.btn-bot-solid::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0;
  width: 40%;
  left: -60%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
}
.btn-bot-solid:hover::after { left: 130%; }

:focus-visible {
  outline: 3px solid var(--cy) !important;
  outline-offset: 2px;
  box-shadow: none !important;
}

/* ---------- hero ---------- */

.hero { padding: 84px 0 30px; }
.hero-slim { padding: 60px 0 24px; }

.hero h1, .hero-slim h1 {
  font-weight: 900;
  font-size: clamp(44px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: 1px;
  margin: 14px 0 16px;
  text-shadow: 0 0 40px rgba(69, 227, 255, 0.16);
}
.hero-slim h1 { font-size: clamp(36px, 5.5vw, 58px); }

.hero .lead, .hero-slim .lead { max-width: 34em; color: var(--bs-secondary-color); }

.status-line { color: var(--cy); font-size: 15px; margin-bottom: 4px; }

.typed {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: bottom;
  width: 35ch;
  animation: typing 1.9s steps(35) 0.3s both;
}
@keyframes typing { from { width: 0; } }

.cursor { animation: blink-cursor 1s steps(1) infinite; }
@keyframes blink-cursor { 50% { opacity: 0; } }

.hero-badges { margin-top: 26px; }
.badge-chip {
  font-size: 13.5px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--edge);
  backdrop-filter: blur(10px);
  color: var(--bs-body-color);
  white-space: nowrap;
}

/* ---------- the robot v2: head + torso + pulsing core ---------- */

.bot {
  width: 260px;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 34px 70px rgba(69, 227, 255, 0.16));
}
@keyframes float { 50% { transform: translateY(-12px); } }

.bot-sm { transform: scale(0.8); transform-origin: top center; }

.bot-antenna {
  width: 4px; height: 32px;
  margin: 0 auto;
  background: linear-gradient(#333c52, #181c28);
  position: relative;
}
.bot-tip {
  position: absolute; top: -10px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--cy);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 6px var(--cy); }
  50%      { box-shadow: 0 0 22px var(--cy), 0 0 46px rgba(69, 227, 255, 0.5); }
}

.bot-head {
  width: 230px; height: 180px;
  margin: 0 auto;
  border-radius: 42px;
  background: linear-gradient(155deg, #232a3c 0%, #141826 45%, #0c0f18 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.10),
    inset 0 -14px 30px rgba(0, 0, 0, 0.5),
    0 24px 50px rgba(0, 0, 0, 0.65);
  padding-top: 42px;
  position: relative;
}
/* ear pods */
.bot-head::before, .bot-head::after {
  content: "";
  position: absolute; top: 58px;
  width: 16px; height: 56px;
  background: linear-gradient(#1a1f2d, #10131d);
  border: 1px solid var(--edge);
  border-radius: 8px;
}
.bot-head::before { left: -17px; }
.bot-head::after  { right: -17px; }

.bot-visor {
  width: 172px; height: 64px;
  margin: 0 auto;
  background: #04060c;
  border: 1px solid rgba(69, 227, 255, 0.25);
  border-radius: 18px;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 24px rgba(69, 227, 255, 0.08);
}
.bot-visor::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, rgba(69, 227, 255, 0.05) 0 1px, transparent 1px 4px);
  pointer-events: none;
}

.bot-eye {
  width: 36px; height: 18px;
  border-radius: 9px;
  background: linear-gradient(180deg, #9df1ff, var(--cy));
  box-shadow: 0 0 14px var(--cy), 0 0 40px rgba(69, 227, 255, 0.6);
  animation: blink 4.6s infinite, scan 9s ease-in-out infinite;
}
@keyframes blink {
  0%, 91%, 100% { height: 18px; }
  93%, 95%      { height: 3px; }
}
@keyframes scan {
  0%, 22%  { transform: translateX(0); }
  32%, 44% { transform: translateX(-11px); }
  56%, 68% { transform: translateX(11px); }
  80%, 100%{ transform: translateX(0); }
}
/* when app.js takes over, the eyes follow the cursor instead of scanning */
.bot.js-eyes .bot-eye {
  animation: blink 4.6s infinite;
  transform: translate(var(--ex, 0), var(--ey, 0));
  transition: transform 0.12s ease-out;
}

.bot-grille {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 22px;
}
.bot-grille span {
  width: 8px; height: 16px;
  border-radius: 2px;
  background: var(--cy-dim);
  transform-origin: bottom;
  animation: talk 1.5s ease-in-out infinite alternate;
}
.bot-grille span:nth-child(2) { animation-delay: 0.13s; }
.bot-grille span:nth-child(3) { animation-delay: 0.26s; }
.bot-grille span:nth-child(4) { animation-delay: 0.39s; }
.bot-grille span:nth-child(5) { animation-delay: 0.52s; }
@keyframes talk { from { transform: scaleY(0.3); } to { transform: scaleY(1); } }

.bot-neck {
  width: 66px; height: 18px;
  margin: 4px auto 0;
  background: linear-gradient(#171c29, #0d1019);
  border: 1px solid var(--edge);
  border-top: 0;
}

.bot-torso {
  width: 260px; height: 96px;
  margin: -1px auto 0;
  border-radius: 26px 26px 40px 40px;
  background: linear-gradient(160deg, #1e2434 0%, #121624 55%, #0b0e17 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, 0.08),
    0 26px 50px rgba(0, 0, 0, 0.6);
  display: grid;
  place-items: center;
  position: relative;
}
/* shoulders */
.bot-torso::before, .bot-torso::after {
  content: "";
  position: absolute; top: 10px;
  width: 26px; height: 60px;
  background: linear-gradient(#1a1f2d, #10131d);
  border: 1px solid var(--edge);
  border-radius: 12px;
}
.bot-torso::before { left: -24px; }
.bot-torso::after  { right: -24px; }

/* the chest core: a slow-spinning gradient ring with a pulsing heart */
.bot-core {
  width: 48px; height: 48px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(69, 227, 255, 0.9) 0 22%, rgba(6, 10, 18, 0.95) 26% 60%, transparent 62%),
    conic-gradient(var(--cy), var(--vi), var(--cy));
  animation: core-spin 7s linear infinite;
  box-shadow: 0 0 26px rgba(69, 227, 255, 0.45);
}
@keyframes core-spin { to { transform: rotate(360deg); } }

/* ---------- marquee ---------- */

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--bs-border-color);
  border-bottom: 1px solid var(--bs-border-color);
  padding: 14px 0;
  margin: 26px 0 10px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 34px;
  width: max-content;
  animation: slide 26s linear infinite;
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  align-items: center;
}
.marquee-track .mq-o {
  color: transparent;
  -webkit-text-stroke: 1px rgba(69, 227, 255, 0.7);
}
.marquee-track .mq-star { color: var(--vi); font-size: 16px; }
@keyframes slide { to { transform: translateX(-50%); } }

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease var(--d, 0ms), transform 0.55s ease var(--d, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- glass panels + gradient-border cards ---------- */

.panel {
  background: var(--panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 28px;
}
.panel h2 { font-size: 22px; }
.panel p a, .specs dd a { color: var(--cy); text-decoration: none; }
.panel p a:hover, .specs dd a:hover { text-decoration: underline; }

.claim-band, .price-card {
  border-radius: 14px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel-solid), var(--panel-solid)) padding-box,
    linear-gradient(135deg, rgba(69, 227, 255, 0.55), rgba(139, 123, 255, 0.55)) border-box;
}

.claim-band { padding: 30px; box-shadow: 0 0 60px rgba(69, 227, 255, 0.06) inset; }
.claim-band h2 {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.claim-band h2::before { display: none; }
.claim-band p { margin: 0; max-width: 62em; }

.price-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.price-card .btn { margin-top: auto; }

.big-price {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 4.5vw, 50px);
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  line-height: 1.05;
  filter: drop-shadow(0 0 22px rgba(69, 227, 255, 0.3));
}
.big-price small {
  font-family: 'Exo 2', sans-serif;
  font-weight: 400;
  font-size: 15px;
  -webkit-text-fill-color: var(--bs-secondary-color);
  color: var(--bs-secondary-color);
}

.coupon-teaser { color: var(--cy); font-size: 14px; }
.coupon-teaser strong { color: #fff; }

/* ---------- cards: events, values, steps ---------- */

.case-card, .step-card {
  height: 100%;
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.case-card:hover, .step-card:hover {
  transform: translateY(-5px);
  border-color: rgba(69, 227, 255, 0.45);
  box-shadow: 0 16px 44px rgba(69, 227, 255, 0.10);
}

.case-icon {
  font-size: 26px;
  display: block;
  margin-bottom: 8px;
  transition: transform 0.3s cubic-bezier(0.3, 1.6, 0.5, 1);
}
.case-card:hover .case-icon { transform: scale(1.18) rotate(-6deg); }

.case-card h3, .step-card h3 {
  font-family: 'Exo 2', sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 4px;
}
.case-card p, .step-card p { font-size: 14px; color: var(--bs-secondary-color); margin: 0; }

.case-wide { display: flex; gap: 14px; align-items: flex-start; }
.case-wide .case-icon { margin-bottom: 0; }

.step-num {
  display: inline-block;
  font-size: 22px;
  margin-bottom: 8px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- what's included ---------- */

.includes { list-style: none; margin: 12px 0 0; padding: 0; }
.includes li {
  position: relative;
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--bs-border-color);
}
.includes li:last-child { border-bottom: 0; }
.includes li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--ok);
  text-shadow: 0 0 12px rgba(75, 227, 164, 0.5);
}

/* ---------- instagram reels ---------- */

.instagram-media { min-width: 0 !important; border-radius: 14px !important; }

.reel-ph {
  aspect-ratio: 9 / 16;
  max-height: 440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:
    linear-gradient(var(--panel-solid), var(--panel-solid)) padding-box,
    linear-gradient(160deg, rgba(69, 227, 255, 0.35), rgba(139, 123, 255, 0.35)) border-box;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 18px;
  text-align: center;
}
.reel-ph .mono { color: var(--cy); }
.reel-ph small { color: var(--bs-secondary-color); max-width: 22em; }
.reel-play {
  width: 56px; height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad);
  color: #06121c;
  font-size: 18px;
  padding-left: 4px;
  box-shadow: 0 0 26px rgba(69, 227, 255, 0.4);
}

/* ---------- FAQ ---------- */

.faq .accordion-item {
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--edge);
  border-radius: 12px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq .accordion-button {
  background: transparent;
  color: var(--bs-body-color);
  font-weight: 600;
  box-shadow: none;
}
.faq .accordion-button:not(.collapsed) { color: var(--cy); }
.faq .accordion-button::after { filter: invert(70%) sepia(60%) saturate(500%) hue-rotate(150deg); }
.faq .accordion-body { color: var(--bs-secondary-color); }

/* ---------- closing CTA ---------- */

.cta-band {
  text-align: center;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--panel-solid), var(--panel-solid)) padding-box,
    linear-gradient(135deg, rgba(69, 227, 255, 0.5), rgba(139, 123, 255, 0.5)) border-box;
  padding: 48px 24px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(40% 40% at 50% 0%, rgba(69, 227, 255, 0.12), transparent 70%);
  pointer-events: none;
}
.cta-band p { color: var(--bs-secondary-color); max-width: 40em; margin: 8px auto 22px; }

/* ---------- checkout + forms ---------- */

.checkout { max-width: 580px; }
.checkout h1 { font-size: 32px; letter-spacing: 2px; }

.checkout-form {
  margin-top: 20px;
  background: var(--panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 26px;
}

.checkout-form .form-control, .checkout-form .form-select {
  background: rgba(5, 7, 12, 0.8);
  border-color: var(--edge);
  border-radius: 8px;
}
.checkout-form .form-control:focus, .checkout-form .form-select:focus {
  border-color: var(--cy);
  box-shadow: 0 0 0 0.2rem rgba(69, 227, 255, 0.15);
}

.coupon-msg { min-height: 1.3em; font-size: 13px; margin: 6px 0 0; }
.coupon-msg.ok { color: var(--ok); }
.coupon-msg.err { color: var(--err); }

.totals { margin-top: 18px; }
.totals > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  color: var(--bs-secondary-color);
}
#discount-row { color: var(--ok); }
.payable-row {
  border-top: 1px dashed var(--edge);
  margin-top: 4px;
  padding-top: 12px !important;
  margin-bottom: 14px;
  color: var(--bs-body-color) !important;
}
.payable-row strong {
  font-size: 27px;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 16px rgba(69, 227, 255, 0.35));
}

.shake { animation: shake 0.4s ease; }
@keyframes shake {
  20% { transform: translateX(-6px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-3px); }
  80% { transform: translateX(2px); }
}

/* ---------- spec readouts ---------- */

.specs { margin: 6px 0 0; font-size: 13px; border-top: 1px solid var(--bs-border-color); }
.specs > div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--bs-border-color);
}
.specs dt { color: var(--bs-secondary-color); font-weight: 400; }
.specs dd { margin: 0; color: #d3ecf4; text-align: right; }

/* ---------- PayU handoff ---------- */

.handoff {
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--cy);
}

/* ---------- result ---------- */

.result { max-width: 580px; }
.result h1 { font-size: 28px; }
.result-paid h1, .result-paid h2 { color: var(--ok); }
.result-failed h1, .result-invalid h1 { color: var(--err); }

.tick { width: 64px; height: 64px; margin-bottom: 14px; }
.tick-circle, .tick-check {
  stroke: var(--ok);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tick-circle { stroke-dasharray: 151; stroke-dashoffset: 151; animation: draw 0.7s ease-out forwards; }
.tick-check  { stroke-dasharray: 36;  stroke-dashoffset: 36;  animation: draw 0.45s ease-out 0.55s forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.receipt {
  margin: 22px 0;
  background: var(--panel);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--edge);
  border-radius: 14px;
  padding: 6px 20px;
}
.receipt > div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; }
.receipt > div + div { border-top: 1px solid var(--bs-border-color); }
.receipt dt { color: var(--bs-secondary-color); font-weight: 400; }
.receipt dd { margin: 0; font-weight: 600; text-align: right; }
.receipt dd.discount { color: var(--ok); }
.receipt dd.payable { color: var(--cy); }

.status-error { color: var(--err); }

/* ---------- footer ---------- */

.footer-block { border-top: 1px solid var(--bs-border-color); }
.footer-line {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-line .mono { color: var(--cy-dim); }
.footer-nav a {
  color: var(--bs-secondary-color);
  text-decoration: none;
  margin-left: 16px;
  font-size: 14px;
}
.footer-nav a:hover { color: var(--cy); }
.footer-line a { color: inherit; text-decoration: none; }
.footer-line a:hover { color: var(--cy); }

/* ---------- honeypot ---------- */

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  background: #1eb956;
  color: #04140a;
  font-weight: 600;
  font-size: 14px;
  padding: 11px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.wa-float:hover {
  color: #04140a;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(30, 185, 86, 0.35);
}

/* ---------- reduced motion: everything settles ---------- */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  .typed { width: auto; }
  .marquee-track { animation: none; }
  .bot.js-eyes .bot-eye { transform: none; }
}
/* ---------- mobile nav patch ---------- */
.nav-burger {
  border: 1px solid rgba(69, 227, 255, 0.6);
  border-radius: 8px;
  padding: 9px 10px;
  margin-left: auto;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: rgba(69, 227, 255, 0.05);
  box-shadow: none;
}
.nav-burger span {
  width: 20px; height: 2px;
  background: var(--cy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-burger:focus { box-shadow: none; }
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 767.98px) {
  .navbar-collapse { width: 100%; }
  .nav-links {
    flex-direction: column;
    gap: 0;
    margin: 12px 0 0;
    border-top: 1px solid var(--bs-border-color);
  }
  .nav-links a {
    padding: 13px 2px;
    font-size: 16px;
    border-bottom: 1px solid var(--bs-border-color);
  }
  .nav-links a.is-here { border-bottom-color: var(--cy); }
  .navbar-collapse .btn { margin: 14px 0 6px; align-self: flex-start; }
}