:root {
  --bg: #0b0f14;
  --bg-2: #0f172a;
  --surface: #121a23;
  --surface-2: #16202b;
  --text: #e6edf3;
  --muted: #9fb0c3;
  --accent: #5eead4;
  --accent-2: #60a5fa;
  --gold: #f59e0b;
  --border: #223041;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Space Grotesk", "Sora", "Segoe UI", sans-serif;
  background:
    radial-gradient(900px circle at 10% 10%, rgba(96, 165, 250, 0.15), transparent 45%),
    radial-gradient(700px circle at 80% 20%, rgba(94, 234, 212, 0.12), transparent 40%),
    linear-gradient(160deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  will-change: opacity, transform;
}

body.page-ready {
  opacity: 1;
  transform: translateY(0);
}

body.page-fade-out {
  opacity: 0;
  transform: translateY(8px);
}

a {
  color: inherit;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 8vw;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(94, 234, 212, 0.9), rgba(96, 165, 250, 0.9)),
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5), transparent 45%);
  box-shadow: 0 10px 24px rgba(94, 234, 212, 0.35);
  position: relative;
  overflow: hidden;
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  background: rgba(11, 15, 20, 0.55);
  border-radius: 8px;
}

.logo-mark::before {
  width: 20px;
  height: 6px;
  top: 12px;
  left: 10px;
}

.logo-mark::after {
  width: 26px;
  height: 6px;
  bottom: 12px;
  right: 8px;
}

.logo-text h1 {
  margin: 0;
}

.logo h1 {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}

.logo p {
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}

nav a.active {
  color: var(--text);
  text-shadow: 0 0 12px rgba(94, 234, 212, 0.6);
  animation: navGlow 1.6s ease-in-out infinite alternate;
}

nav a.active::after {
  width: 100%;
}

@keyframes navGlow {
  0% {
    text-shadow: 0 0 6px rgba(94, 234, 212, 0.4);
  }
  100% {
    text-shadow: 0 0 14px rgba(96, 165, 250, 0.8);
  }
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  transition: width 0.2s ease;
}

nav a:hover {
  color: var(--text);
}

nav a:hover::after {
  width: 100%;
}

.page {
  padding: 64px 8vw 90px;
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero h1 {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: clamp(2.6rem, 4vw, 4.3rem);
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid var(--border);
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #0b0f14;
  border: none;
}

.btn.ghost {
  background: rgba(18, 26, 35, 0.6);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.85rem;
  background: rgba(255, 255, 255, 0.03);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.profile-picture {
  width: 280px;
  height: 320px;
  object-fit: cover;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: float 7s ease-in-out infinite;
}

.hero-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94, 234, 212, 0.3), transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.section {
  margin-top: 80px;
}

.section-head h2 {
  font-family: "Unbounded", "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.section-head p {
  color: var(--muted);
  margin-top: 8px;
  max-width: 700px;
}

.grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(94, 234, 212, 0.5);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  color: var(--muted);
}

.list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.list li {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.list li::before {
  content: "•";
  color: var(--accent);
  margin-top: 2px;
}

input,
textarea,
button {
  font-family: inherit;
}

footer {
  padding: 40px 8vw;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid var(--border);
  background: rgba(11, 15, 20, 0.9);
}

.fade-up {
  animation: fadeUp 0.9s ease both;
  animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

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

  .hero-visual {
    order: -1;
  }
}

@media (max-width: 720px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .page {
    padding: 52px 6vw 70px;
  }

  nav {
    gap: 10px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}
