:root {
  --bg-deep: #040814;
  --bg-mid: #071536;
  --blue-core: #1a4dff;
  --blue-bright: #3d7eff;
  --blue-glow: #7eb6ff;
  --blue-chrome: #a9c8ff;
  --red-cape: #e10600;
  --red-hot: #ff2a1f;
  --white: #f4f8ff;
  --muted: #9db0d4;
  --glass: rgba(10, 28, 72, 0.55);
  --line: rgba(126, 182, 255, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-tech: "Orbitron", sans-serif;
  --font-body: "Rajdhani", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(26, 77, 255, 0.35), transparent 60%),
    radial-gradient(900px 600px at 10% 20%, rgba(225, 6, 0, 0.18), transparent 55%),
    radial-gradient(800px 500px at 50% 100%, rgba(61, 126, 255, 0.2), transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-mid) 45%, #050d22 100%);
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

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

#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.arc-field {
  position: absolute;
  inset: 0;
}

.glow-arc {
  position: absolute;
  border: 2px solid transparent;
  border-top-color: rgba(126, 182, 255, 0.55);
  border-right-color: rgba(61, 126, 255, 0.25);
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(61, 126, 255, 0.55));
  animation: arcSpin 18s linear infinite;
}

.glow-arc.a1 {
  width: 52vw;
  height: 52vw;
  top: -8%;
  right: -8%;
  animation-duration: 22s;
}

.glow-arc.a2 {
  width: 38vw;
  height: 38vw;
  top: 4%;
  right: 2%;
  opacity: 0.7;
  animation-direction: reverse;
  animation-duration: 16s;
}

.glow-arc.a3 {
  width: 70vw;
  height: 70vw;
  bottom: -30%;
  left: -20%;
  border-top-color: rgba(225, 6, 0, 0.35);
  animation-duration: 28s;
}

.glow-arc.a4 {
  width: 24vw;
  height: 24vw;
  top: 35%;
  left: 8%;
  opacity: 0.45;
  animation-duration: 12s;
  animation-direction: reverse;
}

.energy-beam {
  position: absolute;
  top: -20%;
  left: 55%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(126, 182, 255, 0.75), transparent);
  transform: rotate(18deg);
  filter: blur(1px);
  animation: beamPulse 4.5s ease-in-out infinite;
}

.vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 35%, rgba(2, 6, 18, 0.72) 100%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 3vw, 2.5rem);
  backdrop-filter: blur(16px);
  background: rgba(4, 8, 20, 0.72);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(126, 182, 255, 0.45), 0 0 24px rgba(26, 77, 255, 0.55);
  animation: pulseGlow 3.2s ease-in-out infinite;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.08em;
}

.brand-text small {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  color: var(--blue-glow);
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  gap: 1.4rem;
}

