/* =========================================================
   BANEMEME landing page
   Bootstrap 5 + custom CSS
   Sections: header, hero/carousel, tabs, footer
   ========================================================= */

:root {
  --color-bg: #020711;
  --color-bg-dark: #01040a;
  --color-blue: #1fbfff;
  --color-blue-light: #86dcff;
  --color-text: #eefaff;
  --color-muted: #b9c9d5;
  --border-blue: rgba(83, 196, 255, 0.45);
  --border-blue-strong: rgba(126, 220, 255, 0.88);
  --font-display: 'Orbitron', Arial, sans-serif;
  --font-main: 'Rajdhani', Arial, sans-serif;
  --site-max-width: 1368px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background: url("assets/texture.jpg");
  font-family: var(--font-main);
  overflow-x: hidden;
}

.page-frame {
  width: min(100%, var(--site-max-width));
  margin: 0 auto;
  min-height: 100vh;
  overflow: hidden;
  background: #01050d;
  box-shadow:
    0 0 90px rgba(0, 0, 0, 0.78);
}

a {
  color: inherit;
  text-decoration: none;
}

.site-wrapper {
  width: 100%;
  min-height: 100vh;
  background: rgba(1, 5, 13, 0.74);
}

.container-custom {
  max-width: 1220px;
}

/* Header */
.site-header {
  position: relative;
  z-index: 20;
  padding: 28px 0 20px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.96), rgba(1, 5, 13, 0.82));
  border-bottom: none;
}

.navbar {
  padding: 0;
}

.brand-logo,
.footer-logo {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.075em;
  transform: none;
  color: #f5fbff !important;
  text-shadow:
    0 3px 0 #123a58,
    0 0 8px rgba(194, 238, 255, 0.7),
    0 0 25px rgba(31, 191, 255, 0.52);
}

.brand-logo img {
  max-width: 250px;
}
.footer-logo img {
  max-width: 150px;
}

.main-menu {
  gap: 44px;
}

.main-menu .nav-link {
  position: relative;
  padding: 10px 0 !important;
  color: rgba(236, 246, 255, 0.82);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  transition: color 0.22s ease, text-shadow 0.22s ease;
}

.main-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 1px;
  background: var(--color-blue);
  box-shadow: 0 0 12px rgba(31, 191, 255, 0.9);
  transition: left 0.22s ease, right 0.22s ease;
}

.main-menu .nav-link:hover,
.main-menu .nav-link:focus {
  color: #fff;
  text-shadow: 0 0 14px rgba(126, 220, 255, 0.5);
}

.main-menu .nav-link:hover::after,
.main-menu .nav-link:focus::after {
  left: 0;
  right: 0;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links a {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #f4fbff;
  font-size: 1.2rem;
  line-height: 1;
  text-shadow: 0 0 12px rgba(126, 220, 255, 0.7);
  transition: color 0.22s ease, transform 0.22s ease, text-shadow 0.22s ease;
}

.social-links a:hover,
.social-links a:focus {
  color: var(--color-blue-light);
  transform: translateY(-2px);
  text-shadow: 0 0 18px rgba(126, 220, 255, 0.95);
}

.menu-toggler {
  border-color: rgba(83, 196, 255, 0.38);
  box-shadow: 0 0 18px rgba(31, 191, 255, 0.14);
}

/* Hero / carousel */
.hero-carousel-section {
  position: relative;
  z-index: 2;
  background: #030814;
}

.hero-mobile-image-wrap {
  display: none;
}

.hero-mobile-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
}


.hero-slide {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: #020711;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.34) 0%, rgba(1, 5, 13, 0.03) 35%, rgba(1, 5, 13, 0.12) 68%, rgba(1, 5, 13, 0.88) 100%),
    radial-gradient(circle at 50% 23%, rgba(63, 177, 245, 0.13), transparent 28%);
  pointer-events: none;
}

.hero-content-wrap {
  position: relative;
  z-index: 3;
  min-height: 700px;
  /* display: flex; */
  align-items: flex-start;
  justify-content: center;
  padding-top: 96px;
}

.hero-content {
  max-width: 700px;
  padding-bottom: 140px;
}

.hero-subtitle {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.052em;
  color: rgba(236, 247, 255, 0.92);
  text-shadow: 0 0 18px rgba(181, 230, 255, 0.32);
}

.hero-kicker {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2f95f5;
  text-shadow: 0 0 10px rgba(53, 151, 244, 0.5);
}

.hero-subtitle-top {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #f4f8ff;
  text-shadow: 0 0 12px rgba(209, 231, 255, 0.35);
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 84px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #f3fbff;
  text-shadow:
    0 0 20px rgba(213, 236, 255, 0.5),
    0 8px 20px rgba(10, 31, 50, 0.55);
}

.hero-line-systems {
  display: block;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(82, 163, 255, 0.95);
  text-shadow:
    0 0 7px rgba(76, 153, 255, 0.95),
    0 0 18px rgba(48, 123, 255, 0.85),
    0 0 32px rgba(35, 102, 240, 0.62);
}

.hero-subtitle-bottom {
  margin-top: 18px;
  font-family: var(--font-main);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: rgba(232, 242, 249, 0.92);
}

.hero-accent {
  color: #2d8fff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(68, 148, 255, 0.55);
}

.hero-description {
  margin: 14px 0 0;
  max-width: 520px;
  /* font-family: var(--font-main); */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: rgba(227, 238, 249, 0.9);
  text-shadow: 0 0 12px rgba(7, 22, 38, 0.35);
}

.hero-ca-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-ca-label {
  font-weight: 700;
  color: #ffffff;
}

.hero-ca-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.hero-ca-value {
  display: inline-block;
  max-width: min(100%, 520px);
  font-weight: 700;
  color: #ffffff;
  overflow-wrap: anywhere;
}

.hero-ca-copy-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  min-height: 18px;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  opacity: 0.92;
  transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.hero-ca-copy-link:hover,
.hero-ca-copy-link:focus-visible,
.hero-ca-copy-link.is-copied {
  color: #ffffff;
  opacity: 1;
}

.hero-ca-copy-link:hover,
.hero-ca-copy-link:focus-visible {
  transform: translateY(-1px);
}

.hero-ca-copy-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.35);
  outline-offset: 2px;
}

.hero-ca-copy-link i {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.hero-ca-status {
  min-height: 1.2em;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 22px;
  margin-top: 0;
  position: absolute;
  left: 0;
  bottom: 52px;
}

.hero-actions .hero-btn {
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
}

.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  min-height: 50px;
  padding: 0 8px;
  border-radius: 16px;
  border: 1px solid rgba(99, 205, 255, 0.72);
  background:
    linear-gradient(180deg, rgba(7, 22, 38, 0.92) 0%, rgba(3, 12, 24, 0.97) 100%);
  box-shadow:
    inset 0 0 0 2px rgba(19, 91, 139, 0.42),
    inset 0 0 16px rgba(88, 199, 255, 0.12),
    0 0 0 1px rgba(130, 223, 255, 0.1),
    0 0 12px rgba(55, 177, 255, 0.62),
    0 0 24px rgba(55, 177, 255, 0.42);
  color: #eef8ff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.025em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.28);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease;
}

.hero-actions .hero-btn::before {
  content: none;
}

.hero-btn-icon {
  font-size: 1.35em;
  line-height: 1;
}

