
:root {
  --bg: #0b0b0f;
  --panel: rgba(20, 20, 20, 0.9);
  --panel-strong: rgba(10, 10, 10, 0.92);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f5f5;
  --muted: #c9c9c9;
  --accent: #7fc9ff;
  --accent-2: #9ad7ff;
  --shadow: 0 24px 45px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --radius-lg: 24px;
  --spacing: 18px;
  --font-body: 'Poppins', 'Lato', Verdana, Helvetica, sans-serif;
}

body {
  background: radial-gradient(circle at top, #2a2a2a 0%, #111 45%, #050505 100%);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  padding: 24px;
  scroll-behavior: smooth;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--panel), var(--panel-strong));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: sticky;
  top: 12px;
  z-index: 20;
}

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

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 30%, var(--accent-2), var(--accent));
  color: #041018;
  font-weight: 800;
  letter-spacing: 0.5px;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(127, 201, 255, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  color: var(--muted);
}

.brand-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.brand-role {
  font-weight: 500;
  opacity: 0.8;
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  line-height: 1.1;
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-cta {
  display: flex;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041018;
  border-color: rgba(127, 201, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: var(--border);
}

.btn-tertiary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.hero {
  margin: 24px 0 12px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.92), rgba(12, 12, 12, 0.9));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-text h1 {
  font-size: 42px;
  margin: 6px 0 10px 0;
  letter-spacing: 0.5px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--muted);
  margin: 0 0 6px 0;
}

.hero-lede {
  color: var(--muted);
  margin: 6px 0 10px 0;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0 10px 0;
}

.hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.portrait-frame {
  width: min(320px, 90vw);
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.55);
}

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

.glow-ring {
  position: absolute;
  inset: -8%;
  border-radius: 32px;
  background: radial-gradient(circle at 50% 50%, rgba(127, 201, 255, 0.18), transparent 55%);
  filter: blur(10px);
  z-index: -1;
}

.floating-badge {
  position: absolute;
  right: -10px;
  top: 16%;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: var(--text);
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4);
}

.floating-badge.alt {
  bottom: 10%;
  left: -8px;
  right: auto;
  top: auto;
}

.section-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 18px;
  margin: 22px 0 12px 0;
}

.top-cards .section-card {
  height: 100%;
}

.section-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.updates-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.updates-list li {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.updates-list .date {
  font-size: 13px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-block;
  margin-bottom: 4px;
}

.updates-list p {
  margin: 0;
  color: var(--text);
}

.muted-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 8px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  background: rgba(127, 201, 255, 0.18);
  color: #0a161d;
  border: 1px solid rgba(127, 201, 255, 0.5);
}

.pill-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.about-card h4 {
  margin: 0 0 6px 0;
}

.about-card ul {
  padding-left: 18px;
  margin: 0 0 12px 0;
  color: var(--muted);
}

.about-blurb {
  margin: 10px 0 14px 0;
  color: var(--text);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.about-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 25px auto;
  padding: 0;
  border-spacing: 0;
}

td, th {
  vertical-align: top;
}

h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fafafa;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

a {
  color: #7fc9ff;
  text-decoration: none;
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

a:focus,
a:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(127, 201, 255, 0.7);
}

.name {
  font-size: 36px;
  font-weight: 800;
  margin-top: 10px;
  text-align: left;
  letter-spacing: 1px;
  color: #ffffff;
}

.papertitle {
  font-size: 20px;
  font-weight: 700;
  color: #f0f0f0;
}

strong {
  font-size: 16px;
  color: #e6e6e6;
}

.one {
  width: 160px;
  height: 160px;
  position: relative;
  filter: drop-shadow(0 12px 25px rgba(0, 0, 0, 0.45));
  overflow: hidden;
  border-radius: 16px;
}

.two {
  width: 160px;
  height: 160px;
  position: absolute;
  transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
  top: 0;
  left: 0;
}

.two video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.project-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.one img,
.one video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hoverZoomLink {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hoverZoomLink:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.55);
}

.section-card {
  background: linear-gradient(135deg, rgba(28, 28, 28, 0.85), rgba(10, 10, 10, 0.92));
  padding: 28px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 45px rgba(0, 0, 0, 0.45);
  transform: translateY(30px);
  opacity: 0;
  animation: floatUp 0.7s ease forwards;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.section-card:nth-of-type(2n) {
  animation-delay: 0.12s;
}

.section-card:nth-of-type(3n) {
  animation-delay: 0.24s;
}

.section-card:hover {
  border-color: rgba(127, 201, 255, 0.25);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.55);
  transform: translateY(-6px);
}

.hero-section {
  display: block;
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: -40% -60%;
  background: radial-gradient(circle, rgba(127, 201, 255, 0.12), transparent 55%);
  transform: rotate(5deg);
  animation: pulseGlow 8s ease-in-out infinite;
}

.hero-section td {
  position: relative;
  z-index: 1;
}

.row-alt {
  background: rgba(255, 255, 255, 0.04);
}

.news-panel {
  max-height: 220px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.news-panel::-webkit-scrollbar {
  width: 8px;
}

.news-panel::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(127, 201, 255, 0.6), rgba(80, 80, 80, 0.6));
  border-radius: 10px;
}

.news-panel table {
  border: none;
  margin: 0;
}

.table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}

.table th, .table td {
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #e0e0e0;
}

.table th {
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

ul {
  margin: 12px 0;
  padding-left: 20px;
}

ul li {
  margin-bottom: 8px;
  color: #d7d7d7;
}

ul li:last-child {
  margin-bottom: 0;
}

video, img {
  border-radius: 16px;
}

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

@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1) rotate(10deg);
    opacity: 0.65;
  }
  50% {
    transform: scale(1.15) rotate(0deg);
    opacity: 0.9;
  }
}
