/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  height: 100%;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #0d1829;
  color: #fff;
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}

/* ═══════════════════════════════════════════
   CUSTOM CURSOR
═══════════════════════════════════════════ */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: #ffb300;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    transform 0.1s,
    width 0.3s,
    height 0.3s,
    background 0.3s;
  mix-blend-mode: screen;
}
.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(255, 179, 0, 0.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.18s cubic-bezier(0.18, 0.89, 0.32, 1.28),
    width 0.3s,
    height 0.3s;
}
.cursor.hover {
  width: 16px;
  height: 16px;
}
.cursor-ring.hover {
  width: 52px;
  height: 52px;
  border-color: rgba(255, 179, 0, 0.25);
}

/* ═══════════════════════════════════════════
   BACKGROUND — ANIMATED BLUEPRINT GRID
═══════════════════════════════════════════ */
.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(20, 100, 200, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 100, 200, 0.07) 1px, transparent 1px);
  background-size: 52px 52px;
  animation: gridShift 18s linear infinite;
  z-index: 0;
}
@keyframes gridShift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 52px 52px;
  }
}

.bg-radial {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      ellipse 75% 55% at 50% 45%,
      rgba(20, 100, 200, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 40% at 10% 90%,
      rgba(255, 179, 0, 0.06) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 30% 30% at 90% 10%,
      rgba(20, 100, 200, 0.1) 0%,
      transparent 55%
    );
  z-index: 0;
  pointer-events: none;
}

/* Floating orbs */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orbFloat linear infinite;
}
.orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(
    circle,
    rgba(20, 100, 200, 0.18),
    transparent 70%
  );
  top: -100px;
  left: -80px;
  animation-duration: 22s;
  animation-delay: 0s;
}
.orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(255, 179, 0, 0.09),
    transparent 70%
  );
  bottom: -60px;
  right: -60px;
  animation-duration: 28s;
  animation-delay: -8s;
}
.orb-3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(20, 100, 200, 0.12),
    transparent 70%
  );
  top: 50%;
  right: 15%;
  animation-duration: 18s;
  animation-delay: -4s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  33% {
    transform: translateY(-28px) scale(1.04);
  }
  66% {
    transform: translateY(16px) scale(0.97);
  }
}

/* Noise texture overlay */
.noise {
  position: fixed;
  inset: 0;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

/* ═══════════════════════════════════════════
   MAIN LAYOUT
═══════════════════════════════════════════ */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  gap: 0;
}

/* ═══════════════════════════════════════════
   LOGO & BRAND
═══════════════════════════════════════════ */
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(-20px);
}
.brand__logo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.4);
}
.brand__name {
  font-family: "Syne", sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.brand__name .blue {
  color: #1464c8;
}

/* ═══════════════════════════════════════════
   EYEBROW
═══════════════════════════════════════════ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.28);
  color: #ffb300;
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
}
.eyebrow .pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffb300;
  animation: pulseDot 2.2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.4);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.7);
    box-shadow: 0 0 0 5px rgba(255, 179, 0, 0);
  }
}

/* ═══════════════════════════════════════════
   HEADLINE
═══════════════════════════════════════════ */
.headline-wrap {
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(22px);
}
.headline {
  font-family: "Syne", sans-serif;
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.035em;
  margin-bottom: 0;
}
.headline .gold {
  color: #ffb300;
}
.headline .dim {
  color: rgba(255, 255, 255, 0.35);
}

/* ═══════════════════════════════════════════
   BOTTOM TAGLINE + SOCIAL
═══════════════════════════════════════════ */
.bottom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 560px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  opacity: 0;
  transform: translateY(12px);
  gap: 20px;
  flex-wrap: wrap;
}
.tagline-badge {
  font-family: "Syne", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 179, 0, 0.7);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.2s;
  text-decoration: none;
}
.social-link:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   DECORATIVE — CORNER ACCENT LINES
═══════════════════════════════════════════ */
.corner {
  position: fixed;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 2;
  opacity: 0.3;
}
.corner--tl {
  top: 28px;
  left: 28px;
  border-top: 1.5px solid rgba(255, 179, 0, 0.6);
  border-left: 1.5px solid rgba(255, 179, 0, 0.6);
}
.corner--tr {
  top: 28px;
  right: 28px;
  border-top: 1.5px solid rgba(255, 179, 0, 0.6);
  border-right: 1.5px solid rgba(255, 179, 0, 0.6);
}
.corner--bl {
  bottom: 28px;
  left: 28px;
  border-bottom: 1.5px solid rgba(255, 179, 0, 0.6);
  border-left: 1.5px solid rgba(255, 179, 0, 0.6);
}
.corner--br {
  bottom: 28px;
  right: 28px;
  border-bottom: 1.5px solid rgba(255, 179, 0, 0.6);
  border-right: 1.5px solid rgba(255, 179, 0, 0.6);
}

/* Scanning line */
.scan-line {
  position: fixed;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(20, 100, 200, 0.25) 30%,
    rgba(255, 179, 0, 0.15) 50%,
    rgba(20, 100, 200, 0.25) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
  animation: scanMove 10s linear infinite;
  opacity: 0.6;
}
@keyframes scanMove {
  0% {
    top: -2px;
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  95% {
    opacity: 0.6;
  }
  100% {
    top: 100vh;
    opacity: 0;
  }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 600px) {
  .page {
    padding: 40px 20px;
  }
  .brand {
    margin-bottom: 36px;
  }
  .corner {
    width: 36px;
    height: 36px;
  }
  .corner--tl,
  .corner--bl {
    left: 16px;
  }
  .corner--tr,
  .corner--br {
    right: 16px;
  }
  .corner--tl,
  .corner--tr {
    top: 16px;
  }
  .corner--bl,
  .corner--br {
    bottom: 16px;
  }
  body {
    cursor: auto;
  }
  .cursor,
  .cursor-ring {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   SELECTION
═══════════════════════════════════════════ */
::selection {
  background: rgba(255, 179, 0, 0.25);
  color: #fff;
}
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #0d1829;
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 3px;
}