.hero-btn::before {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 13px;
  border: 1px solid rgba(136, 226, 255, 0.38);
  box-shadow:
    inset 0 0 10px rgba(78, 194, 255, 0.16),
    0 0 8px rgba(52, 173, 255, 0.18);
  pointer-events: none;
}

.hero-btn::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  bottom: 5px;
  height: 4px;
  border-radius: 999px;
  background: rgba(61, 195, 255, 0.95);
  filter: blur(7px);
  opacity: 0.95;
  pointer-events: none;
}

.hero-btn:hover,
.hero-btn:focus {
  color: #ffffff;
  transform: translateY(-2px);
  border-color: rgba(148, 232, 255, 0.96);
  box-shadow:
    inset 0 0 0 2px rgba(31, 117, 176, 0.5),
    inset 0 0 18px rgba(119, 214, 255, 0.18),
    0 0 0 1px rgba(178, 239, 255, 0.15),
    0 0 16px rgba(69, 188, 255, 0.8),
    0 0 36px rgba(69, 188, 255, 0.52);
}

.hero-btn:hover::after,
.hero-btn:focus::after {
  left: 13%;
  right: 13%;
}

.live-system-section,
.tokenomics-section,
.core-principles-section,
.tabs-section,
.roadmap-section,
.whitepaper-section,
.stay-connected-section {
  position: relative;
  z-index: 4;
}

/* Live system data */
.live-system-section {
  padding: 18px 0 28px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.96), rgba(1, 5, 13, 0.98)),
    radial-gradient(circle at 52% 0%, rgba(31, 191, 255, 0.15), transparent 50%);
}

.live-system-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.live-system-header h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #40a2ff;
  text-shadow: 0 0 12px rgba(70, 164, 255, 0.5);
}

.live-system-header p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(230, 241, 250, 0.9);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28e86a;
  box-shadow: 0 0 10px rgba(40, 232, 106, 0.85);
}

.live-system-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.live-data-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 280px;
  padding: 18px 12px 14px;
  border: 1px solid rgba(84, 164, 255, 0.78);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(2, 9, 20, 0.98) 0%, rgba(0, 4, 11, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(121, 198, 255, 0.24),
    inset 0 0 24px rgba(49, 146, 255, 0.13),
    0 0 16px rgba(36, 124, 245, 0.3);
}

.live-data-card-clickable {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.live-data-card-clickable:hover,
.live-data-card-clickable:focus-visible {
  transform: translateY(-1px);
  background:
    linear-gradient(180deg, rgba(4, 16, 33, 0.98) 0%, rgba(1, 8, 18, 0.98) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(137, 210, 255, 0.3),
    inset 0 0 28px rgba(70, 160, 255, 0.16),
    0 0 22px rgba(55, 145, 255, 0.35);
  outline: none;
}

.live-data-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 7px;
  border: 1px solid rgba(100, 176, 255, 0.25);
  pointer-events: none;
}

.live-data-card-top {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(66, 163, 255, 0.95);
  text-shadow: 0 0 10px rgba(74, 160, 255, 0.45);
}

.live-data-card-icon {
  margin-top: 18px;
  color: #4e8cff;
  font-size: 44px;
  line-height: 1;
  text-shadow:
    0 0 14px rgba(81, 154, 255, 0.62),
    0 0 26px rgba(64, 125, 255, 0.42);
}

.live-data-card h3 {
  margin: 14px 0 0;
  font-family: var(--font-main);
  font-size: 20px;
  /* font-weight: 700; */
  color: #27dd67;
  text-shadow: 0 0 10px rgba(39, 221, 103, 0.5);
  min-height: 24px;
}

.live-data-card-text {
  margin: 10px 0 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.2;
  color: rgba(215, 231, 245, 0.9);
}

.live-data-card-icon + .live-data-card-text {
  margin-top: 36px;
}

.live-data-value {
  margin: 10px 0 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-align: center;
  color: #f6fbff;
  text-shadow: 0 0 12px rgba(205, 232, 255, 0.35);
  min-height: 24px;
}

.live-data-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 10px 0 0;
  border-radius: 4px;
  object-fit: contain;
}

.live-data-btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 108px;
  min-height: 34px;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(69, 153, 255, 0.84);
  background:
    linear-gradient(180deg, rgba(4, 18, 36, 0.92) 0%, rgba(2, 9, 20, 0.96) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(98, 174, 255, 0.23),
    0 0 12px rgba(47, 139, 255, 0.28);
  /* font-family: var(--font-display); */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #61aaff;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.live-data-card-clickable .live-data-btn {
  pointer-events: none;
}

.live-data-btn:hover,
.live-data-btn:focus {
  transform: translateY(-1px);
  color: #93c8ff;
  box-shadow:
    inset 0 0 0 1px rgba(140, 205, 255, 0.35),
    0 0 16px rgba(66, 164, 255, 0.38);
}

/* Tokenomics */
.tokenomics-section {
  padding: 16px 0 20px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.96), rgba(1, 5, 13, 0.99)),
    radial-gradient(circle at 52% 0%, rgba(31, 191, 255, 0.11), transparent 56%);
  font-family: Arial, Helvetica, sans-serif;
}

.tokenomics-shell,
.core-principles-shell,
.roadmap-shell {
  position: relative;
  border-radius: 10px;
}

.tokenomics-shell {
  padding: 20px 22px;
  border: 1px solid rgba(63, 142, 233, 0.6);
  background:
    linear-gradient(180deg, rgba(1, 8, 18, 0.95) 0%, rgba(0, 4, 12, 0.96) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(96, 173, 255, 0.17),
    inset 0 0 26px rgba(46, 125, 236, 0.14),
    0 0 24px rgba(23, 92, 195, 0.24);
}

.tokenomics-shell::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  border: 1px solid rgba(100, 174, 255, 0.15);
  pointer-events: none;
}

.token-circle-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.token-circle {
  position: relative;
  width: min(100%, 280px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(7, 24, 44, 0.98) 0%, rgba(2, 11, 24, 0.95) 58%, rgba(8, 29, 54, 0.88) 100%);
  box-shadow:
    inset 0 0 0 3px rgba(33, 126, 255, 0.44),
    inset 0 0 32px rgba(43, 139, 255, 0.25),
    0 0 0 2px rgba(20, 110, 243, 0.72),
    0 0 24px rgba(45, 148, 255, 0.74),
    0 0 54px rgba(45, 148, 255, 0.38);
}

.token-circle::before,
.token-circle::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.token-circle::before {
  inset: -10px;
  border: 2px solid rgba(70, 165, 255, 0.76);
  box-shadow:
    0 0 22px rgba(75, 170, 255, 0.65),
    inset 0 0 14px rgba(61, 153, 248, 0.36);
}

.token-circle::after {
  inset: -22px;
  border: 1px solid rgba(74, 163, 255, 0.2);
}

.token-circle-inner {
  text-align: center;
  line-height: 1;
}

.token-circle-value {
  margin: 0;
  font-family: var(--font-main);
  font-size: 38px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #ecf8ff;
  text-shadow: 0 0 12px rgba(194, 232, 255, 0.38);
}

.token-circle-symbol {
  margin: 10px 0 0;
  font-family: var(--font-main);
  font-size: 44px;
  font-weight: 700;
  color: #f4fbff;
  text-shadow:
    0 0 16px rgba(195, 232, 255, 0.5),
    0 0 36px rgba(59, 139, 255, 0.28);
}

