/* ============================================
   UDAY PRATAP YADAV — DARK GOLD THEME
   ============================================ */

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

:root {
  --bg-deep: #080C16;
  --bg-section: #0B1120;
  --bg-card: rgba(255, 255, 255, 0.03);
  --bg-card-hover: rgba(255, 255, 255, 0.06);
  --text-primary: #EDE7D9;
  --text-secondary: rgba(237, 231, 217, 0.55);
  --text-muted: rgba(237, 231, 217, 0.3);
  --gold: #D4A84B;
  --gold-light: #E8C46A;
  --gold-glow: rgba(212, 168, 75, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(212, 168, 75, 0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --max-width: 1100px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================== NAV ===================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: transparent;
  transition: all 0.4s ease;
}

.nav-scrolled {
  background: rgba(8, 12, 22, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 28px;
}

.nav-logo {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===================== HERO ===================== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212, 168, 75, 0.04) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 80% 100%, rgba(212, 168, 75, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-badge {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 6px 16px;
  border-radius: 100px;
  display: inline-block;
  width: fit-content;
  background: rgba(212, 168, 75, 0.06);
}

.hero-rank-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 4px;
}

.hero-big-number {
  font-family: var(--font-mono);
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -6px;
}

.hero-big-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-secondary);
  text-transform: uppercase;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -1px;
}

.hero-title {
  font-size: 18px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.5px;
}

.hero-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 480px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--gold);
  color: #080C16;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--gold-glow);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.hero-image-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-ring {
  position: absolute;
  inset: -6px;
  border: 1.5px solid var(--border-gold);
  border-radius: calc(var(--radius-lg) + 6px);
  pointer-events: none;
  opacity: 0.4;
}

.hero-insignia {
  display: flex;
  gap: 12px;
}

.hero-insignia span {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ===================== SECTION ===================== */

.section {
  padding: 100px 0;
  background: var(--bg-section);
}

.section-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.section-fade.section-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1.15;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 14px;
  line-height: 1.7;
}

/* ===================== JOURNEY ===================== */

.journey {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-section) 50%, var(--bg-deep) 100%);
}

.timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--border), var(--gold-glow), var(--border));
  opacity: 0;
  transition: opacity 1s ease;
}

.timeline.animate-line::before {
  opacity: 1;
}

.timeline-item {
  position: relative;
  padding: 24px 24px 24px 80px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  opacity: 1;
  transition: all 0.6s ease;
  border-left: 4px solid transparent;
}

.timeline-item.visible {
  animation: slideUp 0.5s ease forwards;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.timeline-item:hover {
  background: var(--bg-card-hover);
}

.box-red { border-left-color: #FF6B6B; }
.box-orange { border-left-color: #FFA94D; }
.box-green { border-left-color: #69DB7C; }
.box-red-dark { border-left-color: #E74C3C; }
.box-gold { border-left-color: var(--gold); background: rgba(212, 168, 75, 0.04); }

.timeline-marker {
  position: absolute;
  left: 0;
  top: 28px;
  width: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-deep);
  box-shadow: 0 0 8px var(--gold-glow);
}

.timeline-dot-danger {
  background: #E74C3C;
  box-shadow: 0 0 8px rgba(231, 76, 60, 0.25);
}

.timeline-dot-gold {
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold-glow);
  width: 16px;
  height: 16px;
}

.timeline-year {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.timeline-content h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.timeline-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.3s ease;
}

.timeline-link:hover {
  color: var(--gold-light);
}

.near-miss-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #E74C3C;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.miss-number {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 800;
  color: #E74C3C;
}

.victory-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  background: rgba(212, 168, 75, 0.1);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 8px;
  border: 1px solid var(--border-gold);
}

.box-gold .timeline-content h3 {
  color: var(--gold-light);
}

/* Timeline divider */
.timeline-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 0;
  max-width: 500px;
  margin: 0 auto;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
}

.divider-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.6;
  flex-shrink: 0;
}

/* ===================== ABOUT ===================== */

.about-grid {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 40px;
  align-items: start;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.about-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}

.about-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.about-label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.interest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 100px;
  border: 1px solid var(--border-gold);
  background: rgba(212, 168, 75, 0.04);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ===================== RESULTS ===================== */

.results-highlight {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 60px;
}

.result-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s ease;
}

.result-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.result-card-primary {
  border-color: var(--border-gold);
  background: rgba(212, 168, 75, 0.04);
}

.result-big-number {
  display: block;
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.result-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.topper-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 40px;
}

.table-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.table-scroll {
  overflow-x: auto;
}

.topper-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.topper-table th {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(212, 168, 75, 0.04);
}

.topper-table td {
  padding: 12px 16px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.highlight-row {
  background: rgba(212, 168, 75, 0.04);
}

.highlight-row td {
  color: var(--gold);
}

.press-section {
  margin-top: 8px;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: all 0.3s ease;
}

.press-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.press-source {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
}

.press-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.4;
}

