:root {
  --bg: #1a1c22;
  --bg2: #141619;
  --white: #232530;
  --primary: #041340;
  --primary2: #3d68f0;
  --primary3: #1a3bb8;
  --accent: #EE4F03;
  --accent2: #EE4F03;
  --teal: #38bdf8;
  --amber: #f97316;
  --ink: #e8eaf2;
  --ink2: #c8ccdb;
  --muted: #8890b0;
  --muted2: #5a6080;
  --border: rgba(41, 82, 217, 0.22);
  --glass: rgba(26, 28, 34, 0.75);
  --shadow-sm: 0 2px 12px rgba(10, 12, 20, 0.3);
  --shadow-md: 0 8px 32px rgba(10, 12, 20, 0.45);
  --shadow-lg: 0 20px 60px rgba(10, 12, 20, 0.55);
  --shadow-card: 0 4px 24px rgba(10, 12, 20, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
  cursor: none;
}

.cur {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}
.cur-r {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(41, 82, 217, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}
@media (hover: none) {
  .cur,
  .cur-r {
    display: none;
  }
  body {
    cursor: auto;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 100px;
  background: rgba(20, 22, 28, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(41, 82, 217, 0.18);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 90px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  display: block;
}
.logo-text-fallback {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: none;
}
.logo-text-fallback em {
  color: var(--primary2);
  font-style: normal;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--ink);
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--accent);
}
.nav-right {
  display: flex;
  gap: 10px;
  align-items: center;
}
.btn-t {
  padding: 9px 20px;
  background: transparent;
  border: 1.5px solid rgba(41, 82, 217, 0.3);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  cursor: none;
  border-radius: 10px;
  transition: all 0.2s;
}
.btn-t:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-p {
  padding: 9px 20px;
  background:  var(--accent);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.79rem;
  font-weight: 700;
  cursor: none;
  border-radius: 10px;
  border: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.btn-p:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.5);
}
.hb {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hb span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.hb.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hb.open span:nth-child(2) {
  opacity: 0;
}
.hb.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mm {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(20, 22, 28, 0.98);
  backdrop-filter: blur(20px);
  z-index: 199;
  padding: 40px 24px;
  flex-direction: column;
}
.mm.open {
  display: flex;
}
.mm a {
  display: block;
  padding: 18px 0;
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(41, 82, 217, 0.18);
}
.mm a:hover {
  color: var(--accent);
}

/* ===================== HERO — DARK THEME ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 52px 80px;
  background: #0b0d14;
}

.hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 80% at 100% 10%, rgba(61, 104, 240, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 70% at 0% 80%,   rgba(249, 115, 22, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 60% 50%,  rgba(4, 19, 64, 0.25)    0%, transparent 60%),
    linear-gradient(160deg, #090b12 0%, #0d1020 40%, #0f0e0c 100%);
}

.hero-blob1 {
  position: absolute;
  top: -10%;
  right: 5%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(61, 104, 240, 0.28), rgba(4, 19, 64, 0.38));
  filter: blur(60px);
  animation: blobMove 8s ease-in-out infinite;
}
.hero-blob2 {
  position: absolute;
  bottom: -10%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.22), rgba(251, 146, 60, 0.28));
  filter: blur(60px);
  animation: blobMove 10s ease-in-out infinite reverse;
}
.hero-blob3 {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 104, 240, 0.16), transparent 70%);
  filter: blur(50px);
  animation: blobMove 12s ease-in-out infinite 2s;
  pointer-events: none;
}

@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-10px, 15px) scale(0.97); }
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.55;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(61, 104, 240, 0.12);
  pointer-events: none;
}
.hero-ring-1 {
  width: 500px; height: 500px;
  top: -100px; right: -100px;
  animation: ringPulse 6s ease-in-out infinite;
}
.hero-ring-2 {
  width: 700px; height: 700px;
  top: -200px; right: -200px;
  border-color: rgba(249, 115, 22, 0.08);
  animation: ringPulse 6s ease-in-out infinite 1s;
}
.hero-ring-3 {
  width: 900px; height: 900px;
  top: -300px; right: -300px;
  border-color: rgba(61, 104, 240, 0.06);
  animation: ringPulse 6s ease-in-out infinite 2s;
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.02); }
}

.hero-floater {
  position: absolute;
  pointer-events: none;
  animation: floatUp 20s linear infinite;
  font-size: 1.2rem;
  opacity: 0;
}
@keyframes floatUp {
  0%   { opacity: 0;   transform: translateY(60px)   rotate(-10deg); }
  10%  { opacity: 0.5; }
  90%  { opacity: 0.3; }
  100% { opacity: 0;   transform: translateY(-100px) rotate(10deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Hero pill */
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(61, 104, 240, 0.18), rgba(4, 19, 64, 0.28));
  border: 1px solid rgba(61, 104, 240, 0.35);
  padding: 6px 16px;
  border-radius: 100px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  color: #c8d0f0;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.7s ease both;
}
.pill-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Headings */
h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #e8eaf2;
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease 0.15s both;
}
h1 .line2 {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.line2 {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
h1 .line3 {
  color: #e8eaf2;
  display: block;
  -webkit-text-fill-color: #e8eaf2;
}

/* Sub text */
.hero-sub {
  font-size: 1rem;
  color: #a0aac8;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 32px;
  font-weight: 500;
  animation: fadeInUp 0.7s ease 0.25s both;
}

/* Feature pills */
.hero-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hfeat {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(61, 104, 240, 0.22);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #c0c8e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}
.hfeat-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
}
.hfeat-icon.blue { background: rgba(41, 82, 217, 0.25); }
.hfeat-icon.red  { background: rgba(249, 115, 22, 0.25); }
.hfeat-icon.teal { background: rgba(56, 189, 248, 0.22); }

/* CTA buttons */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s ease 0.35s both;
}
.btn-xl {
  padding: 15px 36px;
  background:  var(--accent);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: none;
  cursor: none;
  border-radius: 14px;
  transition: all 0.25s;
  box-shadow: 0 6px 24px rgba(249, 115, 22, 0.4);
}
.btn-xl:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.55);
}
.btn-out {
  padding: 15px 36px;
  background: rgba(255, 255, 255, 0.06);
  color: #e8eaf2;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  cursor: none;
  border-radius: 14px;
  transition: all 0.25s;
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}
.btn-out:hover {
  border-color: var(--primary2);
  color: var(--ink);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.1);
}
.hero-ctas a {
  text-decoration: none !important;
}