.token-circle-label {
  margin: 10px 0 0;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(210, 228, 246, 0.9);
}

.token-circle-foot {
  margin: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4ca5ff;
  text-shadow: 0 0 10px rgba(70, 166, 255, 0.36);
}

.tokenomics-list-wrap {
  height: 100%;
}

.tokenomics-list {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: Arial, Helvetica, sans-serif;
}

.tokenomics-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(89, 152, 229, 0.16);
  
}

.tokenomics-list li i {
  width: 20px;
  text-align: center;
  color: #4c9cff;
  font-size: 15px;
  text-shadow: 0 0 10px rgba(71, 154, 255, 0.45);
}

.tokenomics-list li span {
  /* font-family: var(--font-display); */
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(221, 236, 250, 0.92);
}

.tokenomics-card {
  position: relative;
  height: 100%;
  min-height: 380px;
  border-radius: 10px;
  border: 1px solid rgba(76, 156, 247, 0.78);
  padding: 18px 14px 14px;
  background:
    linear-gradient(180deg, rgba(4, 16, 33, 0.98) 0%, rgba(1, 8, 18, 0.99) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(111, 184, 255, 0.19),
    inset 0 0 22px rgba(53, 137, 247, 0.11),
    0 0 18px rgba(46, 117, 229, 0.25);
}

.tokenomics-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  border: 1px solid rgba(97, 170, 255, 0.22);
  pointer-events: none;
}

.tokenomics-card-plus {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(110, 183, 255, 0.72);
  background: rgba(2, 12, 25, 0.92);
  color: rgba(229, 242, 255, 0.94);
  font-size: 11px;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 0 10px rgba(78, 163, 255, 0.3);
}

.tokenomics-card h3 {
  margin: 0;
  max-width: calc(100% - 34px);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #44a7ff;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(71, 161, 255, 0.38);
}

.tokenomics-card > p {
  margin: 10px 0 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(216, 231, 245, 0.9);
}

.tokenomics-card-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(86, 156, 241, 0.26);
  border-radius: 8px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(2, 11, 24, 0.76), rgba(2, 8, 18, 0.84));
}

.tokenomics-card-line-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #66b1ff;
  font-size: 16px;
  border: 1px solid rgba(104, 176, 255, 0.45);
  box-shadow:
    inset 0 0 10px rgba(69, 151, 255, 0.16),
    0 0 10px rgba(55, 135, 245, 0.2);
}

.tokenomics-card-line-icon-sol i {
  color: #6ef0a0;
}

.tokenomics-card-line-icon-sol svg {
  width: 16px;
  height: 14px;
  display: block;
  filter: drop-shadow(0 0 5px rgba(120, 188, 255, 0.42));
}

.tokenomics-card-line-content {
  display: flex;
  flex-direction: column;
}

.tokenomics-card-line-content strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: rgba(245, 250, 255, 0.95);
}

.tokenomics-card-line-content span {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: rgba(201, 222, 242, 0.88);
}

.tokenomics-card-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  color: rgba(203, 223, 243, 0.9);
}

.tokenomics-card-foot i {
  color: #4ca8ff;
  text-shadow: 0 0 10px rgba(77, 165, 255, 0.4);
}

/* Core principles */
.core-principles-section {
  padding: 14px 0 24px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.98), rgba(1, 5, 13, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(31, 191, 255, 0.12), transparent 55%);
}

.core-principles-shell {
  border: 1px solid rgba(56, 127, 214, 0.55);
  padding: 18px 18px 14px;
  background:
    linear-gradient(180deg, rgba(2, 9, 20, 0.7), rgba(1, 6, 14, 0.78));
  box-shadow:
    inset 0 0 0 1px rgba(74, 157, 255, 0.13),
    0 0 18px rgba(39, 119, 231, 0.22);
}

.core-principles-title {
  margin: 0 0 12px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(235, 244, 252, 0.9);
  text-shadow: 0 0 12px rgba(187, 224, 255, 0.28);
}

.core-principles-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
}

.core-principle-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 230px;
  padding: 14px 12px 12px;
}

.core-principle-card-clickable {
  cursor: pointer;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.core-principle-card-clickable:hover,
.core-principle-card-clickable:focus-visible {
  background:
    linear-gradient(180deg, rgba(12, 34, 66, 0.18), rgba(4, 18, 36, 0.08));
  box-shadow:
    inset 0 0 0 1px rgba(110, 184, 255, 0.16),
    0 0 16px rgba(53, 130, 227, 0.18);
  outline: none;
}

.core-principle-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(86, 165, 255, 0) 0%,
    rgba(86, 165, 255, 0.48) 16%,
    rgba(86, 165, 255, 0.48) 84%,
    rgba(86, 165, 255, 0) 100%
  );
  box-shadow: 0 0 8px rgba(76, 150, 255, 0.35);
}

.core-principle-card:first-child::before {
  content: none;
}

.core-principle-icon {
  margin-top: 2px;
  color: #4c8fff;
  font-size: 56px;
  line-height: 1;
  text-shadow:
    0 0 12px rgba(82, 153, 255, 0.5),
    0 0 24px rgba(58, 118, 244, 0.38);
}

.core-principle-card h3 {
  margin: 12px 0 0;
  text-align: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #4ea0ff;
  text-shadow: 0 0 9px rgba(78, 160, 255, 0.35);
  min-height: 30px;
}

.core-principle-card p {
  margin: 10px 0 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.35;
  color: rgba(213, 228, 242, 0.92);
}

.core-principle-btn {
  margin-top: auto;
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(115, 177, 255, 0.6);
  color: rgba(214, 232, 248, 0.95);
  background:
    linear-gradient(180deg, rgba(4, 16, 33, 0.95), rgba(2, 9, 20, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(116, 185, 255, 0.18),
    0 0 8px rgba(62, 145, 247, 0.28);
  font-size: 12px;
  transition: transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  pointer-events: none;
}

.core-principle-btn:hover,
.core-principle-btn:focus {
  transform: translateY(-1px);
  color: #ffffff;
  box-shadow:
    inset 0 0 0 1px rgba(164, 217, 255, 0.35),
    0 0 14px rgba(91, 179, 255, 0.45);
}

.core-principle-modal .modal-dialog {
  max-width: 920px;
}

body.core-principle-modal-open .modal-backdrop.show {
  opacity: 0.78;
  background-color: rgba(1, 6, 15, 0.82);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.core-principle-modal .modal-content {
  border: 1px solid rgba(86, 165, 255, 0.5);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(2, 10, 22, 0.98), rgba(1, 6, 15, 0.98)),
    radial-gradient(circle at 25% 0%, rgba(31, 191, 255, 0.2), transparent 42%);
  box-shadow:
    inset 0 0 0 1px rgba(94, 169, 255, 0.15),
    0 0 28px rgba(24, 109, 224, 0.35);
  color: var(--color-text);
}

.core-principle-modal .modal-header {
  border-bottom: 1px solid rgba(87, 156, 240, 0.28);
  padding: 18px 20px 16px;
}

.core-principle-modal .modal-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #e9f6ff;
  text-shadow: 0 0 12px rgba(139, 211, 255, 0.35);
}

.core-principle-modal .btn-close {
  filter: invert(1) brightness(1.35);
  opacity: 0.9;
}

.core-principle-modal .btn-close:hover,
.core-principle-modal .btn-close:focus {
  opacity: 1;
}

.core-principle-modal .modal-body {
  padding: 18px 20px 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.core-principle-modal.no-image .modal-body {
  grid-template-columns: 1fr;
}

.core-principle-modal-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(86, 165, 255, 0.3);
  box-shadow:
    inset 0 0 0 1px rgba(125, 192, 255, 0.2),
    0 0 16px rgba(49, 132, 235, 0.28);
}

.core-principle-modal-copy p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(217, 233, 248, 0.92);
}

