/* ===========================
   CSS CUSTOM PROPERTIES
=========================== */
:root {
  --bg: #080808;
  --orange: #FF6B2B;
  --orange-light: #FF8C57;
  --orange-dark: #E05518;
  --orange-glow: rgba(255, 107, 43, 0.18);
  --orange-glow-strong: rgba(255, 107, 43, 0.32);

  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-muted: #444444;

  --border: rgba(255, 255, 255, 0.07);
  --border-orange: rgba(255, 107, 43, 0.28);
  --card-bg: rgba(255, 255, 255, 0.035);
  --card-bg-hover: rgba(255, 107, 43, 0.07);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --ease: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
  /* full viewport, no scroll */
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  position: relative;
}

::selection {
  background-color: var(--orange);
  color: #fff;
}

/* ===========================
   NOISE OVERLAY
=========================== */
.noise-overlay {
  position: fixed;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ===========================
   CENTER RADIAL GLOW
=========================== */
.center-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center,
      rgba(255, 107, 43, 0.09) 0%,
      rgba(255, 107, 43, 0.04) 35%,
      transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: glowPulse 6s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }

  to {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 0.7;
  }
}

/* ===========================
   HEADER
=========================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.logo-name {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  line-height: 1;
}

.logo-tagline {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.8px;
}

/* ===========================
   HERO — FULL VIEWPORT
=========================== */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  overflow: hidden;
}

/* ===========================
   CENTER CONTENT
=========================== */
.hero-center {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  padding: 0 60px 0 24px;
  /* extra right padding to optically center within surrounded icons */
  gap: 20px;
  animation: fadeUp 0.8s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Eyebrow */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: var(--orange);
  background: rgba(255, 107, 43, 0.08);
  border: 1px solid rgba(255, 107, 43, 0.22);
  border-radius: 20px;
  padding: 6px 16px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.4);
  }
}

/* Main title */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.95;
  letter-spacing: -3px;
  font-weight: 900;
  gap: 4px;
}

.title-line {
  font-size: clamp(60px, 7.5vw, 96px);
  color: var(--text-primary);
}

.title-accent {
  font-size: clamp(60px, 7.5vw, 96px);
  font-style: italic;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 55%, #FFB347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 15px;
  /* Fix for italic text getting clipped by background-clip */
}

/* Launching badge */
.launching-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 18px;
}

.launch-icon {
  color: var(--orange);
  display: flex;
  align-items: center;
}

/* Sub text */
.hero-sub {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 420px;
}

/* Notify CTA */
.notify-row {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.btn-notify {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 10px;
  padding: 13px 28px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 0 32px rgba(255, 107, 43, 0.4), 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn-notify:hover {
  background: linear-gradient(135deg, var(--orange-light) 0%, var(--orange) 100%);
  box-shadow: 0 0 48px rgba(255, 107, 43, 0.55), 0 4px 24px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  gap: 14px;
}

/* ===========================
   FLOATING ICON CARDS
=========================== */
.icon-card {
  position: absolute;
  z-index: 5;
  transform: rotate(var(--r, 0deg));
  animation: floatCard 5s ease-in-out infinite alternate;
}

/* stagger animation per card */
.ic-1 {
  animation-delay: 0.0s;
  animation-duration: 5.2s;
}

.ic-2 {
  animation-delay: 0.3s;
  animation-duration: 6.0s;
}

.ic-3 {
  animation-delay: 0.7s;
  animation-duration: 5.5s;
}

.ic-4 {
  animation-delay: 1.1s;
  animation-duration: 6.4s;
}

.ic-5 {
  animation-delay: 0.5s;
  animation-duration: 5.8s;
}

.ic-6 {
  animation-delay: 0.2s;
  animation-duration: 6.2s;
}

.ic-7 {
  animation-delay: 0.8s;
  animation-duration: 5.3s;
}

.ic-8 {
  animation-delay: 1.4s;
  animation-duration: 6.6s;
}

.ic-9 {
  animation-delay: 0.6s;
  animation-duration: 5.7s;
}

.ic-10 {
  animation-delay: 1.0s;
  animation-duration: 6.1s;
}

.ic-11 {
  animation-delay: 0.4s;
  animation-duration: 5.9s;
}

.ic-12 {
  animation-delay: 0.9s;
  animation-duration: 5.4s;
}

.ic-13 {
  animation-delay: 1.3s;
  animation-duration: 6.3s;
}

.ic-14 {
  animation-delay: 0.1s;
  animation-duration: 5.6s;
}

@keyframes floatCard {
  0% {
    transform: rotate(var(--r, 0deg)) translateY(0px);
  }

  50% {
    transform: rotate(var(--r, 0deg)) translateY(-8px);
  }

  100% {
    transform: rotate(var(--r, 0deg)) translateY(4px);
  }
}

.icon-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 88px;
  backdrop-filter: blur(12px);
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.icon-card-inner:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-orange);
  box-shadow: 0 0 24px rgba(255, 107, 43, 0.12), 0 8px 24px rgba(0, 0, 0, 0.3);
}

.icon-card-inner svg {
  width: 26px;
  height: 26px;
  color: var(--orange);
  stroke: var(--orange);
}

.icon-card-inner span {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* Smaller variant */
.icon-card-sm {
  min-width: 76px;
  padding: 11px 13px;
}

.icon-card-sm svg {
  width: 22px;
  height: 22px;
}

.icon-card-sm span {
  font-size: 9px;
}

/* ===========================
   CANVAS PARTICLES (via JS)
=========================== */
canvas.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  /* Scale down the icons on tablet */
  .icon-card-inner {
    transform: scale(0.85);
  }

  .hero-title {
    letter-spacing: -2px;
  }
}

@media (max-width: 600px) {

  /* Hide the cards that overlap the center text on mobile */
  .ic-3, .ic-4, .ic-5, .ic-8, .ic-9, .ic-10, .ic-11, .ic-12 {
    display: none !important;
  }

  /* Explicitly position the remaining 6 cards in the corners */
  .ic-1  { top: 6% !important;  left: 2% !important; }
  .ic-6  { top: 8% !important;  right: 2% !important; }
  .ic-2  { top: 18% !important; left: -2% !important; }
  .ic-7  { top: 22% !important; right: -2% !important; }
  .ic-13 { top: auto !important; bottom: 14% !important; left: 2% !important; }
  .ic-14 { top: auto !important; bottom: 10% !important; right: 2% !important; }

  /* Scale down the icons on mobile */
  .icon-card-inner {
    transform: scale(0.65);
  }

  html,
  body {
    overflow: hidden; /* Prevent scrolling from icons going off-screen */
  }

  .hero {
    height: 100vh;
    padding: 0;
  }

  .hero-center {
    padding: 0 24px; /* Reset padding to center the text properly on mobile */
  }

  .hero-title {
    letter-spacing: -1.5px;
  }
}