:root {
  color-scheme: dark;
  --bw-primary: #00594c;
  --bw-secondary: #40c1ac;
  --bw-tertiary: #004c97;
  --bw-bg: var(--bw-primary);
  --bw-text: #ffffff;
  --bw-media-radius: 28px;
  --bw-border: rgba(255, 255, 255, 0.1);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--bw-bg);
  color: var(--bw-text);
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  animation: earth-stars-background 60s infinite;
  transition: background-color 0.9s ease;
}

@keyframes earth-stars-background {
  0%,
  30% {
    background-color: var(--bw-primary);
  }

  33.333%,
  63.333% {
    background-color: var(--bw-secondary);
  }

  66.666%,
  96.666% {
    background-color: var(--bw-tertiary);
  }

  100% {
    background-color: var(--bw-primary);
  }
}

a {
  color: inherit;
}

img,
svg,
iframe {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

h1,
h2,
p {
  margin: 0;
}

h1,
h2,
strong,
.career-profile__headline,
.career-explore__button,
.career-explore__option,
.career-live__button,
.reach-out-tagline,
.footer-profile__intro h2,
.social-btn {
  font-weight: 700;
}

.app-shell {
  flex: 1;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 0;
}

.career-home {
  padding-top: 38px;
}

.career-profile,
.career-live__card,
.footer-profile {
  background: var(--bw-primary);
  border: 1px solid var(--bw-border);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.career-profile {
  display: grid;
  gap: 20px;
  margin-bottom: 18px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 36px;
  text-align: center;
}

.career-profile__identity {
  display: grid;
  justify-items: center;
  gap: 16px;
}

.career-profile__photo {
  object-fit: cover;
  object-position: center 34%;
  width: clamp(92px, 13vw, 132px);
  height: clamp(92px, 13vw, 132px);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.career-profile h1 {
  max-width: 100%;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: 0;
  white-space: nowrap;
}

.career-profile__headline {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.35;
}

.career-profile span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  font-weight: 700;
}

.career-explore {
  position: relative;
  z-index: 6;
  display: grid;
  justify-items: center;
  margin: 0 0 18px;
}

.career-explore__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  color: #fff;
  background: var(--bw-primary);
  border: 1px solid var(--bw-border);
  border-radius: 999px;
  cursor: pointer;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  list-style: none;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.career-explore__button:hover,
.career-explore__button:focus-visible,
.career-explore[open] > .career-explore__button {
  background: color-mix(in srgb, var(--bw-primary) 88%, var(--bw-secondary));
  border-color: rgba(255, 255, 255, 0.2);
  outline: none;
  transform: translateY(-1px);
}

.career-explore__button::-webkit-details-marker {
  display: none;
}

.career-explore__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(420px, 100%);
  padding: 22px;
  background: var(--bw-primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  transform: translateX(-50%);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.career-explore__identity {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 18px;
  text-align: center;
}

.career-explore__photo {
  object-fit: cover;
  object-position: center 34%;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.career-explore__identity h2 {
  font-size: 24px;
  line-height: 1;
}

.career-explore__identity p {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.career-explore__options {
  display: grid;
  gap: 10px;
}

.career-explore__option {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.1;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.career-explore__option:hover,
.career-explore__option:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.28);
  outline: none;
  transform: translateY(-1px);
}

.career-explore__icon {
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
}

.career-explore__icon svg {
  width: 18px;
  height: 18px;
}

.career-explore__option[href*="tiktok"] svg,
.career-explore__option[href*="x.com"] svg,
.career-explore__option[href*="kick.com"] svg,
.social-btn[aria-label="TikTok"] svg,
.social-btn[aria-label="X"] svg,
.social-btn[aria-label="Kick"] svg,
.social-btn[aria-label="Snapchat"] svg,
.social-btn[aria-label="Email"] svg {
  fill: currentColor;
  stroke: none;
}

.career-live {
  margin: 0 0 18px;
}

.career-live__card {
  display: grid;
  gap: 14px;
  padding: clamp(16px, 2.6vw, 24px);
  border-radius: 36px;
  color: #fff;
  overflow: hidden;
}

.career-live__preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #031c18;
  border: 0;
  border-radius: var(--bw-media-radius);
  overflow: hidden;
}

.career-live__button {
  display: inline-flex;
  justify-self: center;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.career-live__button:hover,
.career-live__button:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.32);
  outline: none;
  transform: translateY(-1px);
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 34px;
  width: min(1100px, 92vw);
  margin: 0 auto;
  padding: 54px 0 58px;
}

.footer-contact {
  position: relative;
  width: 100%;
  max-width: 1100px;
  padding-top: 58px;
}

.reach-out-tagline {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 2;
  padding: 0;
  background: transparent;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.2;
  transform: translateX(-50%);
  white-space: nowrap;
}

.footer-profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 1100px;
  padding: clamp(54px, 6vw, 74px) clamp(42px, 5vw, 64px) clamp(44px, 5vw, 62px);
  border-radius: 36px;
  text-align: center;
}

.footer-profile__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-profile__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-profile__photo {
  object-fit: cover;
  object-position: center 34%;
  width: clamp(140px, 15vw, 190px);
  height: clamp(140px, 15vw, 190px);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.28);
}