/* Three tabs */
.tabs-section {
  padding: 46px 0 52px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.94), rgba(1, 5, 13, 0.98)),
    radial-gradient(circle at 50% 0%, rgba(31, 191, 255, 0.16), transparent 44%);
  border-top: none;
}

.system-tab {
  position: relative;
  display: flex;
  min-height: 245px;
  align-items: flex-start;
  justify-content: center;
  padding: 34px 22px;
  overflow: hidden;
  border: none;
  border-radius: 10px;
  background-image: var(--tab-bg-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow:
    inset 0 0 25px rgba(31, 191, 255, 0.06),
    0 18px 42px rgba(0, 0, 0, 0.38);
  isolation: isolate;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

#build .system-tab {
  --tab-bg-image: url('assets/tab1.jpg');
}

#stability .system-tab {
  --tab-bg-image: url('assets/tab2.jpg');
}

#network .system-tab {
  --tab-bg-image: url('assets/tab3.jpg');
}

.system-tab::before {
  content: "";
  position: absolute;
  inset: -30% -20%;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 0%, rgba(31, 191, 255, 0.18), transparent 32%),
    linear-gradient(135deg, transparent 10%, rgba(31, 191, 255, 0.05), transparent 55%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.system-tab::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.13;
  background:
    linear-gradient(90deg, transparent, rgba(126, 220, 255, 0.15), transparent),
    radial-gradient(circle at 50% 20%, rgba(126, 220, 255, 0.16), transparent 36%);
  pointer-events: none;
}

.system-tab:hover,
.system-tab:focus {
  border-color: var(--border-blue-strong);
  background-image: var(--tab-bg-image);
  box-shadow:
    inset 0 0 44px rgba(126, 220, 255, 0.18),
    inset 0 0 90px rgba(31, 191, 255, 0.08),
    0 24px 58px rgba(0, 0, 0, 0.54),
    0 0 34px rgba(31, 191, 255, 0.38),
    0 0 62px rgba(126, 220, 255, 0.18);
}

.system-tab:hover::before,
.system-tab:focus::before {
  opacity: 1;
}

.system-tab:hover::after,
.system-tab:focus::after {
  opacity: 0.22;
}

.tab-content-inner {
  display: block;
  text-align: center;
}

.tab-title {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: #f6fcff;
  text-shadow:
    0 0 14px rgba(195, 237, 255, 0.38),
    0 3px 0 rgba(15, 54, 82, 0.42);
}

.tab-subtitle {
  display: block;
  font-size: 20px;
  font-weight: 600;
  color: rgba(232, 242, 249, 0.86);
  letter-spacing: 0.025em;
}

/* Roadmap */
.roadmap-section {
  padding: 10px 0 16px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.97), rgba(1, 5, 13, 0.99)),
    radial-gradient(circle at 50% 0%, rgba(31, 191, 255, 0.11), transparent 55%);
}

.roadmap-shell {
  border: 1px solid rgba(56, 129, 219, 0.58);
  padding: 16px 14px 12px;
  background:
    linear-gradient(180deg, rgba(2, 10, 22, 0.9), rgba(1, 6, 15, 0.95));
  box-shadow:
    inset 0 0 0 1px rgba(96, 173, 255, 0.16),
    inset 0 0 26px rgba(52, 141, 255, 0.11),
    0 0 18px rgba(39, 119, 231, 0.18);
}

.roadmap-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
}

.roadmap-grid::before {
  content: none;
}

.roadmap-card {
  position: relative;
  padding: 58px 16px 8px;
  min-height: 252px;
}

.roadmap-card::before {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, rgba(86, 165, 255, 0), rgba(86, 165, 255, 0.4), rgba(86, 165, 255, 0));
}

.roadmap-card::after {
  content: "";
  position: absolute;
  top: 18px;
  left: calc(50% + 26px);
  width: calc(100% - 52px);
  height: 8px;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(192, 238, 255, 0.98) 0 2px, rgba(192, 238, 255, 0) 3px) center/8px 8px no-repeat,
    linear-gradient(90deg, rgba(76, 157, 255, 0) 0%, rgba(98, 179, 255, 0.22) 14%, rgba(128, 214, 255, 0.86) 50%, rgba(98, 179, 255, 0.22) 86%, rgba(76, 157, 255, 0) 130%) center/150% 1px no-repeat;
  box-shadow:
    0 0 6px rgba(93, 182, 255, 0.28),
    0 0 9px rgba(71, 160, 255, 0.16);
}

.roadmap-card:last-child::before {
  content: none;
}

.roadmap-card:last-child::after {
  content: none;
}

.roadmap-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 0;
  border-radius: 50%;
  border: 1px solid rgba(100, 181, 255, 0.65);
  background:
    radial-gradient(circle at 45% 35%, rgba(26, 99, 209, 0.56), rgba(3, 17, 35, 0.94));
  color: #9fd4ff;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  box-shadow:
    inset 0 0 0 1px rgba(139, 208, 255, 0.16),
    0 0 10px rgba(72, 160, 255, 0.5);
}

.roadmap-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #5faeff;
}

.roadmap-card h3 span {
  margin-right: 10px;
  color: #3491ff;
}

.roadmap-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmap-card ul li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 3px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(212, 229, 244, 0.9);
}

.roadmap-card ul li::before {
  content: "\f00c";
  position: absolute;
  left: 0;
  top: 0;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: rgba(214, 233, 248, 0.74);
}

.roadmap-status {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.roadmap-status-complete {
  color: #2de571;
}

.roadmap-status-progress {
  color: #3d9eff;
}

.roadmap-status-upcoming {
  color: #d6dde7;
}

.roadmap-status-future {
  color: #98a9bc;
}

/* Whitepaper */
.whitepaper-section {
  padding: 8px 0 12px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.96), rgba(1, 5, 13, 0.99));
}

.whitepaper-shell,
.stay-shell {
  border: 1px solid rgba(56, 129, 219, 0.58);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(2, 10, 22, 0.84), rgba(1, 7, 16, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(96, 173, 255, 0.14),
    inset 0 0 22px rgba(52, 141, 255, 0.09),
    0 0 14px rgba(39, 119, 231, 0.16);
}

.whitepaper-shell {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
}

.whitepaper-icon {
  width: 96px;
  height: 96px;
  color: rgba(132, 200, 255, 0.95);
  font-size: 72px;
  display: inline-grid;
  place-items: center;
  box-shadow:
    inset 0 0 0 1px rgba(124, 199, 255, 0.1),
    inset 0 0 18px rgba(62, 150, 255, 0.15),
    0 0 14px rgba(66, 156, 255, 0.26);
}

.whitepaper-icon i {
  -webkit-text-stroke: 0.65px rgba(146, 209, 255, 0.92);
  color: transparent;
  text-shadow:
    0 0 7px rgba(105, 184, 255, 0.85),
    0 0 14px rgba(79, 164, 255, 0.48);
}

.whitepaper-copy h2 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #43a5ff;
  text-shadow: 0 0 10px rgba(76, 159, 255, 0.35);
}

