:root {
  --bg: #eff4f1;
  --surface: rgba(249, 252, 250, 0.8);
  --surface-strong: rgba(252, 255, 253, 0.94);
  --text: #11211d;
  --muted: #546660;
  --line: rgba(17, 33, 29, 0.1);
  --shadow: 0 24px 80px rgba(18, 46, 40, 0.12);
  --accent: #1e6b5d;
  --accent-soft: rgba(30, 107, 93, 0.12);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(82, 149, 133, 0.22), transparent 30%),
    radial-gradient(circle at bottom right, rgba(141, 168, 160, 0.18), transparent 28%),
    linear-gradient(180deg, #f4f8f6 0%, #e5eeea 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 40px 20px;
  overflow: hidden;
}

.background-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.55;
  pointer-events: none;
}

.background-orb-left {
  top: 70px;
  left: -100px;
  background: rgba(76, 140, 125, 0.24);
}

.background-orb-right {
  right: -120px;
  bottom: 40px;
  background: rgba(134, 167, 158, 0.22);
}

.card {
  position: relative;
  width: min(760px, 100%);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero,
.links-section,
.about-section,
.footer {
  position: relative;
  z-index: 1;
}

.avatar {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  border-radius: 24px;
  background: linear-gradient(135deg, #11211d 0%, #1e6b5d 100%);
  color: #f3fbf8;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

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

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 7vw, 4.7rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.4rem, 4vw, 2rem);
  letter-spacing: -0.03em;
}

.tagline {
  max-width: 36rem;
  margin-bottom: 12px;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--text);
}

.intro,
.about-text,
.info-card p,
.link-item span,
.footer p {
  color: var(--muted);
  line-height: 1.7;
}

.intro {
  max-width: 42rem;
  margin-bottom: 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 32px 0 38px;
}

.info-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
}

.info-label {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.links-section,
.about-section {
  padding-top: 8px;
}

.links-list {
  display: grid;
  gap: 12px;
}

.link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(249, 252, 250, 0.78);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.link-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.link-item:hover,
.link-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(30, 107, 93, 0.34);
  background: rgba(252, 255, 253, 0.96);
  box-shadow: 0 14px 34px rgba(23, 69, 61, 0.1);
  outline: none;
}

.arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

.about-section {
  margin-top: 34px;
}

.about-text {
  max-width: 44rem;
  margin-bottom: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 720px) {
  .card {
    padding: 28px 20px;
    border-radius: 26px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
  }
}
