:root {
  color-scheme: light;
  --black: #050505;
  --ink: #141414;
  --muted: #6b6f72;
  --paper: #f6f3ee;
  --white: #ffffff;
  --line: rgba(20, 20, 20, 0.13);
  --teal: #0f6f78;
  --red: #bd4f43;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), rgba(246, 243, 238, 0.22)),
    url("assets/healthtech-office-background.png") center / cover fixed,
    var(--paper);
}

a {
  color: inherit;
}

.landing {
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(0, 0, 0, 0.04);
}

.topbar {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  background: #000000;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.logo {
  width: clamp(150px, 15vw, 218px);
  height: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.18));
}

.profile-card {
  width: min(calc(100% - 38px), 540px);
  align-self: center;
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 26px;
  margin: 42px 0;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 17, 22, 0.76), rgba(10, 17, 22, 0.6)),
    rgba(10, 17, 22, 0.66);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.identity {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.company {
  margin: 0;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.95rem, 4.6vw, 3.25rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0;
}

.role {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 2.2vw, 1.24rem);
  font-weight: 720;
  line-height: 1.35;
}

.location {
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.98rem;
  font-weight: 820;
}

.contact {
  width: min(100%, 430px);
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.98rem;
  font-weight: 820;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.button.primary {
  border-color: #0a66c2;
  background: #0a66c2;
  color: var(--white);
}

.button.primary:hover,
.button.primary:focus-visible {
  border-color: #004182;
  background: #004182;
}

.linkedin-icon {
  width: 30px;
  height: 30px;
  display: block;
  fill: currentColor;
}

.mail-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  display: block;
  fill: currentColor;
}

@media (max-width: 560px) {
  .topbar {
    min-height: 76px;
    padding: 14px 18px;
  }

  .logo {
    width: 142px;
  }

  .profile-card {
    width: min(calc(100% - 24px), 620px);
    gap: 20px;
    margin: 24px 0;
    padding: 24px 18px;
  }

}
