:root {
  --navy-1: #0a1442;
  --navy-2: #0d1c5c;
  --navy-3: #1638a8;
  --accent-1: #e94fd6;
  --accent-2: #9b3df0;
  --text-dim: rgba(255, 255, 255, 0.62);
  --text-dimmer: rgba(255, 255, 255, 0.42);
  --border-soft: rgba(255, 255, 255, 0.22);
  --light-bg: #e9edf1;
  --ink-1: #10162e;
  --ink-dim: rgba(16, 22, 46, 0.6);
  --ink-dimmer: rgba(16, 22, 46, 0.45);
}

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

html,
body {
  height: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a1442;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 78%, rgba(43, 90, 220, 0.55) 0%, rgba(43, 90, 220, 0) 42%),
    linear-gradient(200deg, #1638a8 0%, #0d1c5c 45%, #0a1442 100%);
  display: flex;
  flex-direction: column;
}

.navbar {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1560px;
  margin: 0 auto;
  padding: 40px clamp(40px, 6vw, 100px) 0;
}

.logo img {
  height: 65px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 34px;
  border-radius: 40px;
  backdrop-filter: blur(6px);
  margin-left: auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #fff;
}

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

.icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
}

.yt-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 7px 16px 7px 10px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
}

.yt-badge .yt-icon {
  width: 22px;
  height: 16px;
  background: #ff0000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.yt-badge .yt-icon svg {
  width: 9px;
  height: 9px;
}

.hero-body {
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: clamp(24px, 4vw, 64px);
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
  padding: 0 clamp(40px, 6vw, 100px) 0;
}

.hero-copy {
  position: relative;
  z-index: 15;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  padding-top: 45px;
}

.eyebrow {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 18px;
}

.hero-frame {
  position: relative;
  border: 1px solid var(--border-soft);
  padding: 44px 44px 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.headline .accent {
  background: linear-gradient(90deg, #e94fd6, #9b3df0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.roles {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dimmer);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.roles .strong {
  color: #fff;
}

.scroll-arrow {
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bob 2.2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 6px);
  }
}

.hero-character {
  position: relative;
  align-self: flex-end;
  flex: none;
  height: min(74vh, 740px);
  display: flex;
  align-items: flex-end;
  z-index: 10;
  pointer-events: none;
}

.hero-character img {
  height: 100%;
  width: auto;
  display: block;
  filter: drop-shadow(0 30px 40px rgba(0, 0, 0, 0.35));
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--light-bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.about-inner {
  position: relative;
  flex: 1;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(24px, 4vw, 64px);
  max-width: 1560px;
  margin: 0 auto;
  width: 100%;
  padding: 90px clamp(40px, 6vw, 100px) 0;
}

.about-text {
  position: relative;
  z-index: 5;
  max-width: 480px;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
}

.eyebrow-dark {
  color: var(--ink-dimmer);
}

.about-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--ink-1);
  margin-bottom: 26px;
}

.about-bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-dim);
  max-width: 400px;
}

.about-media {
  position: relative;
  align-self: flex-end;
  flex: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

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

  .hero-character {
    position: relative;
    height: auto;
    width: 46%;
    margin-left: auto;
  }

  .hero-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .hero-frame {
    max-width: 100%;
    flex: none;
  }

  .about-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-top: 20px;
    padding-bottom: 32px;
  }

  .about-text {
    padding-top: 0;
    max-width: 100%;
  }

  .about-media {
    width: 100%;
    height: min(60vh, 520px);
    align-self: center;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 24px;
  }

  .hero-body {
    padding: 20px 24px 32px;
  }

  .hero-frame {
    padding: 32px 24px 48px;
  }

  .yt-badge span {
    display: none;
  }

  .hero-character {
    width: 66%;
  }

  .about-inner {
    padding: 20px 24px 32px;
  }

  .about-media {
    height: 320px;
    border-radius: 18px;
  }
}