.whitepaper-copy {
  padding-left: 10px;
}

.whitepaper-copy p {
  margin: 0;
  max-width: 390px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.28;
  color: rgba(212, 228, 244, 0.88);
}

.whitepaper-download {
  min-width: 420px;
  min-height: 70px;
  gap: 14px;
  font-size: 18px;
  letter-spacing: 0.025em;
  padding: 0 14px;
}

.whitepaper-download i {
  font-size: 0.8em;
}

/* Stay connected */
.stay-connected-section {
  padding: 8px 0 14px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.97), rgba(1, 5, 13, 1));
}

.stay-shell {
  display: grid;
  grid-template-columns: 1.4fr 1.4fr 2.2fr 1.4fr;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
}

.stay-bnm-text,
.stay-slogans,
.stay-visual,
.stay-social {
  min-height: 160px;
}



.stay-social {
  border-right: 1px solid rgba(81, 151, 227, 0.28);
}

.stay-bnm-text {
  display: grid;
  place-items: center;
  /* font-family: var(--font-display); */
  font-family: Arial, Helvetica, sans-serif;
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: transparent;
  -webkit-text-stroke: 2px rgba(73, 158, 255, 0.96);
  text-shadow:
    0 0 9px rgba(80, 163, 255, 0.75),
    0 0 28px rgba(57, 134, 249, 0.42);
}

.stay-slogans {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stay-slogans p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: rgba(240, 248, 255, 0.95);
}

.stay-visual {
  position: relative;
  overflow: hidden;
}

.stay-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  filter: saturate(1.12) brightness(0.9);
}

.stay-social {
  padding: 20px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-right: none;
}

.stay-social h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: #58adff;
}

.stay-social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stay-social-icons a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(95, 169, 249, 0.65);
  color: rgba(232, 243, 255, 0.93);
  display: inline-grid;
  place-items: center;
  font-size: 24px;
  background: rgba(4, 15, 30, 0.92);
  box-shadow:
    inset 0 0 0 1px rgba(133, 203, 255, 0.15),
    0 0 9px rgba(59, 143, 255, 0.26);
}

.stay-social-icons a:last-child i {
  color: #5fdc9b;
}

.stay-social-icons a svg {
  width: 24px;
  height: 24px;
  display: block;
  filter: drop-shadow(0 0 6px rgba(120, 188, 255, 0.45));
}

.stay-links-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 188px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(79, 163, 255, 0.82);
  background:
    linear-gradient(180deg, rgba(4, 16, 33, 0.92) 0%, rgba(2, 10, 22, 0.96) 100%);
  box-shadow:
    inset 0 0 0 1px rgba(98, 174, 255, 0.22),
    0 0 12px rgba(47, 139, 255, 0.26);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #a5cfff;
}

