:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #070a12;
  color: #f5f8ff;
  --cyan: #6fe7ff;
  --violet: #8b7cff;
  --muted: #aebbd2;
  --panel: rgba(17, 25, 42, .82);
  --border: rgba(148, 211, 255, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: radial-gradient(circle at 70% 0%, rgba(72, 126, 255, .12), transparent 34rem), #070a12; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid rgba(255,255,255,.06);
  background: rgba(7,10,18,.78);
  backdrop-filter: blur(20px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; }
.logo { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 12px; color: #06111c; background: linear-gradient(135deg, var(--cyan), var(--violet)); }
.nav nav { display: flex; gap: 24px; margin-left: auto; color: var(--muted); }
.login { padding: 10px 15px; border: 1px solid var(--border); border-radius: 999px; }

.hero {
  min-height: 780px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  padding: 96px clamp(20px, 7vw, 110px);
}

.eyebrow { color: var(--cyan); font-size: .76rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
h1 { max-width: 800px; margin: 14px 0 22px; font-size: clamp(3rem, 7vw, 6.4rem); line-height: .96; letter-spacing: -.055em; }
h2 { margin: 12px 0 18px; font-size: clamp(2rem, 4vw, 3.8rem); line-height: 1.05; letter-spacing: -.035em; }
.lead, .section-copy { max-width: 700px; color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.primary, .secondary, .price-card button, .custom-button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 13px 20px; border-radius: 14px; font-weight: 850; }
.primary, .price-card button { border: 0; color: #05101b; background: linear-gradient(135deg, var(--cyan), var(--violet)); }
.secondary, .custom-button { border: 1px solid var(--border); background: rgba(255,255,255,.035); }
.trust-row { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 26px; color: #8e9cb6; font-size: .88rem; }

.command-panel {
  position: relative;
  padding: clamp(20px, 3vw, 32px);
  border: 1px solid var(--border);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(20,32,54,.92), rgba(8,14,25,.96));
  box-shadow: 0 40px 120px rgba(0,0,0,.45), 0 0 90px rgba(85,198,255,.08);
}

.command-panel:before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(111,231,255,.5), transparent 40%, rgba(139,124,255,.35));
}

.panel-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.panel-header div { display: grid; gap: 6px; }
.panel-header small, .brief-grid small, .assistant-box small { color: #8495b4; letter-spacing: .09em; }
.online { color: #76efbd; font-size: .72rem; font-weight: 900; }
.brief-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin: 30px 0; }
.brief-grid article { padding: 16px; border: 1px solid rgba(255,255,255,.07); border-radius: 17px; background: rgba(255,255,255,.025); }
.brief-grid strong { display: block; margin: 8px 0; font-size: 1.45rem; }
.brief-grid p { margin: 0; color: #9eacc4; font-size: .8rem; }
.assistant-box { display: flex; gap: 14px; align-items: center; padding: 18px; border: 1px solid rgba(111,231,255,.16); border-radius: 18px; background: rgba(111,231,255,.055); }
.assistant-box p { margin: 5px 0 0; color: #dce7f9; line-height: 1.45; }
.pulse { width: 14px; height: 14px; flex: 0 0 auto; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 24px var(--cyan); }

.section { padding: 100px clamp(20px, 7vw, 110px); }
.feature-grid, .pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 42px; }
.feature-grid article, .price-card { padding: 28px; border: 1px solid var(--border); border-radius: 24px; background: var(--panel); }
.feature-grid article > span { color: var(--cyan); font-weight: 900; }
.feature-grid h3 { font-size: 1.3rem; }
.feature-grid p, .automation-list span { color: var(--muted); line-height: 1.6; }

.automation-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.automation-list { display: grid; gap: 10px; }
.automation-list article { display: grid; gap: 7px; padding: 20px; border: 1px solid var(--border); border-radius: 18px; background: rgba(255,255,255,.025); }

.pricing-section { text-align: center; }
.pricing-grid { text-align: left; }
.price-card { position: relative; display: flex; flex-direction: column; }
.price-card > p { color: var(--cyan); font-weight: 900; }
.price-card h3 { margin: 4px 0; font-size: 2.5rem; }
.price-card h3 span { color: var(--muted); font-size: 1rem; }
.price-card small { color: #8e9cb6; }
.price-card ul { display: grid; gap: 12px; margin: 26px 0 30px; padding-left: 20px; color: #c8d4e8; }
.price-card button, .custom-button { width: 100%; margin-top: auto; cursor: pointer; font: inherit; }
.featured { border-color: rgba(111,231,255,.45); transform: translateY(-12px); box-shadow: 0 25px 80px rgba(49,145,255,.12); }
.popular { position: absolute; top: 18px; right: 18px; color: #77efc0; font-size: .68rem; font-weight: 900; }
.checkout-message { min-height: 24px; color: #ffd497; }

.final-cta { margin: 60px clamp(20px, 7vw, 110px); padding: clamp(32px, 7vw, 80px); text-align: center; border: 1px solid var(--border); border-radius: 30px; background: radial-gradient(circle at 50% 0%, rgba(111,231,255,.12), transparent 28rem), var(--panel); }
.final-cta p:not(.eyebrow) { color: var(--muted); margin-bottom: 28px; }

footer { display: flex; align-items: center; gap: 30px; padding: 34px clamp(20px, 7vw, 110px); border-top: 1px solid rgba(255,255,255,.06); color: #8d9ab1; }
footer p { margin-right: auto; }

@media (max-width: 900px) {
  .nav nav { display: none; }
  .hero, .automation-section { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-top: 70px; }
  .feature-grid, .pricing-grid { grid-template-columns: 1fr; }
  .featured { transform: none; }
}

@media (max-width: 600px) {
  .nav { padding: 14px 16px; }
  .hero, .section { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
  .brief-grid { grid-template-columns: 1fr; }
  .hero-actions, .hero-actions a { width: 100%; }
  footer { align-items: flex-start; flex-direction: column; }
  footer p { margin: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

button.secondary,
button.custom-button {
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.modal-open {
  overflow: hidden;
}

.lead-modal[hidden] {
  display: none;
}

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 5, 12, .82);
  backdrop-filter: blur(12px);
}

.lead-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 680px);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(111, 231, 255, .24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 0%, rgba(81, 151, 255, .13), transparent 24rem),
    #101727;
  box-shadow: 0 40px 140px rgba(0, 0, 0, .65);
}

.lead-dialog h2 {
  font-size: clamp(2rem, 6vw, 3.25rem);
}

.modal-copy {
  color: var(--muted);
  line-height: 1.6;
}

.modal-close {
  position: absolute;
  top: 17px;
  right: 18px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  color: #f5f8ff;
  font-size: 1.5rem;
  cursor: pointer;
}

#lead-form {
  display: grid;
  gap: 17px;
  margin-top: 28px;
}

#lead-form label {
  display: grid;
  gap: 7px;
  color: #dce7f8;
  font-weight: 700;
}

#lead-form input,
#lead-form textarea {
  width: 100%;
  border: 1px solid rgba(173, 205, 255, .18);
  border-radius: 14px;
  background: rgba(4, 9, 18, .55);
  color: #f6f9ff;
  padding: 13px 14px;
  font: inherit;
}

#lead-form input:focus,
#lead-form textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(111, 231, 255, .12);
}

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

.form-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.form-message {
  min-height: 23px;
  margin: 0;
  color: #8ef2c6;
  text-align: center;
}

.website-field {
  position: absolute;
  left: -10000px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .lead-dialog {
    border-radius: 22px;
    padding: 24px 18px;
  }
}

/* Commercial launch polish */
button:disabled { opacity: .65; cursor: wait; }
#lead-form select {
  width: 100%;
  border: 1px solid rgba(173,205,255,.18);
  border-radius: 14px;
  background: #0a1020;
  color: #f6f9ff;
  padding: 13px 14px;
  font: inherit;
}
.form-message, .checkout-message { font-weight: 750; }
.form-message.is-success, .checkout-message.is-success { color: #8ef2c6; }
.form-message.is-error, .checkout-message.is-error { color: #ff9fa9; }
.form-message.is-info, .checkout-message.is-info { color: #b9dfff; }

.launch-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 clamp(20px, 7vw, 110px);
}
.launch-proof article {
  display: grid;
  gap: 9px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(17,25,42,.86), rgba(10,15,27,.86));
}
.launch-proof strong { font-size: 1.05rem; }
.launch-proof span { color: var(--muted); line-height: 1.55; }
.final-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.site-footer {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: start;
  gap: 28px 48px;
  padding: 44px clamp(20px,7vw,110px) max(38px, env(safe-area-inset-bottom));
}
.footer-brand { display: grid; gap: 14px; }
.footer-brand p { max-width: 520px; margin: 0; line-height: 1.55; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px 22px; }
.footer-button { padding: 0; border: 0; background: transparent; color: inherit; font: inherit; cursor: pointer; }
.site-footer small { grid-column: 1 / -1; color: #697890; line-height: 1.5; }

@supports (height: 100dvh) {
  .lead-dialog { max-height: calc(100dvh - 24px); }
}

@media (max-width: 900px) {
  .launch-proof { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 600px) {
  .hero { padding-top: 48px; padding-bottom: 70px; }
  .section { padding-top: 72px; padding-bottom: 72px; }
  .price-card { padding: 24px 20px; }
  .lead-modal { align-items: end; padding: 0; }
  .lead-dialog {
    width: 100%;
    max-height: calc(100dvh - 10px);
    border-radius: 24px 24px 0 0;
    padding: 28px 18px max(28px, env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }
  .lead-dialog h2 { padding-right: 42px; font-size: clamp(1.85rem, 9vw, 2.7rem); }
  .modal-close { position: sticky; float: right; top: 0; margin-top: -4px; z-index: 3; }
  #lead-form { margin-top: 22px; gap: 15px; }
  #lead-form input, #lead-form textarea, #lead-form select { font-size: 16px; }
  .launch-proof { margin-left: 18px; margin-right: 18px; }
  .final-cta { margin: 42px 18px; border-radius: 24px; }
  .final-actions, .final-actions > * { width: 100%; }
  .site-footer { padding-left: 18px; padding-right: 18px; }
  .footer-links { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
}

.booking-action {
  display: block;
  width: 100%;
  margin-top: 10px;
  text-align: center;
  text-decoration: none;
}
.booking-action[hidden] { display: none; }


/* RODEMAP BOOKING MODAL */
body.rodemap-modal-open {
    overflow: hidden;
  }

  .rodemap-booking-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    place-items: center;
    padding: 20px;
    background:
      radial-gradient(circle at 50% 35%, rgba(71, 112, 255, 0.18), transparent 34%),
      rgba(2, 6, 23, 0.86);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 1;
    transition: opacity 180ms ease;
  }

  .rodemap-booking-modal[hidden] {
    display: none !important;
  }

  .rodemap-booking-card {
    position: relative;
    width: min(100%, 560px);
    overflow: hidden;
    padding: 42px 34px 30px;
    border: 1px solid rgba(129, 211, 252, 0.28);
    border-radius: 28px;
    background:
      radial-gradient(circle at 85% 5%, rgba(124, 58, 237, 0.23), transparent 38%),
      linear-gradient(155deg, rgba(17, 30, 55, 0.98), rgba(7, 14, 31, 0.99));
    box-shadow:
      0 36px 90px rgba(0, 0, 0, 0.62),
      0 0 70px rgba(56, 189, 248, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    text-align: center;
    animation: rodemapModalEnter 260ms ease-out both;
  }

  .rodemap-booking-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(
      130deg,
      rgba(103, 232, 249, 0.15),
      transparent 38%,
      rgba(139, 92, 246, 0.14)
    );
  }

  .rodemap-booking-close {
    position: absolute;
    top: 17px;
    right: 18px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #a8b3c7;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
  }

  .rodemap-booking-close:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #fff;
  }

  .rodemap-booking-icon-wrap {
    position: relative;
    width: 112px;
    height: 112px;
    margin: 0 auto 17px;
    display: grid;
    place-items: center;
  }

  .rodemap-booking-orbit,
  .rodemap-booking-orbit::before {
    position: absolute;
    content: "";
    inset: 10px;
    border: 1px solid rgba(96, 211, 255, 0.42);
    border-radius: 50%;
    transform: rotate(-18deg) scaleY(0.42);
    box-shadow: 0 0 24px rgba(59, 130, 246, 0.24);
    animation: rodemapOrbit 4.5s linear infinite;
  }

  .rodemap-booking-orbit::before {
    inset: -13px;
    border-color: rgba(168, 85, 247, 0.28);
    animation-direction: reverse;
    animation-duration: 6s;
  }

  .rodemap-booking-icon {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 23px;
    background: linear-gradient(135deg, #22d3ee, #3b82f6 48%, #a855f7);
    box-shadow:
      0 0 36px rgba(34, 211, 238, 0.42),
      0 0 48px rgba(168, 85, 247, 0.3);
    animation: rodemapPulse 2.8s ease-in-out infinite;
  }

  .rodemap-booking-icon svg {
    width: 43px;
    height: 43px;
    fill: none;
    stroke: white;
    stroke-width: 4.4;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .rodemap-booking-kicker {
    margin: 0 0 13px;
    color: #b9a8ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.25em;
  }

  .rodemap-booking-card h2 {
    position: relative;
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 5vw, 39px);
    line-height: 1.12;
    letter-spacing: -0.035em;
  }

  .rodemap-booking-copy {
    position: relative;
    max-width: 450px;
    margin: 17px auto 27px;
    color: #aeb9ce;
    font-size: 17px;
    line-height: 1.65;
  }

  .rodemap-booking-primary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 62px;
    padding: 15px 22px;
    border: 0;
    border-radius: 17px;
    background: linear-gradient(100deg, #67e8f9, #60a5fa 48%, #8b5cf6);
    box-shadow:
      0 16px 42px rgba(59, 130, 246, 0.28),
      0 0 28px rgba(103, 232, 249, 0.15);
    color: #07111f;
    font-size: 18px;
    font-weight: 850;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease;
  }

  .rodemap-booking-primary:hover {
    transform: translateY(-2px);
    box-shadow:
      0 20px 48px rgba(59, 130, 246, 0.35),
      0 0 34px rgba(139, 92, 246, 0.22);
  }

  .rodemap-booking-later {
    position: relative;
    margin-top: 18px;
    padding: 9px 15px;
    border: 0;
    background: transparent;
    color: #9fb0cb;
    font-size: 15px;
    cursor: pointer;
  }

  .rodemap-booking-later:hover {
    color: #fff;
  }

  @keyframes rodemapModalEnter {
    from {
      opacity: 0;
      transform: translateY(18px) scale(0.975);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes rodemapOrbit {
    to {
      transform: rotate(342deg) scaleY(0.42);
    }
  }

  @keyframes rodemapPulse {
    0%, 100% {
      transform: scale(1);
      filter: brightness(1);
    }
    50% {
      transform: scale(1.045);
      filter: brightness(1.13);
    }
  }

  @media (max-width: 560px) {
    .rodemap-booking-modal {
      padding: 14px;
    }

    .rodemap-booking-card {
      padding: 36px 20px 24px;
      border-radius: 23px;
    }

    .rodemap-booking-copy {
      font-size: 15px;
    }

    .rodemap-booking-primary {
      min-height: 58px;
      font-size: 17px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .rodemap-booking-card,
    .rodemap-booking-icon,
    .rodemap-booking-orbit,
    .rodemap-booking-orbit::before {
      animation: none !important;
    }
  }
/* END RODEMAP BOOKING MODAL */



/* BEGIN RODEMAP FINAL BRAND */

/* Browser-native schedule-later control */
a.rodemap-booking-later {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  padding: 12px 18px;
  border: 0;
  color: rgba(239, 244, 255, 0.88);
  background: transparent;
  font: inherit;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 50;
  pointer-events: auto !important;
  -webkit-tap-highlight-color: transparent;
}

a.rodemap-booking-later:hover,
a.rodemap-booking-later:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

/* Rodemap header identity */
.rodemap-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #f7f9ff;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: -0.025em;
}

.rodemap-brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  filter:
    drop-shadow(0 0 8px rgba(45, 211, 255, 0.72))
    drop-shadow(0 0 17px rgba(133, 79, 255, 0.5));
}

.rodemap-brand-name {
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

/* END RODEMAP FINAL BRAND */

/* RODEMAP ANIMATED BRAND START */
.rodemap-brand {
  --rm-cyan: #69ddff;
  --rm-blue: #478cff;
  --rm-violet: #8e6dff;
  --rm-ink: #07101f;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: #f7f9ff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.rodemap-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 3.15rem;
  aspect-ratio: 1;
  border-radius: 1rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 30% 20%, rgba(105, 221, 255, 0.32), transparent 38%),
    linear-gradient(145deg, rgba(17, 42, 76, 0.98), rgba(9, 15, 36, 0.98));
  border: 1px solid rgba(133, 219, 255, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 12px 40px rgba(33, 127, 255, 0.22),
    0 0 32px rgba(88, 206, 255, 0.16);
}

.rodemap-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 2.15rem;
  aspect-ratio: 1;
  border-radius: 50%;
  font-weight: 850;
  font-size: 1.12rem;
  letter-spacing: -0.08em;
  color: #05101f;
  background: linear-gradient(135deg, var(--rm-cyan), var(--rm-blue) 56%, var(--rm-violet));
  box-shadow: 0 0 25px rgba(95, 205, 255, 0.55);
  animation: rodemap-core-breathe 3.4s ease-in-out infinite;
}

.rodemap-orbit {
  position: absolute;
  z-index: 2;
  width: 78%;
  aspect-ratio: 1;
  border: 1px solid rgba(115, 219, 255, 0.48);
  border-radius: 50%;
}

.rodemap-orbit-one { animation: rodemap-orbit 7s linear infinite; }
.rodemap-orbit-two {
  width: 92%;
  border-color: rgba(145, 109, 255, 0.3);
  animation: rodemap-orbit-reverse 10s linear infinite;
}

.joey-signal {
  position: absolute;
  z-index: 4;
  right: 0.38rem;
  bottom: 0.38rem;
  width: 0.48rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #4dffb3;
  box-shadow: 0 0 16px rgba(77, 255, 179, 0.88);
  animation: joey-signal 1.8s ease-in-out infinite;
}

.rodemap-wordmark { display: grid; gap: 0.08rem; }
.rodemap-wordmark strong { font-size: 1.12rem; line-height: 1; letter-spacing: -0.035em; }
.rodemap-wordmark small {
  color: #aab8d4;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@keyframes rodemap-orbit { to { transform: rotate(360deg) scaleX(0.78); } }
@keyframes rodemap-orbit-reverse { to { transform: rotate(-360deg) scaleY(0.82); } }
@keyframes rodemap-core-breathe {
  0%, 100% { transform: scale(0.96); filter: brightness(0.92); }
  50% { transform: scale(1.04); filter: brightness(1.12); }
}
@keyframes joey-signal {
  0%, 100% { transform: scale(0.78); opacity: 0.68; }
  50% { transform: scale(1.12); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .rodemap-brand *, .rodemap-brand *::before, .rodemap-brand *::after { animation: none !important; }
}
.rodemap-brand { margin: 0.35rem 0.75rem; text-decoration: none; }
@media (max-width: 640px) {
  .rodemap-brand { gap: 0.6rem; margin: 0.3rem 0.4rem; }
  .rodemap-mark { width: 2.75rem; border-radius: 0.85rem; }
  .rodemap-wordmark small { display: none; }
}
/* RODEMAP ANIMATED BRAND END */
