﻿:root {
  color-scheme: light;
  --bg: #f6f6f4;
  --ink: #0b0b0b;
  --muted: #5a5a5a;
  --accent: #7a5cff;
  --accent-strong: #5e42e8;
  --accent-soft: #f1edff;
  --line: rgba(0, 0, 0, 0.08);
  --glass: rgba(255, 255, 255, 0.7);
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  --radius: 22px;
}

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

body {
  margin: 0;
  font-family: "Manrope", "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(1200px 800px at 20% -20%, #ffffff 0%, #f6f6f4 55%, #ededeb 100%);
  color: var(--ink);
}

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

main {
  padding: 120px 6vw 120px;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 0;
}

.topbar {
  position: fixed;
  top: 24px;
  left: 6vw;
  right: 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  z-index: 5;
}

.brand {
  font-family: "Space Grotesk", "SF Pro Display", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
}

.cta {
  border: none;
  background: var(--accent-strong);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 48px;
  align-items: center;
  padding-top: 40px;
}

.hero-copy h1 {
  font-family: "Space Grotesk", "SF Pro Display", sans-serif;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  line-height: 1.05;
  margin: 12px 0 20px;
}

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.75rem;
  color: var(--muted);
  margin: 0;
}

.lead {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin: 24px 0 32px;
}

.primary,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  min-height: 48px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary {
  border: none;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 30px rgba(122, 92, 255, 0.34);
}

.primary:hover {
  transform: translateY(-1px);
}

.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.hero-primary {
  position: relative;
  overflow: hidden;
}

.hero-primary i {
  font-style: normal;
  transition: transform 0.25s ease;
}

.hero-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.35) 50%, transparent 75%);
  transform: translateX(-140%);
  transition: transform 0.45s ease;
}

.hero-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 36px rgba(122, 92, 255, 0.45);
  filter: saturate(1.08);
}

.hero-primary:hover::before {
  transform: translateX(140%);
}

.hero-primary:hover i {
  transform: translateX(4px);
}

.hero-primary:active {
  transform: translateY(0) scale(0.99);
}

.meta {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 6px;
  color: var(--muted);
}

.hero-card {
  display: grid;
  gap: 12px;
  background: linear-gradient(160deg, #ffffff 0%, #f6f3ff 100%);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
}

.stat {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.stat:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.stat-num {
  font-size: 2rem;
  margin: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  transition: filter 0.06s linear, text-shadow 0.06s linear;
}

.stat-num.countup-active {
  text-shadow: 0 0 10px rgba(122, 92, 255, 0.28), 0 0 2px rgba(122, 92, 255, 0.35);
  will-change: filter, opacity, text-shadow;
}

.stat-label {
  margin: 0;
  color: var(--muted);
}

.section {
  margin-top: 120px;
}

.section.alt {
  padding: 80px 5vw;
  margin-left: -6vw;
  margin-right: -6vw;
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: "Space Grotesk", "SF Pro Display", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0;
}

.section-header p {
  max-width: 460px;
  color: var(--muted);
  margin: 0;
}

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

.card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.thumb {
  height: 180px;
  border-radius: 16px;
  background: linear-gradient(120deg, #f3f3f0, #e4e4e0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
}

.thumb img,
.thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card.featured {
  grid-column: span 2;
  background: linear-gradient(160deg, #ffffff 0%, #f3efff 100%);
  border-color: rgba(122, 92, 255, 0.35);
}

.card.featured .thumb {
  height: 240px;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12, 12, 12, 0.72);
  color: #fff;
  border-radius: 999px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.program-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.program-tab {
  border: 1px solid rgba(122, 92, 255, 0.22);
  background: #fff;
  color: #3a315a;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.program-tab:hover {
  transform: translateY(-1px);
}

.program-tab.active {
  background: var(--accent);
  color: #fff;
  border-color: transparent;
}

.masonry {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.shot {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.shot:hover {
  transform: translateY(-4px);
}

.shot img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.resume {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
  max-width: 1050px;
  margin: 0 auto;
}

.resume-view {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f8f8fa 100%);
  padding: 16px;
}

.resume-image {
  width: auto;
  max-width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  display: block;
  margin: 0 auto;
}

.resume-fallback {
  width: min(100%, 440px);
  min-height: 620px;
  border-radius: 18px;
  border: 1px dashed rgba(122, 92, 255, 0.4);
  background: linear-gradient(165deg, #f8f6ff 0%, #eeecff 100%);
  color: #2f2f46;
  place-items: center;
  text-align: center;
  padding: 24px;
  margin: 0 auto;
}

.resume-fallback p {
  margin: 0;
  font-weight: 700;
}

.resume-fallback span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.resume-meta h3 {
  margin: 0 0 12px;
}

.resume-meta p {
  color: var(--muted);
  line-height: 1.6;
}

.resume-meta .primary,
.resume-meta .ghost {
  margin-top: 12px;
}

.resume-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.resume-tags span {
  border: 1px solid rgba(122, 92, 255, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: var(--accent-soft);
}

.contact {
  display: flex;
  justify-content: center;
}

.contact-card {
  max-width: 720px;
  width: 100%;
  padding: 40px;
  border-radius: var(--radius);
  background: linear-gradient(130deg, #191327, #2b2050);
  color: #fff;
  box-shadow: var(--shadow);
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-actions {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.contact .ghost {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  background: transparent;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  place-items: center;
  padding: 24px;
  z-index: 10;
}

.modal.open {
  display: grid;
}

.modal-inner {
  width: min(980px, 92vw);
  background: #0f0f0f;
  border-radius: 24px;
  padding: 24px;
  position: relative;
  box-shadow: var(--shadow);
}

.modal-media video,
.modal-media img {
  width: 100%;
  max-height: 70vh;
  border-radius: 18px;
  display: block;
  object-fit: contain;
}

.close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.8rem;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (max-width: 920px) {
  .topbar {
    flex-direction: column;
    gap: 12px;
    border-radius: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .resume {
    grid-template-columns: 1fr;
  }

  .resume-image {
    max-height: 520px;
  }

  .resume-fallback {
    min-height: 520px;
  }

  .card.featured {
    grid-column: auto;
  }

  .card.featured .thumb {
    height: 180px;
  }
}

@media (max-width: 620px) {
  main {
    padding: 120px 5vw 100px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .meta {
    flex-direction: column;
  }

  .contact-actions {
    flex-direction: column;
  }
}









