:root {
  --bg: #0f1115;
  --bg-accent: #171a21;
  --card: rgba(255, 255, 255, 0.06);
  --card-strong: rgba(255, 255, 255, 0.08);
  --card-hover: rgba(255, 255, 255, 0.1);
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f7fb;
  --muted: #b9c0cc;
  --soft: #98a1af;
  --accent: #ff6a2a;
  --accent-soft: rgba(255, 106, 42, 0.14);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.22);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 760px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(255, 106, 42, 0.16), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.05), transparent 20%),
    linear-gradient(180deg, #0c0e12 0%, #101319 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

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

.page {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 48px 0 44px;
}

.hero {
  text-align: center;
  margin-bottom: 34px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-image {
  width: 132px;
  height: 132px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.36),
    0 0 0 10px rgba(255, 255, 255, 0.02);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.profile-image:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 20px 46px rgba(0, 0, 0, 0.4),
    0 0 0 12px rgba(255, 255, 255, 0.025);
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.intro {
  max-width: 660px;
  margin: 0 auto;
}

.intro p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease),
    color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.socials a:hover,
.socials a:focus-visible {
  color: var(--text);
  border-color: rgba(255, 106, 42, 0.45);
  background: rgba(255, 106, 42, 0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.socials a:focus-visible,
.btn:focus-visible,
.link-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.featured {
  margin-bottom: 34px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  background:
    radial-gradient(circle at top right, rgba(255, 106, 42, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.featured-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.05), transparent 42%);
  pointer-events: none;
}

.featured-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 42, 0.32);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.42);
}

.featured-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.featured-copy {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(180deg, #ff7a42 0%, #ff5d1a 100%);
  box-shadow: 0 14px 30px rgba(255, 106, 42, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 34px rgba(255, 106, 42, 0.34);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 106, 42, 0.35);
}

.links-wrap {
  margin-top: 8px;
}

.section-header {
  text-align: center;
  margin-bottom: 18px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.links-section {
  display: grid;
  gap: 14px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-2px);
  background: var(--card-hover);
  border-color: rgba(255, 106, 42, 0.3);
  box-shadow: var(--shadow);
}

.link-card-content {
  min-width: 0;
}

.link-card h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.link-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
  font-size: 1.1rem;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease);
}

.link-card:hover .arrow,
.link-card:focus-visible .arrow {
  transform: translate(2px, -2px);
  background: var(--accent-soft);
}

.footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 8px;
}

.footer p {
  margin: 0;
  color: var(--soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.9s var(--ease) forwards;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.22s;
}

.delay-3 {
  animation-delay: 0.32s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 768px) {
  .page {
    padding: 72px 0 56px;
  }

  .hero {
    margin-bottom: 42px;
  }

  .profile-image {
    width: 152px;
    height: 152px;
    margin-bottom: 24px;
  }

  .featured-card {
    padding: 34px 30px;
  }

  .link-card {
    padding: 22px 24px;
  }

  .link-card h3 {
    font-size: 1.1rem;
  }

  .link-card p,
  .featured-copy {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }
}