:root {
  --inex-blue: #4080f0;
  --inex-blue-dark: #2f6cde;
  --inex-blue-deep: #2458c7;
  --inex-gray: #b0b0b0;
  --inex-gray-dark: #8d8d8d;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --background: #ffffff;
  --background-tint: #f7f9fc;
  --orbit-blue: rgba(64, 128, 240, 0.28);
  --orbit-gray: rgba(176, 176, 176, 0.32);
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--background);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse 70% 55% at 50% 28%, rgba(64, 128, 240, 0.07), transparent 62%),
    radial-gradient(ellipse 50% 40% at 80% 90%, rgba(64, 128, 240, 0.035), transparent 70%),
    var(--background);
}

/* Decorative layer */
.page-decor {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.decor-glow {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 128, 240, 0.12) 0%, rgba(64, 128, 240, 0.04) 42%, transparent 70%);
  animation: glow-pulse-offset 7s ease-in-out infinite;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(64, 128, 240, 0.12);
}

.decor-circle-1 {
  width: 180px;
  height: 180px;
  top: 12%;
  right: -48px;
  background: rgba(64, 128, 240, 0.04);
  animation: float-soft 12s ease-in-out infinite;
}

.decor-circle-2 {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: -28px;
  border-color: rgba(176, 176, 176, 0.22);
  background: rgba(176, 176, 176, 0.05);
  animation: float-soft 15s ease-in-out infinite reverse;
}

.decor-line {
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(64, 128, 240, 0.18), transparent);
}

.decor-line-left {
  top: 22%;
  left: 6%;
  transform: rotate(-32deg);
}

.decor-line-right {
  bottom: 18%;
  right: 7%;
  transform: rotate(-32deg);
  background: linear-gradient(90deg, transparent, rgba(176, 176, 176, 0.28), transparent);
}

.decor-arc {
  position: absolute;
  top: 58%;
  left: 8%;
  width: 90px;
  height: 90px;
  border: 1px solid rgba(64, 128, 240, 0.1);
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  transform: rotate(25deg);
}

.hero {
  padding: 3.5rem 0 1.5rem;
}

.hero-content {
  position: relative;
}

/* Logo + orbits */
.logo-stage {
  position: relative;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  animation: fade-up 1.05s ease-out both;
}

.logo-halo {
  position: absolute;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(64, 128, 240, 0.16) 0%, rgba(64, 128, 240, 0.05) 48%, transparent 72%);
  animation: glow-pulse 6.5s ease-in-out infinite;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.orbit-primary {
  width: 230px;
  height: 96px;
  border: 1px solid var(--orbit-blue);
  animation: orbit-spin 22s linear infinite;
}

.orbit-secondary {
  width: 210px;
  height: 84px;
  border: 1px solid var(--orbit-gray);
  animation: orbit-spin-reverse 26s linear infinite;
}

.inex-logo {
  position: relative;
  z-index: 1;
  width: 180px;
  height: auto;
  max-width: min(180px, 46vw);
  display: block;
}

.company-name {
  font-size: clamp(1.12rem, 2.2vw, 1.45rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
  animation: fade-up 1s ease-out 0.18s both;
}

.company-inex {
  display: inline-block;
  color: var(--inex-blue);
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-right: 0.4rem;
}

.company-rest {
  display: inline-block;
  color: var(--text-dark);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.coming-soon-heading {
  --coming-soon-tracking: 0.18em;
  display: inline-block;
  margin: 0;
  color: var(--inex-blue);
  font-weight: 800;
  font-size: clamp(2rem, 6.4vw, 4.15rem);
  letter-spacing: var(--coming-soon-tracking);
  margin-right: calc(var(--coming-soon-tracking) * -1);
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  animation: fade-up 1s ease-out 0.38s both;
}

.tagline {
  color: var(--text-dark);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  animation: fade-up 1s ease-out 0.52s both;
}

.supporting-text {
  max-width: 34rem;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  font-weight: 400;
  animation: fade-up 1s ease-out 0.68s both;
}

.cta-wrap {
  min-height: 5.25rem;
  animation: fade-up 1s ease-out 0.84s both;
}

.btn-inex {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--inex-blue);
  --bs-btn-border-color: var(--inex-blue);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--inex-blue-dark);
  --bs-btn-hover-border-color: var(--inex-blue-dark);
  --bs-btn-focus-shadow-rgb: 64, 128, 240;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--inex-blue-deep);
  --bs-btn-active-border-color: var(--inex-blue-deep);
  padding: 0.7rem 1.7rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 18px rgba(64, 128, 240, 0.18);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-inex:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(64, 128, 240, 0.24);
}

