:root {
  --creed-navy: #062f5d;
  --creed-navy-deep: #031e3d;
  --creed-teal: #129493;
  --creed-gold: #d8a126;
  --ink: #11273d;
  --muted: #53687d;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --border: rgba(6, 47, 93, 0.1);
  --shadow: 0 26px 70px rgba(4, 42, 79, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #f7fbfd;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 18%, rgba(18, 148, 147, 0.07), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(216, 161, 38, 0.08), transparent 26%),
    linear-gradient(135deg, #fbfdfe 0%, #f1f7fb 50%, #fbfdfe 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.55), transparent 55%);
  z-index: -4;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.7rem 1rem;
  color: #fff;
  background: var(--creed-navy);
  border-radius: 0.5rem;
  transform: translateY(-180%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

#ambient-canvas,
.ambient-orb {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#ambient-canvas {
  z-index: -3;
  opacity: 0.42;
}

.ambient-orb {
  z-index: -2;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(56px);
  opacity: 0.09;
}

.ambient-orb-one {
  top: auto;
  right: -14rem;
  bottom: -16rem;
  left: auto;
  background: var(--creed-teal);
  animation: drift-one 22s ease-in-out infinite alternate;
}

.ambient-orb-two {
  top: -15rem;
  right: auto;
  bottom: auto;
  left: -14rem;
  background: var(--creed-gold);
  animation: drift-two 24s ease-in-out infinite alternate;
}

.hero,
.site-footer {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: calc(100vh - 76px);
  padding: 2rem 0 1rem;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: -10% -8%;
  pointer-events: none;
}

.hero::before {
  z-index: 0;
  background:
    radial-gradient(circle at 22% 22%, rgba(18, 148, 147, 0.12), transparent 20%),
    radial-gradient(circle at 78% 20%, rgba(216, 161, 38, 0.12), transparent 20%),
    radial-gradient(circle at 50% 58%, rgba(255, 255, 255, 0.42), transparent 34%);
  filter: blur(42px);
  opacity: 0.9;
  animation: glow-drift 18s ease-in-out infinite alternate;
}

.hero::after {
  z-index: 0;
  background:
    linear-gradient(108deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.16) 45%, rgba(255, 255, 255, 0) 56%),
    linear-gradient(120deg, rgba(255, 255, 255, 0) 46%, rgba(18, 148, 147, 0.05) 54%, rgba(255, 255, 255, 0) 63%),
    linear-gradient(136deg, rgba(255, 255, 255, 0) 56%, rgba(216, 161, 38, 0.05) 63%, rgba(255, 255, 255, 0) 71%);
  opacity: 0.48;
  transform: translateX(-3%) translateY(0);
  animation: light-rays 24s ease-in-out infinite alternate;
}

.coming-soon-card {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  color: var(--creed-navy);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(4, 42, 79, 0.06);
  backdrop-filter: blur(10px);
}

.logo-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: clamp(1.5rem, 4vw, 2.5rem) auto clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1rem, 2vw, 1.5rem);
  min-height: clamp(280px, 40vw, 520px);
  background: linear-gradient(180deg, var(--surface-strong), var(--surface));
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 2rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.logo-stage::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18) 68%, transparent 100%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.12));
}

.logo-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vw, 680px);
  height: min(70vw, 680px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(18, 148, 147, 0.1) 0%, rgba(216, 161, 38, 0.08) 38%, rgba(255, 255, 255, 0) 70%);
  transform: translate(-50%, -50%);
  filter: blur(16px);
}

.creed-logo {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(6, 47, 93, 0.08));
  animation: logo-float 8s ease-in-out infinite;
}

.display-title {
  max-width: 860px;
  margin: 0 auto 0.65rem;
  color: var(--creed-navy-deep);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.lead-copy {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.65;
  letter-spacing: 0.01em;
}

.site-footer {
  color: var(--muted);
  font-size: 0.8rem;
}

.reveal-item {
  opacity: 0;
  transform: translateY(20px);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes drift-one {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-3rem, -1.5rem, 0) scale(1.05); }
}

@keyframes drift-two {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2.5rem, 2.5rem, 0) scale(1.04); }
}

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

@keyframes glow-drift {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(1.5rem, -1rem, 0) scale(1.03); }
}

@keyframes light-rays {
  0% { transform: translateX(-4%) translateY(0) scale(1); opacity: 0.34; }
  50% { opacity: 0.5; }
  100% { transform: translateX(4%) translateY(-1%) scale(1.02); opacity: 0.42; }
}

@media (max-width: 991.98px) {
  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .logo-stage {
    min-height: clamp(230px, 48vw, 420px);
  }

  .creed-logo {
    width: min(100%, 920px);
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding-top: 1.75rem;
  }

  .coming-soon-card {
    padding: 1rem 0.35rem 1.5rem;
  }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
  }

  .logo-stage {
    padding: 0.85rem;
    min-height: 185px;
    border-radius: 1.35rem;
  }

  .display-title {
    font-size: clamp(1.85rem, 8vw, 2.3rem);
  }

  .lead-copy {
    font-size: 0.98rem;
  }
}

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

  #ambient-canvas {
    display: none;
  }

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