/* ============================================================
   BOTOX CHICAGO — Hero Site
   Standalone styles. No dependency on parent /styles.css.
   Font: system-ui stack (no Google Fonts).
   ============================================================ */

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Design tokens ──────────────────────────────────────────── */
:root {
  --color-bg:         #f0f0ee;
  --color-pill:       #EDEDED;
  --color-text:       #111827;
  --color-text-mid:   #374151;
  --color-text-soft:  #9CA3AF;
  --color-blue:       #3B82F6;
  --color-blue-dark:  #2563EB;
  --color-blue-light: #60A5FA;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  min-height: 100dvh;
  min-height: 100vh;
}

/* ── Hero wrapper (full-bleed) ───────────────────────────────── */
.hero-wrapper {
  position: relative;
  min-height: 100dvh;
  min-height: 100vh;
  overflow: hidden;
  background: var(--color-bg);
}

/* ── Background video ───────────────────────────────────────── */
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Foreground layer ────────────────────────────────────────── */
.foreground {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  min-height: 100vh;
}

/* ── Navbar (centered, two-pill) ─────────────────────────────── */
.topnav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 12px);
  padding: clamp(16px, 2vw, 24px) clamp(20px, 3vw, 32px);
  flex-shrink: 0;
}

/* Left circular logo pill */
.logo-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 3.5vw, 44px);
  height: clamp(40px, 3.5vw, 44px);
  border-radius: 9999px;
  background: var(--color-pill);
  flex-shrink: 0;
}

/* Right nav links pill */
.links-pill {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 40px);
  background: var(--color-pill);
  border-radius: 12px;
  padding: clamp(8px, 0.85vw, 12px) clamp(16px, 2vw, 32px);
}

.links-pill a {
  text-decoration: none;
  font-size: clamp(12px, 1.1vw, 14px);
  font-weight: 500;
  color: var(--color-text-mid);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.links-pill a:hover {
  color: var(--color-text);
}

/* ── Hero content (bottom-left aligned) ──────────────────────── */
.hero-content {
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(40px, 5vw, 80px);
  padding-left: clamp(24px, 5.5vw, 112px);
  padding-right: clamp(24px, 5.5vw, 112px);
}

.hero-inner {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Badge link ──────────────────────────────────────────────── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.2s ease;
  align-self: flex-start;
}

.hero-badge:hover {
  color: var(--color-blue-dark);
}

.badge-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.hero-badge:hover .badge-arrow {
  transform: translateX(2px);
}

/* ── Heading ─────────────────────────────────────────────────── */
.hero-heading {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* ── Subtext ─────────────────────────────────────────────────── */
.hero-subtext {
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-soft);
  line-height: 1.5;
}

/* ── Detail line ─────────────────────────────────────────────── */
.hero-detail {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--color-text-soft);
  line-height: 1.5;
  letter-spacing: 0.01em;
}

/* ── CTA button ──────────────────────────────────────────────── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-blue);
  border: 1px solid var(--color-blue-light);
  border-radius: 9999px;
  padding: 10px 20px;
  text-decoration: none;
  align-self: flex-start;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.hero-cta:hover {
  background: var(--color-blue);
  color: #ffffff;
  border-color: var(--color-blue);
}

.cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.hero-cta:hover .cta-arrow {
  transform: translateX(2px);
}

/* ── Entry animation delays ──────────────────────────────────── */
.anim-d0 { animation-delay: 0s;    }
.anim-d1 { animation-delay: 0.1s;  }
.anim-d2 { animation-delay: 0.2s;  }
.anim-d3 { animation-delay: 0.3s;  }
.anim-d4 { animation-delay: 0.4s;  }

@media (prefers-reduced-motion: no-preference) {
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0);    }
  }

  .anim-fade-up {
    animation: fadeUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
  }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 480px) {
  .links-pill {
    gap: 12px;
    padding: 8px 14px;
  }
}
