:root {
  --bg: #05070f;
  --bg-soft: #0b1020;
  --surface: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --surface-hover: rgba(255, 255, 255, 0.16);
  --border: rgba(255, 255, 255, 0.14);
  --border-strong: rgba(255, 255, 255, 0.24);
  --text: #f8fafc;
  --text-soft: #cbd5e1;
  --text-muted: #94a3b8;
  --blue: #4ea7ff;
  --cyan: #7dd3fc;
  --green: #a3e635;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --container: 1120px;
}

/* Base */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(78, 167, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 80% 12%, rgba(163, 230, 53, 0.12), transparent 28rem),
    linear-gradient(180deg, #05070f 0%, #07101d 45%, #05070f 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font-family: "Manrope", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
blockquote,
button {
  font-family: "Manrope", sans-serif;
}

p {
  margin-top: 0;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: -0.005em;
}

svg {
  flex-shrink: 0;
}

/* Navigation */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 1rem 1.25rem;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 15, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link {
  color: var(--text-soft);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Mobile Menu */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  background: rgba(5, 7, 15, 0.94);
  backdrop-filter: blur(24px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-link {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  padding: 8rem 1.25rem 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.6;
}

.hero-orb-1 {
  width: 22rem;
  height: 22rem;
  left: -7rem;
  top: 12rem;
  background: radial-gradient(circle, rgba(78, 167, 255, 0.42), transparent 68%);
  animation: float 9s ease-in-out infinite;
}

.hero-orb-2 {
  width: 18rem;
  height: 18rem;
  right: -5rem;
  bottom: 8rem;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.22), transparent 68%);
  animation: float 11s ease-in-out infinite reverse;
}

.hero-orbital {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
}

.hero-orbital-1 {
  width: 36rem;
  height: 36rem;
  top: 9rem;
  left: 50%;
  transform: translateX(-50%) rotate(-18deg);
}

.hero-orbital-2 {
  width: 48rem;
  height: 48rem;
  top: 3rem;
  left: 50%;
  transform: translateX(-50%) rotate(22deg);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content-split {
  width: min(var(--container), 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 3.5rem;
  align-items: center;
  text-align: left;
}

.hero-intro {
  max-width: 760px;
}

.hero-label,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-label::before,
.section-label::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 24px rgba(163, 230, 53, 0.65);
}

.hero-kicker {
  margin: 0 0 0.85rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-name {
  margin: 0;
  font-size: clamp(3rem, 6.6vw, 5.9rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.065em;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #bde4ff 42%, #a3e635 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-tagline {
  margin: 1.5rem 0 0;
  max-width: 720px;
  color: var(--text);
  font-size: clamp(1.18rem, 2.2vw, 1.65rem);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.hero-description {
  max-width: 720px;
  margin: 1.25rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
}

.hero-buttons {
  margin-top: 2.2rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  min-height: 50px;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: #06111f;
  background: linear-gradient(135deg, #ffffff 0%, #a9dcff 52%, #a3e635 100%);
  box-shadow: 0 18px 46px rgba(78, 167, 255, 0.18);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--border-strong);
}

.hero-card {
  position: relative;
  padding: 1.25rem 1.25rem 1.75rem;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  top: -6rem;
  right: -6rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(125, 211, 252, 0.22), transparent 68%);
}

.hero-card::after {
  content: "";
  position: absolute;
  width: 12rem;
  height: 12rem;
  left: -4rem;
  bottom: -4rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(163, 230, 53, 0.14), transparent 70%);
}

.hero-photo-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 4.6;
  margin-bottom: 1.35rem;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-card-label {
  position: relative;
  z-index: 1;
  margin: 0 0 0.7rem;
  color: var(--text);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.hero-card-text {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.85;
}

/* Sections */

.section {
  position: relative;
  padding: 6.5rem 1.25rem;
}

.section-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

.section-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.section-subtitle {
  max-width: 650px;
  margin: 1rem auto 0;
  font-size: 1.04rem;
}

/* About */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 3.5rem;
  align-items: center;
}

.about-text p {
  max-width: 680px;
}

.about-features {
  display: grid;
  gap: 1rem;
}

.glass-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.045));
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.glass-card-hover {
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.glass-card-hover:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
}

.feature-card {
  padding: 1.25rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.feature-icon,
.interest-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.24);
}

.feature-content h3,
.interest-card h3,
.thought-card h3,
.private-note h3 {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.035em;
}

.feature-content p {
  margin: 0.35rem 0 0;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.private-note {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
  padding: 1.5rem 1.75rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
}

.private-note-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--cyan);
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.24);
  font-size: 1.2rem;
  font-weight: 800;
}

.private-note h3 {
  margin: 0 0 0.45rem;
}

.private-note p {
  max-width: 900px;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

/* Interests */

.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.interest-card {
  padding: 1.45rem;
  min-height: 230px;
}

.interest-card h3 {
  margin-top: 1.25rem;
}

.interest-card p {
  margin: 0.65rem 0 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Thoughts */

.thoughts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.thought-card {
  padding: 1.45rem;
  min-height: 245px;
  display: flex;
  flex-direction: column;
}

.thought-tag {
  align-self: flex-start;
  margin-bottom: 1.15rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(125, 211, 252, 0.11);
  border: 1px solid rgba(125, 211, 252, 0.24);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.thought-card p {
  margin: 0.7rem 0 0;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.62;
}

.thought-meta {
  margin-top: auto;
  padding-top: 1.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Quote */

.quote-section {
  position: relative;
  padding: 7rem 1.25rem;
  overflow: hidden;
}

.quote-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(78, 167, 255, 0.18), transparent 30rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent, rgba(255, 255, 255, 0.03));
}

.quote-content {
  position: relative;
  width: min(900px, 100%);
  margin: 0 auto;
  text-align: center;
}

.quote-icon {
  margin: 0 auto 1rem;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.quote-text {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.quote-author {
  margin-top: 1.2rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Contact */

.contact-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact-buttons {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */

.footer {
  padding: 2rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-container {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--border);
}

.footer-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

/* Animations */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -24px, 0);
  }
}

/* Responsive */

@media (max-width: 960px) {
  .hero-content-split {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero-intro,
  .hero-tagline,
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-card {
    min-height: auto;
    text-align: left;
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-photo-wrap {
    aspect-ratio: 4 / 4.2;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .private-note {
    grid-column: auto;
  }

  .interests-grid,
  .thoughts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-orbital-1 {
    width: 30rem;
    height: 30rem;
  }

  .hero-orbital-2 {
    width: 40rem;
    height: 40rem;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
  }

  .mobile-menu,
  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding-top: 7.5rem;
  }

  .hero-buttons,
  .contact-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    justify-content: center;
  }

  .section {
    padding: 5rem 1.1rem;
  }

  .section-header {
    text-align: left;
    margin-bottom: 2rem;
  }

  .section-subtitle {
    margin-left: 0;
    margin-right: 0;
  }

  .interests-grid,
  .thoughts-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-indicator {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero-name {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-card {
    padding: 1rem 1rem 1.35rem;
  }

  .hero-photo-wrap {
    border-radius: 20px;
  }

  .private-note {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .nav {
    padding: 0.85rem 1rem;
  }

  .hero {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-description {
    font-size: 0.98rem;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .thought-meta {
    flex-direction: column;
    gap: 0.35rem;
  }
}