:root {
  --ink: #080811;
  --ink-soft: #111120;
  --white: #f8f6ff;
  --muted: #a7a4b5;
  --electric: #715cff;
  --blue: #1e4ed8;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--ink);
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% -10%, #22205b 0, transparent 42%),
    var(--ink);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

button {
  color: inherit;
  font: inherit;
}

.site-shell {
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.ambient {
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.25;
  pointer-events: none;
  position: fixed;
}

.ambient-one {
  background: #4254ff;
  height: 280px;
  left: -120px;
  top: 20%;
  width: 280px;
}

.ambient-two {
  background: #7c28ff;
  bottom: 5%;
  height: 240px;
  right: -110px;
  width: 240px;
}

.profile-card {
  background: #090910;
  margin: 0 auto;
  max-width: 430px;
  min-height: 100svh;
  position: relative;
}

.hero {
  height: min(53svh, 520px);
  min-height: 430px;
  overflow: hidden;
  position: relative;
}

.hero img {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: 50% 28%;
  position: absolute;
  transform: scale(1.01);
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(5, 5, 12, 0.15) 0%, transparent 42%),
    linear-gradient(0deg, #090910 0%, rgba(9, 9, 16, 0.72) 22%, transparent 56%);
  inset: 0;
  position: absolute;
}

.scroll-dim {
  background: #000;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 80ms linear;
  z-index: 1;
}

.status {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(12, 12, 22, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  display: flex;
  font-size: 11px;
  font-weight: 700;
  gap: 7px;
  letter-spacing: 0.07em;
  padding: 8px 12px;
  position: absolute;
  right: 18px;
  text-transform: uppercase;
  top: 18px;
  z-index: 2;
}

.status i {
  background: #67ffb1;
  border-radius: 50%;
  box-shadow: 0 0 10px #67ffb1;
  display: block;
  height: 7px;
  width: 7px;
}

.identity {
  bottom: 30px;
  left: 24px;
  position: absolute;
  right: 24px;
  z-index: 2;
}

.eyebrow {
  color: #b9aeff;
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  margin-bottom: 8px;
}

.identity h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 16vw, 72px);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.85;
  margin: 0;
  text-shadow: 0 5px 30px rgba(0, 0, 0, 0.6);
}

.identity p {
  color: #d5d0e8;
  font-size: 13px;
  margin: 12px 0 0 3px;
}

.content {
  padding: 10px 16px 34px;
}

.feature-card {
  background: var(--ink-soft);
  border: 0;
  border-radius: 24px;
  color: inherit;
  cursor: pointer;
  display: block;
  font: inherit;
  overflow: hidden;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    transform 180ms ease;
  width: 100%;
}

.feature-card:hover {
  border-color: rgba(136, 117, 255, 0.7);
  transform: translateY(-2px);
}

.feature-card:focus-visible {
  border-color: #978aff;
  outline: 2px solid #c5bdff;
  outline-offset: 3px;
}

.feature-image {
  aspect-ratio: 1.68 / 1;
  overflow: hidden;
  position: relative;
}

.feature-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 27%;
  transition: transform 500ms ease;
  width: 100%;
}

.feature-card:hover .feature-image img {
  transform: scale(1.025);
}

.feature-overlay {
  align-items: center;
  background: linear-gradient(0deg, rgba(4, 4, 10, 0.86), transparent);
  bottom: 0;
  display: flex;
  font-size: clamp(14px, 4vw, 18px);
  gap: 8px;
  height: 34%;
  inset-inline: 0;
  justify-content: center;
  padding-top: 34px;
  position: absolute;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

footer {
  align-items: center;
  color: #777485;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 9px;
  justify-content: center;
  letter-spacing: 0.08em;
  margin-top: 27px;
  text-transform: uppercase;
}

@media (min-width: 431px) {
  .profile-card {
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.55);
  }
}

@media (max-width: 640px) {
  .profile-card {
    max-width: none;
    width: 100%;
  }

  .content {
    padding-inline: 12px;
  }

  .feature-card {
    border-radius: 22px;
    width: 100%;
  }

  footer {
    padding-inline: 16px;
  }
}

@media (max-width: 370px) {
  .hero {
    height: 55svh;
    min-height: 410px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