.press-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===================== INTERVIEW ===================== */

.interview-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

.interview-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.interview-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.interview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.interview-topic {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  gap: 14px;
  transition: all 0.3s ease;
}

.interview-topic:hover {
  border-color: var(--border-gold);
}

.topic-icon {
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.interview-topic h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.interview-topic p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===================== GALLERY ===================== */

.gallery-section {
  padding: 100px 24px;
  background: var(--bg-deep);
}

.gallery-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.grid-item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s ease;
}

.grid-item:hover {
  transform: scale(1.02);
  border-color: var(--border-gold);
}

.grid-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.grid-item-wide {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-item-wide img {
  height: 100%;
}

/* ===================== FAMILY STRIP ===================== */

.family-strip {
  padding: 60px 24px 80px;
  background: var(--bg-section);
}

.family-strip .section-header {
  margin-bottom: 36px;
}

.family-strip-grid {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.family-strip-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.family-strip-grid img:hover {
  transform: scale(1.03);
  border-color: var(--border-gold);
}

/* ===================== MEDIA ===================== */

.media-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.media-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
}

.media-card:hover {
  border-color: var(--border-gold);
}

.media-embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.media-embed iframe,
.media-embed video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.media-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 12px 16px;
}

.media-card-video {
  grid-column: 1 / -1;
  max-width: 500px;
  justify-self: center;
  width: 100%;
}

/* ===================== ASPIRANTS ===================== */

.aspirants-quote {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  padding: 32px;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  background: rgba(212, 168, 75, 0.03);
}

.aspirants-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--text-primary);
  line-height: 1.6;
}

.aspirants-quote span {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

.aspirants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.advice-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s ease;
}

.advice-card:hover {
  border-color: var(--border-gold);
  background: var(--bg-card-hover);
}

.advice-number {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.advice-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.advice-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===================== FOOTER ===================== */

.footer {
  padding: 48px 24px;
  background: #060910;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-logo {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
}

.footer-text {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.footer-social {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  transition: color 0.3s;
}

.footer-social:hover {
  color: var(--gold-light);
}

.footer-top {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-top:hover {
  color: var(--text-primary);
}

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 24px;
}

/* ===================== SCROLL PROGRESS ===================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 200;
  transition: opacity 0.3s ease;
  border-radius: 0 2px 2px 0;
}

/* ===================== SPARKLE STARS ===================== */

.sparkle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sparkle-star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 50%;
  animation: sparkle var(--duration) ease-in-out infinite;
  opacity: 0;
}

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0); }
  50% { opacity: 0.6; transform: scale(1); }
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-image {
    max-width: 280px;
  }
  .about-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .interview-grid {
    grid-template-columns: 1fr;
  }
  .interview-image {
    max-width: 280px;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    background: rgba(8, 12, 22, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 28px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--border);
  }
  .nav-links.open {
    right: 0;
  }
  .nav-links a {
    font-size: 16px;
  }
  .nav-hamburger {
    display: flex;
  }
  .nav-hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .nav-hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .nav-hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero-badge {
    margin: 0 auto;
  }
  .hero-rank-display {
    justify-content: center;
  }
  .hero-big-number {
    font-size: 80px;
  }
  .hero-quote {
    margin: 0 auto;
  }
  .hero-cta {
    justify-content: center;
  }
  .hero-visual {
    order: -1;
  }
  .hero-image-frame {
    max-width: 240px;
    aspect-ratio: 3/4;
  }
  .hero-scroll-indicator {
    display: none;
  }

  .results-highlight {
    grid-template-columns: repeat(2, 1fr);
  }
  .interview-content {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-item-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .grid-item img {
    height: 150px;
  }
  .family-strip-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .family-strip-grid img {
    height: 160px;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .aspirants-grid {
    grid-template-columns: 1fr;
  }
  .about-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-image {
    max-width: 100%;
  }
  .interview-image {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 16px 40px;
  }
  .hero-big-number {
    font-size: 64px;
  }
  .hero-name {
    font-size: 32px;
  }
  .hero-image-frame {
    max-width: 200px;
  }
  .section {
    padding: 60px 0;
  }
  .section-header {
    margin-bottom: 36px;
  }
  .results-highlight {
    gap: 10px;
  }
  .result-card {
    padding: 20px 12px;
  }
  .result-big-number {
    font-size: 24px;
  }
  .topper-table-wrapper {
    padding: 16px;
  }
  .gallery-grid {
    gap: 6px;
  }
  .grid-item img {
    height: 120px;
  }
  .family-strip-grid img {
    height: 130px;
  }
  .timeline-item {
    padding: 20px 16px 20px 60px;
  }
  .timeline-marker {
    width: 56px;
  }
  .timeline-divider {
    flex-direction: column;
    gap: 12px;
    padding: 28px 0;
  }
  .divider-text {
    font-size: 13px;
  }
}