/* Trust */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.trust-logo-badge {
  display: flex;
  align-items: center;
  gap: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border-radius: 16px;
  padding: 10px 18px 10px 14px;
  box-shadow: 0 6px 24px rgba(4, 19, 64, 0.5), 0 0 0 3px rgba(61, 104, 240, 0.18);
  position: relative;
  overflow: hidden;
}
.trust-logo-badge::before {
  content: "";
  position: absolute;
  top: -20px; right: -20px;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}
.trust-logo-badge::after {
  content: "";
  position: absolute;
  bottom: -15px; left: -10px;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}
.trust-logo-img {
  width: 44px; height: 44px;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 1;
}
.trust-logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-left: 8px;
}
.trust-logo-text em {
  color: rgba(255, 255, 255, 0.55);
  font-style: normal;
}
.trust-logo-sub {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.52rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.14);
  flex-shrink: 0;
}
.trust-text {
  font-size: 0.78rem;
  color: #a0aac8;
  font-weight: 500;
  line-height: 1.5;
}
.trust-text strong {
  color: #e8eaf2;
  display: block;
}
.trust-text span {
  font-size: 0.7rem;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s ease 0.45s both;
}
.hs {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(61, 104, 240, 0.2);
  border-radius: 16px;
  padding: 16px 22px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.3);
  min-width: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.hs::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.hs:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  background: rgba(255, 255, 255, 0.09);
}
.hs:hover::before {
  transform: scaleX(1);
}
.hs-n {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}
.hs-l {
  font-size: 0.67rem;
  color: #8890b0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
  display: block;
  font-weight: 600;
}
.hs-trend {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  color: #34d399;
  font-weight: 700;
  margin-top: 2px;
  display: block;
}