.nav a {
  font-family: var(--font-tech);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

.nav a:hover {
  color: var(--white);
  text-shadow: 0 0 16px rgba(126, 182, 255, 0.8);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-link {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(26, 77, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.icon-link img {
  width: 16px;
  height: 16px;
}

.icon-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(61, 126, 255, 0.45);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--white);
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-tech);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn img {
  width: 18px;
  height: 18px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary,
.btn-buy {
  background: linear-gradient(135deg, var(--red-cape), #ff4a2e 45%, var(--blue-core));
  box-shadow: 0 10px 30px rgba(225, 6, 0, 0.35), 0 0 24px rgba(26, 77, 255, 0.35);
  color: var(--white);
}

.btn-secondary {
  background: linear-gradient(135deg, rgba(26, 77, 255, 0.9), rgba(61, 126, 255, 0.75));
  border-color: rgba(126, 182, 255, 0.4);
  box-shadow: 0 10px 28px rgba(26, 77, 255, 0.35);
}

.btn-ghost {
  background: rgba(7, 21, 54, 0.7);
  border-color: var(--line);
}

.hero {
  min-height: calc(100vh - 78px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2.5rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.hero-kicker {
  margin: 0 0 0.8rem;
  font-family: var(--font-tech);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  color: var(--blue-glow);
}

.hero-title {
  margin: 0;
  line-height: 0.82;
  display: flex;
  flex-direction: column;
}

.title-arc,
.title-man {
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 14vw, 9.5rem);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #ffffff 10%, #8eb8ff 45%, #1a4dff 78%, #7eb6ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(61, 126, 255, 0.25);
  filter: drop-shadow(0 8px 0 rgba(8, 20, 60, 0.55));
  transform: skewX(-6deg);
  animation: titleShimmer 5s ease-in-out infinite;
}

.title-man {
  margin-top: -0.08em;
  background: linear-gradient(180deg, #fff 8%, #ff6a55 40%, #e10600 72%, #ffb0a4 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-symbol {
  margin: 1rem 0 0.4rem;
  font-family: var(--font-tech);
  font-size: 0.9rem;
  letter-spacing: 0.24em;
  color: var(--muted);
}

.hero-symbol span {
  color: var(--blue-chrome);
}

.hero-tagline {
  margin: 0.35rem 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  letter-spacing: 0.06em;
  color: var(--white);
}

.hero-lead {
  max-width: 38rem;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.4rem;
}

.ca-box {
  max-width: 560px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.ca-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--blue-glow);
}

.ca-label img {
  width: 18px;
  height: 18px;
}

.ca-value {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
}

.ca-value code {
  font-family: var(--font-tech);
  font-size: clamp(0.68rem, 1.8vw, 0.82rem);
  word-break: break-all;
  color: var(--white);
}

.copy-chip {
  flex-shrink: 0;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(26, 77, 255, 0.25);
  font-family: var(--font-tech);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
}

.hero-visual {
  display: grid;
  place-items: center;
}

.logo-orbit {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(126, 182, 255, 0.35);
  box-shadow: inset 0 0 30px rgba(26, 77, 255, 0.2), 0 0 30px rgba(26, 77, 255, 0.15);
  animation: orbitPulse 6s ease-in-out infinite;
}

.orbit-ring.r1 {
  inset: 6%;
}

.orbit-ring.r2 {
  inset: 14%;
  animation-delay: 0.6s;
  border-color: rgba(225, 6, 0, 0.28);
}

.orbit-ring.r3 {
  inset: 22%;
  animation-delay: 1.2s;
}

.hero-logo {
  width: 72%;
  border-radius: 28px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 35px rgba(61, 126, 255, 0.45));
  animation: floatLogo 5.5s ease-in-out infinite;
}

.logo-flare {
  position: absolute;
  width: 55%;
  height: 55%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 182, 255, 0.45), transparent 70%);
  filter: blur(18px);
  animation: flareBreath 3.8s ease-in-out infinite;
  z-index: 1;
}

.hero-marquee {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(26, 77, 255, 0.18), rgba(225, 6, 0, 0.12), rgba(26, 77, 255, 0.18));
}

.marquee-track {
  display: flex;
  gap: 2.5rem;
  width: max-content;
  padding: 0.85rem 0;
  animation: marquee 28s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.18em;
  color: rgba(244, 248, 255, 0.82);
}

.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) clamp(1rem, 3vw, 2.5rem);
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.eyebrow {
  margin: 0 0 0.6rem;
  font-family: var(--font-tech);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  color: var(--blue-glow);
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.2rem);
  letter-spacing: 0.05em;
  line-height: 0.95;
  transform: skewX(-4deg);
}

.section-head h2 span {
  background: linear-gradient(90deg, var(--blue-glow), #fff, var(--red-hot));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  max-width: 42rem;
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.about-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}

.about-card {
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(26, 77, 255, 0.18), rgba(4, 8, 20, 0.55)),
    var(--glass);
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, border-color 0.35s ease;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(126, 182, 255, 0.55);
}

.about-card h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.about-card p {
  margin: 0;
  color: var(--muted);
}

.stat-row {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.stat {
  padding: 1.1rem 1rem;
  text-align: center;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 21, 54, 0.65);
}

.stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--blue-glow);
}

.stat span {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.05em;
}

