:root {
  --rpdev-bg: #02050b;
  --rpdev-bg-2: #071223;
  --rpdev-blue: #3f86ff;
  --rpdev-blue-2: #86bbff;
  --rpdev-blue-3: #235fd0;
  --rpdev-text: #eef5ff;
  --rpdev-muted: rgba(226, 236, 250, 0.78);
  --rpdev-border: rgba(134, 178, 255, 0.18);
  --rpdev-shadow: 0 30px 80px rgba(0, 0, 0, 0.52);
  --rpdev-radius: 28px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.page-coming-soon {
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-height: 100svh;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  overscroll-behavior: none;
}

body {
  font-family: var(--font);
  color: var(--rpdev-text);
  background:
    radial-gradient(900px 560px at 20% 18%, rgba(63, 134, 255, 0.08), transparent 58%),
    radial-gradient(700px 440px at 82% 22%, rgba(63, 134, 255, 0.06), transparent 55%),
    linear-gradient(180deg, #010208 0%, #02050b 42%, #071223 100%);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--rpdev-blue-2);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

a:hover {
  color: #ffffff;
}

#interactive-bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  pointer-events: none;
}

.interactive-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  width: 360px;
  height: 360px;
  margin-left: -180px;
  margin-top: -180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(134, 187, 255, 0.14) 0%, rgba(134, 187, 255, 0.06) 32%, rgba(134, 187, 255, 0) 72%);
  filter: blur(22px);
  opacity: 0.7;
  z-index: 1;
  will-change: transform;
  pointer-events: none;
}

.coming-soon-main {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  min-height: 100svh;
  height: 100svh;
  padding: clamp(10px, 2.5vw, 20px);
  overflow: hidden;
  isolation: isolate;
}