.footer-profile__intro h2 {
  margin-top: 30px;
  font-size: clamp(54px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.footer-profile__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
  margin-top: 42px;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(12px, 2vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(56px, 6vw, 74px);
  height: clamp(56px, 6vw, 74px);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s, border-color 0.2s;
}

.social-btn:hover,
.social-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.social-btn svg {
  width: clamp(25px, 2.8vw, 34px);
  height: clamp(25px, 2.8vw, 34px);
}

.footer-email {
  color: #fff;
  text-decoration: none;
}

.footer-email {
  opacity: 0.94;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 400;
  line-height: 1.1;
  transition: opacity 0.2s;
}

.footer-email:hover,
.footer-email:focus-visible {
  opacity: 1;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.site-footer__legal {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  opacity: 1;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 400;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 720px) {
  :root {
    --bw-media-radius: 24px;
  }

  .app-shell,
  .site-footer {
    width: min(100vw - 28px, 620px);
  }

  .career-home {
    padding-top: 18px;
  }

  .career-profile,
  .career-live__card,
  .footer-profile {
    border-radius: 30px;
  }

  .career-profile h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .career-explore__panel {
    width: min(420px, calc(100vw - 28px));
  }

  .career-live__card {
    padding: 18px;
  }

  .career-live__preview {
    border-radius: 24px;
  }

  .site-footer {
    gap: 22px;
    padding: 48px 0 42px;
  }

  .footer-contact {
    padding-top: 52px;
  }

  .reach-out-tagline {
    font-size: clamp(24px, 7.5vw, 34px);
  }

  .footer-profile {
    padding: 44px 24px 38px;
    border-radius: 30px;
  }

  .footer-profile__photo {
    width: clamp(118px, 34vw, 148px);
    height: clamp(118px, 34vw, 148px);
  }

  .footer-profile__intro h2 {
    margin-top: 26px;
    font-size: clamp(42px, 13vw, 58px);
  }

  .footer-profile__actions {
    gap: 24px;
    margin-top: 34px;
    padding-top: 26px;
    border-top-width: 2px;
  }

  .social-links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .social-btn {
    width: 52px;
    height: 52px;
    border-width: 2px;
  }

  .social-btn svg {
    width: 24px;
    height: 24px;
  }

  .footer-email {
    max-width: 100%;
    font-size: clamp(18px, 5.1vw, 22px);
    overflow-wrap: anywhere;
  }

  .site-footer__legal {
    font-size: clamp(19px, 5vw, 24px);
  }
}
