.main-content,
.main-content.container-fluid {
  max-width: 100%;
  padding: 0;
}

body {
  margin: 0;
  background: #0a0a0a;
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

footer.footer-min {
  display: none;
}

.landing-page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 82vh;
  padding: 26px 48px 120px;
  background:
    radial-gradient(circle at 72% 12%, rgba(210, 210, 210, 0.45) 0%, rgba(64, 64, 64, 0.22) 21%, rgba(16, 16, 16, 0.72) 44%, rgba(8, 8, 8, 0.94) 70%),
    linear-gradient(130deg, #1e1e1e 0%, #121212 40%, #090909 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.75)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 2px,
      rgba(0, 0, 0, 0) 2px,
      rgba(0, 0, 0, 0) 6px
    );
  pointer-events: none;
}

.top-nav,
.hero-content,
.year-mark,
.portrait-mask,
.right-rail {
  position: relative;
  z-index: 2;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  color: #fff;
  text-decoration: none;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-family: "Cormorant Garamond", Georgia, serif;
}

.menu-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.menu-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.menu-links a:hover {
  color: #ff5a1f;
}

.hero-content {
  max-width: 580px;
  margin-top: 9vh;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  text-transform: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
}

.hero-content p {
  margin: 24px 0 34px;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.06rem;
  line-height: 1.55;
}

.cta-button {
  display: inline-block;
  background: #ff4d17;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  padding: 12px 22px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.74rem;
  border: 1px solid #ff4d17;
  transition: all 0.2s ease;
}

.cta-button:hover {
  color: #ff4d17;
  background: transparent;
}

.year-mark {
  position: absolute;
  right: 44px;
  bottom: 148px;
  color: rgba(255, 255, 255, 0.95);
  letter-spacing: 0.1em;
  font-size: 0.85rem;
}

.portrait-mask {
  position: absolute;
  top: 86px;
  right: 28%;
  width: clamp(180px, 19vw, 260px);
  height: clamp(180px, 19vw, 260px);
  background: linear-gradient(180deg, #9f9f9f 0%, #7f7f7f 100%);
  opacity: 0.8;
}

.right-rail {
  position: absolute;
  right: 18px;
  top: 46%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.right-rail span {
  width: 24px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

.right-rail .active {
  width: 48px;
  background: rgba(255, 255, 255, 0.9);
}

.section-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 98px;
  min-height: 18vh;
}

.section-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 28px;
  text-decoration: none;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background-size: cover;
  background-position: center;
  transition: transform 0.24s ease, filter 0.24s ease;
}

.section-card:last-child {
  border-right: 0;
}

.section-card span {
  font-size: clamp(1.05rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.75);
}

.section-card:hover {
  transform: translateY(-6px);
  filter: brightness(1.1);
}

#quant-dev {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(0, 0, 0, 0.65) 100%),
    linear-gradient(120deg, #4f2b2b 0%, #1a1a1a 100%);
}

#fitness {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%),
    linear-gradient(120deg, #3a3a3a 0%, #161616 100%);
}

#career-advice {
  background:
    linear-gradient(180deg, rgba(255, 96, 41, 0.4) 0%, rgba(255, 58, 0, 0.8) 100%),
    linear-gradient(120deg, #70240e 0%, #1d1d1d 100%);
}

.section-action {
  border: 0;
  background: #ff4d17;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.section-action:hover {
  background: #ff6939;
}

@media (max-width: 900px) {
  .hero {
    padding: 22px 24px 96px;
  }

  .menu-links {
    gap: 14px;
  }

  .hero-content {
    margin-top: 7vh;
  }

  .year-mark {
    right: 24px;
    bottom: 114px;
  }

  .portrait-mask,
  .right-rail {
    display: none;
  }

  .section-strip {
    grid-template-columns: 1fr;
  }

  .section-card {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .section-action {
    min-height: 90px;
  }
}
