:root {
  --bg: #0b0f19;
  --panel: rgba(255, 255, 255, 0.06);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --border: rgba(255, 255, 255, 0.12);
  --accent: #7c3aed;
  --accent-2: #22c55e;

  --radius: 14px;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.5);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(124, 58, 237, 0.30), transparent 60%),
    radial-gradient(900px 600px at 90% 10%, rgba(34, 197, 94, 0.18), transparent 55%),
    radial-gradient(700px 600px at 50% 110%, rgba(59, 130, 246, 0.16), transparent 60%),
    var(--bg);
  background-repeat: no-repeat;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.55;
  color: var(--text);
  background: transparent;
}

a {
  color: inherit;
}

.container {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  background: #111827;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.skip-link:focus {
  left: 12px;
  z-index: 10;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 25, 0.66);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.brand-title {
  text-decoration: none;
  font-weight: 650;
  letter-spacing: 0.2px;
}

.brand-subtitle {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 2px;
  max-width: 52ch;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-link {
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: var(--muted);
}

.nav-link:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: 38px 0 10px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  gap: 26px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-title {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
}

.hero-lede {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(124, 58, 237, 0.35);
  background: rgba(124, 58, 237, 0.18);
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.button:hover {
  background: rgba(124, 58, 237, 0.24);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.10);
}

.contact-icons{
  display:flex;
  gap:24px;
  align-items:center;
  margin-top:12px;
}

.icon-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:80px;
  height:80px;
  border-radius:999px;
  text-decoration:none;
}

.icon-link i{
  font-size:60px;
}

.icon-svg{
  width:60px;
  height:60px;
  display:block;
}

.icon-link{ color: rgba(255, 255, 255, 0.92); }
.icon-link:hover{ opacity: .75; }
.icon-svg{ fill: currentColor; }

.contact-card {
  flex: 1 1 360px;
  min-width: 120px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.contact-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 4px 0;
}

.contact-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.contact-link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  overflow-wrap: anywhere;
}

.contact-link:hover {
  text-decoration: underline;
  text-decoration-color: rgba(34, 197, 94, 0.75);
  text-underline-offset: 3px;
}

.hero-photo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.avatar {
  width: min(240px, 100%);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  background: rgba(255, 255, 255, 0.04);
}

.content {
  padding: 22px 0 60px;
}

.content h1, .content h2, .content h3 {
  line-height: 1.2;
}

.content h2 {
  margin-top: 28px;
}

.content p, .content li {
  color: var(--muted);
}

.content strong {
  color: var(--text);
}

.content a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-decoration-color: rgba(124, 58, 237, 0.55);
  text-underline-offset: 3px;
}

.content a:hover {
  text-decoration-color: rgba(34, 197, 94, 0.75);
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-link {
  text-decoration: none;
  color: var(--muted);
}

.footer-link:hover {
  color: var(--text);
}

@media (max-width: 850px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .brand-subtitle {
    display: none;
  }

  .nav {
    gap: 6px;
  }

  .nav-link {
    padding: 8px 8px;
  }
}