.hero-rpdev,
.hero-inner {
  width: 100%;
  max-width: min(720px, calc(100vw - 20px));
  max-height: calc(100svh - 20px);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.glass-panel {
  position: relative;
  width: 100%;
  max-height: calc(100svh - 24px);
  margin-inline: auto;
  padding: clamp(22px, 3.5vw, 46px);
  border-radius: var(--rpdev-radius);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    radial-gradient(120% 120% at 50% 0%, rgba(83, 133, 234, 0.12), transparent 55%),
    linear-gradient(160deg, rgba(8, 14, 28, 0.88), rgba(6, 11, 23, 0.78));
  border: 1px solid rgba(134, 178, 255, 0.18);
  box-shadow: var(--rpdev-shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.glass-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(134, 178, 255, 0.04);
}

.coming-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(0.35rem, 1.5vw, 0.6rem);
}

.coming-logo {
  width: min(260px, 78vw);
  height: auto;
  max-height: clamp(52px, 11vw, 76px);
  object-fit: contain;
  object-position: center;
}

.hero-title {
  margin: 0;
  font-size: clamp(1.85rem, 4.5vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 800;
  background: linear-gradient(135deg, #f8fbff 0%, #e3eeff 42%, #9ec4ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.coming-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: clamp(0.75rem, 2vw, 1.35rem);
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(134, 178, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
  color: var(--rpdev-muted);
  font-weight: 600;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  letter-spacing: 0.02em;
}

.coming-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #88bdff, #3f86ff);
  box-shadow: 0 0 10px rgba(63, 134, 255, 0.55);
  animation: statusPulse 3.5s ease-in-out infinite;
}

.hero-desc {
  width: min(520px, 100%);
  margin: clamp(0.75rem, 1.8vw, 1.1rem) auto 0;
  color: rgba(226, 236, 250, 0.72);
  font-size: clamp(0.9rem, 1vw + 0.72rem, 1.05rem);
  line-height: 1.7;
  letter-spacing: -0.01em;
  font-weight: 400;
}

.coming-contact-box {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  min-width: min(100%, 340px);
  margin-top: clamp(0.75rem, 2vw, 1.35rem);
  padding: clamp(0.7rem, 2vw, 1rem) clamp(0.85rem, 2.5vw, 1.2rem);
  border-radius: 18px;
  border: 1px solid rgba(134, 178, 255, 0.16);
  background: rgba(2, 8, 18, 0.36);
}

.coming-contact-label {
  color: rgba(223, 234, 252, 0.48);
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
}

.coming-contact-link {
  color: #ffffff;
  font-size: clamp(0.95rem, 1vw + 0.78rem, 1.12rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  word-break: break-all;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.coming-contact-link:hover,
.coming-contact-link:focus-visible {
  color: var(--rpdev-blue);
  text-shadow: 0 0 18px rgba(63, 134, 255, 0.42);
}

.hero-line {
  opacity: 0;
  transform: translateY(20px);
}

.launch-countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: clamp(0.65rem, 1.8vw, 1rem);
  padding: 0.55rem 0.9rem;
  border-radius: 14px;
  border: 1px solid rgba(134, 178, 255, 0.16);
  background: rgba(63, 134, 255, 0.06);
}

.launch-countdown-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(223, 234, 252, 0.5);
}

.launch-countdown-value {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.06em;
  color: var(--rpdev-blue-2);
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(63, 134, 255, 0.55); }
  50% { box-shadow: 0 0 14px rgba(134, 187, 255, 0.75); }
}

@media (max-width: 760px) {
  .coming-soon-main {
    padding: 10px;
  }

  .glass-panel {
    padding: 20px 16px;
    border-radius: 22px;
  }

  .cursor-glow {
    width: 280px;
    height: 280px;
    margin-left: -140px;
    margin-top: -140px;
  }

  .coming-contact-box {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 420px) {
  .coming-logo {
    width: min(220px, 84vw);
    max-height: 46px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 7.5vw, 1.85rem);
  }

  .hero-desc {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .coming-status {
    margin-top: 0.65rem;
    padding: 0.45rem 0.8rem;
  }

  .coming-contact-box {
    margin-top: 0.65rem;
    padding: 0.65rem 0.75rem;
  }
}

@media (max-height: 700px) {
  .coming-logo {
    width: min(210px, 72vw);
    max-height: 44px;
  }

  .hero-title {
    font-size: clamp(1.45rem, 5vw, 2.4rem);
  }

  .coming-status {
    margin-top: 0.55rem;
  }

  .hero-desc {
    margin-top: 0.5rem;
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .coming-contact-box {
    margin-top: 0.55rem;
    padding: 0.55rem 0.7rem;
  }

  .glass-panel {
    padding: 16px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-line {
    opacity: 1;
    transform: none;
  }
}



/* WordPress header/page templates - mirrors original RP DEV header.php/admin.css */
body:not(.page-coming-soon) {
  overflow-x: hidden;
  overflow-y: auto;
  min-height: 100%;
  height: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid rgba(134, 178, 255, 0.12);
  background: rgba(2, 5, 11, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  max-width: 1120px;
  margin: 0 auto;
  width: min(1120px, calc(100vw - 32px));
}

.brand,
.brand:visited {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.brand-logo {
  display: block;
  height: 32px !important;
  width: auto !important;
  max-width: 120px !important;
  object-fit: contain;
}

.nav,
.nav-list,
.nav-list-fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  align-items: center;
  justify-content: flex-end;
}

.nav ul,
.nav li,
.nav-list,
.nav-list li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.nav-link,
.nav-link:visited,
.nav-list a,
.nav-list a:visited {
  color: rgba(226, 236, 250, 0.75);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list .current_page_item > a {
  color: #fff;
}

.rpdev-content-main,
.rpdev-page-section {
  min-height: calc(100vh - 62px);
}

.rpdev-page-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.rpdev-page-card {
  width: min(900px, calc(100vw - 32px));
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
}

.rpdev-page-title {
  margin: 0 0 24px;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.rpdev-page-content {
  color: rgba(226, 236, 250, 0.82);
  font-size: 1rem;
  line-height: 1.7;
}

.rpdev-page-content a {
  color: #86b2ff;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 760px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.75rem 0;
  }

  .brand-logo {
    height: 30px !important;
    max-width: 118px !important;
  }

  .nav,
  .nav-list,
  .nav-list-fallback {
    justify-content: flex-start;
  }
}