.buy-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.buy-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.35rem 1.4rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(26, 77, 255, 0.16), rgba(4, 8, 20, 0.5));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.buy-step:hover {
  transform: translateX(6px);
  box-shadow: 0 0 30px rgba(26, 77, 255, 0.2);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 0.08em;
  color: var(--red-hot);
  text-shadow: 0 0 18px rgba(225, 6, 0, 0.55);
  line-height: 1;
}

.buy-step h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}

.buy-step p {
  margin: 0;
  color: var(--muted);
}

.platform-row {
  margin-top: 1.6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}

.platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  padding: 1.2rem 0.8rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(7, 21, 54, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.platform img {
  width: 42px;
  height: 42px;
}

.platform span {
  font-family: var(--font-tech);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.platform:hover {
  transform: translateY(-5px);
  border-color: rgba(126, 182, 255, 0.6);
  box-shadow: 0 12px 30px rgba(26, 77, 255, 0.25);
}

.chart-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 40px rgba(26, 77, 255, 0.18);
  background: #0a1228;
  min-height: 560px;
}

.chart-frame iframe {
  width: 100%;
  height: 620px;
  border: 0;
  display: block;
}

.chart-actions {
  margin-top: 1.2rem;
  display: flex;
  justify-content: center;
}

.banner-wrap {
  width: 100%;
  aspect-ratio: 3 / 1;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 50px rgba(26, 77, 255, 0.25);
  position: relative;
}

.banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 8, 20, 0.35));
  box-shadow: inset 0 0 40px rgba(61, 126, 255, 0.2);
}

.join-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: bannerDrift 12s ease-in-out infinite alternate;
}

.join-panel {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
  padding: 1.5rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(26, 77, 255, 0.2), rgba(225, 6, 0, 0.12), rgba(4, 8, 20, 0.7));
}

.join-copy h3 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: 0.05em;
}

.join-copy p {
  margin: 0;
  color: var(--muted);
}

.join-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
}

.site-footer {
  padding: 2.5rem clamp(1rem, 3vw, 2.5rem) 2rem;
  border-top: 1px solid var(--line);
  background: rgba(2, 6, 18, 0.75);
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  gap: 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(61, 126, 255, 0.4);
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.08em;
}

.footer-brand p {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.footer-links a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(26, 77, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-links a img {
  width: 20px;
  height: 20px;
}

.footer-links a:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(61, 126, 255, 0.4);
}

.disclaimer {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 70ch;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes arcSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes beamPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.85; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 2px rgba(126, 182, 255, 0.45), 0 0 18px rgba(26, 77, 255, 0.4); }
  50% { box-shadow: 0 0 0 2px rgba(225, 6, 0, 0.45), 0 0 28px rgba(225, 6, 0, 0.45); }
}

@keyframes titleShimmer {
  0%, 100% { filter: drop-shadow(0 8px 0 rgba(8, 20, 60, 0.55)) brightness(1); }
  50% { filter: drop-shadow(0 8px 0 rgba(8, 20, 60, 0.55)) brightness(1.15); }
}

@keyframes floatLogo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes orbitPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes flareBreath {
  0%, 100% { transform: scale(0.9); opacity: 0.55; }
  50% { transform: scale(1.15); opacity: 0.95; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes bannerDrift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.06) translateX(-1.5%); }
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 74px;
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(4, 8, 20, 0.95);
    backdrop-filter: blur(16px);
  }

  .nav.open {
    display: flex;
  }

  .nav-toggle {
    display: grid;
  }

  .btn-buy {
    display: none;
  }

  .hero-grid,
  .about-layout,
  .join-panel,
  .stat-row,
  .platform-row {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .logo-orbit {
    width: min(100%, 380px);
  }

  .chart-frame,
  .chart-frame iframe {
    min-height: 420px;
    height: 420px;
  }
}

@media (max-width: 640px) {
  .brand-text strong {
    font-size: 1.35rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .title-arc,
  .title-man {
    font-size: clamp(4.2rem, 20vw, 5.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