.btn-inex:focus-visible {
  outline: 2px solid var(--inex-blue);
  outline-offset: 3px;
}

.stay-tuned-message {
  margin: 0.9rem auto 0;
  max-width: 28rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.stay-tuned-message.is-visible {
  animation: fade-up 0.55s ease-out both;
}

.site-footer {
  padding: 1rem 0 1.5rem;
  color: var(--inex-gray-dark);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  animation: fade-up 1s ease-out 1s both;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes orbit-spin {
  from {
    transform: rotate(-32deg);
  }
  to {
    transform: rotate(328deg);
  }
}

@keyframes orbit-spin-reverse {
  from {
    transform: rotate(-32deg);
  }
  to {
    transform: rotate(-392deg);
  }
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.07);
  }
}

@keyframes glow-pulse-offset {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.05);
  }
}

@keyframes float-soft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 1199.98px) {
  .logo-stage {
    width: 220px;
    height: 220px;
  }

  .inex-logo {
    width: 160px;
  }

  .orbit-primary {
    width: 214px;
    height: 90px;
  }

  .orbit-secondary {
    width: 194px;
    height: 78px;
  }
}

@media (max-width: 767.98px) {
  .hero {
    padding: 3rem 0 1.25rem;
  }

  .logo-stage {
    width: 200px;
    height: 200px;
    margin-bottom: 0.15rem;
  }

  .inex-logo {
    width: 140px;
  }

  .orbit-primary {
    width: 196px;
    height: 82px;
  }

  .orbit-secondary {
    width: 176px;
    height: 70px;
  }

  .coming-soon-heading {
    --coming-soon-tracking: 0.12em;
  }

  .company-inex {
    letter-spacing: 0.12em;
  }

  .decor-circle-1,
  .decor-line-left,
  .decor-arc {
    opacity: 0.55;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 2.35rem 0 1rem;
  }

  .hero .container {
    padding-left: 1.35rem;
    padding-right: 1.35rem;
  }

  .coming-soon-heading {
    --coming-soon-tracking: 0.08em;
    font-size: clamp(1.65rem, 8vw, 2.1rem);
  }
}

@media (max-width: 479.98px) {
  .hero {
    padding: 2.25rem 0 1rem;
  }

  .logo-stage {
    width: 176px;
    height: 176px;
    margin-bottom: 0.35rem;
  }

  .inex-logo {
    width: 126px;
    max-width: 42vw;
  }

  .orbit-primary {
    width: 172px;
    height: 72px;
  }

  .orbit-secondary {
    width: 156px;
    height: 62px;
  }

  .coming-soon-heading {
    --coming-soon-tracking: 0.08em;
    font-size: clamp(1.7rem, 8.4vw, 2.15rem);
  }

  .company-name {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
  }

  .company-inex {
    margin-right: 0;
  }

  .supporting-text {
    padding: 0 0.25rem;
  }

  .decor-circle-1,
  .decor-circle-2 {
    width: 88px;
    height: 88px;
  }

  .decor-line {
    width: 72px;
  }

  .site-footer {
    font-size: 0.72rem;
    padding: 0.75rem 0.75rem 1.25rem;
  }
}

@media (max-height: 700px) and (min-width: 768px) {
  .hero {
    padding: 2rem 0 0.75rem;
  }

  .logo-stage {
    width: 196px;
    height: 196px;
    margin-bottom: 0;
  }

  .inex-logo {
    width: 140px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-decor *,
  .logo-stage,
  .logo-halo,
  .orbit,
  .company-name,
  .coming-soon-heading,
  .tagline,
  .supporting-text,
  .cta-wrap,
  .site-footer,
  .stay-tuned-message,
  .btn-inex {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .orbit-primary,
  .orbit-secondary {
    transform: rotate(-32deg) !important;
  }

  .decor-glow {
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 767.98px) {
  .decor-circle-1 {
    right: -64px;
  }

  .decor-circle-2 {
    left: -40px;
  }
}
