:root {
  --bg: #0a1118;
  --surface: rgba(12, 20, 30, 0.92);
  --ink: #eef4ff;
  --muted: #b6c3d1;
  --accent: #ff6b3d;
  --accent-2: #65f3c4;
  --accent-3: #7dd3fc;
  --shadow: 0 20px 60px rgba(4, 8, 12, 0.55);
  --glass: rgba(255, 255, 255, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(101, 243, 196, 0.28), transparent 55%),
    radial-gradient(circle at 70% 10%, rgba(125, 211, 252, 0.2), transparent 50%),
    radial-gradient(circle at 80% 85%, rgba(255, 107, 61, 0.2), transparent 55%),
    #0a1118;
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  color-scheme: dark;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-orb,
.aurora-band,
.ice-shard,
.lava-glow {
  position: absolute;
  z-index: -1;
}

.bg-orb {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
}

.bg-orb--one {
  background: rgba(101, 243, 196, 0.5);
  top: -160px;
  left: -120px;
}

.bg-orb--two {
  background: rgba(125, 211, 252, 0.45);
  top: 35vh;
  right: -170px;
}

.bg-orb--three {
  background: rgba(255, 107, 61, 0.4);
  bottom: -220px;
  left: 18vw;
}

.aurora-band {
  width: 120vw;
  height: 180px;
  left: -10vw;
  filter: blur(40px);
  opacity: 0.6;
  transform: rotate(-6deg);
}

.aurora-band--one {
  top: 120px;
  background: linear-gradient(90deg, transparent 0%, rgba(101, 243, 196, 0.35) 45%, rgba(125, 211, 252, 0.35) 80%, transparent 100%);
}

.aurora-band--two {
  top: 260px;
  background: linear-gradient(90deg, transparent 0%, rgba(125, 211, 252, 0.35) 40%, rgba(101, 243, 196, 0.28) 80%, transparent 100%);
}

.ice-shard {
  width: 220px;
  height: 320px;
  border-radius: 60% 40% 70% 30%;
  background: linear-gradient(160deg, rgba(125, 211, 252, 0.25), rgba(255, 255, 255, 0.03));
  filter: blur(0.5px);
  opacity: 0.7;
}

.ice-shard--one {
  top: 620px;
  left: -60px;
  transform: rotate(12deg);
}

.ice-shard--two {
  top: 1200px;
  right: -80px;
  transform: rotate(-12deg);
}

.lava-glow {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 61, 0.45), transparent 70%);
  bottom: -160px;
  right: 10vw;
  filter: blur(30px);
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(10, 17, 24, 0.78);
  backdrop-filter: blur(16px);
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.brand__logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  mix-blend-mode: screen;
  background: transparent;
}

.brand__text {
  font-size: 1.05rem;
}

.nav__links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  flex-wrap: wrap;
}

.nav__links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(255, 107, 61, 0.32);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 107, 61, 0.4);
}

.button--outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: none;
}

.button--ghost {
  background: var(--ink);
  color: #0a1118;
  box-shadow: none;
}

.button--full {
  width: 100%;
  margin-top: 12px;
}

.hero {
  padding: 90px 0 70px;
}

.hero__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.hero__content h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  margin-bottom: 20px;
}

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

.pill {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(101, 243, 196, 0.15);
  color: var(--accent-2);
  border-radius: 999px;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.text-accent {
  color: var(--accent-2);
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero__stats h3 {
  font-size: 1.1rem;
}

.hero__stats p {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__card {
  background: var(--surface);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.profile-card {
  display: grid;
  gap: 20px;
}

.profile-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
}

.avatar {
  width: 72px;
  height: 72px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 107, 61, 0.9), rgba(255, 159, 107, 0.9));
  display: grid;
  place-items: center;
  font-family: "Fraunces", serif;
  font-size: 2rem;
  color: #fff;
}

.avatar--logo {
  background: transparent;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}

.avatar--logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
}

.profile-top h2 {
  font-size: 1.4rem;
}

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

.checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.checklist li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.profile-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
}

.section {
  padding: 80px 0;
}

.section--accent {
  background: linear-gradient(160deg, rgba(101, 243, 196, 0.1), rgba(125, 211, 252, 0.08));
}

.section--dark {
  background: linear-gradient(160deg, rgba(9, 13, 18, 0.92), rgba(12, 18, 28, 0.95));
}

.section-header {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin: 10px 0 14px;
}

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

.policy {
  max-width: 820px;
  display: grid;
  gap: 16px;
  color: var(--muted);
}

.policy h3 {
  color: var(--ink);
  font-size: 1.2rem;
  margin-top: 10px;
}

.policy ul {
  list-style: disc;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.policy a {
  color: var(--accent-2);
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature,
.project-card {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 24px rgba(6, 10, 14, 0.4);
  backdrop-filter: blur(8px);
}

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

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

.project-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.status {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  background: rgba(255, 107, 61, 0.18);
  color: #ffd4c3;
  font-weight: 600;
}

.project-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.project-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
}

.cta-panel {
  margin-top: 32px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 107, 61, 0.15) 0%, rgba(101, 243, 196, 0.12) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.timeline-item {
  background: var(--surface);
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 20px rgba(6, 10, 14, 0.35);
}

.timeline-item h3 {
  margin-bottom: 8px;
}

.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.about__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about__portrait {
  display: grid;
  gap: 20px;
  justify-items: center;
}

.portrait {
  width: 220px;
  height: 220px;
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(101, 243, 196, 0.9), rgba(125, 211, 252, 0.9));
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: #0a1118;
  font-family: "Fraunces", serif;
  box-shadow: 0 24px 50px rgba(101, 243, 196, 0.35);
}

.portrait--logo {
  width: 300px;
  height: 300px;
  background: rgba(10, 17, 24, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}

.portrait--logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
}

.about__quote {
  background: rgba(255, 255, 255, 0.06);
  padding: 18px 20px;
  border-radius: 18px;
  text-align: center;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.contact__details {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

.contact__details span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.contact__form {
  background: var(--surface);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 14px;
  backdrop-filter: blur(12px);
}

.contact__form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact__form input,
.contact__form textarea {
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 17, 24, 0.4);
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
}

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero__grid,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .nav__links {
    display: none;
  }

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

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

  .hero {
    padding: 70px 0 40px;
  }

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

  .portrait--logo {
    width: 220px;
    height: 220px;
  }

  .footer {
    flex-direction: column;
  }
}
