:root {
  --bg0: #0b0f17;
  --bg1: #0f1522;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.62);
  --line: rgba(255, 255, 255, 0.09);
  --accent: #26f7b8;
  --accent2: #15e1a0;
  --shadow: rgba(0, 0, 0, 0.45);
  --topbar-h: 72px;
  --topbar-bg-y: 0px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px circle at 30% 20%, rgba(38, 247, 184, 0.12), transparent 55%),
    radial-gradient(700px circle at 80% 40%, rgba(38, 247, 184, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
}

.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.page {
  min-height: 100vh;
  padding: calc(var(--topbar-h) + 18px) 26px 28px;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 26px;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: blur(10px);
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  opacity: 0;
}

.topbar > * {
  position: relative;
  z-index: 1;
}

.brand {
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.2px;
}

.brand-dot {
  color: var(--accent);
  margin-left: 2px;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(5, 10, 18, 0.6);
  color: rgba(255, 255, 255, 0.9);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bars {
  display: grid;
  gap: 5px;
}

.nav-toggle-bars span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.nav-link {
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.15s ease;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.95);
}

.nav-link:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.btn-primary {
  background: var(--accent);
  color: #00140b;
  box-shadow: 0 12px 30px rgba(38, 247, 184, 0.18);
}

.btn-primary:hover {
  filter: brightness(1.02);
}

.icon-pill {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(38, 247, 184, 0.35);
  color: var(--accent);
  background: rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.icon-pill:hover {
  transform: translateY(-1px);
  border-color: rgba(38, 247, 184, 0.7);
  color: #d9fff2;
}

.icon-pill i {
  font-size: 14px;
}

.hero {
  margin: auto;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 36px;
  width: min(1120px, 100%);
  min-height: calc(100vh - 110px);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(700px circle at 12% 18%, rgba(38, 247, 184, 0.14), transparent 55%),
    linear-gradient(135deg, rgba(10, 16, 27, 0.9), rgba(13, 20, 33, 0.78));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.hero-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.jumbotron-shell {
  margin: auto;
  position: relative;
  overflow: hidden;
  width: min(1120px, 100%);
  min-height: calc(100vh - 110px);
  padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(700px circle at 12% 18%, rgba(38, 247, 184, 0.14), transparent 55%),
    linear-gradient(135deg, rgba(10, 16, 27, 0.9), rgba(13, 20, 33, 0.78));
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
}

.jumbotron-shell > * {
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
}

.title {
  margin: 0;
  font-size: 60px;
  font-weight: 600;
  line-height: 1.03;
}

.title-accent {
  color: var(--accent);
}

.typewriter {
  display: inline-block;
  min-width: 0.08em;
  vertical-align: bottom;
  border-right: 3px solid var(--accent2);
  padding-right: 0.08em;
  white-space: nowrap;
  animation: caretBlink 0.75s step-end infinite;
}

@keyframes caretBlink {
  50% {
    border-right-color: transparent;
  }
}

.lead {
  margin: 14px 0 22px;
  max-width: 520px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-left {
  position: relative;
  z-index: 1;
  padding-left: 12px;
}

.hero-right {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.portrait-wrap {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  z-index: 3;
  background: transparent;
}

.portrait {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 26px 60px var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s ease;
}

.ring {
  position: absolute;
  inset: 7%;
  border-radius: 50%;
  border: 3px dashed rgba(38, 247, 184, 0.78);
  box-shadow: 0 0 0 6px rgba(38, 247, 184, 0.08);
  animation: spin 12s linear infinite;
  transition: transform 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portrait-wrap:hover .portrait {
  transform: rotateY(16deg) scale(1.04);
  box-shadow: 0 32px 75px rgba(0, 0, 0, 0.55);
}

.portrait-wrap:hover .ring {
  transform: scale(1.04) rotate(-12deg);
}

.media-guard {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: transparent;
}

.protect-media {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.stats {
  margin-top: 44px;
  padding: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.stat {
  text-align: center;
}

.stat-value {
  font-size: 34px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
}

.stat-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.section {
  margin-top: 54px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.section-title {
  margin: 0 0 16px;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.section-lead {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
}

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

.info-card {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background:
    radial-gradient(700px circle at 10% 0%, rgba(38, 247, 184, 0.1), transparent 55%),
    rgba(0, 0, 0, 0.2);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.card-period {
  margin: 0 0 8px;
  font-size: 12px;
  color: rgba(38, 247, 184, 0.9);
  letter-spacing: 0.4px;
  font-weight: 600;
}

.card-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.94);
}

.card-copy {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 28px;
    text-align: center;
  }
  .hero-right {
    margin-top: 22px;
  }
  .hero-left {
    padding-left: 0;
  }
  .lead {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .title {
    font-size: 48px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
  .jumbotron-shell {
    min-height: auto;
    margin-top: 28px;
  }
}

@media (max-width: 520px) {
  .page {
    padding: calc(var(--topbar-h) + 16px) 16px 22px;
  }
  .topbar {
    padding: 12px 16px;
    gap: 10px;
  }
  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    z-index: 20;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    background:
      radial-gradient(650px circle at 12% 0%, rgba(38, 247, 184, 0.15), transparent 55%),
      rgba(7, 12, 20, 0.94);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }
  .nav.is-open {
    display: flex;
  }
  .nav .nav-link {
    width: 100%;
    padding: 6px 2px;
  }
  .nav .nav-cta {
    width: 100%;
    margin-top: 4px;
  }
  .title {
    font-size: 41px;
  }
  .hero {
    padding: 26px 18px;
    border-radius: 24px;
  }
  .jumbotron-shell {
    padding: 24px 16px;
    border-radius: 24px;
  }
  .portrait {
    width: 270px;
    height: 270px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .typewriter {
    border-right: 0;
    animation: none;
    padding-right: 0;
  }
}