/* Ticker */
.hero-ticker {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeInUp 0.7s ease 0.5s both;
}
.ticker-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6870a0;
  white-space: nowrap;
}
.ticker-track {
  overflow: hidden;
  flex: 1;
  position: relative;
  height: 22px;
}
.ticker-inner {
  display: flex;
  gap: 28px;
  animation: tickerSlide 18s linear infinite;
  white-space: nowrap;
  position: absolute;
  top: 0; left: 0;
}
@keyframes tickerSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.tick-item {
  font-size: 0.72rem;
  color: #8890b0;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tick-item .tick-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  animation: blink 1.5s ease infinite;
}
.tick-item .tick-city {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.66rem;
}

/* Right panel / Phone */
.hero-right-panel {
  position: relative;
  animation: fadeInLeft 0.8s ease 0.2s both;
}
.hero-phone {
  width: 260px; height: 440px;
  background: linear-gradient(160deg, var(--primary), #121d6b);
  border-radius: 32px;
  margin: 0 auto;
  padding: 24px 20px;
  position: relative;
  box-shadow: 0 32px 80px rgba(4, 19, 64, 0.5), 0 0 0 1px rgba(61, 104, 240, 0.15);
  overflow: hidden;
}
.hero-phone::before {
  content: "";
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.hp-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.hp-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.01em;
}
.hp-logo em { color: rgba(255, 255, 255, 0.55); font-style: normal; }
.hp-notif {
  background: var(--accent);
  width: 8px; height: 8px;
  border-radius: 50%;
}
.hp-search {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
  font-family: "Manrope", sans-serif;
}
.hp-ev {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 8px;
  border: 1px solid rgba(255, 255, 255, 0.07);
}
.hp-ev-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 6px;
}
.hp-ev-name {
  font-family: "Manrope", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.hp-ev-date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  color: var(--accent);
  font-weight: 500;
}
.hp-ev-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hp-ev-city {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.4);
}
.hp-ev-price {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  color: var(--teal);
  font-weight: 700;
}
.hp-tag {
  background: rgba(249, 115, 22, 0.18);
  border: 1px solid rgba(249, 115, 22, 0.28);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 0.55rem;
  color: var(--accent2);
}
.hp-btn {
  background: linear-gradient(135deg, var(--accent), #ea6108);
  border: none;
  border-radius: 10px;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  margin-top: 8px;
  width: 100%;
  cursor: none;
}
.hf1 {
  position: absolute;
  top: 40px; right: -20px;
  background: #1a1c2a;
  border: 1px solid rgba(61, 104, 240, 0.2);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
}
.hf1-t {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  color: #6870a0;
  margin-bottom: 4px;
}
.hf1-n {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
}
.hf2 {
  position: absolute;
  bottom: 60px; left: -30px;
  background:  var(--accent);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
  color: #fff;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite 1.5s;
}
.hf2-t {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  opacity: 0.7;
  margin-bottom: 4px;
}
.hf2-n {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
}
.hf3 {
  position: absolute;
  bottom: 180px; right: -30px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(41, 82, 217, 0.4);
  color: #fff;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite 0.8s;
  max-width: 140px;
}
.hf3-t {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  opacity: 0.75;
  margin-bottom: 3px;
}
.hf3-n {
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}
.hf4 {
  position: absolute;
  top: 160px; left: -40px;
  background: #1a1c2a;
  border: 1px solid rgba(61, 104, 240, 0.2);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
  animation: floatCard 5s ease-in-out infinite 2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hf4-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1s ease infinite;
  flex-shrink: 0;
}
.hf4-t {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.6rem;
  color: #c8d0f0;
  font-weight: 700;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* MARQUEE */
.mq {
  background: var(--primary);
  overflow: hidden;
  padding: 13px 0;
}
.mq-track {
  display: flex;
  animation: mq 28s linear infinite;
  white-space: nowrap;
}
.mq-item {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.mq-item::after {
  content: "✦";
  font-size: 0.4rem;
  color: var(--accent);
  opacity: 0.7;
}
@keyframes mq {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* EVENTS */
.ev-s {
  padding: 56px 52px 90px;
  margin-bottom: 0;
}
.ev-i {
  max-width: 1200px;
  margin: 0 auto;
}
.sec-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}
.sec-t {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.03em;
  -webkit-text-fill-color: var(--ink);
}
.sec-t em {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: var(--accent);
  background-clip: text;
  font-style: normal;
}
.sa {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.sa::after { content: "→"; }
.sa:hover { color: var(--accent); }
.ev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* CARD */
.ec {
  background: #232530;
  border-radius: 20px;
  border: 1.5px solid rgba(41, 82, 217, 0.14);
  overflow: hidden;
  cursor: none;
  transition: all 0.3s;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  position: relative;
}
.ec::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(41, 82, 217, 0.05), rgba(249, 115, 22, 0.04));
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.ec:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(10, 12, 25, 0.55);
  border-color: rgba(41, 82, 217, 0.3);
}
.ec:hover::before { opacity: 1; }
.ec-img {
  position: relative;
  flex-shrink: 0;
  height: 220px;
  background: #1a1c22;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ec-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
  padding: 0;
}
.ec:hover .ec-img img { transform: scale(1.03); }
.ec-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(35, 37, 48, 0.8), transparent);
  pointer-events: none;
  z-index: 2;
}
.ec-badge {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 3;
  background: rgba(26, 28, 34, 0.92);
  backdrop-filter: blur(8px);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  color: var(--primary2);
  border: 1px solid rgba(41, 82, 217, 0.3);
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.ec-badge.gr { color: var(--teal); border-color: rgba(56, 189, 248, 0.3); }
.ec-badge.am { color: var(--accent); border-color: rgba(249, 115, 22, 0.3); }
.ec-date {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 3;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 10px;
  text-align: center;
  line-height: 1.4;
  box-shadow: 0 4px 14px rgba(41, 82, 217, 0.45);
}
.ec-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.ec-city {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.64rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 6px;
  font-weight: 700;
}
.ec-city::before { content: "◉"; font-size: 0.48rem; }
.ec-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.3;
  flex: 1;
}
.ec-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.ec-tag {
  padding: 3px 10px;
  background: rgba(26, 28, 34, 0.8);
  border: 1px solid rgba(41, 82, 217, 0.18);
  color: var(--muted);
  font-size: 0.62rem;
  font-family: "IBM Plex Mono", monospace;
  border-radius: 100px;
  font-weight: 500;
}
.ec-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(41, 82, 217, 0.14);
}
.ec-pl {
  font-size: 0.6rem;
  color: var(--muted2);
  display: block;
  font-family: "IBM Plex Mono", monospace;
}
.ec-price {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
}
.ec-stars {
  color: var(--ink);
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  gap: 2px;
}
.ec-stars span {
  color: var(--muted2);
  font-size: 0.65rem;
  font-family: "IBM Plex Mono", monospace;
}
.ec-reg {
  padding: 8px 18px;
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(251, 146, 60, 0.18));
  border: 1.5px solid rgba(249, 115, 22, 0.28);
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 0.73rem;
  font-weight: 800;
  cursor: none;
  border-radius: 100px;
  transition: all 0.2s;
  text-decoration: none;
  
}


