/* AnesthHub landing page */

:root {
  --background: #003f42;
  --background-deep: #002f32;
  --surface: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.14);
  --text: #f5f8f8;
  --muted: #c2d1d1;
  --accent: #9ed6cc;
  --accent-strong: #c4eee6;
  --shadow: rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--background-deep);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 20%, rgba(158, 214, 204, 0.13), transparent 32%),
    linear-gradient(145deg, var(--background) 0%, var(--background-deep) 100%);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100% - 40px));
  min-height: 100vh;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.hero {
  flex: 1;
  padding: 48px 0 64px;
  display: flex;
  flex-direction: column;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  color: var(--accent-strong);
  font-size: 1.35rem;
  font-weight: 750;
  box-shadow: 0 12px 40px var(--shadow);
}

.brand-name {
  font-size: 1.15rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hero-content {
  width: min(780px, 100%);
  margin: auto 0;
  padding: 90px 0 70px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.intro {
  max-width: 660px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 11px 15px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--accent-strong);
  font-size: 0.92rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(158, 214, 204, 0.12);
}

.contact-button {
  display: block;
  width: fit-content;
  margin-top: 24px;
  padding: 14px 20px;
  border-radius: 12px;
  background: var(--text);
  color: var(--background-deep);
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  opacity: 0.94;
}

.contact-button:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

footer {
  padding: 26px 0 34px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

footer p {
  margin: 4px 0;
}

footer a {
  text-underline-offset: 3px;
}

.copyright {
  color: rgba(194, 209, 209, 0.68);
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 28px, 1180px);
  }

  .hero {
    padding-top: 28px;
  }

  .hero-content {
    padding: 72px 0 54px;
  }

  h1 br {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