/* Footer */
.site-footer {
  padding: 18px 0 20px;
  background:
    linear-gradient(180deg, rgba(1, 5, 13, 0.99), rgba(1, 5, 13, 1));
  border-top: none;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-content-modern {
  gap: 12px;
}

.footer-content-modern .footer-logo span {
  font-size: 30px;
}

.footer-copyright {
  margin: 0;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: rgba(192, 210, 228, 0.9);
}

.footer-solana {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 600;
  color: rgba(199, 219, 240, 0.93);
}

.footer-solana svg {
  width: 18px;
  height: 16px;
  display: block;
  filter: drop-shadow(0 0 5px rgba(120, 188, 255, 0.4));
}

.footer-logo span {
  display: inline-block;
  font-size: 44px;
}

/* Desktop hero tightening */
@media (min-width: 992px) {
  .hero-slide,
  .hero-content-wrap {
    min-height: 640px;
  }

  .hero-content-wrap {
    padding-top: 76px;
  }

  .hero-content {
    padding-bottom: 102px;
  }

  .hero-actions {
    bottom: 32px;
  }
}

/* Responsive */
@media (max-width: 991.98px) {
  .site-header {
    padding: 18px 0;
  }

  .navbar-collapse {
    margin-top: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(83, 196, 255, 0.22);
    border-radius: 16px;
    background: rgba(1, 6, 15, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  }

  .main-menu {
    gap: 0;
  }

  .main-menu .nav-link {
    padding: 11px 0 !important;
  }

  .header-social-links {
    padding-top: 10px;
  }

  .hero-slide,
  .hero-content-wrap {
    min-height: 760px;
  }

  .hero-slide-bg {
    object-position: center top;
  }

  .hero-content-wrap {
    padding-top: 74px;
  }

  .system-tab {
    min-height: 220px;
  }

  .hero-btn {
    min-width: 170px;
  }

  .live-system-section {
    padding: 20px 0 30px;
  }

  .live-system-header {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
  }

  .live-system-header h2 {
    font-size: 24px;
  }

  .live-system-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tokenomics-shell {
    padding: 18px 16px;
  }

  .tokenomics-card {
    min-height: 350px;
  }

  .tokenomics-card h3 {
    font-size: 22px;
  }

  .tokenomics-card > p {
    font-size: 16px;
  }

  .tokenomics-card-line-content strong {
    font-size: 18px;
  }

  .tokenomics-card-line-content span {
    font-size: 14px;
  }

  .roadmap-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 10px;
  }

  .roadmap-grid::before {
    display: none;
  }

  .roadmap-card::after {
    content: none;
  }

  .roadmap-card:nth-child(3n)::before {
    content: none;
  }

  .roadmap-card {
    min-height: 236px;
  }

  .whitepaper-shell {
    grid-template-columns: 88px 1fr;
  }

  .whitepaper-copy h2 {
    font-size: 34px;
  }

  .whitepaper-copy p {
    max-width: none;
    font-size: 16px;
  }

  .whitepaper-download {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 28px;
  }

  .stay-shell {
    grid-template-columns: 1.2fr 1.4fr 1.8fr 1.4fr;
  }

  .stay-bnm-text,
  .stay-slogans,
  .stay-visual,
  .stay-social {
    min-height: 140px;
  }

  .stay-social h3 {
    font-size: 20px;
  }

  .stay-social-icons a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .stay-links-btn {
    min-width: 150px;
    min-height: 46px;
    font-size: 18px;
  }

  .footer-content-modern .footer-logo span {
    font-size: 1.5rem;
  }

  .footer-copyright {
    font-size: 14px;
  }

  .footer-solana {
    font-size: 14px;
  }

  .core-principles-title {
    font-size: 30px;
  }

  .core-principles-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .core-principle-card:nth-child(3n + 1)::before {
    content: none;
  }

  .core-principle-modal .modal-body {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 767.98px) {
  .brand-logo span {
    font-size: 1.6rem;
  }

  .hero-mobile-image-wrap {
    display: block;
  }

  .hero-carousel-section {
    background: transparent;
  }

  .hero-slide,
  .hero-content-wrap {
    min-height: 0;
  }

  .hero-slide-bg {
    display: none;
  }

  .hero-overlay {
    display: none;
  }

  .hero-slide {
    background: transparent;
  }

  .hero-content-wrap {
    padding-top: 14px;
  }

  .hero-content {
    max-width: 560px;
    padding: 0 10px 8px;
  }

  .hero-subtitle-top {
    margin-bottom: 10px;
  }

  .hero-subtitle-bottom {
    margin-top: 18px;
    max-width: 320px;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-description {
    max-width: 410px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 16px;
    margin-top: 12px;
    position: static;
    left: auto;
    bottom: auto;
  }

  .hero-btn {
    width: min(100%, 220px);
    min-width: min(100%, 205px);
    min-height: 42px;
    padding: 0 17px;
    border-radius: 14px;
    font-size: 12px;
  }

  .live-system-section {
    padding-top: 14px;
  }

  .tabs-section {
    padding-top: 36px;
    padding-bottom: 42px;
  }

  .system-tab {
    min-height: 190px;
    padding: 30px 18px;
  }

  .live-system-header h2 {
    font-size: 21px;
  }

  .live-system-header p {
    font-size: 12px;
  }

  .live-system-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .live-data-card {
    min-height: 250px;
    padding: 14px 10px 12px;
  }

  .live-data-card-icon {
    margin-top: 14px;
    font-size: 36px;
  }

  .live-data-card h3 {
    font-size: 28px;
  }

  .live-data-card-text {
    font-size: 15px;
  }

  .tokenomics-section {
    padding: 14px 0 18px;
  }

  .token-circle {
    width: min(100%, 260px);
  }

  .token-circle-value {
    font-size: 32px;
  }

  .token-circle-symbol {
    font-size: 39px;
  }

  .tokenomics-list li {
    min-height: 38px;
  }

  .tokenomics-list li span {
    font-size: 13px;
  }

  .tokenomics-card {
    min-height: 332px;
  }

  .tokenomics-card h3 {
    font-size: 20px;
  }

  .tokenomics-card > p {
    margin-bottom: 14px;
    font-size: 15px;
  }

  .tokenomics-card-foot {
    font-size: 15px;
  }

  .roadmap-section {
    padding: 8px 0 14px;
  }

  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .roadmap-card {
    min-height: 226px;
    border-top: 1px solid rgba(81, 151, 227, 0.22);
    padding-top: 56px;
  }

  .roadmap-card::before {
    content: none;
  }

  .roadmap-card:nth-child(1),
  .roadmap-card:nth-child(2) {
    border-top: none;
  }

  .roadmap-card h3 {
    font-size: 20px;
  }

  .roadmap-card ul li {
    font-size: 18px;
  }

  .roadmap-status {
    font-size: 14px;
  }

  .whitepaper-shell {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .whitepaper-icon {
    margin: 0 auto;
    width: 62px;
    height: 62px;
    font-size: 34px;
  }

  .whitepaper-copy h2 {
    font-size: 29px;
  }

  .whitepaper-copy {
    padding-left: 0;
  }

  .whitepaper-copy p {
    font-size: 14px;
  }

  .whitepaper-download {
    font-size: 20px;
    min-height: 52px;
  }

  .stay-shell {
    grid-template-columns: 1fr;
  }

  .stay-bnm-text,
  .stay-slogans,
  .stay-social {
    border-right: none;
    border-bottom: 1px solid rgba(81, 151, 227, 0.26);
  }

  .stay-bnm-text {
    min-height: 120px;
    -webkit-text-stroke-width: 1.5px;
  }

  .stay-slogans {
    min-height: 140px;
    align-items: center;
    text-align: center;
  }

  .stay-slogans p {
    font-size: 30px;
  }

  .stay-visual {
    height: 176px;
  }

  .stay-social {
    min-height: 138px;
    border-bottom: none;
  }

  .stay-social h3 {
    font-size: 18px;
  }

  .stay-social-icons a {
    width: 36px;
    height: 36px;
    font-size: 17px;
  }

  .stay-links-btn {
    min-width: 170px;
    min-height: 42px;
    font-size: 16px;
  }

  .site-footer {
    padding-top: 16px;
    padding-bottom: 18px;
  }

  .footer-content-modern {
    flex-direction: column;
    gap: 10px;
  }

  .core-principles-shell {
    padding: 16px 12px 12px;
  }

  .core-principles-title {
    font-size: 24px;
    margin-bottom: 10px;
  }

  .core-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .core-principle-card {
    min-height: 206px;
    border-top: 1px solid rgba(72, 150, 255, 0.2);
  }

  .core-principle-card::before {
    top: 10px;
    bottom: 10px;
  }

  .core-principle-card:nth-child(odd)::before {
    content: none;
  }

  .core-principle-card:nth-child(1),
  .core-principle-card:nth-child(2) {
    border-top: none;
  }

  .core-principle-icon {
    font-size: 48px;
  }

  .core-principle-card h3 {
    font-size: 16px;
  }

  .core-principle-modal .modal-header {
    padding: 14px 14px 12px;
  }

  .core-principle-modal .modal-title {
    font-size: 18px;
  }

  .core-principle-modal .modal-body {
    padding: 14px;
  }

  .core-principle-modal-copy p {
    font-size: 15px;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .hero-slide,
  .hero-content-wrap {
    min-height: 0;
  }

  .hero-slide-bg {
    display: none;
  }

  .hero-content-wrap {
    padding-top: 10px;
  }

  .hero-content h1 {
    font-size: 48px;
  }

  .core-principle-modal .modal-title {
    font-size: 16px;
  }

  .core-principle-modal-copy p {
    font-size: 14px;
  }

  .hero-content {
    max-width: 420px;
    padding-bottom: 6px;
  }

  .hero-kicker {
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .hero-subtitle-top {
    font-size: 22px;
  }

  .hero-subtitle-bottom {
    font-size: 18px;
  }

  .hero-description {
    font-size: 13px;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 10px;
    position: static;
    left: auto;
    bottom: auto;
  }

  .hero-btn {
    min-height: 38px;
    font-size: 10px;
  }

  .live-system-grid {
    grid-template-columns: 1fr;
  }

  .tokenomics-shell {
    padding: 16px 12px;
  }

  .token-circle {
    width: min(100%, 232px);
  }

  .tokenomics-list li {
    min-height: 34px;
    gap: 10px;
  }

  .tokenomics-list li i {
    width: 16px;
    font-size: 12px;
  }

  .tokenomics-list li span {
    font-size: 12px;
  }

  .tokenomics-card {
    min-height: 0;
    padding: 16px 12px 12px;
  }

  .tokenomics-card h3 {
    font-size: 18px;
  }

  .tokenomics-card-line-content strong {
    font-size: 15px;
  }

  .tokenomics-card-line-content span {
    font-size: 13px;
  }

  .tokenomics-card-foot {
    font-size: 13px;
  }

  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-card:nth-child(2) {
    border-top: 1px solid rgba(81, 151, 227, 0.22);
  }

  .whitepaper-copy h2 {
    font-size: 24px;
  }

  .whitepaper-copy p {
    font-size: 13px;
  }

  .whitepaper-download {
    font-size: 15px;
    min-height: 40px;
  }

  .stay-bnm-text {
    min-height: 96px;
    font-size: 58px;
  }

  .stay-visual {
    height: 146px;
  }

  .stay-links-btn {
    min-width: 146px;
    min-height: 38px;
    font-size: 14px;
  }

  .core-principles-title {
    font-size: 21px;
  }

  .core-principles-grid {
    grid-template-columns: 1fr;
  }

  .core-principle-card {
    min-height: 190px;
    border-top: 1px solid rgba(72, 150, 255, 0.2);
  }

  .core-principle-card::before {
    content: none;
  }

  .core-principle-card:first-child {
    border-top: none;
  }

  .system-tab {
    min-height: 170px;
  }
}

/* =========================================================
   BNM UNITS MERGED INTO style.css
   ========================================================= */

:root {
  --units-bg: #030408;
  --units-bg-soft: #060911;
  --units-border: rgba(255, 255, 255, 0.13);
  --units-border-red: rgba(255, 64, 64, 0.72);
  --units-text: #eef2ff;
  --units-muted: #9ea5b7;
  --units-red: #ff3c3c;
  --units-green: #1fd36c;
}

.units-page {
  margin: 0;
  color: var(--units-text);
  font-family: 'Rajdhani', Arial, sans-serif;
  background:
    radial-gradient(circle at 80% 18%, rgba(34, 56, 94, 0.26), transparent 34%),
    linear-gradient(180deg, #04060d 0%, #02040a 100%);
}

.units-wrap {
  min-height: 100vh;
}

.units-container {
  width: min(1720px, calc(100% - 52px));
  margin: 0 auto;
}

.units-header-cta {
  display: flex;
  align-items: center;
}

.units-topbar {
  position: sticky;
  top: 0;
  z-index: 25;
  backdrop-filter: blur(7px);
  background: rgba(2, 4, 10, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.units-topbar-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 18px;
}

.units-logo img {
  width: 170px;
  height: auto;
  display: block;
}

.units-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
}

.units-nav a {
  position: relative;
  color: #b6bbcb;
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 0.06em;
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.units-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -11px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
  background: var(--units-red);
  box-shadow: 0 0 10px rgba(255, 60, 60, 0.65);
}

.units-nav a:hover,
.units-nav a.is-active {
  color: #f2f5ff;
}

.units-nav a:hover::after,
.units-nav a.is-active::after {
  transform: scaleX(1);
}

.units-claim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  text-decoration: none;
  color: #f6f7fb;
  border: 1px solid rgba(255, 87, 87, 0.7);
  border-radius: 9px;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  background: rgba(10, 8, 13, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 72, 72, 0.18);
}

.units-main {
  padding-top: 18px;
  padding-bottom: 10px;
}

.units-hero {
  display: grid;
  grid-template-columns: 460px 1fr 620px;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(4, 7, 16, 0.95), rgba(1, 3, 9, 0.97));
  overflow: hidden;
}

.units-hero-copy {
  padding: 20px 24px 20px;
}

.units-kicker {
  margin: 0 0 8px;
  color: #ff5f5f;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.045em;
  font-size: 1rem;
}

.units-hero-copy h1 {
  margin: 0;
  line-height: 0.9;
  text-transform: uppercase;
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-size: clamp(3rem, 4vw, 4.2rem);
}

.units-subcopy {
  margin: 10px 0 18px;
  color: #b8c0d0;
  line-height: 1.2;
  font-size: 1.65rem;
  font-weight: 600;
}

.units-how-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 70, 70, 0.72);
  color: #e8ebf5;
  text-transform: uppercase;
  text-decoration: none;
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.1rem;
  border-radius: 8px;
  min-height: 42px;
  padding: 0 16px;
  background: rgba(12, 8, 13, 0.7);
}

.units-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 58px 14px 16px 0;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(4, 7, 14, 0.72);
}

.units-stat-box {
  min-height: 142px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.units-stat-box + .units-stat-box {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.units-stat-box span {
  text-transform: uppercase;
  color: #a3a9bb;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
}

.units-stat-box strong {
  margin-top: 12px;
  color: #ff4444;
  text-transform: uppercase;
  font-family: 'Bebas Neue', Arial, sans-serif;
  letter-spacing: 0.05em;
  font-size: 3.2rem;
  line-height: 0.9;
}

.units-stat-box small {
  margin-top: 8px;
  color: #d5d8e3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
  white-space: nowrap;
}

.units-stat-online strong {
  color: var(--units-green);
}

.units-hero-truck {
  min-height: 240px;
  background-image:
    linear-gradient(90deg, rgba(4, 7, 14, 0.85) 0%, rgba(4, 7, 14, 0.2) 30%, rgba(4, 7, 14, 0.05) 55%),
    url('assets/units-hero-truck.jpg');
  background-size: cover;
  background-position: center;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.units-controls {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: center;
}

.units-control-cell {
  min-width: 0;
}

.units-filter-group,
.units-sort {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.units-control-label {
  text-transform: uppercase;
  color: #8e95a7;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-size: 1.15rem;
}

.units-filter-btn,
.units-sort-btn,
.page-btn,
.unit-action-btn {
  border: 1px solid var(--units-border);
  border-radius: 8px;
  background: rgba(6, 9, 16, 0.92);
  color: #dce0ec;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1;
}

.units-filter-btn {
  min-width: 100px;
  min-height: 44px;
  padding: 0 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1.15;
  padding-top: 2px;
}

.units-filter-btn.is-active {
  border-color: rgba(255, 60, 60, 0.74);
  color: #ff5959;
}

.units-search {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(6, 9, 15, 0.92);
}

.units-search i {
  font-size: 1.2rem;
  color: #9ea4b4;
}

.units-search input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: #f0f3fb;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.units-search input::placeholder {
  color: #656d81;
}

.units-search-reset {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: 0.92;
}

.units-search-reset:hover,
.units-search-reset:focus {
  color: #ff5959;
  opacity: 1;
}

.units-claim-feedback {
  margin-top: 10px;
}

.units-claim-msg {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  padding: 8px 34px 8px 10px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.95rem;
  font-weight: 700;
}

.units-claim-msg-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0;
  width: 20px;
  height: 20px;
  cursor: pointer;
  opacity: 0.9;
}

.units-claim-msg-close:hover,
.units-claim-msg-close:focus {
  opacity: 1;
}

.units-claim-msg a {
  color: #eaf4ff;
  text-decoration: underline;
}

.units-claim-msg.is-success {
  border-color: rgba(31, 211, 108, 0.55);
  background: rgba(14, 45, 29, 0.5);
  color: #c6f6dd;
}

.units-claim-msg.is-error {
  border-color: rgba(255, 64, 64, 0.62);
  background: rgba(48, 18, 20, 0.55);
  color: #ffd7d7;
}

.units-claim-inline {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.units-claim-input {
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(7, 10, 17, 0.95);
}

.units-claim-input i {
  font-size: 1.15rem;
  color: #9ea4b4;
}

.units-claim-input input {
  border: 0;
  outline: 0;
  width: 100%;
  background: transparent;
  color: #f0f3fb;
  font-size: 1.05rem;
  text-transform: none;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.units-claim-input input::placeholder {
  color: #646d82;
}

.units-claim-submit {
  min-height: 46px;
  border: 1px solid rgba(255, 87, 87, 0.72);
  border-radius: 8px;
  background: rgba(23, 11, 16, 0.92);
  color: #ffe6e6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 0 18px;
}

.units-sort-btn {
  min-height: 44px;
  min-width: 154px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.units-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.unit-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(6, 9, 16, 0.95), rgba(2, 4, 8, 0.98));
  padding: 12px 12px 8px;
  overflow: hidden;
}

.unit-card-claimable {
  cursor: pointer;
}

.unit-card-claimable:focus-visible {
  outline: 2px solid rgba(255, 92, 92, 0.82);
  outline-offset: 2px;
}

.unit-card h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.unit-card-sub {
  margin: 2px 0 8px;
  color: #a3a9ba;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
}

.unit-card-media {
  height: 156px;
  border-radius: 6px;
  background-image:
    linear-gradient(180deg, rgba(7, 10, 17, 0.08), rgba(2, 3, 8, 0.56)),
    url('assets/units-card-truck.jpg');
  background-size: 100% 100%, 90% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.unit-card-loaded .unit-card-media {
  background-image:
    linear-gradient(180deg, rgba(7, 10, 17, 0.08), rgba(2, 3, 8, 0.56)),
    url('assets/units-card-truck-loaded.jpg');
  background-size: 100% 100%, 90% auto;
  background-repeat: no-repeat;
  background-position: center;
}

.unit-card-loaded::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 48px;
  height: 164px;
  border-radius: 6px;
  /* background: radial-gradient(circle at 50% 50%, rgba(255, 34, 34, 0.24), transparent 70%); */
  pointer-events: none;
}

.unit-card-shared-target {
  border-color: rgba(96, 173, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(134, 208, 255, 0.22),
    0 0 0 1px rgba(96, 173, 255, 0.28),
    0 0 20px rgba(66, 164, 255, 0.34);
}

.unit-driver {
  position: absolute;
  left: 52%;
  top: 111px;
  transform: translateX(-50%);
  margin: 0;
  color: #ffe9e9;
  text-shadow: 0 0 12px rgba(255, 64, 64, 0.8);
  font-family: 'Oswald', 'Rajdhani', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  font-size: 1.95rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 64%;

}

.unit-card-loaded .unit-driver {
  left: 62%;
}

.unit-card-foot {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.unit-status {
  margin: 0;
  color: #b9bfcd;
  text-transform: uppercase;
  font-size: 1.1rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.unit-status span {
  color: #d8dce8;
}

.unit-card-loaded .unit-status span {
  color: var(--units-green);
}

.unit-action-btn {
  min-height: 36px;
  min-width: 108px;
  padding: 0 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  cursor: pointer;
}

.unit-share-btn {
  border-color: var(--units-border-red);
  color: #ffd7d7;
}

.units-pagination {
  margin: 14px 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.page-btn {
  width: 38px;
  height: 38px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #c9cfdf;
}

.page-btn.is-active {
  color: #ff5151;
  border-color: rgba(255, 60, 60, 0.72);
}

.units-claim-modal .modal-dialog {
  max-width: 540px;
}

.units-claim-modal .modal-content {
  position: relative;
  border: 1px solid rgba(96, 173, 255, 0.82);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(6, 9, 16, 0.98), rgba(2, 4, 9, 0.99));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 22px rgba(84, 170, 255, 0.12),
    0 0 0 1px rgba(98, 174, 255, 0.3),
    0 0 18px rgba(66, 164, 255, 0.46),
    0 0 34px rgba(66, 164, 255, 0.24),
    0 24px 50px rgba(0, 0, 0, 0.62);
}

.units-claim-modal .modal-content::after {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 8px;
  border: 1px solid rgba(134, 208, 255, 0.32);
  pointer-events: none;
}

.units-claim-modal .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 16px 12px;
}

.units-claim-modal .modal-title {
  margin: 0;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.045em;
  color: #f2f4fb;
}

.units-claim-modal .btn-close {
  filter: invert(1) contrast(120%);
  opacity: 0.8;
}

.units-claim-modal .btn-close:hover,
.units-claim-modal .btn-close:focus {
  opacity: 1;
}

.units-claim-modal .modal-body {
  padding: 14px 16px 16px;
}

.units-claim-modal .units-claim-submit,
.units-claim-modal .unit-share-btn {
  border-color: rgba(96, 173, 255, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(133, 203, 255, 0.14),
    0 0 10px rgba(66, 164, 255, 0.22);
}

.units-claim-modal-slot {
  margin: 0 0 10px;
  color: #9ca4b8;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-size: 0.95rem;
  font-weight: 700;
}

.units-claim-modal-slot span {
  color: #e9edf8;
}

.units-claim-modal-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.units-guide-copy {
  display: grid;
  gap: 10px;
}

.units-guide-copy p {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.45;
  color: #f2f4fb;
}

.units-share-link-wrap {
  display: block;
}

.units-share-link-wrap span {
  display: block;
  margin-bottom: 7px;
  color: #9ca4b8;
  text-transform: uppercase;
  letter-spacing: 0.045em;
  font-size: 0.92rem;
  font-weight: 700;
}

.units-share-link-wrap input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(7, 10, 17, 0.95);
  color: #f0f3fb;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.units-share-actions {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.units-share-platforms {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.units-share-platforms .unit-action-btn {
  width: 100%;
  min-height: 42px;
}

.unit-share-icon {
  position: relative;
  padding: 0;
}

.unit-share-icon i {
  font-size: 1.15rem;
}

.unit-share-icon::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translate(-50%, 6px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(3, 7, 15, 0.96);
  color: #eaf2ff;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 5;
}

.unit-share-icon:hover::after,
.unit-share-icon:focus-visible::after {
  opacity: 1;
  transform: translate(-50%, 0);
}

.units-share-feedback {
  min-height: 20px;
  margin-top: 10px;
  color: #c7f7db;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.88rem;
  font-weight: 700;
}

.units-share-feedback.is-error {
  color: #ffd4d4;
}

.units-page .site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #03060d;
}

.units-page .footer-logo img {
  max-width: 120px;
}

@media (max-width: 1450px) {
  .units-container {
    width: min(1720px, calc(100% - 26px));
  }

  .units-hero {
    grid-template-columns: 380px 1fr 450px;
  }

  .units-nav {
    gap: 20px;
  }

  .units-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unit-driver {
    top: 114px;
    font-size: 2.05rem;
  }

  .unit-card-loaded .unit-driver {
    left: 60%;
  }
}

@media (max-width: 990px) {
  .units-header-cta {
    padding-top: 10px;
  }

  .units-topbar-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 12px 0;
    gap: 12px;
  }

  .units-logo img {
    width: 145px;
  }

  .units-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .units-claim-btn {
    min-height: 42px;
    font-size: 1rem;
  }

  .units-hero {
    grid-template-columns: 1fr;
  }

  .units-hero-copy {
    padding-bottom: 10px;
  }

  .units-stats {
    margin: 0 16px;
  }

  .units-controls {
    grid-template-columns: 1fr;
  }

  .units-claim-inline {
    grid-template-columns: 1fr;
  }

  .units-sort {
    justify-content: flex-start;
  }

  .unit-card-loaded .unit-driver {
    left: 60%;
  }
}

@media (max-width: 680px) {
  .units-claim-modal-form {
    grid-template-columns: 1fr;
  }

  .units-share-actions {
    grid-template-columns: 1fr;
  }

  .units-share-platforms {
    grid-template-columns: 1fr;
  }

  .units-claim-inline {
    grid-template-columns: 1fr;
  }

  .units-grid {
    grid-template-columns: 1fr;
  }

  .units-stats {
    grid-template-columns: 1fr;
  }

  .units-stat-box + .units-stat-box {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .unit-driver {
    top: 118px;
    font-size: 1.7rem;
    letter-spacing: 0.015em;
  }

  .unit-card-loaded .unit-driver {
    left: 61%;
  }

  .unit-card-foot {
    flex-wrap: wrap;
  }
}

@media (max-width: 480px) {
  .unit-driver {
    top: 120px;
    font-size: 1.55rem;
  }
}