.ec-reg:hover {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}
.ec.featured { grid-column: span 2; }
.ec.featured .ec-img { height: 260px; }
.ec.featured .ec-title { font-size: 1.15rem; }
@media (min-width: 769px) {
  .ec.featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    flex-direction: unset;
  }
  .ec.featured .ec-img { height: 100%; }
}

/* CITIES */
.cities-s {
  padding: 80px 52px;
  background: linear-gradient(160deg, #0e1018, #131620);
  position: relative;
  overflow: hidden;
}
.cities-s::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 82, 217, 0.18), transparent 70%);
}
.cities-s::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.12), transparent 70%);
}
.cities-i {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 32px;
}
.cc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px 16px;
  cursor: none;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.cc::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.cc:hover {
  background: rgba(41, 82, 217, 0.1);
  border-color: rgba(41, 82, 217, 0.28);
  transform: translateY(-4px);
}
.cc:hover::after { transform: scaleX(1); }
.cc-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  transition: color 0.2s;
  margin-bottom: 5px;
  letter-spacing: -0.01em;
}
.cc:hover .cc-name { color: #fff; }
.cc-count {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
  color: var(--ink);
}
.cc-count b {
  background: var(--ink);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.cities-s .sa { color: rgba(232, 234, 242, 0.35); }
.cities-s .sa:hover { color: rgba(232, 234, 242, 0.85); }

/* APP */
.app-s {
  padding: 80px 52px;
  background: #141619;
  position: relative;
  overflow: hidden;
}
.app-s-bg {
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08), transparent 70%);
  pointer-events: none;
}
.app-i {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.app-lab {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.67rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.app-t {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 14px;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.app-t em {
  background: var(--accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.app-sub {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
  font-size: 0.95rem;
}
.app-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.app-btn {
  padding: 13px 26px;
  background: rgba(30, 32, 42, 0.8);
  border: 1.5px solid rgba(41, 82, 217, 0.25);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: none;
  border-radius: 12px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
.app-btn svg { width: 18px; height: 18px; }
.app-btn:hover {
  background:  var(--accent);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
}
.app-vis {
  width: 160px; height: 160px;
  background: #232530;
  border: 1px solid rgba(41, 82, 217, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
#qrG {
  width: 108px; height: 108px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

/* FOOTER */
footer {
  background: #0e1018;
  padding: 72px 52px 28px;
  border-top: 1px solid rgba(41, 82, 217, 0.14);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: "";
  position: absolute;
  top: -200px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41, 82, 217, 0.08), transparent 70%);
  pointer-events: none;
}
footer::after {
  content: "";
  position: absolute;
  bottom: -150px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06), transparent 70%);
  pointer-events: none;
}
.fg {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}
.fb p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
  margin: 14px 0 22px;
  max-width: 280px;
}
.sl { display: flex; gap: 10px; }
.slink {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(41, 82, 217, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted2);
  cursor: none;
  transition: all 0.2s;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(30, 32, 42, 0.7);
  box-shadow: var(--shadow-sm);
}
.slink:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(249, 115, 22, 0.08);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.fc h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.63rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  font-weight: 700;
}
.fl {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.fl a {
  font-size: 0.83rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.fl a:hover { color: var(--accent); }
.footer-divider {
  max-width: 1200px;
  margin: 0 auto 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41, 82, 217, 0.2), rgba(249, 115, 22, 0.15), transparent);
  position: relative;
  z-index: 1;
}
.fbot {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.72rem;
  color: var(--muted2);
  font-family: "IBM Plex Mono", monospace;
  position: relative;
  z-index: 1;
}
.fbot a { color: var(--muted2); text-decoration: none; transition: color 0.2s; }
.fbot a:hover { color: var(--accent); }
.fbl { display: flex; gap: 18px; }
.fl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.fl-logo-img {
  height: 90px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}
.fl-logo-text-fallback {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: none;
}
.fl-logo-text-fallback em {
  background: linear-gradient(135deg, var(--primary2), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}
.footer-newsletter {
  max-width: 1200px;
  margin: 0 auto 52px;
  background: linear-gradient(135deg, rgba(41, 82, 217, 0.08), rgba(249, 115, 22, 0.06));
  border: 1.5px solid rgba(41, 82, 217, 0.18);
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.fn-text h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 4px;
}
.fn-text p { font-size: 0.8rem; color: var(--muted); }
.fn-form { display: flex; gap: 8px; flex-shrink: 0; }
.fn-input {
  padding: 10px 18px;
  border: 1.5px solid rgba(41, 82, 217, 0.25);
  border-radius: 10px;
  background: rgba(26, 28, 34, 0.8);
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  color: var(--ink);
  outline: none;
  width: 220px;
  transition: border-color 0.2s;
}
.fn-input::placeholder { color: var(--muted2); }
.fn-input:focus { border-color: var(--accent); }
.fn-btn {
  padding: 10px 22px;
  background: var(--accent);
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
  white-space: nowrap;
}
.fn-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(249, 115, 22, 0.45);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  nav, .ev-s, .cities-s, .app-s, footer {
    padding-left: 32px;
    padding-right: 32px;
  }
  .hero {
    padding: 120px 32px 80px;
    background: #0b0d14;
  }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right-panel { display: none; }
  .ev-grid { grid-template-columns: repeat(2, 1fr); }
  .ec.featured {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
  }
  .ec.featured .ec-img { height: 260px; }
  .cities-grid { grid-template-columns: repeat(4, 1fr); }
  .app-i { grid-template-columns: 1fr; }
  .app-vis { display: none; }
  .fg { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 18px; height: 60px; }
  .logo-img { height: 50px; max-width: 120px; }
  .nav-links, .nav-right { display: none; }
  .hb { display: flex; }
  .mm { top: 60px; }
  h1 { font-size: 2.8rem; }
  .hero {
    padding: 100px 18px 60px;
    background: #0b0d14;
  }
  .ev-grid { grid-template-columns: 1fr; }
  .ec.featured { grid-column: span 1; }
  .ev-s { padding-left: 16px; padding-right: 16px; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .app-s { padding: 52px 16px; }
  footer { padding: 40px 16px 24px; }
  .fg { grid-template-columns: 1fr; gap: 24px; }
  .fbot { flex-direction: column; align-items: flex-start; }
  .hero-features { display: none; }
  .hero-trust { flex-wrap: wrap; }
  .hero-ticker { display: none; }
  .footer-newsletter { flex-direction: column; align-items: flex-start; }
  .fn-form { width: 100%; }
  .fn-input { flex: 1; width: auto; }
  .fl-logo-img { height: 50px; }
}
@media (max-width: 400px) {
  .logo-img { height: 26px; max-width: 100px; }
  .hero { background: #0b0d14; }
}

.ev-standalone {
  margin-top: 70px;
}
/* Disable Register button for recent events */
.ec-closed .ec-reg {
  pointer-events: none;
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  background: rgba(30, 32, 42, 0.6) !important;
  border-color: rgba(41, 82, 217, 0.15) !important;
  color: var(--muted2) !important;
}
footer .fl a.active-footer,
footer .fbl a.active-footer {
  color: var(--accent) !important;
  font-weight: 700 !important;
}

/* Pill Dropdown */
.pill-dropdown-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.pill-dropdown-trigger {
  color: var(--accent);
  font-size: 0.75rem;
  cursor: pointer;
  padding: 0 2px;
  transition: transform 0.25s ease;
  display: inline-block;
  user-select: none;
}
.pill-dropdown-wrapper:hover .pill-dropdown-trigger {
  transform: rotate(180deg);
}
.pill-dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: rgba(22, 24, 32, 0.97);
  border: 1px solid rgba(41, 82, 217, 0.3);
  border-radius: 18px;
  padding: 8px;
  min-width: 240px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 100;
}
.pill-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(22, 24, 32, 0.97);
  border-left: 1px solid rgba(41, 82, 217, 0.3);
  border-top: 1px solid rgba(41, 82, 217, 0.3);
}
.pill-dropdown-wrapper:hover .pill-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.pill-drop-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
  cursor: pointer;
}
.pill-drop-item:hover {
  background: rgba(41, 82, 217, 0.14);
  transform: translateX(3px);
}
.pdrop-icon {
  width: 36px;
  height: 36px;
  background: rgba(41, 82, 217, 0.15);
  border: 1px solid rgba(41, 82, 217, 0.22);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.pill-drop-item:hover .pdrop-icon {
  background: rgba(249, 115, 22, 0.15);
  border-color: rgba(249, 115, 22, 0.28);
}
.pdrop-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pdrop-text strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.pdrop-text em {
  font-style: normal;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  color: var(--muted2);
  letter-spacing: 0.04em;
}
.pill-drop-item:hover .pdrop-text strong {
  color: var(--accent);
}
/* ── Profile Dropdown ───────────────────────────────────── */
.profile-wrapper {
  position: relative;
}

.profile-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(41,82,217,0.28);
  border-radius: 100px;
  padding: 5px 12px 5px 6px;
  cursor: none;
  transition: all 0.2s ease;
  color: var(--ink);
}
.profile-trigger:hover {
  border-color: var(--accent);
  background: rgba(238,79,3,0.08);
}

.profile-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary2), var(--primary3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(61,104,240,0.4);
}
.profile-avatar svg {
  width: 16px;
  height: 16px;
}

