/* OurCareAgent — Coming Soon
   Brand: Deep Purple #2A0F3D, Rich Purple #5D2E87, Accent #8B4FB8,
          Light #C9A3E3, Ink #1A0828, White #FFFFFF
*/

:root {
  --deep-purple: #2A0F3D;
  --rich-purple: #5D2E87;
  --accent-purple: #8B4FB8;
  --light-purple: #C9A3E3;
  --ink-black: #1A0828;
  --white: #FFFFFF;
  --muted: #6B5C75;

  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  font-family: var(--font-sans);
  color: var(--ink-black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* --- Decorative background orbs --- */
.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}

.orb-1 {
  width: 520px;
  height: 520px;
  background: var(--light-purple);
  top: -180px;
  left: -160px;
}

.orb-2 {
  width: 620px;
  height: 620px;
  background: var(--accent-purple);
  bottom: -260px;
  right: -180px;
  opacity: 0.35;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: var(--rich-purple);
  top: 40%;
  left: 55%;
  opacity: 0.18;
}

/* --- Main stage --- */
.stage {
  position: relative;
  z-index: 1;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 4rem;
  max-width: 960px;
  margin: 0 auto;
  width: 100%;
}

.logo-wrap {
  width: 100%;
  max-width: 640px;
  margin-bottom: 2.5rem;
  animation: rise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--rich-purple);
  margin: 0 0 1.25rem;
  animation: rise 0.9s 0.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.headline {
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--deep-purple);
  margin: 0 0 1.75rem;
  animation: rise 0.9s 0.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.headline-line {
  display: block;
}

.headline-line.accent {
  color: var(--rich-purple);
  font-style: italic;
}

.lede {
  max-width: 640px;
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  line-height: 1.6;
  color: var(--ink-black);
  margin: 0 auto 2.5rem;
  animation: rise 0.9s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.divider {
  width: 56px;
  height: 3px;
  background: var(--rich-purple);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  animation: rise 0.9s 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.coming-soon {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--deep-purple);
  margin: 0;
  animation: rise 0.9s 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

/* --- Footer --- */
.site-footer {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  border-top: 1px solid rgba(26, 8, 40, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 1.75rem 1.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

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

.footer-mark {
  font-weight: 900;
  color: var(--deep-purple);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rich-purple);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--ink-black);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--rich-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links .dot {
  color: rgba(26, 8, 40, 0.3);
}

.footer-meta {
  color: var(--muted);
}

/* --- Animations --- */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

/* --- Responsive tweaks --- */
@media (max-width: 640px) {
  .stage {
    padding: 4rem 1.25rem 3rem;
  }

  .logo-wrap {
    margin-bottom: 2rem;
  }

  .footer-inner {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .footer-brand {
    justify-content: center;
  }

  .orb-1 {
    width: 320px;
    height: 320px;
  }

  .orb-2 {
    width: 360px;
    height: 360px;
  }
}