.profile-chevron {
  color: var(--muted);
  display: flex;
  transition: transform 0.25s ease;
}
.profile-chevron svg {
  width: 10px;
  height: 10px;
}
.profile-wrapper.open .profile-chevron {
  transform: rotate(180deg);
}

/* Dropdown panel */
.profile-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  background: rgba(18, 20, 28, 0.97);
  border: 1px solid rgba(41,82,217,0.28);
  border-radius: 20px;
  padding: 6px;
  min-width: 220px;
  backdrop-filter: blur(24px);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 300;
}
.profile-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  right: 20px;
  width: 12px;
  height: 12px;
  background: rgba(18,20,28,0.97);
  border-left: 1px solid rgba(41,82,217,0.28);
  border-top: 1px solid rgba(41,82,217,0.28);
  transform: rotate(45deg);
}
.profile-wrapper.open .profile-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

/* Header inside dropdown */
.pdrop-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px 10px;
}
.pdrop-avatar-lg {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary2), var(--primary3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(61,104,240,0.4);
}
.pdrop-avatar-lg svg {
  width: 20px;
  height: 20px;
}
.pdrop-user-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pdrop-user-info strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pdrop-user-info span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  color: var(--muted2);
  letter-spacing: 0.05em;
}

.pdrop-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(41,82,217,0.22), transparent);
  margin: 4px 8px;
}

/* Dropdown items */
.pdrop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink2);
  text-decoration: none;
  cursor: none;
  transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
  width: 100%;
  background: transparent;
  border: none;
  text-align: left;
}
.pdrop-item:hover {
  background: rgba(41,82,217,0.12);
  color: var(--ink);
  transform: translateX(2px);
}
.pdrop-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(41,82,217,0.1);
  border: 1px solid rgba(41,82,217,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.18s, border-color 0.18s;
}
.pdrop-item-icon svg {
  width: 14px;
  height: 14px;
  color: var(--primary2);
}
.pdrop-item:hover .pdrop-item-icon {
  background: rgba(238,79,3,0.12);
  border-color: rgba(238,79,3,0.28);
}
.pdrop-item:hover .pdrop-item-icon svg {
  color: var(--accent);
}

/* Logout — red tint */
.pdrop-logout {
  color: #ff6b6b;
}
.pdrop-logout:hover {
  background: rgba(255,60,60,0.1);
  color: #ff4444;
}
.pdrop-logout .pdrop-item-icon {
  background: rgba(255,60,60,0.08);
  border-color: rgba(255,60,60,0.2);
}
.pdrop-logout .pdrop-item-icon svg {
  color: #ff6b6b;
}
.pdrop-logout:hover .pdrop-item-icon {
  background: rgba(255,60,60,0.15);
  border-color: rgba(255,60,60,0.35);
}